From 26d8058cf407adb4d5be1b3da0c01dd9d5d1f3d1 Mon Sep 17 00:00:00 2001 From: MysaaJava Date: Wed, 12 Jun 2024 10:18:41 +0200 Subject: [PATCH] First commit - Working greposimu --- .gitignore | 47 + Dockerfile | 8 + build.gradle | 34 + settings.gradle | 1 + .../java/com/bernard/greposimu/GrepoSimu.java | 61 + .../greposimu/GrepoSimuApplication.java | 16 + .../greposimu/MainWebAppInitializer.java | 28 + .../controller/GrepoSimuController.java | 237 + .../bernard/greposimu/engine/Optimizer.java | 116 + .../bernard/greposimu/engine/Registerar.java | 114 + .../com/bernard/greposimu/model/Dieu.java | 28 + .../com/bernard/greposimu/model/Heros.java | 87 + .../bernard/greposimu/model/OffDefStats.java | 182 + .../com/bernard/greposimu/model/Unite.java | 74 + src/main/resources/application.properties | 3 + src/main/resources/favicon.ico | Bin 0 -> 1406 bytes src/main/resources/resources.sh | 2 + src/main/resources/static/favicon.ico | Bin 0 -> 1406 bytes src/main/resources/static/game.css | 177192 +++++++++++++++ .../static/images/gods_temple/aphrodite.png | Bin 0 -> 99045 bytes .../images/gods_temple/aphrodite_small.png | Bin 0 -> 6893 bytes .../static/images/gods_temple/ares.png | Bin 0 -> 86059 bytes .../static/images/gods_temple/ares_small.png | Bin 0 -> 6690 bytes .../images/gods_temple/artemis_small.png | Bin 0 -> 7199 bytes .../static/images/gods_temple/athena.png | Bin 0 -> 94310 bytes .../images/gods_temple/athena_small.png | Bin 0 -> 6883 bytes .../static/images/gods_temple/favor_bar.png | Bin 0 -> 6456 bytes .../static/images/gods_temple/fury_bar.png | Bin 0 -> 6525 bytes .../static/images/gods_temple/god_select.png | Bin 0 -> 1977 bytes .../static/images/gods_temple/hades.png | Bin 0 -> 99828 bytes .../static/images/gods_temple/hades_small.png | Bin 0 -> 7091 bytes .../static/images/gods_temple/hera.png | Bin 0 -> 80581 bytes .../static/images/gods_temple/hera_small.png | Bin 0 -> 6808 bytes .../static/images/gods_temple/none.png | Bin 0 -> 184492 bytes .../static/images/gods_temple/none_small.png | Bin 0 -> 10286 bytes .../static/images/gods_temple/poseidon.png | Bin 0 -> 103787 bytes .../images/gods_temple/poseidon_small.png | Bin 0 -> 7169 bytes .../static/images/gods_temple/resbar.png | Bin 0 -> 5704 bytes .../selection_column_fade_bottom.png | Bin 0 -> 1208 bytes .../gods_temple/selection_column_fade_top.png | Bin 0 -> 1219 bytes .../images/gods_temple/temple_slider_bg.png | Bin 0 -> 34544 bytes .../static/images/gods_temple/zeus.png | Bin 0 -> 95585 bytes .../static/images/gods_temple/zeus_small.png | Bin 0 -> 7036 bytes src/main/resources/static/images/info/00.png | Bin 0 -> 1835 bytes src/main/resources/static/images/info/03.png | Bin 0 -> 2027 bytes src/main/resources/static/images/info/20.png | Bin 0 -> 1697 bytes src/main/resources/static/images/info/33.png | Bin 0 -> 2351 bytes src/main/resources/static/images/info/44.png | Bin 0 -> 119 bytes .../static/images/info/att_distance.png | Bin 0 -> 1807 bytes .../resources/static/images/info/att_hack.png | Bin 0 -> 1574 bytes .../static/images/info/att_pierce.png | Bin 0 -> 1672 bytes .../static/images/info/colonization.png | Bin 0 -> 991 bytes .../static/images/info/def_distance.png | Bin 0 -> 2513 bytes .../resources/static/images/info/def_hack.png | Bin 0 -> 2341 bytes .../static/images/info/def_pierce.png | Bin 0 -> 2384 bytes .../resources/static/images/info/flying.png | Bin 0 -> 2051 bytes .../static/images/info/function_def.png | Bin 0 -> 2254 bytes .../static/images/info/function_off.png | Bin 0 -> 2006 bytes .../images/info/mythological_ground.png | Bin 0 -> 2133 bytes .../static/images/info/mythological_naval.png | Bin 0 -> 1993 bytes src/main/resources/static/images/info/pop.png | Bin 0 -> 1781 bytes .../static/images/info/regular_ground.png | Bin 0 -> 1820 bytes .../static/images/info/regular_naval.png | Bin 0 -> 1680 bytes .../static/images/info/self_destruct.png | Bin 0 -> 2046 bytes .../static/images/info/ship_attack.png | Bin 0 -> 1667 bytes .../static/images/info/ship_capacity.png | Bin 0 -> 2092 bytes .../static/images/info/ship_defense.png | Bin 0 -> 2367 bytes .../resources/static/images/info/speed.png | Bin 0 -> 1195 bytes .../static/images/info/wall_destruct.png | Bin 0 -> 1953 bytes src/main/resources/static/images/slider1.png | Bin 0 -> 1694 bytes src/main/resources/static/images/slider2.png | Bin 0 -> 1744 bytes src/main/resources/static/images/slider3.png | Bin 0 -> 1750 bytes .../resources/static/images/sliderButton.png | Bin 0 -> 1538 bytes .../static/images/units/achilles.png | Bin 0 -> 20721 bytes .../static/images/units/agamemnon.png | Bin 0 -> 18870 bytes .../resources/static/images/units/ajax.png | Bin 0 -> 20382 bytes .../static/images/units/alexandrios.png | Bin 0 -> 19608 bytes .../static/images/units/andromeda.png | Bin 0 -> 22345 bytes .../resources/static/images/units/anysia.png | Bin 0 -> 21925 bytes .../static/images/units/apheldes.png | Bin 0 -> 18560 bytes .../resources/static/images/units/archer.png | Bin 0 -> 20491 bytes .../resources/static/images/units/argus.png | Bin 0 -> 21127 bytes .../static/images/units/aristotle.png | Bin 0 -> 19966 bytes .../static/images/units/atalante.png | Bin 0 -> 20477 bytes .../static/images/units/attack_ship.png | Bin 0 -> 21391 bytes .../static/images/units/big_transporter.png | Bin 0 -> 20889 bytes .../resources/static/images/units/bireme.png | Bin 0 -> 21267 bytes .../static/images/units/calydonian_boar.png | Bin 0 -> 20231 bytes .../static/images/units/catapult.png | Bin 0 -> 21465 bytes .../resources/static/images/units/centaur.png | Bin 0 -> 23198 bytes .../static/images/units/cerberus.png | Bin 0 -> 20020 bytes .../resources/static/images/units/chariot.png | Bin 0 -> 23813 bytes .../resources/static/images/units/cheiron.png | Bin 0 -> 20578 bytes .../static/images/units/christopholus.png | Bin 0 -> 20041 bytes .../static/images/units/colonize_ship.png | Bin 0 -> 21506 bytes .../static/images/units/daidalos.png | Bin 0 -> 18714 bytes .../resources/static/images/units/deimos.png | Bin 0 -> 19867 bytes .../static/images/units/democritus.png | Bin 0 -> 21260 bytes .../static/images/units/demolition_ship.png | Bin 0 -> 20146 bytes .../static/images/units/deryntes.png | Bin 0 -> 17660 bytes .../static/images/units/ephialtes.png | Bin 0 -> 18103 bytes .../resources/static/images/units/eurybia.png | Bin 0 -> 20760 bytes .../resources/static/images/units/ferkyon.png | Bin 0 -> 17942 bytes .../resources/static/images/units/fury.png | Bin 0 -> 23040 bytes .../resources/static/images/units/godsent.png | Bin 0 -> 21418 bytes .../resources/static/images/units/griffin.png | Bin 0 -> 22919 bytes .../resources/static/images/units/harpy.png | Bin 0 -> 22090 bytes .../resources/static/images/units/hector.png | Bin 0 -> 22285 bytes .../resources/static/images/units/helen.png | Bin 0 -> 20063 bytes .../static/images/units/hercules.png | Bin 0 -> 21319 bytes .../resources/static/images/units/hoplite.png | Bin 0 -> 19799 bytes .../resources/static/images/units/iason.png | Bin 0 -> 18655 bytes .../resources/static/images/units/ladon.png | Bin 0 -> 23172 bytes .../static/images/units/leonidas.png | Bin 0 -> 18070 bytes .../resources/static/images/units/lysippe.png | Bin 0 -> 21325 bytes .../static/images/units/manticore.png | Bin 0 -> 24094 bytes .../resources/static/images/units/medea.png | Bin 0 -> 18421 bytes .../resources/static/images/units/medusa.png | Bin 0 -> 24535 bytes .../resources/static/images/units/melousa.png | Bin 0 -> 14975 bytes .../resources/static/images/units/mihalis.png | Bin 0 -> 19352 bytes .../resources/static/images/units/militia.png | Bin 0 -> 23994 bytes .../static/images/units/minotaur.png | Bin 0 -> 23211 bytes .../static/images/units/odysseus.png | Bin 0 -> 22006 bytes .../resources/static/images/units/orphee.png | Bin 0 -> 19779 bytes .../static/images/units/pariphaistes.png | Bin 0 -> 19370 bytes .../resources/static/images/units/pegasus.png | Bin 0 -> 23248 bytes .../resources/static/images/units/pelops.png | Bin 0 -> 20367 bytes .../resources/static/images/units/perseus.png | Bin 0 -> 18227 bytes .../static/images/units/philoctetes.png | Bin 0 -> 20369 bytes .../resources/static/images/units/rekonos.png | Bin 0 -> 18899 bytes .../resources/static/images/units/rider.png | Bin 0 -> 23457 bytes .../resources/static/images/units/satyr.png | Bin 0 -> 21629 bytes .../static/images/units/sea_monster.png | Bin 0 -> 23809 bytes .../resources/static/images/units/siren.png | Bin 0 -> 20113 bytes .../resources/static/images/units/slinger.png | Bin 0 -> 20463 bytes .../static/images/units/small_transporter.png | Bin 0 -> 20820 bytes .../resources/static/images/units/spartoi.png | Bin 0 -> 20686 bytes .../resources/static/images/units/sword.png | Bin 0 -> 21744 bytes .../static/images/units/telemachos.png | Bin 0 -> 21769 bytes .../resources/static/images/units/terylea.png | Bin 0 -> 19929 bytes .../static/images/units/themistokles.png | Bin 0 -> 17293 bytes .../resources/static/images/units/theseus.png | Bin 0 -> 16219 bytes .../resources/static/images/units/trireme.png | Bin 0 -> 21157 bytes .../resources/static/images/units/unknown.png | Bin 0 -> 13307 bytes .../static/images/units/unknown_hero.png | Bin 0 -> 12103 bytes .../static/images/units/unknown_naval.png | Bin 0 -> 14321 bytes .../resources/static/images/units/urephon.png | Bin 0 -> 18975 bytes .../resources/static/images/units/vedouma.png | Bin 0 -> 23017 bytes .../resources/static/images/units/xanthos.png | Bin 0 -> 20625 bytes .../static/images/units/ylestres.png | Bin 0 -> 19231 bytes .../resources/static/images/units/zuretha.png | Bin 0 -> 20079 bytes .../resources/static/images/units/zyklop.png | Bin 0 -> 22881 bytes src/main/resources/static/jquery-3.7.1.min.js | 2 + src/main/resources/templates/baseframe.html | 86 + src/main/resources/templates/optim.html | 1687 + src/main/resources/templates/optimizer.html | 216 + .../resources/templates/optimizerResult.html | 50 + .../greposimu/GrepoSimuApplicationTests.java | 13 + 158 files changed, 180284 insertions(+) create mode 100644 .gitignore create mode 100644 Dockerfile create mode 100644 build.gradle create mode 100644 settings.gradle create mode 100644 src/main/java/com/bernard/greposimu/GrepoSimu.java create mode 100644 src/main/java/com/bernard/greposimu/GrepoSimuApplication.java create mode 100644 src/main/java/com/bernard/greposimu/MainWebAppInitializer.java create mode 100644 src/main/java/com/bernard/greposimu/controller/GrepoSimuController.java create mode 100644 src/main/java/com/bernard/greposimu/engine/Optimizer.java create mode 100644 src/main/java/com/bernard/greposimu/engine/Registerar.java create mode 100644 src/main/java/com/bernard/greposimu/model/Dieu.java create mode 100644 src/main/java/com/bernard/greposimu/model/Heros.java create mode 100644 src/main/java/com/bernard/greposimu/model/OffDefStats.java create mode 100644 src/main/java/com/bernard/greposimu/model/Unite.java create mode 100644 src/main/resources/application.properties create mode 100644 src/main/resources/favicon.ico create mode 100644 src/main/resources/resources.sh create mode 100644 src/main/resources/static/favicon.ico create mode 100644 src/main/resources/static/game.css create mode 100644 src/main/resources/static/images/gods_temple/aphrodite.png create mode 100644 src/main/resources/static/images/gods_temple/aphrodite_small.png create mode 100644 src/main/resources/static/images/gods_temple/ares.png create mode 100644 src/main/resources/static/images/gods_temple/ares_small.png create mode 100644 src/main/resources/static/images/gods_temple/artemis_small.png create mode 100644 src/main/resources/static/images/gods_temple/athena.png create mode 100644 src/main/resources/static/images/gods_temple/athena_small.png create mode 100644 src/main/resources/static/images/gods_temple/favor_bar.png create mode 100644 src/main/resources/static/images/gods_temple/fury_bar.png create mode 100644 src/main/resources/static/images/gods_temple/god_select.png create mode 100644 src/main/resources/static/images/gods_temple/hades.png create mode 100644 src/main/resources/static/images/gods_temple/hades_small.png create mode 100644 src/main/resources/static/images/gods_temple/hera.png create mode 100644 src/main/resources/static/images/gods_temple/hera_small.png create mode 100644 src/main/resources/static/images/gods_temple/none.png create mode 100644 src/main/resources/static/images/gods_temple/none_small.png create mode 100644 src/main/resources/static/images/gods_temple/poseidon.png create mode 100644 src/main/resources/static/images/gods_temple/poseidon_small.png create mode 100644 src/main/resources/static/images/gods_temple/resbar.png create mode 100644 src/main/resources/static/images/gods_temple/selection_column_fade_bottom.png create mode 100644 src/main/resources/static/images/gods_temple/selection_column_fade_top.png create mode 100644 src/main/resources/static/images/gods_temple/temple_slider_bg.png create mode 100644 src/main/resources/static/images/gods_temple/zeus.png create mode 100644 src/main/resources/static/images/gods_temple/zeus_small.png create mode 100644 src/main/resources/static/images/info/00.png create mode 100644 src/main/resources/static/images/info/03.png create mode 100644 src/main/resources/static/images/info/20.png create mode 100644 src/main/resources/static/images/info/33.png create mode 100644 src/main/resources/static/images/info/44.png create mode 100644 src/main/resources/static/images/info/att_distance.png create mode 100644 src/main/resources/static/images/info/att_hack.png create mode 100644 src/main/resources/static/images/info/att_pierce.png create mode 100644 src/main/resources/static/images/info/colonization.png create mode 100644 src/main/resources/static/images/info/def_distance.png create mode 100644 src/main/resources/static/images/info/def_hack.png create mode 100644 src/main/resources/static/images/info/def_pierce.png create mode 100644 src/main/resources/static/images/info/flying.png create mode 100644 src/main/resources/static/images/info/function_def.png create mode 100644 src/main/resources/static/images/info/function_off.png create mode 100644 src/main/resources/static/images/info/mythological_ground.png create mode 100644 src/main/resources/static/images/info/mythological_naval.png create mode 100644 src/main/resources/static/images/info/pop.png create mode 100644 src/main/resources/static/images/info/regular_ground.png create mode 100644 src/main/resources/static/images/info/regular_naval.png create mode 100644 src/main/resources/static/images/info/self_destruct.png create mode 100644 src/main/resources/static/images/info/ship_attack.png create mode 100644 src/main/resources/static/images/info/ship_capacity.png create mode 100644 src/main/resources/static/images/info/ship_defense.png create mode 100644 src/main/resources/static/images/info/speed.png create mode 100644 src/main/resources/static/images/info/wall_destruct.png create mode 100644 src/main/resources/static/images/slider1.png create mode 100644 src/main/resources/static/images/slider2.png create mode 100644 src/main/resources/static/images/slider3.png create mode 100644 src/main/resources/static/images/sliderButton.png create mode 100644 src/main/resources/static/images/units/achilles.png create mode 100644 src/main/resources/static/images/units/agamemnon.png create mode 100644 src/main/resources/static/images/units/ajax.png create mode 100644 src/main/resources/static/images/units/alexandrios.png create mode 100644 src/main/resources/static/images/units/andromeda.png create mode 100644 src/main/resources/static/images/units/anysia.png create mode 100644 src/main/resources/static/images/units/apheldes.png create mode 100644 src/main/resources/static/images/units/archer.png create mode 100644 src/main/resources/static/images/units/argus.png create mode 100644 src/main/resources/static/images/units/aristotle.png create mode 100644 src/main/resources/static/images/units/atalante.png create mode 100644 src/main/resources/static/images/units/attack_ship.png create mode 100644 src/main/resources/static/images/units/big_transporter.png create mode 100644 src/main/resources/static/images/units/bireme.png create mode 100644 src/main/resources/static/images/units/calydonian_boar.png create mode 100644 src/main/resources/static/images/units/catapult.png create mode 100644 src/main/resources/static/images/units/centaur.png create mode 100644 src/main/resources/static/images/units/cerberus.png create mode 100644 src/main/resources/static/images/units/chariot.png create mode 100644 src/main/resources/static/images/units/cheiron.png create mode 100644 src/main/resources/static/images/units/christopholus.png create mode 100644 src/main/resources/static/images/units/colonize_ship.png create mode 100644 src/main/resources/static/images/units/daidalos.png create mode 100644 src/main/resources/static/images/units/deimos.png create mode 100644 src/main/resources/static/images/units/democritus.png create mode 100644 src/main/resources/static/images/units/demolition_ship.png create mode 100644 src/main/resources/static/images/units/deryntes.png create mode 100644 src/main/resources/static/images/units/ephialtes.png create mode 100644 src/main/resources/static/images/units/eurybia.png create mode 100644 src/main/resources/static/images/units/ferkyon.png create mode 100644 src/main/resources/static/images/units/fury.png create mode 100644 src/main/resources/static/images/units/godsent.png create mode 100644 src/main/resources/static/images/units/griffin.png create mode 100644 src/main/resources/static/images/units/harpy.png create mode 100644 src/main/resources/static/images/units/hector.png create mode 100644 src/main/resources/static/images/units/helen.png create mode 100644 src/main/resources/static/images/units/hercules.png create mode 100644 src/main/resources/static/images/units/hoplite.png create mode 100644 src/main/resources/static/images/units/iason.png create mode 100644 src/main/resources/static/images/units/ladon.png create mode 100644 src/main/resources/static/images/units/leonidas.png create mode 100644 src/main/resources/static/images/units/lysippe.png create mode 100644 src/main/resources/static/images/units/manticore.png create mode 100644 src/main/resources/static/images/units/medea.png create mode 100644 src/main/resources/static/images/units/medusa.png create mode 100644 src/main/resources/static/images/units/melousa.png create mode 100644 src/main/resources/static/images/units/mihalis.png create mode 100644 src/main/resources/static/images/units/militia.png create mode 100644 src/main/resources/static/images/units/minotaur.png create mode 100644 src/main/resources/static/images/units/odysseus.png create mode 100644 src/main/resources/static/images/units/orphee.png create mode 100644 src/main/resources/static/images/units/pariphaistes.png create mode 100644 src/main/resources/static/images/units/pegasus.png create mode 100644 src/main/resources/static/images/units/pelops.png create mode 100644 src/main/resources/static/images/units/perseus.png create mode 100644 src/main/resources/static/images/units/philoctetes.png create mode 100644 src/main/resources/static/images/units/rekonos.png create mode 100644 src/main/resources/static/images/units/rider.png create mode 100644 src/main/resources/static/images/units/satyr.png create mode 100644 src/main/resources/static/images/units/sea_monster.png create mode 100644 src/main/resources/static/images/units/siren.png create mode 100644 src/main/resources/static/images/units/slinger.png create mode 100644 src/main/resources/static/images/units/small_transporter.png create mode 100644 src/main/resources/static/images/units/spartoi.png create mode 100644 src/main/resources/static/images/units/sword.png create mode 100644 src/main/resources/static/images/units/telemachos.png create mode 100644 src/main/resources/static/images/units/terylea.png create mode 100644 src/main/resources/static/images/units/themistokles.png create mode 100644 src/main/resources/static/images/units/theseus.png create mode 100644 src/main/resources/static/images/units/trireme.png create mode 100644 src/main/resources/static/images/units/unknown.png create mode 100644 src/main/resources/static/images/units/unknown_hero.png create mode 100644 src/main/resources/static/images/units/unknown_naval.png create mode 100644 src/main/resources/static/images/units/urephon.png create mode 100644 src/main/resources/static/images/units/vedouma.png create mode 100644 src/main/resources/static/images/units/xanthos.png create mode 100644 src/main/resources/static/images/units/ylestres.png create mode 100644 src/main/resources/static/images/units/zuretha.png create mode 100644 src/main/resources/static/images/units/zyklop.png create mode 100644 src/main/resources/static/jquery-3.7.1.min.js create mode 100644 src/main/resources/templates/baseframe.html create mode 100644 src/main/resources/templates/optim.html create mode 100644 src/main/resources/templates/optimizer.html create mode 100644 src/main/resources/templates/optimizerResult.html create mode 100644 src/test/java/com/bernard/greposimu/GrepoSimuApplicationTests.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96c9519 --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +HELP.md +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### Gradle ### +gradle/ +gradlew +gradlew.bat + +### Eclipse ### +.settings/ +.project +.classpath + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c770b50 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM gradle:8.8-jdk17 AS builder + +COPY src/ ./src/ +COPY build.gradle settings.gradle ./ + +RUN gradle bootJar + +ENTRYPOINT java -jar build/libs/greposimu-0.0.1-SNAPSHOT.jar diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..7e72fc3 --- /dev/null +++ b/build.gradle @@ -0,0 +1,34 @@ +plugins { + id 'eclipse' + id 'java' + id 'war' + id 'org.springframework.boot' version '3.3.0' + id 'io.spring.dependency-management' version '1.1.5' +} + +group = 'com.bernard' +version = '0.0.1-SNAPSHOT' + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(17) + } +} + +repositories { + mavenCentral() +} + +dependencies { + implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' + implementation 'org.springframework.boot:spring-boot-starter-web' + developmentOnly 'org.springframework.boot:spring-boot-devtools' + testImplementation 'org.springframework.boot:spring-boot-starter-test' + + implementation 'org.yaml:snakeyaml:2.2' + implementation 'org.ojalgo:ojalgo:54.0.0' +} + +tasks.named('test') { + useJUnitPlatform() +} diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..ec3fc16 --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'greposimu' diff --git a/src/main/java/com/bernard/greposimu/GrepoSimu.java b/src/main/java/com/bernard/greposimu/GrepoSimu.java new file mode 100644 index 0000000..fe4d22f --- /dev/null +++ b/src/main/java/com/bernard/greposimu/GrepoSimu.java @@ -0,0 +1,61 @@ +package com.bernard.greposimu; + +import java.util.Arrays; +import java.util.Iterator; + +import com.bernard.greposimu.engine.Registerar; +import com.bernard.greposimu.model.Dieu; +import com.bernard.greposimu.model.Heros; +import com.bernard.greposimu.model.OffDefStats; + +public class GrepoSimu { + + + + public static void main(String[] args) { + Registerar.regiter(); + + System.out.println(Registerar.unites.size()); + OffDefStats scoring = new OffDefStats(0, 0, 0, 1.0, 0,0,0,0); + for(Heros h : withNull(Registerar.heros)) { + if(h!= null && h.getNom()!="Agamemnon")continue; + for(int l = 1;l<=20&&h!=null;l+=10-(l%10)) { + for(Dieu d : withNull(Arrays.asList(Dieu.values()))) { + + //System.out.println("Héros: "+((c.h==null)?"aucun":("%s (lvl %d)".formatted(h.getNom(),l)))+" - Dieu: "+((d==null)?"aucun":d.getNom())); + //up.print(h, l, 1000); + } + } + } + } + + + + + + public static final Iterable withNull(Iterable itrble) { + return (Iterable) new Iterable() { + @Override + public Iterator iterator() { + Iterator it = itrble.iterator(); + return new Iterator() { + boolean pastNull = false; + @Override + public boolean hasNext() { + return !pastNull || it.hasNext(); + } + + @Override + public T next() { + if(pastNull) + return it.next(); + else { + pastNull = true; + return null; + } + } + }; + }; + }; + } +} diff --git a/src/main/java/com/bernard/greposimu/GrepoSimuApplication.java b/src/main/java/com/bernard/greposimu/GrepoSimuApplication.java new file mode 100644 index 0000000..6745553 --- /dev/null +++ b/src/main/java/com/bernard/greposimu/GrepoSimuApplication.java @@ -0,0 +1,16 @@ +package com.bernard.greposimu; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +import com.bernard.greposimu.engine.Registerar; + +@SpringBootApplication +public class GrepoSimuApplication { + + public static void main(String[] args) { + Registerar.regiter(); + SpringApplication.run(GrepoSimuApplication.class, args); + } + +} diff --git a/src/main/java/com/bernard/greposimu/MainWebAppInitializer.java b/src/main/java/com/bernard/greposimu/MainWebAppInitializer.java new file mode 100644 index 0000000..1ef8d90 --- /dev/null +++ b/src/main/java/com/bernard/greposimu/MainWebAppInitializer.java @@ -0,0 +1,28 @@ +package com.bernard.greposimu; + +import org.springframework.web.WebApplicationInitializer; +import org.springframework.web.context.ContextLoaderListener; +import org.springframework.web.context.support.AnnotationConfigWebApplicationContext; +import org.springframework.web.context.support.GenericWebApplicationContext; +import org.springframework.web.servlet.DispatcherServlet; + +import jakarta.servlet.ServletContext; +import jakarta.servlet.ServletException; +import jakarta.servlet.ServletRegistration; + +public class MainWebAppInitializer implements WebApplicationInitializer { + @Override + public void onStartup(final ServletContext sc) throws ServletException { + + AnnotationConfigWebApplicationContext root = + new AnnotationConfigWebApplicationContext(); + + root.scan("com.bernard.greposimu"); + sc.addListener(new ContextLoaderListener(root)); + + ServletRegistration.Dynamic appServlet = + sc.addServlet("mvc", new DispatcherServlet(new GenericWebApplicationContext())); + appServlet.setLoadOnStartup(1); + appServlet.addMapping("/"); + } +} \ No newline at end of file diff --git a/src/main/java/com/bernard/greposimu/controller/GrepoSimuController.java b/src/main/java/com/bernard/greposimu/controller/GrepoSimuController.java new file mode 100644 index 0000000..20cfa16 --- /dev/null +++ b/src/main/java/com/bernard/greposimu/controller/GrepoSimuController.java @@ -0,0 +1,237 @@ +package com.bernard.greposimu.controller; +import java.util.Arrays; +import java.util.Comparator; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.function.Function; +import java.util.stream.Collectors; + +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.ModelAttribute; +import org.springframework.web.bind.annotation.PostMapping; + +import com.bernard.greposimu.engine.Optimizer; +import com.bernard.greposimu.engine.Optimizer.UnitesProportions; +import com.bernard.greposimu.engine.Registerar; +import com.bernard.greposimu.model.Dieu; +import com.bernard.greposimu.model.Heros; +import com.bernard.greposimu.model.OffDefStats; +import com.bernard.greposimu.model.Unite; + +@Controller +public class GrepoSimuController { + + @GetMapping("/optimizer") + public String greeting(Model model) { + model.addAttribute("heros", Registerar.heros); + + // Liste des unités + Map> godUnites = Registerar.unites.stream() + .filter(u -> u.getDieu() != null) + .collect(Collectors.groupingBy(u -> u.getDieu().getPname())); + List otherUnites = Registerar.unites.stream() + .filter(u -> u.getDieu() == null) + .collect(Collectors.toList()); + System.out.println(godUnites); + model.addAttribute("otherunites", otherUnites); + model.addAttribute("godunites", godUnites); + model.addAttribute("dieux", Arrays.stream(Dieu.values()).map(Dieu::getPname).collect(Collectors.toList())); + model.addAttribute("optinput", new OptimizerInput()); + return "optimizer"; + } + + @PostMapping("/optimizer") + public String greetingSubmit(@ModelAttribute OptimizerInput optinput, Model model) { + Optimizer.Contexte ctx = new Optimizer.Contexte(); + ctx.h = Registerar.getHeros(optinput.heros); + ctx.level = optinput.herosLvl; + ctx.scoring = optinput.getOffDefStats(); + ctx.d = null; + + Set unites = Registerar.unites.stream().filter(u -> optinput.unites.get(u.getPname())).collect(Collectors.toSet()); + + Map outputs = new HashMap<>(); + outputs.put("none", new OptimizerOutput(Optimizer.optimize(ctx,unites), ctx.h, ctx.level, optinput.population)); + for(Dieu d : Dieu.values()) { + ctx.d = d; + outputs.put(d.getPname(), new OptimizerOutput(Optimizer.optimize(ctx,unites), ctx.h, ctx.level, optinput.population)); + } + model.addAttribute("dieux", Arrays.stream(Dieu.values()).map(Dieu::getPname).collect(Collectors.toList())); + model.addAttribute("outputs", outputs); + model.addAttribute("requestedPop",optinput.population); + return "optimizerResult"; + } + + public static class OptimizerInput { + + public String heros = Registerar.heros.stream().map(Heros::getPname).min(Comparator.comparing(Function.identity())).get(); + public int herosLvl = 1; + + public double att_hack_proportion = 0.0; + public double att_pierce_proportion = 0.0; + public double att_distance_proportion = 0.0; + public double ship_attack_proportion = 0.0; + public double def_hack_proportion = 1.0; + public double def_pierce_proportion = 1.0; + public double def_distance_proportion = 1.0; + public double ship_defense_proportion = 1.0; + + public int population = 1000; + + public Map unites = Registerar.unites.stream().collect(Collectors.toMap(Unite::getPname, u -> true)); + + + + public String getHeros() { + return heros; + } + + public void setHeros(String heros) { + this.heros = heros; + } + + public int getHerosLvl() { + return herosLvl; + } + + public void setHerosLvl(int herosLvl) { + this.herosLvl = herosLvl; + } + + public double getAtt_hack_proportion() { + return att_hack_proportion; + } + + public void setAtt_hack_proportion(double att_hack_proportion) { + this.att_hack_proportion = att_hack_proportion; + } + + public double getAtt_pierce_proportion() { + return att_pierce_proportion; + } + + public void setAtt_pierce_proportion(double att_pierce_proportion) { + this.att_pierce_proportion = att_pierce_proportion; + } + + public double getAtt_distance_proportion() { + return att_distance_proportion; + } + + public void setAtt_distance_proportion(double att_distance_proportion) { + this.att_distance_proportion = att_distance_proportion; + } + + public double getShip_attack_proportion() { + return ship_attack_proportion; + } + + public void setShip_attack_proportion(double ship_attack_proportion) { + this.ship_attack_proportion = ship_attack_proportion; + } + + public double getDef_hack_proportion() { + return def_hack_proportion; + } + + public void setDef_hack_proportion(double def_hack_proportion) { + this.def_hack_proportion = def_hack_proportion; + } + + public double getDef_pierce_proportion() { + return def_pierce_proportion; + } + + public void setDef_pierce_proportion(double def_pierce_proportion) { + this.def_pierce_proportion = def_pierce_proportion; + } + + public double getDef_distance_proportion() { + return def_distance_proportion; + } + + public void setDef_distance_proportion(double def_distance_proportion) { + this.def_distance_proportion = def_distance_proportion; + } + + public double getShip_defense_proportion() { + return ship_defense_proportion; + } + + public void setShip_defense_proportion(double ship_defense_proportion) { + this.ship_defense_proportion = ship_defense_proportion; + } + + public int getPopulation() { + return population; + } + + public void setPopulation(int population) { + this.population = population; + } + + public Map getUnites() { + return unites; + } + + public void setUnites(Map unites) { + this.unites = unites; + } + + public OffDefStats getOffDefStats() { + return new OffDefStats(att_hack_proportion, att_pierce_proportion, att_distance_proportion, ship_attack_proportion, def_hack_proportion, def_pierce_proportion, def_distance_proportion, ship_defense_proportion); + } + + @Override + public String toString() { + return "OptimizerInput [heros=" + heros + ", herosLvl=" + herosLvl + ", att_hack_proportion=" + + att_hack_proportion + ", att_pierce_proportion=" + att_pierce_proportion + + ", att_distance_proportion=" + att_distance_proportion + ", ship_attack_proportion=" + + ship_attack_proportion + ", def_hack_proportion=" + def_hack_proportion + + ", def_pierce_proportion=" + def_pierce_proportion + ", def_distance_proportion=" + + def_distance_proportion + ", ship_defense_proportion=" + ship_defense_proportion + ", population=" + + population + ", unites=" + unites + "]"; + } + + + } + public static class OptimizerOutput { + OffDefStats total; + int totalpop; + List unites; + Map ucounts; + + public OptimizerOutput(UnitesProportions data, Heros h, int level, int pop) { + this.ucounts = new HashMap<>(data.getData().size()); + for(Unite u : data.getData().keySet()) + this.ucounts.put(u, (int) Math.floor((data.getData().get(u) * pop) / u.getPopulation())); + this.unites = Registerar.unites.stream().filter(u -> ucounts.containsKey(u)).toList(); + this.totalpop = this.ucounts.entrySet().stream().mapToInt(e -> e.getKey().getPopulation() * e.getValue()).sum(); + this.total = this.ucounts.entrySet().stream() + .map(e -> ((h==null)?e.getKey().getStats():h.applyToUnit(e.getKey(), level)).times(e.getValue())) + .reduce(OffDefStats.zero,(a,b) -> a.plus(b)); + } + + public OffDefStats getTotal() { + return total; + } + + public int getTotalpop() { + return totalpop; + } + + public Map getUcounts() { + return ucounts; + } + + public List getUnites() { + return unites; + } + + + } +} \ No newline at end of file diff --git a/src/main/java/com/bernard/greposimu/engine/Optimizer.java b/src/main/java/com/bernard/greposimu/engine/Optimizer.java new file mode 100644 index 0000000..f49f6c0 --- /dev/null +++ b/src/main/java/com/bernard/greposimu/engine/Optimizer.java @@ -0,0 +1,116 @@ +package com.bernard.greposimu.engine; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.function.Function; +import java.util.stream.Collectors; + +import org.ojalgo.optimisation.Expression; +import org.ojalgo.optimisation.ExpressionsBasedModel; +import org.ojalgo.optimisation.Optimisation; +import org.ojalgo.optimisation.Optimisation.Result; +import org.ojalgo.optimisation.Variable; + +import com.bernard.greposimu.model.Dieu; +import com.bernard.greposimu.model.Heros; +import com.bernard.greposimu.model.OffDefStats; +import com.bernard.greposimu.model.Unite; + +public class Optimizer { + + public static UnitesProportions optimize(Contexte c,Set uniteList) { + // Computing the stats of the unités in this context + Map stats = uniteList.stream() + .filter(u -> u.getDieu() == null || u.getDieu().equals(c.d)) + .collect(Collectors.toMap( + Function.identity(), + u -> (OffDefStats)((c.h==null)?u.getStats():c.h.applyToUnit(u, c.level)).div(u.getPopulation()) + )); + // Clean list of unités + List unites = stats.keySet().stream().sorted((u,v) -> u.getNom().compareTo(v.getNom())).toList(); + + // Création du modèle + ExpressionsBasedModel model = new ExpressionsBasedModel(); + // Variable à optimiser + Variable y = model.addVariable("y").weight(1.0); + // Création des variables correspondant aux proportions, elles ne sont pas «optimisées» (weight 0.0) et sont positives + List varz = new ArrayList<>(unites.size()); + for(Unite u : unites) { + Variable xi = model.addVariable(u.getNom()).weight(0.0); + model.addExpression().lower(0.0).set(xi, 1.0); // 0 <= x_i + varz.add(xi); + } + // Les proportions doivent être maximalement 1 (en pratique, 1, parce que croissante) + Expression esum = model.addExpression().upper(1.0); + // y doit se comparer à chaque somme suivant ce que le scoring précise + Expression eAttqCont = model.addExpression().lower(0.0).set(y, -c.scoring.getAttqCont()); // y <= sum(a_1_i * x_i) + Expression eAttqBlan = model.addExpression().lower(0.0).set(y, -c.scoring.getAttqBlan()); // y <= sum(a_1_i * x_i) + Expression eAttqJet = model.addExpression().lower(0.0).set(y, -c.scoring.getAttqJet() ); // y <= sum(a_1_i * x_i) + Expression eAttqNav = model.addExpression().lower(0.0).set(y, -c.scoring.getAttqNav() ); // y <= sum(a_1_i * x_i) + Expression eDefCont = model.addExpression().lower(0.0).set(y, -c.scoring.getDefCont() ); // y <= sum(a_1_i * x_i) + Expression eDefBlan = model.addExpression().lower(0.0).set(y, -c.scoring.getDefBlan() ); // y <= sum(a_1_i * x_i) + Expression eDefJet = model.addExpression().lower(0.0).set(y, -c.scoring.getDefJet() ); // y <= sum(a_1_i * x_i) + Expression eDefNav = model.addExpression().lower(0.0).set(y, -c.scoring.getDefNav() ); // y <= sum(a_1_i * x_i) + + for(int i=0;i data; + + public UnitesProportions(List unites, Optimisation.Result result) { + this.data = new HashMap<>(); + for(int i=0;i=0.0001) { + this.data.put(unites.get(i), val); + } + } + } + + public void print(Heros h, int level, int pop) { + Map ucounts = new HashMap<>(data.size()); + for(Unite u : data.keySet()) + ucounts.put(u, (int) Math.floor((data.get(u) * pop) / u.getPopulation())); + int totalpop = ucounts.entrySet().stream().mapToInt(e -> e.getKey().getPopulation() * e.getValue()).sum(); + OffDefStats t = ucounts.entrySet().stream() + .map(e -> h.applyToUnit(e.getKey(), level).times(e.getValue())) + .reduce(OffDefStats.zero,(a,b) -> a.plus(b)); + System.out.println("Population totale de %d".formatted(totalpop)); + for(Unite u : data.keySet()) + System.out.println("|-- %d %s (%.1f%% de la population)".formatted(ucounts.get(u),u.getNom(),data.get(u)*100)); + System.out.println("--- Attaque (%d,%d,%d,%d) Défense (%d,%d,%d,%d)".formatted( + (int)t.getAttqCont(),(int)t.getAttqBlan(),(int)t.getAttqJet(),(int)t.getAttqNav(),(int)t.getDefCont(),(int)t.getDefBlan(),(int)t.getDefJet(),(int)t.getDefNav() + )); + + + } + + public Map getData() { + return data; + } + } + + public static class Contexte { + public Dieu d; + public Heros h; + public int level; + public OffDefStats scoring; + } +} diff --git a/src/main/java/com/bernard/greposimu/engine/Registerar.java b/src/main/java/com/bernard/greposimu/engine/Registerar.java new file mode 100644 index 0000000..88396a0 --- /dev/null +++ b/src/main/java/com/bernard/greposimu/engine/Registerar.java @@ -0,0 +1,114 @@ +package com.bernard.greposimu.engine; + +import java.util.ArrayList; +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; + +import com.bernard.greposimu.model.Dieu; +import com.bernard.greposimu.model.Heros; +import com.bernard.greposimu.model.OffDefStats; +import com.bernard.greposimu.model.Unite; + +public class Registerar { + public static List unites; + public static List heros; + + public static Heros getHeros(String pname) { + return heros.stream().filter(h -> h.getPname().equals(pname)).findAny().orElse(null); + } + public static List getUnites(Dieu dieu) { + return unites.stream().filter(u -> u.getDieu() == null || u.getDieu().equals(dieu)).collect(Collectors.toList()); + } + + public static void addHeros( + String nom, + String pname, + Set appliedToNames, + boolean appTerrestre, + boolean appNavale, + boolean appMythique, + double attqContZero, + double attqContPlus, + double attqBlanZero, + double attqBlanPlus, + double attqJetZero, + double attqJetPlus, + double attqNavZero, + double attqNavPlus, + double defContZero, + double defContPlus, + double defBlanZero, + double defBlanPlus, + double defJetZero, + double defJetPlus, + double defNavZero, + double defNavPlus) { + heros.add(new Heros( + nom, pname, appliedToNames, appTerrestre, appNavale, appMythique, + new OffDefStats(attqContZero, attqBlanZero, attqJetZero, attqNavZero, defContZero, defBlanZero, defJetZero, defNavZero), + new OffDefStats(attqContPlus, attqBlanPlus, attqJetPlus, attqNavPlus, defContPlus, defBlanPlus, defJetPlus, defNavPlus) + )); + } + + public static void addUnite(String nom, String pname, int population, int speed, int butin, double attqCont, double attqBlan, double attqJet, double attqNav, double defCont, double defBlan, + double defJet, double defNav, boolean terrestre, boolean navale, + boolean mythique, Dieu dieu) { + unites.add(new Unite( + nom, pname, population, speed, butin, + new OffDefStats(attqCont, attqBlan, attqJet, attqNav, defCont, defBlan, defJet, defNav), + terrestre, navale, mythique, dieu + )); + } + + + + public static void regiter() { + unites = new ArrayList(); + addUnite("Combattant à l'épée","sword",1,8,16,5.0,0.0,0.0,0.0,14.0,8.0,30.0,0.0,true,false,false,null); + addUnite("Frondeur","slinger",1,14,8,0.0,0.0,23.0,0.0,7.0,8.0,2.0,0.0,true,false,false,null); + addUnite("Archer","archer",1,12,24,0.0,0.0,8.0,0.0,7.0,25.0,13.0,0.0,true,false,false,null); + addUnite("Hoplite","hoplite",1,6,8,0.0,16.0,0.0,0.0,18.0,12.0,7.0,0.0,true,false,false,null); + addUnite("Cavalier","rider",3,22,72,60.0,0.0,0.0,0.0,18.0,1.0,24.0,0.0,true,false,false,null); + addUnite("Char","chariot",4,18,64,0.0,56.0,0.0,0.0,76.0,16.0,56.0,0.0,true,false,false,null); + addUnite("Catapulte","catapult",15,2,400,0.0,0.0,100.0,0.0,30.0,30.0,30.0,0.0,true,false,false,null); + addUnite("Envoyé divin","godsent",3,16,5,45.0,0.0,0.0,0.0,40.0,40.0,40.0,0.0,true,false,true,null); + addUnite("Centaure","centaur",12,18,200,0.0,0.0,134.0,0.0,195.0,585.0,80.0,0.0,true,false,true,Dieu.ATHENA); + addUnite("Cerbère","cerberus",30,4,240,210.0,0.0,0.0,0.0,825.0,300.0,1575.0,0.0,true,false,true,Dieu.HADES); + addUnite("Cyclope","zyklop",40,8,320,0.0,0.0,1035.0,0.0,1050.0,10.0,1450.0,0.0,true,false,true,Dieu.POSEIDON); + addUnite("Érinye","fury",55,10,440,0.0,0.0,1700.0,0.0,460.0,460.0,595.0,0.0,true,false,true,Dieu.HADES); + addUnite("Méduse","medusa",18,6,400,0.0,425.0,0.0,0.0,480.0,345.0,290.0,0.0,true,false,true,Dieu.HERA); + addUnite("Minotaure","minotaur",30,10,480,650.0,0.0,0.0,0.0,750.0,330.0,640.0,0.0,true,false,true,Dieu.ZEUS); + addUnite("Sanglier","calydonian_boar",20,16,240,0.0,180.0,0.0,0.0,700.0,700.0,100.0,0.0,true,false,true,Dieu.ARTEMIS); + addUnite("Satyre","satyr",16,136,335,0.0,385.0,0.0,0.0,55.0,105.0,170.0,0.0,true,false,true,Dieu.APHRODITE); + addUnite("Sparte","spartoi",10,16,275,205.0,0.0,0.0,0.0,100.0,100.0,150.0,0.0,true,false,true,Dieu.ARES); + addUnite("Harpie","harpy",14,28,340,295.0,0.0,0.0,0.0,105.0,70.0,1.0,0.0,true,false,true,Dieu.HERA); + addUnite("Manticore","manticore",45,22,360,0.0,1010.0,0.0,0.0,170.0,225.0,505.0,0.0,true,false,true,Dieu.ZEUS); + addUnite("Pégase","pegasus",20,35,160,0.0,100.0,0.0,0.0,750.0,275.0,275.0,0.0,true,false,true,Dieu.ATHENA); + addUnite("Griffon","griffin",35,18,350,900.0,0.0,0.0,0.0,320.0,330.0,100.0,0.0,true,false,true,Dieu.ARTEMIS); + addUnite("Ladon","ladon",85,40,1000,0.0,0.0,1195.0,0.0,478.0,390.0,420.0,0.0,true,false,true,Dieu.ARES); + addUnite("Birème","bireme",8,15,0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,160.0,false,true,false,null); + addUnite("Bateau-feu","attack_ship",10,13,0,0.0,0.0,0.0,200.0,0.0,0.0,0.0,60.0,false,true,false,null); + addUnite("Trière","trireme",16,15,0,0.0,0.0,0.0,250.0,0.0,0.0,0.0,250.0,false,true,false,null); + addUnite("Hydre","sea_monster",50,8,0,0.0,0.0,0.0,1310.0,0.0,0.0,0.0,1400.0,false,false,true,Dieu.POSEIDON); + addUnite("Sirène","siren",16,22,0,0.0,0.0,0.0,180.0,0.0,0.0,0.0,170.0,false,false,true,Dieu.APHRODITE); + //addUnite("Ladon (max)","ladon",85000,40,1000,0.0,0.0,2988.0,0.0,478.0,390.0,420.0,0.0,true,false,true,Dieu.ARES); + + heros = new ArrayList(); + addHeros("Agamemnon","agamemnon",Set.of("hoplite","archer"),false,false,false,0.100,0.010,0.100,0.010,0.100,0.010,0.000,0.000,0.100,0.010,0.100,0.010,0.100,0.010,0.000,0.000); + addHeros("Ajax","ajax",Set.of("hoplites"),false,false,false,0.150,0.015,0.150,0.015,0.150,0.015,0.000,0.000,0.150,0.015,0.150,0.015,0.150,0.015,0.000,0.000); + addHeros("Alexandrios","alexandrios",Set.of("archers"),false,false,false,0.150,0.010,0.150,0.010,0.150,0.010,0.000,0.000,0.150,0.010,0.150,0.010,0.150,0.010,0.000,0.000); + addHeros("Déimos","deimos",Set.of(),true,true,true,0.050,0.005,0.050,0.005,0.050,0.005,0.050,0.005,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000); + addHeros("Hector","hector",Set.of("sword","slinger"),false,false,false,0.100,0.010,0.100,0.010,0.100,0.010,0.000,0.000,0.100,0.010,0.100,0.010,0.100,0.010,0.000,0.000); + addHeros("Lysippe","lysippe",Set.of("rider"),false,false,false,0.150,0.010,0.150,0.010,0.150,0.010,0.000,0.000,0.150,0.010,0.150,0.010,0.150,0.010,0.000,0.000); + addHeros("Léonidas","leonidas",Set.of(),true,true,true,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.050,0.005,0.050,0.005,0.050,0.005,0.050,0.005); + addHeros("Mihalis","mihalis",Set.of(),true,false,false,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.100,0.010,0.100,0.010,0.000,0.000,0.000,0.000); + addHeros("Médée","medea",Set.of("slinger"),false,false,false,0.150,0.015,0.150,0.015,0.150,0.015,0.000,0.000,0.150,0.015,0.150,0.015,0.150,0.015,0.000,0.000); + addHeros("Mélousa","melousa",Set.of("chariot"),false,false,false,0.150,0.010,0.150,0.010,0.150,0.010,0.000,0.000,0.150,0.010,0.150,0.010,0.150,0.010,0.000,0.000); + addHeros("Pélops","pelops",Set.of("hoplite","chariot"),false,false,false,0.100,0.010,0.100,0.010,0.100,0.010,0.000,0.000,0.100,0.010,0.100,0.010,0.100,0.010,0.000,0.000); + addHeros("Thémistocle","themistokles",Set.of("godsent","rider"),false,false,false,0.100,0.010,0.100,0.010,0.100,0.010,0.000,0.000,0.100,0.010,0.100,0.010,0.100,0.010,0.000,0.000); + addHeros("Télémaque","telemachos",Set.of("sword"),false,false,false,0.150,0.015,0.150,0.015,0.150,0.015,0.000,0.000,0.150,0.015,0.150,0.015,0.150,0.015,0.000,0.000); + addHeros("Urephon","urephon",Set.of(),false,false,true,0.050,0.005,0.050,0.005,0.050,0.005,0.050,0.005,0.050,0.005,0.050,0.005,0.050,0.005,0.050,0.005); + addHeros("Zuretha","zuretha",Set.of(),false,true,false,0.000,0.000,0.000,0.000,0.000,0.000,0.050,0.005,0.000,0.000,0.000,0.000,0.000,0.000,0.050,0.005); + } +} diff --git a/src/main/java/com/bernard/greposimu/model/Dieu.java b/src/main/java/com/bernard/greposimu/model/Dieu.java new file mode 100644 index 0000000..96c6f4c --- /dev/null +++ b/src/main/java/com/bernard/greposimu/model/Dieu.java @@ -0,0 +1,28 @@ +package com.bernard.greposimu.model; + +public enum Dieu { + ZEUS("Zeus","zeus"), + POSEIDON("Poséidon","poseidon"), + HERA("Héra","hera"), + ATHENA("Athéna","athena"), + HADES("Hadès","hades"), + ARTEMIS("Artémis","artemis"), + APHRODITE("Aphrodite","aphrodite"), + ARES("Arès","ares"); + + String nom; + String pname; + + Dieu(String nom,String pname){ + this.nom = nom; + this.pname = pname; + } + + public String getNom() { + return nom; + } + + public String getPname() { + return pname; + } +} diff --git a/src/main/java/com/bernard/greposimu/model/Heros.java b/src/main/java/com/bernard/greposimu/model/Heros.java new file mode 100644 index 0000000..411e73f --- /dev/null +++ b/src/main/java/com/bernard/greposimu/model/Heros.java @@ -0,0 +1,87 @@ +package com.bernard.greposimu.model; + +import java.util.Set; + +public class Heros { + String nom; + String pname; + + + Set appliedToNames; + boolean appTerrestre,appNavale,appMythique; + OffDefStats statsZero; + OffDefStats statsPlus; + + + + public Heros(String nom, String pname, Set appliedToNames, boolean appTerrestre, boolean appNavale, boolean appMythique, + OffDefStats statsZero, OffDefStats statsPlus) { + this.nom = nom; + this.pname = pname; + this.appliedToNames = appliedToNames; + this.appTerrestre = appTerrestre; + this.appNavale = appNavale; + this.appMythique = appMythique; + this.statsZero = statsZero; + this.statsPlus = statsPlus; + } + + + + public OffDefStats applyToUnit(Unite unite,int level) { + if((appTerrestre && unite.terrestre) || + (appNavale && unite.navale) || + (appMythique && unite.mythique) || + appliedToNames.contains(unite.pname)) { + return unite.stats.plus(unite.stats.prod(statsZero.plus(statsPlus.times(level)))); + } + return unite.stats; + } + + + + public String getNom() { + return nom; + } + + public String getPname() { + return pname; + } + + + public Set getAppliedToNames() { + return appliedToNames; + } + + + + public boolean isAppTerrestre() { + return appTerrestre; + } + + + + public boolean isAppNavale() { + return appNavale; + } + + + + public boolean isAppMythique() { + return appMythique; + } + + + + public OffDefStats getStatsZero() { + return statsZero; + } + + + + public OffDefStats getStatsPlus() { + return statsPlus; + } + + +} diff --git a/src/main/java/com/bernard/greposimu/model/OffDefStats.java b/src/main/java/com/bernard/greposimu/model/OffDefStats.java new file mode 100644 index 0000000..5565156 --- /dev/null +++ b/src/main/java/com/bernard/greposimu/model/OffDefStats.java @@ -0,0 +1,182 @@ +package com.bernard.greposimu.model; + +public class OffDefStats { + double att_hack; + double att_pierce; + double att_distance; + double ship_attack; + double def_hack; + double def_pierce; + double def_distance; + double ship_defense; + + + + public OffDefStats(double attqCont, double attqBlan, double attqJet, double attqNav, double defCont, double defBlan, + double defJet, double defNav) { + this.att_hack = attqCont; + this.att_pierce = attqBlan; + this.att_distance = attqJet; + this.ship_attack = attqNav; + this.def_hack = defCont; + this.def_pierce = defBlan; + this.def_distance = defJet; + this.ship_defense = defNav; + } + + public static final OffDefStats zero = new OffDefStats(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + + public OffDefStats plus(OffDefStats other) { + return new OffDefStats( + this.att_hack + other.att_hack, + this.att_pierce + other.att_pierce, + this.att_distance + other.att_distance , + this.ship_attack + other.ship_attack , + this.def_hack + other.def_hack , + this.def_pierce + other.def_pierce , + this.def_distance + other.def_distance , + this.ship_defense + other.ship_defense + ); + } + + public OffDefStats prod(OffDefStats other) { + return new OffDefStats( + this.att_hack * other.att_hack, + this.att_pierce * other.att_pierce, + this.att_distance * other.att_distance , + this.ship_attack * other.ship_attack , + this.def_hack * other.def_hack , + this.def_pierce * other.def_pierce , + this.def_distance * other.def_distance , + this.ship_defense * other.ship_defense + ); + } + + public OffDefStats times(int factor) { + return new OffDefStats( + this.att_hack * factor, + this.att_pierce * factor, + this.att_distance * factor, + this.ship_attack * factor, + this.def_hack * factor, + this.def_pierce * factor, + this.def_distance * factor, + this.ship_defense * factor + ); + } + public OffDefStats div(int factor) { + return new OffDefStats( + this.att_hack / factor, + this.att_pierce / factor, + this.att_distance / factor, + this.ship_attack / factor, + this.def_hack / factor, + this.def_pierce / factor, + this.def_distance / factor, + this.ship_defense / factor + ); + } + + public double getAttqCont() { + return att_hack; + } + + public void setAttqCont(double attqCont) { + this.att_hack = attqCont; + } + + public double getAttqBlan() { + return att_pierce; + } + + public void setAttqBlan(double attqBlan) { + this.att_pierce = attqBlan; + } + + public double getAttqJet() { + return att_distance; + } + + public void setAttqJet(double attqJet) { + this.att_distance = attqJet; + } + + public double getAttqNav() { + return ship_attack; + } + + public void setAttqNav(double attqNav) { + this.ship_attack = attqNav; + } + + public double getDefCont() { + return def_hack; + } + + public void setDefCont(double defCont) { + this.def_hack = defCont; + } + + public double getDefBlan() { + return def_pierce; + } + + public void setDefBlan(double defBlan) { + this.def_pierce = defBlan; + } + + public double getDefJet() { + return def_distance; + } + + public void setDefJet(double defJet) { + this.def_distance = defJet; + } + + public double getDefNav() { + return ship_defense; + } + + public void setDefNav(double defNav) { + this.ship_defense = defNav; + } + + public double getAtt_hack() { + return att_hack; + } + + public double getAtt_pierce() { + return att_pierce; + } + + public double getAtt_distance() { + return att_distance; + } + + public double getShip_attack() { + return ship_attack; + } + + public double getDef_hack() { + return def_hack; + } + + public double getDef_pierce() { + return def_pierce; + } + + public double getDef_distance() { + return def_distance; + } + + public double getShip_defense() { + return ship_defense; + } + + public static OffDefStats getZero() { + return zero; + } + + + +} diff --git a/src/main/java/com/bernard/greposimu/model/Unite.java b/src/main/java/com/bernard/greposimu/model/Unite.java new file mode 100644 index 0000000..cca1bc8 --- /dev/null +++ b/src/main/java/com/bernard/greposimu/model/Unite.java @@ -0,0 +1,74 @@ +package com.bernard.greposimu.model; + +public class Unite { + + String nom; + String pname; + + int population; + int speed; + + int butin; + OffDefStats stats; + + boolean terrestre,navale,mythique; + + Dieu dieu; + + public Unite(String nom, String pname, int population, int speed, int butin, OffDefStats stats, boolean terrestre, boolean navale, + boolean mythique, Dieu dieu) { + this.nom = nom; + this.pname = pname; + this.population = population; + this.speed = speed; + this.butin = butin; + this.stats = stats; + this.terrestre = terrestre; + this.navale = navale; + this.mythique = mythique; + this.dieu = dieu; + } + + public String getNom() { + return nom; + } + + public String getPname() { + return pname; + } + + public int getPopulation() { + return population; + } + + public int getSpeed() { + return speed; + } + + public int getButin() { + return butin; + } + + public OffDefStats getStats() { + return stats; + } + + public boolean isTerrestre() { + return terrestre; + } + + public boolean isNavale() { + return navale; + } + + public boolean isMythique() { + return mythique; + } + + public Dieu getDieu() { + return dieu; + } + + + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..c601b78 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,3 @@ +spring.application.name=GrepoSimu +spring.devtools.restart.pollInterval=10s +spring.mvc.favicon.enabled=false \ No newline at end of file diff --git a/src/main/resources/favicon.ico b/src/main/resources/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..8b6d18268e4e41f2f8b23fc4a9f438575ad44b09 GIT binary patch literal 1406 zcmZQzU}Ruq5D);-91Iz(3=Con3=A3!3=9Gc3=9ek5OD@PKwVv(A;3tQA=p@&A;MIe zA;w&qA>KlYA<Brrq0mX5q0&Q{p}^2DPHa3|)133j!KP&z-S1dhk&#& z3XsqQ0Y*j;3BkflOiYZ7j7(r4tf?u?%*@Qk$jHdY$IQ$O;R`4zF)}jBNkRB5f=Wsv zER2kdYAh@uc~(UOF;-SqMn(n(1`wakK${H&7*thN88kJ8*$vd$+1YuNVSElFXP-@bZHA;^N}sk}@(fAR5F+ P@gKxbNF;iAkje)DtgBs> literal 0 HcmV?d00001 diff --git a/src/main/resources/resources.sh b/src/main/resources/resources.sh new file mode 100644 index 0000000..c69a5fc --- /dev/null +++ b/src/main/resources/resources.sh @@ -0,0 +1,2 @@ +https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png +IFS=$'\n'; for k in $(cat /tmp/gods.json | jq "keys[]"); do width=$(cat /tmp/gods.json | jq ".[$k].width"); height=$(cat /tmp/gods.json | jq ".[$k].height"); top=$(cat /tmp/gods.json | jq ".[$k].background" | cut -d' ' -f3); left=$(cat /tmp/gods.json | jq ".[$k].background" | cut -d' ' -f4); convert -crop "${width:1:-3}x${height:1:-3}+${top:1:-2}+${left:1:-3}" /tmp/gods.png src/main/resources/static/gods_temple/${k:26:-1}.png; done diff --git a/src/main/resources/static/favicon.ico b/src/main/resources/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..8b6d18268e4e41f2f8b23fc4a9f438575ad44b09 GIT binary patch literal 1406 zcmZQzU}Ruq5D);-91Iz(3=Con3=A3!3=9Gc3=9ek5OD@PKwVv(A;3tQA=p@&A;MIe zA;w&qA>KlYA<Brrq0mX5q0&Q{p}^2DPHa3|)133j!KP&z-S1dhk&#& z3XsqQ0Y*j;3BkflOiYZ7j7(r4tf?u?%*@Qk$jHdY$IQ$O;R`4zF)}jBNkRB5f=Wsv zER2kdYAh@uc~(UOF;-SqMn(n(1`wakK${H&7*thN88kJ8*$vd$+1YuNVSElFXP-@bZHA;^N}sk}@(fAR5F+ P@gKxbNF;iAkje)DtgBs> literal 0 HcmV?d00001 diff --git a/src/main/resources/static/game.css b/src/main/resources/static/game.css new file mode 100644 index 0000000..64cc737 --- /dev/null +++ b/src/main/resources/static/game.css @@ -0,0 +1,177192 @@ +.layout_main_sprite .advisor_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -582px -118px; + width: 25px; + height: 25px; +} + +.layout_main_sprite .advisors { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -280px -524px; + width: 143px; + height: 44px; +} + +.layout_main_sprite .arrow_left_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -725px -152px; + width: 11px; + height: 32px; +} + +.layout_main_sprite .arrow_right_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -128px; + width: 11px; + height: 32px; +} + +.layout_main_sprite .attack_glow_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -244px; + width: 48px; + height: 48px; +} + +.layout_main_sprite .bp_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -418px -590px; + width: 144px; + height: 26px; +} + +.layout_main_sprite .bull_eye_buttons_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -319px; + width: 164px; + height: 111px; +} + +.layout_main_sprite .button_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -160px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .button_arrow_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -182px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .button_arrow_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -204px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .button_arrow_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .button_arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -14px -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .button_arrow_right_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -28px -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .button_arrow_right_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -42px -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .button_arrow_right_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -56px -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .button_glare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -65px; + width: 56px; + height: 19px; +} + +.layout_main_sprite .cancel { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -711px -436px; + width: 29px; + height: 30px; +} + +.layout_main_sprite .casted_powers_area_button_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -101px; + width: 7px; + height: 9px; +} + +.layout_main_sprite .casted_powers_area_button_left_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -110px; + width: 7px; + height: 9px; +} + +.layout_main_sprite .casted_powers_area_button_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -119px; + width: 7px; + height: 9px; +} + +.layout_main_sprite .casted_powers_area_button_right_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -128px; + width: 7px; + height: 9px; +} + +.layout_main_sprite .checkmark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -727px -578px; + width: 14px; + height: 13px; +} + +.layout_main_sprite .circle_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -84px; + width: 32px; + height: 33px; +} + +.layout_main_sprite .circle_button_checked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -84px; + width: 32px; + height: 33px; +} + +.layout_main_sprite .circle_button_city_overview { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -342px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .circle_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -117px; + width: 32px; + height: 33px; +} + +.layout_main_sprite .circle_button_island_view { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -342px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .circle_button_jump_to_coordinates { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -373px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .circle_button_jump_to_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -373px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .circle_button_logout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -404px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .circle_button_overview_map { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -404px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .circle_button_save_location { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -435px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .circle_button_settings { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -435px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .circle_button_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -716px -612px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .circle_button_small_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -582px -143px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .circle_button_small_audio_toggle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -582px -167px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .circle_button_small_audio_toggle_muted { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -455px -345px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .circle_button_small_color_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -455px -369px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .circle_button_small_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -455px -393px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .circle_button_small_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -581px -430px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .circle_button_small_wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -580px -479px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .circle_button_spells { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -466px; + width: 32px; + height: 31px; +} + +.layout_main_sprite .cities_cp_expanded { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -430px; + width: 207px; + height: 49px; +} + +.layout_main_sprite .city_groups_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -594px -212px; + width: 13px; + height: 16px; +} + +.layout_main_sprite .city_groups_conquer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -594px -239px; + width: 13px; + height: 16px; +} + +.layout_main_sprite .city_groups_islandquest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -594px -266px; + width: 13px; + height: 16px; +} + +.layout_main_sprite .city_groups_revolt_arising { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -122px -671px; + width: 13px; + height: 16px; +} + +.layout_main_sprite .city_groups_revolt_running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -135px -671px; + width: 13px; + height: 16px; +} + +.layout_main_sprite .city_groups_support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -148px -671px; + width: 13px; + height: 16px; +} + +.layout_main_sprite .coinsww_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -621px; + width: 144px; + height: 26px; +} + +.layout_main_sprite .container_hidden_slide_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -711px -466px; + width: 20px; + height: 17px; +} + +.layout_main_sprite .container_hidden_slide_button_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -584px -368px; + width: 20px; + height: 17px; +} + +.layout_main_sprite .container_hidden_slide_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -581px -454px; + width: 20px; + height: 17px; +} + +.layout_main_sprite .context_icon_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -326px -240px; + width: 118px; + height: 11px; +} + +.layout_main_sprite .context_icon_text { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -406px; + width: 118px; + height: 18px; +} + +.layout_main_sprite .coords_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -295px -479px; + width: 140px; + height: 41px; +} + +.layout_main_sprite .delete { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -278px; + width: 14px; + height: 14px; +} + +.layout_main_sprite .edit_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -292px; + width: 22px; + height: 23px; +} + +.layout_main_sprite .farm_popup_progress_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -294px -621px; + width: 65px; + height: 15px; +} + +.layout_main_sprite .farm_popup_progress_wrapper_expansion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -359px -621px; + width: 65px; + height: 15px; +} + +.layout_main_sprite .fp_expansion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -636px; + width: 59px; + height: 9px; +} + +.layout_main_sprite .fp_progress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -578px; + width: 59px; + height: 9px; +} + +.layout_main_sprite .gods_area_button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -444px -64px; + width: 26px; + height: 26px; +} + +.layout_main_sprite .gods_area_buttons_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -524px; + width: 138px; + height: 66px; +} + +.layout_main_sprite .gods_area_gods_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -212px; + width: 80px; + height: 88px; +} + +.layout_main_sprite .gods_favor_amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -501px -430px; + width: 80px; + height: 41px; +} + +.layout_main_sprite .gods_favor_fury_amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -300px; + width: 118px; + height: 41px; +} + +.layout_main_sprite .gods_overlayer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -326px -128px; + width: 145px; + height: 112px; +} + +.layout_main_sprite .gods_overlayer_fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -164px -319px; + width: 144px; + height: 111px; +} + +.layout_main_sprite .gods_overlayer_fury_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -118px; + width: 94px; + height: 94px; +} + +.layout_main_sprite .gods_spells_menu_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -134px -590px; + width: 142px; + height: 28px; +} + +.layout_main_sprite .gods_spells_menu_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -313px; + width: 138px; + height: 6px; +} + +.layout_main_sprite .gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -128px; + width: 181px; + height: 127px; +} + +.layout_main_sprite .gold_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -292px; + width: 48px; + height: 48px; +} + +.layout_main_sprite .gold_button_idle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -340px; + width: 48px; + height: 48px; +} + +.layout_main_sprite .gold_button_orange_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -647px; + width: 128px; + height: 24px; +} + +.layout_main_sprite .gold_button_orange_idle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -128px -647px; + width: 128px; + height: 24px; +} + +.layout_main_sprite .gold_button_orange_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -256px -647px; + width: 128px; + height: 24px; +} + +.layout_main_sprite .gold_button_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -388px; + width: 48px; + height: 48px; +} + +.layout_main_sprite .grepolisscore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -352px -430px; + width: 149px; + height: 46px; +} + +.layout_main_sprite .grepolisscore_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -117px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .grepolisscore_button_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -150px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .grepolisscore_button_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -150px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .inventory_amount_badge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -444px -90px; + width: 26px; + height: 26px; +} + +.layout_main_sprite .leaves_type1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -341px; + width: 70px; + height: 65px; +} + +.layout_main_sprite .leaves_type2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px 0; + width: 64px; + height: 65px; +} + +.layout_main_sprite .leaves_type3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -485px; + width: 30px; + height: 65px; +} + +.layout_main_sprite .leaves_type4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -436px; + width: 40px; + height: 49px; +} + +.layout_main_sprite .leaves_type5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px 0; + width: 71px; + height: 52px; +} + +.layout_main_sprite .leaves_type6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -52px; + width: 70px; + height: 49px; +} + +.layout_main_sprite .map_coordinates_widget { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -592px; + width: 69px; + height: 20px; +} + +.layout_main_sprite .map_coordinates_widget_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -659px -551px; + width: 12px; + height: 14px; +} + +.layout_main_sprite .map_coordinates_widget_button_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -226px; + width: 12px; + height: 14px; +} + +.layout_main_sprite .map_coordinates_widget_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -468px -621px; + width: 12px; + height: 14px; +} + +.layout_main_sprite .nui_left_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -128px; + width: 145px; + height: 191px; +} + +.layout_main_sprite .nui_main_menu_alliance_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -582px -191px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_allianceforum_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -384px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_allianceforum_icon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -408px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -435px -479px; + width: 145px; + height: 37px; +} + +.layout_main_sprite .nui_main_menu_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -182px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .nui_main_menu_button_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -182px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .nui_main_menu_button_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -214px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .nui_main_menu_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -214px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .nui_main_menu_button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -244px; + width: 20px; + height: 34px; +} + +.layout_main_sprite .nui_main_menu_button_wrapper_last { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -701px -485px; + width: 32px; + height: 36px; +} + +.layout_main_sprite .nui_main_menu_chat_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -432px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_chat_icon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -456px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -353px -255px; + width: 134px; + height: 34px; +} + +.layout_main_sprite .nui_main_menu_content_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -246px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .nui_main_menu_content_first { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -590px; + width: 134px; + height: 31px; +} + +.layout_main_sprite .nui_main_menu_domination_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -363px; + width: 22px; + height: 22px; +} + +.layout_main_sprite .nui_main_menu_first { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -423px -524px; + width: 130px; + height: 34px; +} + +.layout_main_sprite .nui_main_menu_forum_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -480px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_invite_friends_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -504px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_messages_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -528px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_olympus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -552px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_profile_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -576px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_ranking_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -600px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_reports_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -624px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_main_menu_slide_button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -612px; + width: 45px; + height: 24px; +} + +.layout_main_sprite .nui_main_menu_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -423px -558px; + width: 145px; + height: 8px; +} + +.layout_main_sprite .nui_main_menu_wonders_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -648px -647px; + width: 24px; + height: 21px; +} + +.layout_main_sprite .nui_right_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -430px; + width: 145px; + height: 94px; +} + +.layout_main_sprite .nui_toolbar_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -64px; + width: 444px; + height: 64px; +} + +.layout_main_sprite .nui_toolbar_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 0; + width: 488px; + height: 64px; +} + +.layout_main_sprite .nui_units_box_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -308px -420px; + width: 142px; + height: 9px; +} + +.layout_main_sprite .nui_units_box_bottom_ornament { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -276px -590px; + width: 142px; + height: 28px; +} + +.layout_main_sprite .nui_units_box_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -283px -313px; + width: 138px; + height: 6px; +} + +.layout_main_sprite .nui_units_box_unit_selected_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -550px; + width: 42px; + height: 42px; +} + +.layout_main_sprite .nui_units_time_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -353px -289px; + width: 133px; + height: 24px; +} + +.layout_main_sprite .nui_units_time_box_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -144px -621px; + width: 150px; + height: 22px; +} + +.layout_main_sprite .open_premium_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -246px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .open_premium_button_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -278px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .open_premium_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -278px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .open_premium_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -310px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .picomap_overlayer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -308px -319px; + width: 147px; + height: 101px; +} + +.layout_main_sprite .placeholder_table_cell_cross { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -713px -578px; + width: 14px; + height: 14px; +} + +.layout_main_sprite .plus_button_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -315px; + width: 22px; + height: 23px; +} + +.layout_main_sprite .plus_button_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -340px; + width: 22px; + height: 23px; +} + +.layout_main_sprite .premium_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -138px -524px; + width: 142px; + height: 53px; +} + +.layout_main_sprite .quest_chest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -310px; + width: 32px; + height: 32px; +} + +.layout_main_sprite .quest_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -101px; + width: 63px; + height: 51px; +} + +.layout_main_sprite .quickbar_dropdown_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -731px -475px; + width: 9px; + height: 7px; +} + +.layout_main_sprite .quickbar_dropdown_indicator_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -733px -494px; + width: 9px; + height: 7px; +} + +.layout_main_sprite .quickbar_settings_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -424px -621px; + width: 22px; + height: 15px; +} + +.layout_main_sprite .quickbar_settings_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -446px -621px; + width: 22px; + height: 15px; +} + +.layout_main_sprite .research_button_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -161px -671px; + width: 13px; + height: 16px; +} + +.layout_main_sprite .resources_bar_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -208px; + width: 68px; + height: 36px; +} + +.layout_main_sprite .resources_bar_indicator_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -672px -647px; + width: 25px; + height: 20px; +} + +.layout_main_sprite .resources_bar_indicator_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -697px -647px; + width: 25px; + height: 20px; +} + +.layout_main_sprite .resources_bar_indicator_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -671px; + width: 25px; + height: 20px; +} + +.layout_main_sprite .resources_bar_indicator_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -25px -671px; + width: 25px; + height: 20px; +} + +.layout_main_sprite .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px 0; + width: 119px; + height: 118px; +} + +.layout_main_sprite .runtime_button_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -410px; + width: 23px; + height: 21px; +} + +.layout_main_sprite .slide_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -722px -647px; + width: 20px; + height: 17px; +} + +.layout_main_sprite .slide_button_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -50px -671px; + width: 20px; + height: 17px; +} + +.layout_main_sprite .slide_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -70px -671px; + width: 20px; + height: 17px; +} + +.layout_main_sprite .slide_button_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -725px -184px; + width: 17px; + height: 20px; +} + +.layout_main_sprite .slide_button_right_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -470px -64px; + width: 17px; + height: 20px; +} + +.layout_main_sprite .slide_button_right_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -470px -90px; + width: 17px; + height: 20px; +} + +.layout_main_sprite .sword_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -577px -524px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .temple_commands_attack_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -90px -671px; + width: 16px; + height: 16px; +} + +.layout_main_sprite .temple_commands_support_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -106px -671px; + width: 16px; + height: 16px; +} + +.layout_main_sprite .toolbar_activities_activity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -551px; + width: 26px; + height: 27px; +} + +.layout_main_sprite .toolbar_activities_attack_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -633px -551px; + width: 26px; + height: 27px; +} + +.layout_main_sprite .toolbar_activities_attack_indicator_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -568px -212px; + width: 26px; + height: 27px; +} + +.layout_main_sprite .toolbar_activities_commands { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -568px -239px; + width: 26px; + height: 27px; +} + +.layout_main_sprite .toolbar_activities_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -568px -266px; + width: 26px; + height: 27px; +} + +.layout_main_sprite .toolbar_activities_middle_activity_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -635px -525px; + width: 27px; + height: 26px; +} + +.layout_main_sprite .toolbar_activities_middle_divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -736px -152px; + width: 2px; + height: 27px; +} + +.layout_main_sprite .toolbar_activities_recruits { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -558px -341px; + width: 26px; + height: 27px; +} + +.layout_main_sprite .toolbar_activities_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -701px -521px; + width: 30px; + height: 27px; +} + +.layout_main_sprite .toolbar_activities_trades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -558px -368px; + width: 26px; + height: 27px; +} + +.layout_main_sprite .toolbar_activity_temple_commands { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -455px -319px; + width: 26px; + height: 26px; +} + +.layout_main_sprite .toolbar_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -733px -501px; + width: 9px; + height: 7px; +} + +.layout_main_sprite .toolbar_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -713px -550px; + width: 28px; + height: 28px; +} + +.layout_main_sprite .toolbar_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -466px; + width: 28px; + height: 28px; +} + +.layout_main_sprite .toolbar_icon_inventory { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -635px -497px; + width: 28px; + height: 26px; +} + +.layout_main_sprite .toolbar_icon_notepad { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -525px; + width: 28px; + height: 26px; +} + +.layout_main_sprite .toolbar_icon_premium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -497px; + width: 28px; + height: 28px; +} + +.layout_main_sprite .town_group_collapsed_group_name_toggle_group { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -733px -278px; + width: 9px; + height: 9px; +} + +.layout_main_sprite .town_group_group_name_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -731px -466px; + width: 9px; + height: 9px; +} + +.layout_main_sprite .town_group_group_name_toggle_group { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -733px -485px; + width: 9px; + height: 9px; +} + +.layout_main_sprite .town_groups_dropdown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -70px -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .town_groups_dropdown_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -84px -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .town_groups_dropdown_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -98px -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .town_groups_dropdown_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -112px -691px; + width: 14px; + height: 22px; +} + +.layout_main_sprite .town_name_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -255px; + width: 208px; + height: 58px; +} + +.layout_main_sprite .ui_box_layer_over_change_colors_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -137px; + width: 3px; + height: 5px; +} + +.layout_main_sprite .ui_heroes_hero_in_town_golden_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -590px; + width: 24px; + height: 24px; +} + +.layout_main_sprite .ui_heroes_hero_in_town_icon_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -388px; + width: 22px; + height: 22px; +} + +.layout_main_sprite .ui_heroes_overview_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -479px; + width: 150px; + height: 42px; +} + +.layout_main_sprite .ui_heroes_single_progressbar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -562px -590px; + width: 77px; + height: 24px; +} + +.layout_main_sprite .ui_heroes_tooltip_small_icon_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -152px; + width: 54px; + height: 56px; +} + +.layout_main_sprite .wounded_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -584px -341px; + width: 18px; + height: 23px; +} + +.nui_buttons .button_brown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +.nui_buttons .button_brown_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +.nui_buttons .button_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -50px; + width: 22px; + height: 23px; +} + +.nui_buttons .button_frame_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px -23px; + width: 12px; + height: 13px; +} + +.nui_buttons .minus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -50px; + width: 22px; + height: 23px; +} + +.nui_buttons .minus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -50px; + width: 22px; + height: 23px; +} + +.nui_buttons .minus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px 0; + width: 22px; + height: 23px; +} + +.nui_buttons .minus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -73px; + width: 22px; + height: 23px; +} + +.nui_buttons .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -73px; + width: 22px; + height: 23px; +} + +.nui_buttons .plus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -73px; + width: 22px; + height: 23px; +} + +.nui_buttons .plus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; +} + +.nui_buttons .plus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -73px; + width: 22px; + height: 23px; +} + +.mobile_layout .icon_attack_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -208px -54px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_attack_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -208px -91px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_island_quest_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 -162px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_island_quest_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -37px -162px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_revolt_arising_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -74px -162px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_revolt_arising_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -111px -162px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_revolt_conquer_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -148px -162px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_revolt_conquer_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -185px -162px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_revolt_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -222px -162px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_revolt_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 -199px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_support_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -37px -199px; + width: 37px; + height: 37px; +} + +.mobile_layout .icon_support_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -74px -199px; + width: 37px; + height: 37px; +} + +.mobile_layout .sortbuttons_arrows__green_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 0; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_arrows__green_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -52px 0; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_arrows__green_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -104px 0; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_arrows__green_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 -54px; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_cityname_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -52px -54px; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_cityname_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -104px -54px; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_cityname_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -156px 0; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_freepopulation_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -156px -54px; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_freepopulation_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 -108px; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_freepopulation_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -52px -108px; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_points_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -104px -108px; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_points_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -156px -108px; + width: 52px; + height: 54px; +} + +.mobile_layout .sortbuttons_points_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -208px 0; + width: 52px; + height: 54px; +} + +.circle_rewards.coins_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -70px 0; + width: 70px; + height: 70px; +} + +.circle_rewards.coins_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -70px -140px; + width: 70px; + height: 70px; +} + +.circle_rewards.culturelevel_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat 0 -70px; + width: 70px; + height: 70px; +} + +.circle_rewards.culturelevel_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -70px -70px; + width: 70px; + height: 70px; +} + +.circle_rewards.curator_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -140px 0; + width: 70px; + height: 70px; +} + +.circle_rewards.curator_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -140px -70px; + width: 70px; + height: 70px; +} + +.circle_rewards.hero_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat 0 -140px; + width: 70px; + height: 70px; +} + +.circle_rewards.hero_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat 0 0; + width: 70px; + height: 70px; +} + +.circle_rewards.hero_lysippe_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -140px -140px; + width: 70px; + height: 70px; +} + +.circle_rewards.hero_lysippe_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -210px 0; + width: 70px; + height: 70px; +} + +.circle_rewards.merchant_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -210px -70px; + width: 70px; + height: 70px; +} + +.circle_rewards.merchant_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -210px -140px; + width: 70px; + height: 70px; +} + +.circle_rewards.priest_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat 0 -210px; + width: 70px; + height: 70px; +} + +.circle_rewards.priest_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/circle_rewards_b46251d.png) no-repeat -70px -210px; + width: 70px; + height: 70px; +} + +.speechbubble .speechbubble_arrow_b { + background-position: -100px -52px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 26px; + height: 26px; +} + +.speechbubble .speechbubble_arrow_bl { + background-position: 0 -50px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 50px; + height: 50px; +} + +.speechbubble .speechbubble_arrow_br { + background-position: -50px 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 50px; + height: 50px; +} + +.speechbubble .speechbubble_arrow_l { + background-position: 0 -100px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 26px; + height: 26px; +} + +.speechbubble .speechbubble_arrow_r { + background-position: -100px 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 26px; + height: 26px; +} + +.speechbubble .speechbubble_arrow_t { + background-position: -100px -26px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 26px; + height: 26px; +} + +.speechbubble .speechbubble_arrow_tl { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 50px; + height: 50px; +} + +.speechbubble .speechbubble_arrow_tr { + background-position: -50px -50px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 50px; + height: 50px; +} + +.speechbubble .speechbubble_bl { + background-position: -26px -100px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 26px; + height: 26px; +} + +.speechbubble .speechbubble_br { + background-position: -52px -100px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 26px; + height: 26px; +} + +.speechbubble .speechbubble_tl { + background-position: -78px -100px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 26px; + height: 26px; +} + +.speechbubble .speechbubble_tr { + background-position: -126px 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/speechbubble_2.69.png); + background-repeat: no-repeat; + width: 26px; + height: 26px; +} + +.ww_trade_icon.trade_alexandria { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.ww_trade_icon.trade_artemis { + background-position: -32px 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.ww_trade_icon.trade_babylone { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.ww_trade_icon.trade_giza { + background-position: -32px -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.ww_trade_icon.trade_halicarnassus { + background-position: -64px 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.ww_trade_icon.trade_olympia { + background-position: -64px -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.ww_trade_icon.trade_rhodes { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.grepo_box_silver .armymono { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat 0 0; + width: 181px; + height: 65px; +} + +.grepo_box_silver .border_bbl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -237px -81px; + width: 115px; + height: 7px; +} + +.grepo_box_silver .border_bbr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -237px -88px; + width: 114px; + height: 7px; +} + +.grepo_box_silver .border_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -181px -106px; + width: 115px; + height: 3px; +} + +.grepo_box_silver .border_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -237px -95px; + width: 115px; + height: 3px; +} + +.grepo_box_silver .border_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -237px -101px; + width: 115px; + height: 3px; +} + +.grepo_box_silver .border_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -237px -98px; + width: 115px; + height: 3px; +} + +.grepo_box_silver .box_corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -237px -65px; + width: 17px; + height: 16px; +} + +.grepo_box_silver .box_corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -254px -65px; + width: 15px; + height: 16px; +} + +.grepo_box_silver .box_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -181px -65px; + width: 14px; + height: 41px; +} + +.grepo_box_silver .box_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -223px -65px; + width: 14px; + height: 41px; +} + +.grepo_box_silver .box_no_title_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -209px -65px; + width: 14px; + height: 41px; +} + +.grepo_box_silver .box_no_title_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -195px -65px; + width: 14px; + height: 41px; +} + +.grepo_box_silver .mythmono { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -181px 0; + width: 181px; + height: 65px; +} + +.grepo_box_silver .shipsmono { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat 0 -65px; + width: 181px; + height: 65px; +} + +.reports_spritesheet .catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -154px -224px; + width: 20px; + height: 20px; +} + +.reports_spritesheet .large_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat 0 0; + width: 76px; + height: 56px; +} + +.reports_spritesheet .large_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -76px 0; + width: 76px; + height: 56px; +} + +.reports_spritesheet .large_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat 0 -56px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .large_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -76px -56px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .large_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -152px 0; + width: 76px; + height: 56px; +} + +.reports_spritesheet .large_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -152px -56px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .large_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat 0 -112px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .large_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -76px -112px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .luck { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -174px -224px; + width: 20px; + height: 20px; +} + +.reports_spritesheet .morale { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -194px -224px; + width: 20px; + height: 20px; +} + +.reports_spritesheet .night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -214px -224px; + width: 20px; + height: 20px; +} + +.reports_spritesheet .olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -152px -112px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .smal_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat 0 -168px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .small_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -76px -168px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .small_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -152px -168px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .small_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -228px 0; + width: 76px; + height: 56px; +} + +.reports_spritesheet .small_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -228px -56px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .small_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -228px -112px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .small_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -228px -168px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .small_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat 0 -224px; + width: 76px; + height: 56px; +} + +.reports_spritesheet .stone_hail { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -234px -224px; + width: 20px; + height: 20px; +} + +.reports_spritesheet .trade_res_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -76px -224px; + width: 46px; + height: 46px; +} + +.reports_spritesheet .trade_res_bg_32x32 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -122px -224px; + width: 32px; + height: 32px; +} + +.reports_spritesheet .wall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -254px -224px; + width: 20px; + height: 20px; +} + +.bbcodes_sprite .bbcode_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat 0 0; + width: 207px; + height: 90px; +} + +.bbcodes_sprite .btn_alliance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -207px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_award { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -229px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_bold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -251px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -273px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -295px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_city_reservation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -317px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_color { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -339px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_font { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -361px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -383px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_island { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -405px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_italic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -427px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_link { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -449px -5px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -207px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_quote { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -229px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_report { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -251px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_score { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -405px -28px; + width: 22px; + height: 22px; +} + +.bbcodes_sprite .btn_size { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -273px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_spoiler { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -295px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_strikethrough { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -317px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_table { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -339px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -361px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .btn_underline { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -383px -28px; + width: 22px; + height: 23px; +} + +.bbcodes_sprite .horizontal_separator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -207px 0; + width: 283px; + height: 5px; +} + +.wide_buttons_sprite .arrow_left_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 0; + width: 52px; + height: 19px; +} + +.wide_buttons_sprite .arrow_left_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -19px; + width: 52px; + height: 19px; +} + +.wide_buttons_sprite .arrow_left_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px 0; + width: 52px; + height: 19px; +} + +.wide_buttons_sprite .arrow_left_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -19px; + width: 52px; + height: 19px; +} + +.wide_buttons_sprite .arrow_right_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -38px; + width: 52px; + height: 19px; +} + +.wide_buttons_sprite .arrow_right_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -38px; + width: 52px; + height: 19px; +} + +.wide_buttons_sprite .arrow_right_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -57px; + width: 52px; + height: 19px; +} + +.wide_buttons_sprite .arrow_right_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -57px; + width: 52px; + height: 19px; +} + +.check_box_sprite .check_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/checkbox/checkbox_35117c7.png) no-repeat 0 0; + width: 22px; + height: 23px; +} + +.check_box_sprite .check_box_checked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/checkbox/checkbox_35117c7.png) no-repeat -22px 0; + width: 22px; + height: 23px; +} + +.check_box_sprite .check_box_checked_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/checkbox/checkbox_35117c7.png) no-repeat -44px 0; + width: 22px; + height: 23px; +} + +.check_box_sprite .check_box_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/checkbox/checkbox_35117c7.png) no-repeat 0 -23px; + width: 22px; + height: 23px; +} + +.curtain_boxes .box_blue_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat 0 0; + width: 28px; + height: 90px; +} + +.curtain_boxes .box_blue_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -28px 0; + width: 28px; + height: 90px; +} + +.curtain_boxes .box_blue_curtain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -112px 0; + width: 335px; + height: 34px; +} + +.curtain_boxes .box_corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -112px -67px; + width: 3px; + height: 4px; +} + +.curtain_boxes .box_corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -115px -67px; + width: 3px; + height: 4px; +} + +.curtain_boxes .box_red_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -56px 0; + width: 28px; + height: 90px; +} + +.curtain_boxes .box_red_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -84px 0; + width: 28px; + height: 90px; +} + +.curtain_boxes .box_red_curtain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -112px -34px; + width: 335px; + height: 33px; +} + +.curtain_boxes .box_blue_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_topbar_e881b1e.png) no-repeat 0 0; + width: 1px; + height: 34px; +} + +.curtain_boxes .box_red_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_topbar_e881b1e.png) no-repeat 0 -34px; + width: 1px; + height: 34px; +} + +.large_banner_curtain .banner_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/large_banner_curtain_0ba6ebd.png) no-repeat 0 0; + width: 417px; + height: 157px; +} + +.large_banner_curtain .banner_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/large_banner_curtain_0ba6ebd.png) no-repeat 0 -157px; + width: 417px; + height: 157px; +} + +.curtain_box { + position: relative; + min-height: 94px; + min-width: 100px; +} + +.curtain_box .cb_corner_tl, +.curtain_box .cb_corner_tr { + width: 28px; + height: 90px; + position: absolute; + top: 0; + z-index: 2; +} + +.curtain_box .cb_corner_tl { + left: 0; +} + +.curtain_box .cb_corner_tr { + right: 0; +} + +.curtain_box .cb_corner_bl, +.curtain_box .cb_corner_br { + width: 3px; + height: 4px; + position: absolute; + bottom: 0; + z-index: 2; +} + +.curtain_box .cb_corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -852px -490px; + width: 3px; + height: 4px; + right: 14px; +} + +.curtain_box .cb_corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -855px -490px; + width: 3px; + height: 4px; + left: 14px; +} + +.curtain_box .cb_border_t { + z-index: 2; + position: absolute; + top: 9px; + left: 28px; + right: 28px; +} + +.curtain_box .cb_border_l, +.curtain_box .cb_border_r { + position: absolute; + top: 90px; + right: 14px; + bottom: 4px; + width: 3px; + background-image: url(https://gpfr.innogamescdn.com/images/game/common/curtain_boxes/box_ver_border.png); + background-repeat: repeat-y; + background-position: 0 0; + z-index: 2; +} + +.curtain_box .cb_border_l { + left: 14px; +} + +.curtain_box .cb_border_r { + right: 14px; +} + +.curtain_box .cb_border_b { + position: absolute; + bottom: 0; + left: 17px; + right: 17px; + height: 4px; + background-image: url(https://gpfr.innogamescdn.com/images/game/common/curtain_boxes/box_border_b.png); + background-repeat: repeat-x; + background-position: 0 0; + z-index: 2; +} + +.curtain_box .cb_title { + width: 335px; + height: 34px; + position: absolute; + top: 10px; + left: 50%; + margin-left: -167px; + text-align: center; + z-index: 3; + font-size: 12px; + line-height: 19px; +} + +.curtain_box .cb_content { + bottom: 0; + right: 15px; + z-index: 5; + padding: 28px 28px 10px 28px; +} + +.curtain_box .cb_bg { + bottom: 0; + right: 15px; + z-index: 5; + padding: 28px 28px 10px 28px; + z-index: 0; + background-color: #f6d590; + position: absolute; + top: 15px; + left: 15px; +} + +.curtain_box.blue .cb_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat 0 0; + width: 28px; + height: 90px; +} + +.curtain_box.blue .cb_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -28px 0; + width: 28px; + height: 90px; +} + +.curtain_box.blue .cb_title { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -112px 0; + width: 335px; + height: 34px; +} + +.curtain_box.blue .cb_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_topbar_e881b1e.png) no-repeat 0 0; + width: 1px; + height: 34px; + background-repeat: repeat-x; + width: auto; +} + +.curtain_box.red .cb_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -56px 0; + width: 28px; + height: 90px; +} + +.curtain_box.red .cb_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -84px 0; + width: 28px; + height: 90px; +} + +.curtain_box.red .cb_title { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_04cf2bf.png) no-repeat -112px -34px; + width: 335px; + height: 33px; +} + +.curtain_box.red .cb_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/curtain_boxes_topbar_e881b1e.png) no-repeat 0 -34px; + width: 1px; + height: 34px; + background-repeat: repeat-x; + width: auto; +} + +.drag_handle { + position: absolute; + display: none; +} + +.drag_handle.size_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -45px -96px; + width: 40px; + height: 40px; +} + +.drag_handle.size_40x40:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -85px -96px; + width: 40px; + height: 40px; +} + +.drag_handle.size_24x24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -141px -56px; + width: 24px; + height: 24px; +} + +.drag_handle.size_24x24:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -141px -80px; + width: 24px; + height: 24px; +} + +.trade_town_wrapper .drag_handle { + top: 7px; + right: 8px; +} + +.town_draggable .drag_handle { + top: 0; + right: 8px; +} + +.grepo_hybrid { + -webkit-text-size-adjust: none; +} + +.grepo_hybrid .classic_window .window_content, +.grepo_hybrid .column_window .window_content, +.grepo_hybrid .column_window>.content, +.grepo_hybrid .empty_window .window_content, +.grepo_hybrid .gp_window.classic_sub_window>.content, +.grepo_hybrid .ui-game-selectable { + -webkit-text-size-adjust: none; + -webkit-user-select: none; + -webkit-touch-callout: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.grepo_hybrid .trade_town_wrapper .gp_town_link { + max-width: 182px; +} + +.grepo_hybrid .town_draggable .town_name { + max-width: 182px; +} + +.grepo_hybrid .drag_handle { + display: block; +} + +.grepo_hybrid #message_messages .drag_handle, +.grepo_hybrid #report_reports .drag_handle { + top: 2px; +} + +.grepo_hybrid #message_messages #message_list li.ui-draggable .drag_handle, +.grepo_hybrid #report_reports #report_list li.ui-draggable .drag_handle { + display: block; +} + +.grepo_hybrid #message_messages #message_list li.ui-draggable .message_subject, +.grepo_hybrid #message_messages #message_list li.ui-draggable .report_subject, +.grepo_hybrid #report_reports #report_list li.ui-draggable .message_subject, +.grepo_hybrid #report_reports #report_list li.ui-draggable .report_subject { + margin-left: 26px; + width: 504px; +} + +.grepo_hybrid #message_messages #message_list li:not(.ui-draggable) .drag_handle, +.grepo_hybrid #report_reports #report_list li:not(.ui-draggable) .drag_handle { + display: none; +} + +.grepo_hybrid #wmap, +.grepo_hybrid .hercules2014_map, +.grepo_hybrid .ui_city_overview #index_map_image { + touch-action: pinch-zoom; + -ms-touch-action: pinch-zoom; +} + +.grepo_hybrid .town_group_town_info { + height: 45px; +} + +.grepo_hybrid .town_group_town_info .town_name { + max-width: 115px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.grepo_hybrid .town_group_town_info .info_bar { + height: 31px; +} + +.grepo_hybrid img#version { + position: relative; +} + +.grepo_hybrid .settings-menu li { + margin: 15px 0; +} + +.grepo_hybrid .ui_quickbar .container .option:hover .caption { + color: #ecb44d; +} + +.resources_small.all { + background-position: 0 -16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resources_small.all_with_gold { + background-position: 0 -80px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resources_small.battlepoints { + background-position: 0 -162px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 18px; + height: 17px; +} + +.resources_small.coinsofwar { + background-position: 0 -128px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 18px; + height: 17px; +} + +.resources_small.coinsofwisdom { + background-position: 0 -145px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 18px; + height: 17px; +} + +.resources_small.favor { + background-position: 0 -96px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resources_small.gold { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resources_small.iron { + background-position: 0 -48px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resources_small.population { + background-position: 0 -112px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resources_small.stone { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resources_small.wood { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resources.size30 .favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 -60px; + width: 30px; + height: 30px; +} + +.resources.size30 .fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -90px 0; + width: 30px; + height: 30px; +} + +.resources.size30 .gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -60px -30px; + width: 30px; + height: 30px; +} + +.resources.size30 .iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 0; + width: 30px; + height: 30px; +} + +.resources.size30 .population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -60px; + width: 30px; + height: 30px; +} + +.resources.size30 .stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px 0; + width: 30px; + height: 30px; +} + +.resources.size30 .storage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -60px -60px; + width: 30px; + height: 30px; +} + +.resources.size30 .time { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +.resources.size30 .unit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -60px 0; + width: 30px; + height: 30px; +} + +.resources.size30 .wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 -30px; + width: 30px; + height: 30px; +} + +.resources.size50 .all_resources { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +.resources.size50 .favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +.resources.size50 .fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat 0 -50px; + width: 50px; + height: 50px; +} + +.resources.size50 .iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -50px -50px; + width: 50px; + height: 50px; +} + +.resources.size50 .stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -100px 0; + width: 50px; + height: 50px; +} + +.resources.size50 .wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -100px -50px; + width: 50px; + height: 50px; +} + +.res22x16 { + position: relative; + overflow: visible; + vertical-align: middle; + display: inline-block; +} + +.res22x16.wood { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.res22x16.stone { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.res22x16.iron { + background-position: 0 -48px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.res22x16.population { + background-position: 0 -112px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.res22x16.gold { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.res22x16 .res_plenty, +.res22x16 .res_rare { + width: 10px; + height: 10px; + position: absolute; + top: -3px; + right: -3px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_deposit.png) no-repeat 0 0; +} + +.res22x16 .res_plenty { + background-position: 0 0; +} + +.res22x16 .res_rare { + background-position: 0 -10px; +} + +.column_red_curtain_window .border_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat 0 -246px; + width: 714px; + height: 23px; +} + +.column_red_curtain_window .border_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat 0 0; + width: 714px; + height: 51px; +} + +.column_red_curtain_window .flame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat 0 -51px; + width: 107px; + height: 195px; +} + +.column_red_curtain_window .header_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat -107px -51px; + width: 193px; + height: 88px; +} + +.column_red_curtain_window .header_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat -493px -51px; + width: 15px; + height: 88px; +} + +.column_red_curtain_window .header_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat -300px -51px; + width: 193px; + height: 88px; +} + +.column_window .header_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column/column_dd48c22.png) no-repeat 0 0; + width: 193px; + height: 50px; +} + +.column_window .header_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column/column_dd48c22.png) no-repeat 0 -50px; + width: 193px; + height: 50px; +} + +.table_box_single_images .border_l { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/single_images/border_l_7733919.png) no-repeat 0 0; + width: 7px; + height: 121px; +} + +.table_box_single_images .border_r { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/single_images/border_r_d5685e6.png) no-repeat 0 0; + width: 7px; + height: 121px; +} + +.table_box_single_images .separator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/single_images/separator_57920a0.png) no-repeat 0 0; + width: 115px; + height: 3px; +} + +.table_box_sprite .box_corner_l { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat 0 0; + width: 14px; + height: 15px; +} + +.table_box_sprite .box_corner_r { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat -14px 0; + width: 14px; + height: 15px; +} + +.table_box_sprite .box_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat -28px 0; + width: 14px; + height: 14px; +} + +.table_box_sprite .box_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat 0 -15px; + width: 14px; + height: 14px; +} + +.table_box { + display: inline-block; + position: relative; +} + +.table_box .border_b, +.table_box .border_bl, +.table_box .border_br, +.table_box .border_l, +.table_box .border_r, +.table_box .border_t, +.table_box .border_tl, +.table_box .border_tr { + position: absolute; + z-index: 1; +} + +.table_box .border_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat -14px 0; + width: 14px; + height: 15px; +} + +.table_box .border_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat 0 0; + width: 14px; + height: 15px; +} + +.table_box .border_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat 0 -15px; + width: 14px; + height: 14px; +} + +.table_box .border_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat -28px 0; + width: 14px; + height: 14px; +} + +.table_box .box_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat 0 -15px; + width: 14px; + height: 14px; +} + +.table_box .box_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/table_box_sprite_f86d0ad.png) no-repeat -28px 0; + width: 14px; + height: 14px; +} + +.table_box .border_l { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/single_images/border_l_7733919.png) no-repeat 0 0; + width: 7px; + height: 121px; + left: 0; +} + +.table_box .border_r, +.table_box .inner_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/single_images/border_r_d5685e6.png) no-repeat 0 0; + width: 7px; + height: 121px; + right: 0; +} + +.table_box .border_b, +.table_box .border_bl, +.table_box .border_br { + bottom: -2px; +} + +.table_box .border_t, +.table_box .border_tl, +.table_box .border_tr { + top: -2px; +} + +.table_box .border_br, +.table_box .border_tr { + right: -6px; +} + +.table_box .border_bl, +.table_box .border_tl { + left: -6px; +} + +.table_box .border_b, +.table_box .border_t { + width: 100%; + height: 5px; + left: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 -64px; +} + +.table_box .border_l, +.table_box .border_r { + height: 100%; +} + +.table_box .inner_border { + display: inline-block; + top: 0; + position: absolute; + height: 100%; + z-index: 1; +} + +.table_box .separator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/table_box/single_images/separator_57920a0.png) no-repeat 0 0; + width: 115px; + height: 3px; +} + +.table_box .banner_side_left, +.table_box .banner_side_right { + display: none; +} + +.table_box .table_box_content { + font-size: 0; + margin-right: 5px; + margin-left: 5px; +} + +.table_box .table_box_content .content_box { + display: inline-block; + min-width: 180px; + position: relative; + font-size: 14px; +} + +.table_box .table_box_content .content_box:last-child { + margin-right: -5px; +} + +.table_box .table_box_content .content_box:last-child .inner_border { + display: none; +} + +.table_box .table_box_content .content_box:last-child .separator { + margin-left: -5px; +} + +.table_box .table_box_content .head { + min-height: 40px; + position: relative; +} + +.table_box .table_box_content .body { + min-height: 60px; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat; + display: table; + width: 100%; +} + +.table_box .table_box_content .separator { + width: 100%; + background-repeat: repeat-x; +} + +.table_box .table_box_content .banner { + position: absolute; + top: 0; + left: 0; + width: 100%; + display: none; + margin-top: -4px; + margin-left: -3px; + z-index: 2; +} + +.table_box.with_banner .table_box_content { + text-align: left; +} + +.table_box.with_banner .table_box_content .banner { + display: table; +} + +.table_box.with_banner .table_box_content .banner .left, +.table_box.with_banner .table_box_content .banner .middle, +.table_box.with_banner .table_box_content .banner .right { + display: table-cell; +} + +.table_box.with_banner .table_box_content .banner .middle { + width: auto; + background-repeat: repeat-x; +} + +.table_box.with_banner .banner_side_left { + display: block; + z-index: 2; +} + +.table_box.with_banner .banner_side_right { + display: block; + z-index: 2; +} + +.table_box.with_banner.blue .banner_side_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/sprite_images/banner_f56bb32.png) no-repeat 0 -30px; + width: 12px; + height: 74px; + display: block; + position: absolute; + top: 5px; + left: -6px; +} + +.table_box.with_banner.blue .banner_side_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/sprite_images/banner_f56bb32.png) no-repeat -12px -30px; + width: 12px; + height: 74px; + display: block; + position: absolute; + top: 5px; + right: -6px; +} + +.table_box.with_banner.blue .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/sprite_images/banner_f56bb32.png) no-repeat 0 0; + width: 59px; + height: 30px; +} + +.table_box.with_banner.blue .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/sprite_images/banner_f56bb32.png) no-repeat -59px 0; + width: 59px; + height: 30px; +} + +.table_box.with_banner.blue .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/single_images/banner_blue_middle_b61baff.png) no-repeat 0 0; + width: 1px; + height: 30px; +} + +.city_overview_building.academy_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_0_8ac59e2.png) no-repeat 0 0; + width: 118px; + height: 71px; +} + +.city_overview_building.academy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_1_4f5ca2e.png) no-repeat 0 0; + width: 127px; + height: 71px; +} + +.city_overview_building.academy_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_1c_5688522.png) no-repeat 0 0; + width: 126px; + height: 73px; +} + +.city_overview_building.academy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_2_5e5bf04.png) no-repeat 0 0; + width: 124px; + height: 81px; +} + +.city_overview_building.academy_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_2c_95c9046.png) no-repeat 0 0; + width: 124px; + height: 81px; +} + +.city_overview_building.academy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_3_92ca080.png) no-repeat 0 0; + width: 150px; + height: 110px; +} + +.city_overview_building.academy_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_3c_d852532.png) no-repeat 0 0; + width: 152px; + height: 110px; +} + +.city_overview_building.academy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_4_6242e9e.png) no-repeat 0 0; + width: 150px; + height: 110px; +} + +.city_overview_building.academy_4c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/academy_4c_0c9b9d3.png) no-repeat 0 0; + width: 152px; + height: 110px; +} + +.city_overview_building.barracks_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/barracks_0_1a1d31b.png) no-repeat 0 0; + width: 188px; + height: 115px; +} + +.city_overview_building.barracks_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/barracks_1_b2e7284.png) no-repeat 0 0; + width: 161px; + height: 75px; +} + +.city_overview_building.barracks_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/barracks_1c_adfa3e7.png) no-repeat 0 0; + width: 161px; + height: 78px; +} + +.city_overview_building.barracks_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/barracks_2_eaf674e.png) no-repeat 0 0; + width: 169px; + height: 91px; +} + +.city_overview_building.barracks_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/barracks_2c_d70f562.png) no-repeat 0 0; + width: 169px; + height: 91px; +} + +.city_overview_building.barracks_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/barracks_3_b7775d3.png) no-repeat 0 0; + width: 181px; + height: 107px; +} + +.city_overview_building.barracks_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/barracks_3c_01c3a85.png) no-repeat 0 0; + width: 181px; + height: 107px; +} + +.city_overview_building.boat1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/boat1_69a302f.png) no-repeat 0 0; + width: 29px; + height: 20px; +} + +.city_overview_building.boat2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/boat2_83e8714.png) no-repeat 0 0; + width: 36px; + height: 21px; +} + +.city_overview_building.boat3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/boat3_bc35411.png) no-repeat 0 0; + width: 60px; + height: 44px; +} + +.city_overview_building.boat5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/boat5_1ba17a7.png) no-repeat 0 0; + width: 51px; + height: 50px; +} + +.city_overview_building.boat6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/boat6_a177df3.png) no-repeat 0 0; + width: 18px; + height: 10px; +} + +.city_overview_building.crop_circle_heart { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/crop_circle_heart_5a16e66.png) no-repeat 0 0; + width: 69px; + height: 37px; +} + +.city_overview_building.crop_circle_pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/crop_circle_pumpkin_9572269.png) no-repeat 0 0; + width: 63px; + height: 34px; +} + +.city_overview_building.crop_circle_ufo { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/crop_circle_ufo_6dc4e08.png) no-repeat 0 0; + width: 63px; + height: 40px; +} + +.city_overview_building.docks_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/docks_0_4417044.png) no-repeat 0 0; + width: 207px; + height: 125px; +} + +.city_overview_building.docks_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/docks_1_0f47c21.png) no-repeat 0 0; + width: 217px; + height: 110px; +} + +.city_overview_building.docks_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/docks_1c_42d192b.png) no-repeat 0 0; + width: 217px; + height: 110px; +} + +.city_overview_building.docks_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/docks_2_e716c43.png) no-repeat 0 0; + width: 220px; + height: 119px; +} + +.city_overview_building.docks_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/docks_2c_e773cfd.png) no-repeat 0 0; + width: 220px; + height: 119px; +} + +.city_overview_building.docks_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/docks_3_b54addb.png) no-repeat 0 0; + width: 216px; + height: 120px; +} + +.city_overview_building.docks_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/docks_3c_79f6c22.png) no-repeat 0 0; + width: 216px; + height: 120px; +} + +.city_overview_building.farm_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/farm_1c_dee77ea.png) no-repeat 0 0; + width: 194px; + height: 98px; +} + +.city_overview_building.farm_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/farm_2_cbe1924.png) no-repeat 0 0; + width: 189px; + height: 99px; +} + +.city_overview_building.farm_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/farm_2c_8c07b77.png) no-repeat 0 0; + width: 197px; + height: 109px; +} + +.city_overview_building.farm_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/farm_3_04270ac.png) no-repeat 0 0; + width: 186px; + height: 100px; +} + +.city_overview_building.farm_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/farm_3c_68a86e4.png) no-repeat 0 0; + width: 192px; + height: 108px; +} + +.city_overview_building.farm_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/farm_4_6d333ad.png) no-repeat 0 0; + width: 206px; + height: 100px; +} + +.city_overview_building.farm_4c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/farm_4c_09aadc6.png) no-repeat 0 0; + width: 206px; + height: 100px; +} + +.city_overview_building.field_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/field_2_9d745a9.png) no-repeat 0 0; + width: 136px; + height: 176px; +} + +.city_overview_building.field_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/field_3_efb50d2.png) no-repeat 0 0; + width: 211px; + height: 209px; +} + +.city_overview_building.hide { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/hide_58c1a4c.png) no-repeat 0 0; + width: 24px; + height: 27px; +} + +.city_overview_building.hide_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/hide_0_58c1a4c.png) no-repeat 0 0; + width: 24px; + height: 27px; +} + +.city_overview_building.houses_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/houses_2_a8dea3d.png) no-repeat 0 0; + width: 1386px; + height: 695px; +} + +.city_overview_building.houses_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/houses_3_269b317.png) no-repeat 0 0; + width: 1445px; + height: 717px; +} + +.city_overview_building.houses_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/houses_4_2c81b9d.png) no-repeat 0 0; + width: 1445px; + height: 717px; +} + +.city_overview_building.ironer_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/ironer_0_d39563e.png) no-repeat 0 0; + width: 89px; + height: 63px; +} + +.city_overview_building.ironer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/ironer_1_26652a5.png) no-repeat 0 0; + width: 87px; + height: 69px; +} + +.city_overview_building.ironer_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/ironer_1c_34a5d69.png) no-repeat 0 0; + width: 91px; + height: 70px; +} + +.city_overview_building.ironer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/ironer_2_f81f5b1.png) no-repeat 0 0; + width: 98px; + height: 70px; +} + +.city_overview_building.ironer_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/ironer_2c_5486740.png) no-repeat 0 0; + width: 98px; + height: 70px; +} + +.city_overview_building.ironer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/ironer_3_87fbdcb.png) no-repeat 0 0; + width: 105px; + height: 104px; +} + +.city_overview_building.ironer_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/ironer_3c_16adb38.png) no-repeat 0 0; + width: 105px; + height: 104px; +} + +.city_overview_building.library_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/library_0_011f28c.png) no-repeat 0 0; + width: 148px; + height: 92px; +} + +.city_overview_building.library_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/library_1_c5a720f.png) no-repeat 0 0; + width: 148px; + height: 95px; +} + +.city_overview_building.lighthouse_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lighthouse_0_11e92e4.png) no-repeat 0 0; + width: 117px; + height: 85px; +} + +.city_overview_building.lighthouse_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lighthouse_1_c1682f8.png) no-repeat 0 0; + width: 123px; + height: 110px; +} + +.city_overview_building.lumber_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lumber_0_585d754.png) no-repeat 0 0; + width: 108px; + height: 92px; +} + +.city_overview_building.lumber_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lumber_1_9d41ec1.png) no-repeat 0 0; + width: 75px; + height: 56px; +} + +.city_overview_building.lumber_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lumber_1c_d1075d0.png) no-repeat 0 0; + width: 75px; + height: 58px; +} + +.city_overview_building.lumber_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lumber_2_b484c3d.png) no-repeat 0 0; + width: 76px; + height: 55px; +} + +.city_overview_building.lumber_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lumber_2c_89a90d5.png) no-repeat 0 0; + width: 76px; + height: 56px; +} + +.city_overview_building.lumber_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lumber_3_b72168e.png) no-repeat 0 0; + width: 96px; + height: 90px; +} + +.city_overview_building.lumber_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/lumber_3c_ac1b0f8.png) no-repeat 0 0; + width: 81px; + height: 80px; +} + +.city_overview_building.main_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/main_1_e80633b.png) no-repeat 0 0; + width: 211px; + height: 122px; +} + +.city_overview_building.main_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/main_1c_1b10971.png) no-repeat 0 0; + width: 132px; + height: 64px; +} + +.city_overview_building.main_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/main_2_3732a9e.png) no-repeat 0 0; + width: 156px; + height: 94px; +} + +.city_overview_building.main_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/main_2c_73a3798.png) no-repeat 0 0; + width: 156px; + height: 100px; +} + +.city_overview_building.main_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/main_3_9d54c8e.png) no-repeat 0 0; + width: 211px; + height: 122px; +} + +.city_overview_building.main_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/main_3c_ede442f.png) no-repeat 0 0; + width: 205px; + height: 126px; +} + +.city_overview_building.market_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/market_0_717d978.png) no-repeat 0 0; + width: 143px; + height: 98px; +} + +.city_overview_building.market_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/market_1_0160e1b.png) no-repeat 0 0; + width: 76px; + height: 70px; +} + +.city_overview_building.market_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/market_1c_4ee1f63.png) no-repeat 0 0; + width: 76px; + height: 70px; +} + +.city_overview_building.market_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/market_2_4634442.png) no-repeat 0 0; + width: 119px; + height: 83px; +} + +.city_overview_building.market_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/market_2c_4cd7260.png) no-repeat 0 0; + width: 119px; + height: 83px; +} + +.city_overview_building.market_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/market_3_989e246.png) no-repeat 0 0; + width: 122px; + height: 92px; +} + +.city_overview_building.market_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/market_3c_6d03336.png) no-repeat 0 0; + width: 122px; + height: 92px; +} + +.city_overview_building.mill_static { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/mill_static_ac13567.png) no-repeat 0 0; + width: 56px; + height: 56px; +} + +.city_overview_building.oracle_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/oracle_0_20fbe7f.png) no-repeat 0 0; + width: 94px; + height: 62px; +} + +.city_overview_building.oracle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/oracle_1_c791bc0.png) no-repeat 0 0; + width: 92px; + height: 62px; +} + +.city_overview_building.place_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/place_1_18cfd00.png) no-repeat 0 0; + width: 1px; + height: 1px; +} + +.city_overview_building.ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/ship_1_25ab931.png) no-repeat 0 0; + width: 182px; + height: 134px; +} + +.city_overview_building.statue_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_0_0863e77.png) no-repeat 0 0; + width: 88px; + height: 59px; +} + +.city_overview_building.statue_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_1_0863e77.png) no-repeat 0 0; + width: 88px; + height: 59px; +} + +.city_overview_building.statue_aphrodite_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_aphrodite_0_d5b4ba5.png) no-repeat 0 0; + width: 115px; + height: 91px; +} + +.city_overview_building.statue_aphrodite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_aphrodite_1_b1b524e.png) no-repeat 0 0; + width: 100px; + height: 82px; +} + +.city_overview_building.statue_ares_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_ares_0_ffab49e.png) no-repeat 0 0; + width: 115px; + height: 91px; +} + +.city_overview_building.statue_ares_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_ares_1_4b1d205.png) no-repeat 0 0; + width: 100px; + height: 82px; +} + +.city_overview_building.statue_artemis_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_artemis_0_01b59f1.png) no-repeat 0 0; + width: 115px; + height: 91px; +} + +.city_overview_building.statue_artemis_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_artemis_1_f57dc60.png) no-repeat 0 0; + width: 100px; + height: 75px; +} + +.city_overview_building.statue_athena_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_athena_0_1a2d5af.png) no-repeat 0 0; + width: 127px; + height: 94px; +} + +.city_overview_building.statue_athena_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_athena_1_e0e68dc.png) no-repeat 0 0; + width: 101px; + height: 89px; +} + +.city_overview_building.statue_hades_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_hades_0_9098633.png) no-repeat 0 0; + width: 112px; + height: 91px; +} + +.city_overview_building.statue_hades_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_hades_1_7fc9f7f.png) no-repeat 0 0; + width: 101px; + height: 89px; +} + +.city_overview_building.statue_hera_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_hera_0_763a4a9.png) no-repeat 0 0; + width: 100px; + height: 78px; +} + +.city_overview_building.statue_hera_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_hera_1_fa97565.png) no-repeat 0 0; + width: 101px; + height: 75px; +} + +.city_overview_building.statue_poseidon_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_poseidon_0_e9af447.png) no-repeat 0 0; + width: 101px; + height: 93px; +} + +.city_overview_building.statue_poseidon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_poseidon_1_442aed8.png) no-repeat 0 0; + width: 101px; + height: 89px; +} + +.city_overview_building.statue_zeus_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_zeus_0_27ea672.png) no-repeat 0 0; + width: 99px; + height: 81px; +} + +.city_overview_building.statue_zeus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/statue_zeus_1_2b69f1d.png) no-repeat 0 0; + width: 100px; + height: 83px; +} + +.city_overview_building.stoner_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/stoner_0_98f4f45.png) no-repeat 0 0; + width: 176px; + height: 126px; +} + +.city_overview_building.stoner_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/stoner_1_6becbcf.png) no-repeat 0 0; + width: 211px; + height: 121px; +} + +.city_overview_building.stoner_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/stoner_1c_b597306.png) no-repeat 0 0; + width: 211px; + height: 143px; +} + +.city_overview_building.stoner_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/stoner_2_648e269.png) no-repeat 0 0; + width: 210px; + height: 143px; +} + +.city_overview_building.stoner_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/stoner_2c_2f33906.png) no-repeat 0 0; + width: 209px; + height: 143px; +} + +.city_overview_building.stoner_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/stoner_3_d3c691f.png) no-repeat 0 0; + width: 209px; + height: 141px; +} + +.city_overview_building.stoner_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/stoner_3c_c218f34.png) no-repeat 0 0; + width: 209px; + height: 141px; +} + +.city_overview_building.storage_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_0_975a76e.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.city_overview_building.storage_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_1_5b30463.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.city_overview_building.storage_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_1c_e70e54a.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.city_overview_building.storage_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_2_72d7f11.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.city_overview_building.storage_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_2c_7ae3f3f.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.city_overview_building.storage_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_3_0e2bbba.png) no-repeat 0 0; + width: 156px; + height: 105px; +} + +.city_overview_building.storage_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_3c_f689a67.png) no-repeat 0 0; + width: 156px; + height: 107px; +} + +.city_overview_building.storage_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_4_a80c306.png) no-repeat 0 0; + width: 156px; + height: 107px; +} + +.city_overview_building.storage_4c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/storage_4c_749a855.png) no-repeat 0 0; + width: 156px; + height: 107px; +} + +.city_overview_building.street_academy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/street_academy_38bbb77.png) no-repeat 0 0; + width: 115px; + height: 78px; +} + +.city_overview_building.street_barracks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/street_barracks_025edcf.png) no-repeat 0 0; + width: 115px; + height: 78px; +} + +.city_overview_building.street_market { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/street_market_c37aece.png) no-repeat 0 0; + width: 169px; + height: 108px; +} + +.city_overview_building.street_storage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/street_storage_70f7699.png) no-repeat 0 0; + width: 161px; + height: 67px; +} + +.city_overview_building.street_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/street_temple_21c1893.png) no-repeat 0 0; + width: 207px; + height: 68px; +} + +.city_overview_building.temple_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_0_1cae0ab.png) no-repeat 0 0; + width: 141px; + height: 76px; +} + +.city_overview_building.temple_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_1_7d18b43.png) no-repeat 0 0; + width: 136px; + height: 62px; +} + +.city_overview_building.temple_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_1c_09a1604.png) no-repeat 0 0; + width: 136px; + height: 63px; +} + +.city_overview_building.temple_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_2_14e943c.png) no-repeat 0 0; + width: 138px; + height: 73px; +} + +.city_overview_building.temple_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_2c_dcdcb37.png) no-repeat 0 0; + width: 138px; + height: 83px; +} + +.city_overview_building.temple_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_3_b74b910.png) no-repeat 0 0; + width: 133px; + height: 90px; +} + +.city_overview_building.temple_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_3c_505cd89.png) no-repeat 0 0; + width: 134px; + height: 91px; +} + +.city_overview_building.temple_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_4_3324a06.png) no-repeat 0 0; + width: 133px; + height: 90px; +} + +.city_overview_building.temple_4c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/temple_4c_b02f94a.png) no-repeat 0 0; + width: 134px; + height: 91px; +} + +.city_overview_building.theater_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/theater_0_2005548.png) no-repeat 0 0; + width: 146px; + height: 89px; +} + +.city_overview_building.theater_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/theater_1_54b76b3.png) no-repeat 0 0; + width: 144px; + height: 87px; +} + +.city_overview_building.thermal_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/thermal_0_10668d0.png) no-repeat 0 0; + width: 161px; + height: 100px; +} + +.city_overview_building.thermal_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/thermal_1_fd3a767.png) no-repeat 0 0; + width: 162px; + height: 97px; +} + +.city_overview_building.tower_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/tower_0_9a53c86.png) no-repeat 0 0; + width: 93px; + height: 79px; +} + +.city_overview_building.tower_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/tower_1_2e7cedc.png) no-repeat 0 0; + width: 113px; + height: 90px; +} + +.city_overview_building.trade_office_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/trade_office_0_32f4b56.png) no-repeat 0 0; + width: 119px; + height: 90px; +} + +.city_overview_building.trade_office_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/trade_office_1_1766dbb.png) no-repeat 0 0; + width: 123px; + height: 85px; +} + +.city_overview_building.trader_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/trader_1_6f07206.png) no-repeat 0 0; + width: 111px; + height: 147px; +} + +.city_overview_building.wall_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/wall_0_b44825a.png) no-repeat 0 0; + width: 874px; + height: 249px; +} + +.city_overview_building.wall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/wall_1_16d246c.png) no-repeat 0 0; + width: 1103px; + height: 310px; +} + +.city_overview_building.wall_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/wall_1c_ddd5ac3.png) no-repeat 0 0; + width: 1107px; + height: 310px; +} + +.city_overview_building.wall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/wall_2_b4bef2f.png) no-repeat 0 0; + width: 1112px; + height: 323px; +} + +.city_overview_building.wall_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/wall_2c_5b093f4.png) no-repeat 0 0; + width: 1112px; + height: 323px; +} + +.city_overview_building.wall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/wall_3_881d946.png) no-repeat 0 0; + width: 1115px; + height: 326px; +} + +.city_overview_building.wall_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings/wall_3c_c99f939.png) no-repeat 0 0; + width: 1115px; + height: 326px; +} + +.ui_city_overview .city_overview_building.academy_0 { + top: 402px; + left: 994px; +} + +.ui_city_overview .city_overview_building.academy_1 { + top: 402px; + left: 989px; +} + +.ui_city_overview .city_overview_building.academy_1c { + top: 400px; + left: 989px; +} + +.ui_city_overview .city_overview_building.academy_2 { + top: 392px; + left: 994px; +} + +.ui_city_overview .city_overview_building.academy_2c { + top: 392px; + left: 994px; +} + +.ui_city_overview .city_overview_building.academy_3 { + top: 367px; + left: 986px; +} + +.ui_city_overview .city_overview_building.academy_3c { + top: 367px; + left: 984px; +} + +.ui_city_overview .city_overview_building.academy_4 { + top: 367px; + left: 986px; +} + +.ui_city_overview .city_overview_building.academy_4c { + top: 367px; + left: 984px; +} + +.ui_city_overview .city_overview_building.barracks_0 { + top: 455px; + left: 797px; +} + +.ui_city_overview .city_overview_building.barracks_1 { + top: 495px; + left: 805px; +} + +.ui_city_overview .city_overview_building.barracks_1c { + top: 492px; + left: 805px; +} + +.ui_city_overview .city_overview_building.barracks_2 { + top: 480px; + left: 807px; +} + +.ui_city_overview .city_overview_building.barracks_2c { + top: 480px; + left: 807px; +} + +.ui_city_overview .city_overview_building.barracks_3 { + top: 465px; + left: 793px; +} + +.ui_city_overview .city_overview_building.barracks_3c { + top: 465px; + left: 793px; +} + +.ui_city_overview .city_overview_building.crop_circle_heart { + top: 388px; + left: 1281px; +} + +.ui_city_overview .city_overview_building.crop_circle_pumpkin { + top: 388px; + left: 1281px; +} + +.ui_city_overview .city_overview_building.crop_circle_ufo { + top: 388px; + left: 1281px; +} + +.ui_city_overview .city_overview_building.docks_0 { + top: 662px; + left: 860px; +} + +.ui_city_overview .city_overview_building.docks_1 { + top: 672px; + left: 861px; +} + +.ui_city_overview .city_overview_building.docks_1c { + top: 672px; + left: 861px; +} + +.ui_city_overview .city_overview_building.docks_2 { + top: 665px; + left: 858px; +} + +.ui_city_overview .city_overview_building.docks_2c { + top: 665px; + left: 858px; +} + +.ui_city_overview .city_overview_building.docks_3 { + top: 661px; + left: 861px; +} + +.ui_city_overview .city_overview_building.docks_3c { + top: 661px; + left: 861px; +} + +.ui_city_overview .city_overview_building.farm_1 { + top: 433px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.farm_1c { + top: 424px; + left: 1183px; +} + +.ui_city_overview .city_overview_building.farm_2 { + top: 434px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.farm_2c { + top: 424px; + left: 1183px; +} + +.ui_city_overview .city_overview_building.farm_3 { + top: 433px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.farm_3c { + top: 425px; + left: 1188px; +} + +.ui_city_overview .city_overview_building.farm_4 { + top: 433px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.farm_4c { + top: 433px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.field_2 { + top: 280px; + left: 1134px; +} + +.ui_city_overview .city_overview_building.field_3 { + top: 320px; + left: 1326px; +} + +.ui_city_overview .city_overview_building.hide { + top: 666px; + left: 1068px; +} + +.ui_city_overview .city_overview_building.hide_0 { + top: 666px; + left: 1068px; +} + +.ui_city_overview .city_overview_building.houses_2 { + top: 116px; + left: 309px; +} + +.ui_city_overview .city_overview_building.houses_3 { + top: 96px; + left: 297px; +} + +.ui_city_overview .city_overview_building.houses_4 { + top: 96px; + left: 297px; +} + +.ui_city_overview .city_overview_building.ironer_0 { + top: 373px; + left: 731px; +} + +.ui_city_overview .city_overview_building.ironer_1 { + top: 368px; + left: 733px; +} + +.ui_city_overview .city_overview_building.ironer_1c { + top: 367px; + left: 733px; +} + +.ui_city_overview .city_overview_building.ironer_2 { + top: 367px; + left: 733px; +} + +.ui_city_overview .city_overview_building.ironer_2c { + top: 367px; + left: 733px; +} + +.ui_city_overview .city_overview_building.ironer_3 { + top: 362px; + left: 726px; +} + +.ui_city_overview .city_overview_building.ironer_3c { + top: 362px; + left: 736px; +} + +.ui_city_overview .city_overview_building.library_0 { + top: 347px; + left: 854px; +} + +.ui_city_overview .city_overview_building.library_1 { + top: 345px; + left: 854px; +} + +.ui_city_overview .city_overview_building.lighthouse_0 { + top: 664px; + left: 641px; +} + +.ui_city_overview .city_overview_building.lighthouse_1 { + top: 638px; + left: 641px; +} + +.ui_city_overview .city_overview_building.lumber_0 { + top: 696px; + left: 1070px; +} + +.ui_city_overview .city_overview_building.lumber_1 { + top: 717px; + left: 1093px; +} + +.ui_city_overview .city_overview_building.lumber_1c { + top: 715px; + left: 1093px; +} + +.ui_city_overview .city_overview_building.lumber_2 { + top: 717px; + left: 1093px; +} + +.ui_city_overview .city_overview_building.lumber_2c { + top: 717px; + left: 1093px; +} + +.ui_city_overview .city_overview_building.lumber_3 { + top: 714px; + left: 1077px; +} + +.ui_city_overview .city_overview_building.lumber_3c { + top: 714px; + left: 1092px; +} + +.ui_city_overview .city_overview_building.main_1 { + top: 464px; + left: 1005px; +} + +.ui_city_overview .city_overview_building.main_1c { + top: 504px; + left: 1035px; +} + +.ui_city_overview .city_overview_building.main_2 { + top: 479px; + left: 1025px; +} + +.ui_city_overview .city_overview_building.main_2c { + top: 473px; + left: 1025px; +} + +.ui_city_overview .city_overview_building.main_3 { + top: 461px; + left: 1014px; +} + +.ui_city_overview .city_overview_building.main_3c { + top: 457px; + left: 1018px; +} + +.ui_city_overview .city_overview_building.market_0 { + top: 530px; + left: 1167px; +} + +.ui_city_overview .city_overview_building.market_1 { + top: 550px; + left: 1209px; +} + +.ui_city_overview .city_overview_building.market_1c { + top: 550px; + left: 1209px; +} + +.ui_city_overview .city_overview_building.market_2 { + top: 546px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.market_2c { + top: 546px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.market_3 { + top: 531px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.market_3c { + top: 531px; + left: 1192px; +} + +.ui_city_overview .city_overview_building.mill_static { + top: 425px; + left: 1180px; +} + +.ui_city_overview .city_overview_building.oracle_0 { + top: 638px; + left: 1148px; +} + +.ui_city_overview .city_overview_building.oracle_1 { + top: 636px; + left: 1151px; +} + +.ui_city_overview .city_overview_building.place_1 { + top: 604px; + left: 1153px; +} + +.ui_city_overview .city_overview_building.ship_1 { + top: 911px; + left: 947px; +} + +.ui_city_overview .city_overview_building.statue_aphrodite_0 { + top: 614px; + left: 1128px; +} + +.ui_city_overview .city_overview_building.statue_aphrodite_1 { + top: 621px; + left: 1140px; +} + +.ui_city_overview .city_overview_building.statue_ares_0 { + top: 614px; + left: 1128px; +} + +.ui_city_overview .city_overview_building.statue_ares_1 { + top: 621px; + left: 1140px; +} + +.ui_city_overview .city_overview_building.statue_artemis_0 { + top: 614px; + left: 1128px; +} + +.ui_city_overview .city_overview_building.statue_artemis_1 { + top: 628px; + left: 1140px; +} + +.ui_city_overview .city_overview_building.statue_athena_0 { + top: 610px; + left: 1129px; +} + +.ui_city_overview .city_overview_building.statue_athena_1 { + top: 615px; + left: 1140px; +} + +.ui_city_overview .city_overview_building.statue_hades_0 { + top: 615px; + left: 1139px; +} + +.ui_city_overview .city_overview_building.statue_hades_1 { + top: 615px; + left: 1139px; +} + +.ui_city_overview .city_overview_building.statue_hera_0 { + top: 624px; + left: 1140px; +} + +.ui_city_overview .city_overview_building.statue_hera_1 { + top: 629px; + left: 1140px; +} + +.ui_city_overview .city_overview_building.statue_poseidon_0 { + top: 619px; + left: 1140px; +} + +.ui_city_overview .city_overview_building.statue_poseidon_1 { + top: 615px; + left: 1140px; +} + +.ui_city_overview .city_overview_building.statue_zeus_0 { + top: 623px; + left: 1139px; +} + +.ui_city_overview .city_overview_building.statue_zeus_1 { + top: 623px; + left: 1139px; +} + +.ui_city_overview .city_overview_building.statue_0 { + top: 645px; + left: 1153px; +} + +.ui_city_overview .city_overview_building.statue_1 { + top: 645px; + left: 1153px; +} + +.ui_city_overview .city_overview_building.stoner_0 { + top: 543px; + left: 712px; +} + +.ui_city_overview .city_overview_building.stoner_1 { + top: 530px; + left: 694px; +} + +.ui_city_overview .city_overview_building.stoner_1c { + top: 530px; + left: 694px; +} + +.ui_city_overview .city_overview_building.stoner_2 { + top: 530px; + left: 695px; +} + +.ui_city_overview .city_overview_building.stoner_2c { + top: 530px; + left: 696px; +} + +.ui_city_overview .city_overview_building.stoner_3 { + top: 531px; + left: 696px; +} + +.ui_city_overview .city_overview_building.stoner_3c { + top: 531px; + left: 696px; +} + +.ui_city_overview .city_overview_building.storage_0 { + top: 571px; + left: 949px; +} + +.ui_city_overview .city_overview_building.storage_1 { + top: 570px; + left: 949px; +} + +.ui_city_overview .city_overview_building.storage_1c { + top: 570px; + left: 949px; +} + +.ui_city_overview .city_overview_building.storage_2 { + top: 570px; + left: 949px; +} + +.ui_city_overview .city_overview_building.storage_2c { + top: 570px; + left: 949px; +} + +.ui_city_overview .city_overview_building.storage_3 { + top: 567px; + left: 949px; +} + +.ui_city_overview .city_overview_building.storage_3c { + top: 567px; + left: 949px; +} + +.ui_city_overview .city_overview_building.storage_4 { + top: 566px; + left: 949px; +} + +.ui_city_overview .city_overview_building.storage_4c { + top: 566px; + left: 949px; +} + +.ui_city_overview .city_overview_building.street_academy { + top: 471px; + left: 884px; +} + +.ui_city_overview .city_overview_building.street_barracks { + top: 471px; + left: 884px; +} + +.ui_city_overview .city_overview_building.street_market { + top: 543px; + left: 1157px; +} + +.ui_city_overview .city_overview_building.street_storage { + top: 583px; + left: 943px; +} + +.ui_city_overview .city_overview_building.street_temple { + top: 433px; + left: 700px; +} + +.ui_city_overview .city_overview_building.temple_0 { + top: 428px; + left: 666px; +} + +.ui_city_overview .city_overview_building.temple_1 { + top: 438px; + left: 665px; +} + +.ui_city_overview .city_overview_building.temple_1c { + top: 437px; + left: 665px; +} + +.ui_city_overview .city_overview_building.temple_2 { + top: 424px; + left: 665px; +} + +.ui_city_overview .city_overview_building.temple_2c { + top: 414px; + left: 665px; +} + +.ui_city_overview .city_overview_building.temple_3 { + top: 412px; + left: 670px; +} + +.ui_city_overview .city_overview_building.temple_3c { + top: 411px; + left: 669px; +} + +.ui_city_overview .city_overview_building.temple_4 { + top: 412px; + left: 670px; +} + +.ui_city_overview .city_overview_building.temple_4c { + top: 411px; + left: 669px; +} + +.ui_city_overview .city_overview_building.theater_0 { + top: 360px; + left: 855px; +} + +.ui_city_overview .city_overview_building.theater_1 { + top: 360px; + left: 855px; +} + +.ui_city_overview .city_overview_building.thermal_0 { + top: 337px; + left: 859px; +} + +.ui_city_overview .city_overview_building.thermal_1 { + top: 340px; + left: 859px; +} + +.ui_city_overview .city_overview_building.tower_0 { + top: 624px; + left: 1150px; +} + +.ui_city_overview .city_overview_building.tower_1 { + top: 610px; + left: 1141px; +} + +.ui_city_overview .city_overview_building.trade_office_0 { + top: 619px; + left: 1142px; +} + +.ui_city_overview .city_overview_building.trade_office_1 { + top: 618px; + left: 1142px; +} + +.ui_city_overview .city_overview_building.trader_1 { + top: 673px; + left: 750px; +} + +.ui_city_overview .city_overview_building.wall_0 { + top: 476px; + left: 658px; +} + +.ui_city_overview .city_overview_building.wall_1 { + top: 411px; + left: 625px; +} + +.ui_city_overview .city_overview_building.wall_1c { + top: 411px; + left: 625px; +} + +.ui_city_overview .city_overview_building.wall_2 { + top: 400px; + left: 624px; +} + +.ui_city_overview .city_overview_building.wall_2c { + top: 400px; + left: 624px; +} + +.ui_city_overview .city_overview_building.wall_3 { + top: 398px; + left: 625px; +} + +.ui_city_overview .city_overview_building.wall_3c { + top: 398px; + left: 625px; +} + +.ui_city_overview .city_overview_building.boat1 { + top: 901px; + left: 1203px; +} + +.ui_city_overview .city_overview_building.boat2 { + top: 1065px; + left: 570px; +} + +.ui_city_overview .city_overview_building.boat3 { + top: 800px; + left: 286px; +} + +.ui_city_overview .city_overview_building.boat5 { + top: 1019px; + left: 1555px; +} + +.ui_city_overview .city_overview_building.boat6 { + top: 114px; + left: 1317px; +} + +.night .city_overview_building.academy_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_0_14cb518.png) no-repeat 0 0; + width: 118px; + height: 71px; +} + +.night .city_overview_building.academy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_1_076e372.png) no-repeat 0 0; + width: 127px; + height: 71px; +} + +.night .city_overview_building.academy_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_1c_1f068bc.png) no-repeat 0 0; + width: 126px; + height: 73px; +} + +.night .city_overview_building.academy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_2_d0a0bc0.png) no-repeat 0 0; + width: 124px; + height: 81px; +} + +.night .city_overview_building.academy_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_2c_ce595c6.png) no-repeat 0 0; + width: 124px; + height: 81px; +} + +.night .city_overview_building.academy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_3_f563502.png) no-repeat 0 0; + width: 150px; + height: 110px; +} + +.night .city_overview_building.academy_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_3c_52492f3.png) no-repeat 0 0; + width: 152px; + height: 110px; +} + +.night .city_overview_building.academy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_4_d462eae.png) no-repeat 0 0; + width: 150px; + height: 110px; +} + +.night .city_overview_building.academy_4c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/academy_4c_76cb39f.png) no-repeat 0 0; + width: 152px; + height: 110px; +} + +.night .city_overview_building.barracks_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/barracks_0_5918c9c.png) no-repeat 0 0; + width: 188px; + height: 115px; +} + +.night .city_overview_building.barracks_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/barracks_1_9666912.png) no-repeat 0 0; + width: 161px; + height: 75px; +} + +.night .city_overview_building.barracks_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/barracks_1c_9bdfaf7.png) no-repeat 0 0; + width: 161px; + height: 78px; +} + +.night .city_overview_building.barracks_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/barracks_2_72fe338.png) no-repeat 0 0; + width: 169px; + height: 91px; +} + +.night .city_overview_building.barracks_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/barracks_2c_65fdf86.png) no-repeat 0 0; + width: 169px; + height: 91px; +} + +.night .city_overview_building.barracks_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/barracks_3_7e16625.png) no-repeat 0 0; + width: 181px; + height: 107px; +} + +.night .city_overview_building.barracks_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/barracks_3c_e9b54c8.png) no-repeat 0 0; + width: 181px; + height: 107px; +} + +.night .city_overview_building.boat1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/boat1_d2eaae9.png) no-repeat 0 0; + width: 29px; + height: 20px; +} + +.night .city_overview_building.boat2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/boat2_8f7c0b7.png) no-repeat 0 0; + width: 36px; + height: 21px; +} + +.night .city_overview_building.boat3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/boat3_b60819a.png) no-repeat 0 0; + width: 60px; + height: 44px; +} + +.night .city_overview_building.boat5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/boat5_ed589ae.png) no-repeat 0 0; + width: 61px; + height: 50px; +} + +.night .city_overview_building.boat6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/boat6_cac4641.png) no-repeat 0 0; + width: 18px; + height: 10px; +} + +.night .city_overview_building.crop_circle_heart { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/crop_circle_heart_e5f6879.png) no-repeat 0 0; + width: 69px; + height: 37px; +} + +.night .city_overview_building.crop_circle_pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/crop_circle_pumpkin_ed6a6af.png) no-repeat 0 0; + width: 63px; + height: 34px; +} + +.night .city_overview_building.crop_circle_ufo { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/crop_circle_ufo_c347b53.png) no-repeat 0 0; + width: 63px; + height: 40px; +} + +.night .city_overview_building.docks_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/docks_0_0cf9e17.png) no-repeat 0 0; + width: 207px; + height: 125px; +} + +.night .city_overview_building.docks_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/docks_1_7534209.png) no-repeat 0 0; + width: 217px; + height: 110px; +} + +.night .city_overview_building.docks_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/docks_1c_020dc71.png) no-repeat 0 0; + width: 217px; + height: 110px; +} + +.night .city_overview_building.docks_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/docks_2_cdc0337.png) no-repeat 0 0; + width: 220px; + height: 121px; +} + +.night .city_overview_building.docks_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/docks_2c_265ce29.png) no-repeat 0 0; + width: 220px; + height: 119px; +} + +.night .city_overview_building.docks_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/docks_3_42f787b.png) no-repeat 0 0; + width: 216px; + height: 120px; +} + +.night .city_overview_building.docks_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/docks_3c_91e47f3.png) no-repeat 0 0; + width: 216px; + height: 120px; +} + +.night .city_overview_building.farm_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/farm_1c_0f529e4.png) no-repeat 0 0; + width: 194px; + height: 98px; +} + +.night .city_overview_building.farm_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/farm_2_b1f502a.png) no-repeat 0 0; + width: 199px; + height: 99px; +} + +.night .city_overview_building.farm_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/farm_2c_c07b6b7.png) no-repeat 0 0; + width: 197px; + height: 109px; +} + +.night .city_overview_building.farm_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/farm_3_940dca3.png) no-repeat 0 0; + width: 192px; + height: 100px; +} + +.night .city_overview_building.farm_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/farm_3c_893c97a.png) no-repeat 0 0; + width: 192px; + height: 108px; +} + +.night .city_overview_building.farm_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/farm_4_19f953b.png) no-repeat 0 0; + width: 212px; + height: 100px; +} + +.night .city_overview_building.farm_4c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/farm_4c_59f5435.png) no-repeat 0 0; + width: 206px; + height: 100px; +} + +.night .city_overview_building.field_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/field_2_b42acfc.png) no-repeat 0 0; + width: 136px; + height: 176px; +} + +.night .city_overview_building.field_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/field_3_aad9db1.png) no-repeat 0 0; + width: 211px; + height: 209px; +} + +.night .city_overview_building.hide { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/hide_f04ec66.png) no-repeat 0 0; + width: 42px; + height: 30px; +} + +.night .city_overview_building.hide_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/hide_0_80cc9fc.png) no-repeat 0 0; + width: 24px; + height: 27px; +} + +.night .city_overview_building.houses_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/houses_2_a8dea3d.png) no-repeat 0 0; + width: 1386px; + height: 695px; +} + +.night .city_overview_building.houses_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/houses_3_269b317.png) no-repeat 0 0; + width: 1445px; + height: 717px; +} + +.night .city_overview_building.houses_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/houses_4_2c81b9d.png) no-repeat 0 0; + width: 1445px; + height: 717px; +} + +.night .city_overview_building.ironer_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/ironer_0_0ce1bb0.png) no-repeat 0 0; + width: 89px; + height: 63px; +} + +.night .city_overview_building.ironer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/ironer_1_911e12b.png) no-repeat 0 0; + width: 111px; + height: 80px; +} + +.night .city_overview_building.ironer_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/ironer_1c_a101a56.png) no-repeat 0 0; + width: 120px; + height: 80px; +} + +.night .city_overview_building.ironer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/ironer_2_1cf2d82.png) no-repeat 0 0; + width: 113px; + height: 81px; +} + +.night .city_overview_building.ironer_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/ironer_2c_045a29c.png) no-repeat 0 0; + width: 117px; + height: 81px; +} + +.night .city_overview_building.ironer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/ironer_3_9530a03.png) no-repeat 0 0; + width: 105px; + height: 104px; +} + +.night .city_overview_building.ironer_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/ironer_3c_95c59f8.png) no-repeat 0 0; + width: 114px; + height: 104px; +} + +.night .city_overview_building.library_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/library_0_81fe966.png) no-repeat 0 0; + width: 148px; + height: 92px; +} + +.night .city_overview_building.library_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/library_1_130d6dd.png) no-repeat 0 0; + width: 159px; + height: 108px; +} + +.night .city_overview_building.lighthouse_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lighthouse_0_18f511d.png) no-repeat 0 0; + width: 117px; + height: 85px; +} + +.night .city_overview_building.lighthouse_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lighthouse_1_5d1c86b.png) no-repeat 0 0; + width: 123px; + height: 110px; +} + +.night .city_overview_building.lumber_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lumber_0_9a42ed3.png) no-repeat 0 0; + width: 108px; + height: 92px; +} + +.night .city_overview_building.lumber_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lumber_1_a77af97.png) no-repeat 0 0; + width: 75px; + height: 56px; +} + +.night .city_overview_building.lumber_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lumber_1c_5cee145.png) no-repeat 0 0; + width: 75px; + height: 58px; +} + +.night .city_overview_building.lumber_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lumber_2_234908c.png) no-repeat 0 0; + width: 76px; + height: 55px; +} + +.night .city_overview_building.lumber_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lumber_2c_f089e69.png) no-repeat 0 0; + width: 76px; + height: 56px; +} + +.night .city_overview_building.lumber_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lumber_3_c01a8c0.png) no-repeat 0 0; + width: 96px; + height: 90px; +} + +.night .city_overview_building.lumber_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/lumber_3c_fd5b6a4.png) no-repeat 0 0; + width: 81px; + height: 80px; +} + +.night .city_overview_building.main_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/main_1_e80633b.png) no-repeat 0 0; + width: 211px; + height: 122px; +} + +.night .city_overview_building.main_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/main_1c_7d8aa3d.png) no-repeat 0 0; + width: 132px; + height: 64px; +} + +.night .city_overview_building.main_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/main_2_028b91b.png) no-repeat 0 0; + width: 164px; + height: 94px; +} + +.night .city_overview_building.main_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/main_2c_41f8aa7.png) no-repeat 0 0; + width: 156px; + height: 100px; +} + +.night .city_overview_building.main_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/main_3_0bf218b.png) no-repeat 0 0; + width: 211px; + height: 122px; +} + +.night .city_overview_building.main_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/main_3c_4dac777.png) no-repeat 0 0; + width: 205px; + height: 126px; +} + +.night .city_overview_building.market_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/market_0_5a7bc7e.png) no-repeat 0 0; + width: 143px; + height: 98px; +} + +.night .city_overview_building.market_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/market_1_ddda593.png) no-repeat 0 0; + width: 76px; + height: 70px; +} + +.night .city_overview_building.market_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/market_1c_d0d378b.png) no-repeat 0 0; + width: 76px; + height: 70px; +} + +.night .city_overview_building.market_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/market_2_421a1c3.png) no-repeat 0 0; + width: 119px; + height: 83px; +} + +.night .city_overview_building.market_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/market_2c_c0d7ad5.png) no-repeat 0 0; + width: 119px; + height: 83px; +} + +.night .city_overview_building.market_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/market_3_bf113ed.png) no-repeat 0 0; + width: 122px; + height: 92px; +} + +.night .city_overview_building.market_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/market_3c_3d626e8.png) no-repeat 0 0; + width: 122px; + height: 92px; +} + +.night .city_overview_building.mill_static { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/mill_static_3572e79.png) no-repeat 0 0; + width: 56px; + height: 56px; +} + +.night .city_overview_building.oracle_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/oracle_0_df24946.png) no-repeat 0 0; + width: 94px; + height: 62px; +} + +.night .city_overview_building.oracle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/oracle_1_e0e99b4.png) no-repeat 0 0; + width: 103px; + height: 96px; +} + +.night .city_overview_building.place_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/place_1_18cfd00.png) no-repeat 0 0; + width: 1px; + height: 1px; +} + +.night .city_overview_building.ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/ship_1_c235b70.png) no-repeat 0 0; + width: 182px; + height: 134px; +} + +.night .city_overview_building.statue_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_0_21bd9a9.png) no-repeat 0 0; + width: 88px; + height: 59px; +} + +.night .city_overview_building.statue_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_1_a2c3e45.png) no-repeat 0 0; + width: 88px; + height: 65px; +} + +.night .city_overview_building.statue_aphrodite_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_aphrodite_0_0d13f79.png) no-repeat 0 0; + width: 127px; + height: 94px; +} + +.night .city_overview_building.statue_aphrodite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_aphrodite_1_03f9744.png) no-repeat 0 0; + width: 101px; + height: 95px; +} + +.night .city_overview_building.statue_ares_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_ares_0_c41b126.png) no-repeat 0 0; + width: 127px; + height: 94px; +} + +.night .city_overview_building.statue_ares_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_ares_1_db10082.png) no-repeat 0 0; + width: 101px; + height: 95px; +} + +.night .city_overview_building.statue_artemis_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_artemis_0_ac8e28c.png) no-repeat 0 0; + width: 115px; + height: 91px; +} + +.night .city_overview_building.statue_artemis_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_artemis_1_cc2fbbe.png) no-repeat 0 0; + width: 100px; + height: 81px; +} + +.night .city_overview_building.statue_athena_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_athena_0_7ddb340.png) no-repeat 0 0; + width: 127px; + height: 94px; +} + +.night .city_overview_building.statue_athena_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_athena_1_586788b.png) no-repeat 0 0; + width: 101px; + height: 95px; +} + +.night .city_overview_building.statue_hades_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_hades_0_13c9816.png) no-repeat 0 0; + width: 112px; + height: 91px; +} + +.night .city_overview_building.statue_hades_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_hades_1_21ea474.png) no-repeat 0 0; + width: 101px; + height: 94px; +} + +.night .city_overview_building.statue_hera_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_hera_0_7766ac5.png) no-repeat 0 0; + width: 100px; + height: 78px; +} + +.night .city_overview_building.statue_hera_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_hera_1_55c19a7.png) no-repeat 0 0; + width: 101px; + height: 79px; +} + +.night .city_overview_building.statue_poseidon_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_poseidon_0_da3a843.png) no-repeat 0 0; + width: 101px; + height: 93px; +} + +.night .city_overview_building.statue_poseidon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_poseidon_1_417e4bc.png) no-repeat 0 0; + width: 101px; + height: 95px; +} + +.night .city_overview_building.statue_zeus_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_zeus_0_83b5cd6.png) no-repeat 0 0; + width: 99px; + height: 81px; +} + +.night .city_overview_building.statue_zeus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/statue_zeus_1_54e1d5a.png) no-repeat 0 0; + width: 100px; + height: 87px; +} + +.night .city_overview_building.stoner_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/stoner_0_9083f76.png) no-repeat 0 0; + width: 176px; + height: 126px; +} + +.night .city_overview_building.stoner_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/stoner_1_58ec29e.png) no-repeat 0 0; + width: 238px; + height: 131px; +} + +.night .city_overview_building.stoner_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/stoner_1c_0d4306a.png) no-repeat 0 0; + width: 211px; + height: 143px; +} + +.night .city_overview_building.stoner_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/stoner_2_3a23a62.png) no-repeat 0 0; + width: 235px; + height: 143px; +} + +.night .city_overview_building.stoner_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/stoner_2c_7eb6f21.png) no-repeat 0 0; + width: 209px; + height: 143px; +} + +.night .city_overview_building.stoner_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/stoner_3_4a76361.png) no-repeat 0 0; + width: 235px; + height: 141px; +} + +.night .city_overview_building.stoner_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/stoner_3c_1d5a8f7.png) no-repeat 0 0; + width: 209px; + height: 141px; +} + +.night .city_overview_building.storage_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_0_4a1fe1d.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.night .city_overview_building.storage_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_1_ee29b32.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.night .city_overview_building.storage_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_1c_401485f.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.night .city_overview_building.storage_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_2_fe5cb0c.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.night .city_overview_building.storage_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_2c_eec700d.png) no-repeat 0 0; + width: 156px; + height: 102px; +} + +.night .city_overview_building.storage_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_3_64d8695.png) no-repeat 0 0; + width: 156px; + height: 105px; +} + +.night .city_overview_building.storage_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_3c_7c0a59e.png) no-repeat 0 0; + width: 156px; + height: 107px; +} + +.night .city_overview_building.storage_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_4_ad91c9c.png) no-repeat 0 0; + width: 156px; + height: 107px; +} + +.night .city_overview_building.storage_4c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/storage_4c_26c37d4.png) no-repeat 0 0; + width: 156px; + height: 107px; +} + +.night .city_overview_building.street_academy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/street_academy_8d62fb4.png) no-repeat 0 0; + width: 115px; + height: 78px; +} + +.night .city_overview_building.street_barracks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/street_barracks_8d62fb4.png) no-repeat 0 0; + width: 115px; + height: 78px; +} + +.night .city_overview_building.street_market { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/street_market_ad48c96.png) no-repeat 0 0; + width: 169px; + height: 108px; +} + +.night .city_overview_building.street_storage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/street_storage_f38edd8.png) no-repeat 0 0; + width: 161px; + height: 67px; +} + +.night .city_overview_building.street_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/street_temple_e5fcdb7.png) no-repeat 0 0; + width: 207px; + height: 68px; +} + +.night .city_overview_building.temple_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_0_ddef7f7.png) no-repeat 0 0; + width: 141px; + height: 76px; +} + +.night .city_overview_building.temple_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_1_01ec011.png) no-repeat 0 0; + width: 136px; + height: 64px; +} + +.night .city_overview_building.temple_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_1c_ec4c4b1.png) no-repeat 0 0; + width: 136px; + height: 63px; +} + +.night .city_overview_building.temple_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_2_f8e1d2d.png) no-repeat 0 0; + width: 138px; + height: 78px; +} + +.night .city_overview_building.temple_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_2c_c7ecb37.png) no-repeat 0 0; + width: 138px; + height: 83px; +} + +.night .city_overview_building.temple_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_3_4aca2e5.png) no-repeat 0 0; + width: 133px; + height: 90px; +} + +.night .city_overview_building.temple_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_3c_ea98f6d.png) no-repeat 0 0; + width: 134px; + height: 91px; +} + +.night .city_overview_building.temple_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_4_9c345ab.png) no-repeat 0 0; + width: 133px; + height: 90px; +} + +.night .city_overview_building.temple_4c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/temple_4c_b239fd6.png) no-repeat 0 0; + width: 134px; + height: 91px; +} + +.night .city_overview_building.theater_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/theater_0_0a30a10.png) no-repeat 0 0; + width: 151px; + height: 95px; +} + +.night .city_overview_building.theater_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/theater_1_a8e0215.png) no-repeat 0 0; + width: 151px; + height: 95px; +} + +.night .city_overview_building.thermal_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/thermal_0_1ad01cf.png) no-repeat 0 0; + width: 161px; + height: 100px; +} + +.night .city_overview_building.thermal_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/thermal_1_03bbdbf.png) no-repeat 0 0; + width: 162px; + height: 97px; +} + +.night .city_overview_building.tower_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/tower_0_39d2b80.png) no-repeat 0 0; + width: 93px; + height: 79px; +} + +.night .city_overview_building.tower_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/tower_1_000b3e9.png) no-repeat 0 0; + width: 113px; + height: 94px; +} + +.night .city_overview_building.trade_office_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/trade_office_0_669811b.png) no-repeat 0 0; + width: 119px; + height: 90px; +} + +.night .city_overview_building.trade_office_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/trade_office_1_569a046.png) no-repeat 0 0; + width: 123px; + height: 86px; +} + +.night .city_overview_building.trader_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/trader_1_6c2d97b.png) no-repeat 0 0; + width: 149px; + height: 135px; +} + +.night .city_overview_building.wall_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/wall_0_6b74d78.png) no-repeat 0 0; + width: 874px; + height: 249px; +} + +.night .city_overview_building.wall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/wall_1_5bd87e6.png) no-repeat 0 0; + width: 1103px; + height: 310px; +} + +.night .city_overview_building.wall_1c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/wall_1c_5d5486f.png) no-repeat 0 0; + width: 1107px; + height: 310px; +} + +.night .city_overview_building.wall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/wall_2_6614f11.png) no-repeat 0 0; + width: 1112px; + height: 323px; +} + +.night .city_overview_building.wall_2c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/wall_2c_a054f1b.png) no-repeat 0 0; + width: 1112px; + height: 323px; +} + +.night .city_overview_building.wall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/wall_3_7b6fb7a.png) no-repeat 0 0; + width: 1115px; + height: 326px; +} + +.night .city_overview_building.wall_3c { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/buildings_night/wall_3c_227b6f1.png) no-repeat 0 0; + width: 1115px; + height: 326px; +} + +.ui_city_overview.night .city_overview_building.academy_0 { + top: 402px; + left: 994px; +} + +.ui_city_overview.night .city_overview_building.academy_1 { + top: 402px; + left: 989px; +} + +.ui_city_overview.night .city_overview_building.academy_1c { + top: 400px; + left: 989px; +} + +.ui_city_overview.night .city_overview_building.academy_2 { + top: 392px; + left: 994px; +} + +.ui_city_overview.night .city_overview_building.academy_2c { + top: 392px; + left: 994px; +} + +.ui_city_overview.night .city_overview_building.academy_3 { + top: 367px; + left: 985px; +} + +.ui_city_overview.night .city_overview_building.academy_3c { + top: 366px; + left: 984px; +} + +.ui_city_overview.night .city_overview_building.academy_4 { + top: 367px; + left: 986px; +} + +.ui_city_overview.night .city_overview_building.academy_4c { + top: 367px; + left: 984px; +} + +.ui_city_overview.night .city_overview_building.barracks_0 { + top: 455px; + left: 797px; +} + +.ui_city_overview.night .city_overview_building.barracks_1 { + top: 495px; + left: 805px; +} + +.ui_city_overview.night .city_overview_building.barracks_1c { + top: 492px; + left: 805px; +} + +.ui_city_overview.night .city_overview_building.barracks_2 { + top: 480px; + left: 807px; +} + +.ui_city_overview.night .city_overview_building.barracks_2c { + top: 480px; + left: 807px; +} + +.ui_city_overview.night .city_overview_building.barracks_3 { + top: 465px; + left: 792px; +} + +.ui_city_overview.night .city_overview_building.barracks_3c { + top: 465px; + left: 793px; +} + +.ui_city_overview.night .city_overview_building.crop_circle_heart { + top: 388px; + left: 1281px; +} + +.ui_city_overview.night .city_overview_building.crop_circle_pumpkin { + top: 388px; + left: 1281px; +} + +.ui_city_overview.night .city_overview_building.crop_circle_ufo { + top: 388px; + left: 1281px; +} + +.ui_city_overview.night .city_overview_building.docks_0 { + top: 662px; + left: 860px; +} + +.ui_city_overview.night .city_overview_building.docks_1 { + top: 672px; + left: 861px; +} + +.ui_city_overview.night .city_overview_building.docks_1c { + top: 672px; + left: 861px; +} + +.ui_city_overview.night .city_overview_building.docks_2 { + top: 663px; + left: 858px; +} + +.ui_city_overview.night .city_overview_building.docks_2c { + top: 665px; + left: 858px; +} + +.ui_city_overview.night .city_overview_building.docks_3 { + top: 661px; + left: 861px; +} + +.ui_city_overview.night .city_overview_building.docks_3c { + top: 661px; + left: 861px; +} + +.ui_city_overview.night .city_overview_building.farm_1 { + top: 433px; + left: 1192px; +} + +.ui_city_overview.night .city_overview_building.farm_1c { + top: 424px; + left: 1183px; +} + +.ui_city_overview.night .city_overview_building.farm_2 { + top: 434px; + left: 1182px; +} + +.ui_city_overview.night .city_overview_building.farm_2c { + top: 424px; + left: 1183px; +} + +.ui_city_overview.night .city_overview_building.farm_3 { + top: 433px; + left: 1186px; +} + +.ui_city_overview.night .city_overview_building.farm_3c { + top: 425px; + left: 1188px; +} + +.ui_city_overview.night .city_overview_building.farm_4 { + top: 433px; + left: 1186px; +} + +.ui_city_overview.night .city_overview_building.farm_4c { + top: 433px; + left: 1192px; +} + +.ui_city_overview.night .city_overview_building.field_2 { + top: 280px; + left: 1134px; +} + +.ui_city_overview.night .city_overview_building.field_3 { + top: 321px; + left: 1325px; +} + +.ui_city_overview.night .city_overview_building.hide { + top: 666px; + left: 1068px; +} + +.ui_city_overview.night .city_overview_building.hide_0 { + top: 666px; + left: 1068px; +} + +.ui_city_overview.night .city_overview_building.houses_2 { + top: 116px; + left: 309px; +} + +.ui_city_overview.night .city_overview_building.houses_3 { + top: 96px; + left: 297px; +} + +.ui_city_overview.night .city_overview_building.houses_4 { + top: 96px; + left: 297px; +} + +.ui_city_overview.night .city_overview_building.ironer_0 { + top: 373px; + left: 731px; +} + +.ui_city_overview.night .city_overview_building.ironer_1 { + top: 368px; + left: 733px; +} + +.ui_city_overview.night .city_overview_building.ironer_1c { + top: 367px; + left: 733px; +} + +.ui_city_overview.night .city_overview_building.ironer_2 { + top: 367px; + left: 733px; +} + +.ui_city_overview.night .city_overview_building.ironer_2c { + top: 367px; + left: 733px; +} + +.ui_city_overview.night .city_overview_building.ironer_3 { + top: 362px; + left: 726px; +} + +.ui_city_overview.night .city_overview_building.ironer_3c { + top: 362px; + left: 726px; +} + +.ui_city_overview.night .city_overview_building.library_0 { + top: 347px; + left: 854px; +} + +.ui_city_overview.night .city_overview_building.library_1 { + top: 345px; + left: 843px; +} + +.ui_city_overview.night .city_overview_building.lighthouse_0 { + top: 664px; + left: 641px; +} + +.ui_city_overview.night .city_overview_building.lighthouse_1 { + top: 638px; + left: 641px; +} + +.ui_city_overview.night .city_overview_building.lumber_0 { + top: 696px; + left: 1070px; +} + +.ui_city_overview.night .city_overview_building.lumber_1 { + top: 717px; + left: 1093px; +} + +.ui_city_overview.night .city_overview_building.lumber_1c { + top: 715px; + left: 1093px; +} + +.ui_city_overview.night .city_overview_building.lumber_2 { + top: 717px; + left: 1093px; +} + +.ui_city_overview.night .city_overview_building.lumber_2c { + top: 717px; + left: 1093px; +} + +.ui_city_overview.night .city_overview_building.lumber_3 { + top: 714px; + left: 1077px; +} + +.ui_city_overview.night .city_overview_building.lumber_3c { + top: 714px; + left: 1092px; +} + +.ui_city_overview.night .city_overview_building.main_1 { + top: 464px; + left: 1005px; +} + +.ui_city_overview.night .city_overview_building.main_1c { + top: 504px; + left: 1035px; +} + +.ui_city_overview.night .city_overview_building.main_2 { + top: 479px; + left: 1025px; +} + +.ui_city_overview.night .city_overview_building.main_2c { + top: 473px; + left: 1025px; +} + +.ui_city_overview.night .city_overview_building.main_3 { + top: 461px; + left: 1014px; +} + +.ui_city_overview.night .city_overview_building.main_3c { + top: 457px; + left: 1018px; +} + +.ui_city_overview.night .city_overview_building.market_0 { + top: 530px; + left: 1167px; +} + +.ui_city_overview.night .city_overview_building.market_1 { + top: 550px; + left: 1209px; +} + +.ui_city_overview.night .city_overview_building.market_1c { + top: 550px; + left: 1209px; +} + +.ui_city_overview.night .city_overview_building.market_2 { + top: 546px; + left: 1192px; +} + +.ui_city_overview.night .city_overview_building.market_2c { + top: 546px; + left: 1192px; +} + +.ui_city_overview.night .city_overview_building.market_3 { + top: 531px; + left: 1192px; +} + +.ui_city_overview.night .city_overview_building.market_3c { + top: 531px; + left: 1192px; +} + +.ui_city_overview.night .city_overview_building.mill_static { + top: 425px; + left: 1180px; +} + +.ui_city_overview.night .city_overview_building.oracle_0 { + top: 638px; + left: 1148px; +} + +.ui_city_overview.night .city_overview_building.oracle_1 { + top: 607px; + left: 1142px; +} + +.ui_city_overview.night .city_overview_building.place_1 { + top: 604px; + left: 1153px; +} + +.ui_city_overview.night .city_overview_building.ship_1 { + top: 911px; + left: 947px; +} + +.ui_city_overview.night .city_overview_building.statue_aphrodite_0 { + top: 614px; + left: 1128px; +} + +.ui_city_overview.night .city_overview_building.statue_aphrodite_1 { + top: 621px; + left: 1140px; +} + +.ui_city_overview.night .city_overview_building.statue_ares_0 { + top: 614px; + left: 1128px; +} + +.ui_city_overview.night .city_overview_building.statue_ares_1 { + top: 621px; + left: 1140px; +} + +.ui_city_overview.night .city_overview_building.statue_artemis_0 { + top: 614px; + left: 1128px; +} + +.ui_city_overview.night .city_overview_building.statue_artemis_1 { + top: 628px; + left: 1140px; +} + +.ui_city_overview.night .city_overview_building.statue_athena_0 { + top: 610px; + left: 1129px; +} + +.ui_city_overview.night .city_overview_building.statue_athena_1 { + top: 615px; + left: 1140px; +} + +.ui_city_overview.night .city_overview_building.statue_hades_0 { + top: 615px; + left: 1128px; +} + +.ui_city_overview.night .city_overview_building.statue_hades_1 { + top: 615px; + left: 1139px; +} + +.ui_city_overview.night .city_overview_building.statue_hera_0 { + top: 624px; + left: 1140px; +} + +.ui_city_overview.night .city_overview_building.statue_hera_1 { + top: 629px; + left: 1140px; +} + +.ui_city_overview.night .city_overview_building.statue_poseidon_0 { + top: 611px; + left: 1140px; +} + +.ui_city_overview.night .city_overview_building.statue_poseidon_1 { + top: 615px; + left: 1140px; +} + +.ui_city_overview.night .city_overview_building.statue_zeus_0 { + top: 623px; + left: 1139px; +} + +.ui_city_overview.night .city_overview_building.statue_zeus_1 { + top: 623px; + left: 1139px; +} + +.ui_city_overview.night .city_overview_building.statue_0 { + top: 645px; + left: 1153px; +} + +.ui_city_overview.night .city_overview_building.statue_1 { + top: 645px; + left: 1153px; +} + +.ui_city_overview.night .city_overview_building.stoner_0 { + top: 543px; + left: 712px; +} + +.ui_city_overview.night .city_overview_building.stoner_1 { + top: 530px; + left: 667px; +} + +.ui_city_overview.night .city_overview_building.stoner_1c { + top: 530px; + left: 694px; +} + +.ui_city_overview.night .city_overview_building.stoner_2 { + top: 530px; + left: 670px; +} + +.ui_city_overview.night .city_overview_building.stoner_2c { + top: 530px; + left: 696px; +} + +.ui_city_overview.night .city_overview_building.stoner_3 { + top: 531px; + left: 670px; +} + +.ui_city_overview.night .city_overview_building.stoner_3c { + top: 531px; + left: 696px; +} + +.ui_city_overview.night .city_overview_building.storage_0 { + top: 571px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.storage_1 { + top: 570px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.storage_1c { + top: 570px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.storage_2 { + top: 570px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.storage_2c { + top: 570px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.storage_3 { + top: 567px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.storage_3c { + top: 567px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.storage_4 { + top: 566px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.storage_4c { + top: 566px; + left: 949px; +} + +.ui_city_overview.night .city_overview_building.street_academy { + top: 471px; + left: 884px; +} + +.ui_city_overview.night .city_overview_building.street_barracks { + top: 471px; + left: 884px; +} + +.ui_city_overview.night .city_overview_building.street_market { + top: 543px; + left: 1157px; +} + +.ui_city_overview.night .city_overview_building.street_storage { + top: 583px; + left: 943px; +} + +.ui_city_overview.night .city_overview_building.street_temple { + top: 433px; + left: 700px; +} + +.ui_city_overview.night .city_overview_building.temple_0 { + top: 428px; + left: 666px; +} + +.ui_city_overview.night .city_overview_building.temple_1 { + top: 438px; + left: 665px; +} + +.ui_city_overview.night .city_overview_building.temple_1c { + top: 437px; + left: 665px; +} + +.ui_city_overview.night .city_overview_building.temple_2 { + top: 424px; + left: 665px; +} + +.ui_city_overview.night .city_overview_building.temple_2c { + top: 414px; + left: 665px; +} + +.ui_city_overview.night .city_overview_building.temple_3 { + top: 412px; + left: 670px; +} + +.ui_city_overview.night .city_overview_building.temple_3c { + top: 411px; + left: 669px; +} + +.ui_city_overview.night .city_overview_building.temple_4 { + top: 412px; + left: 670px; +} + +.ui_city_overview.night .city_overview_building.temple_4c { + top: 411px; + left: 669px; +} + +.ui_city_overview.night .city_overview_building.theater_0 { + top: 361px; + left: 848px; +} + +.ui_city_overview.night .city_overview_building.theater_1 { + top: 360px; + left: 848px; +} + +.ui_city_overview.night .city_overview_building.thermal_0 { + top: 337px; + left: 859px; +} + +.ui_city_overview.night .city_overview_building.thermal_1 { + top: 340px; + left: 859px; +} + +.ui_city_overview.night .city_overview_building.tower_0 { + top: 624px; + left: 1150px; +} + +.ui_city_overview.night .city_overview_building.tower_1 { + top: 610px; + left: 1141px; +} + +.ui_city_overview.night .city_overview_building.trade_office_0 { + top: 619px; + left: 1142px; +} + +.ui_city_overview.night .city_overview_building.trade_office_1 { + top: 618px; + left: 1142px; +} + +.ui_city_overview.night .city_overview_building.trader_1 { + top: 673px; + left: 750px; +} + +.ui_city_overview.night .city_overview_building.trader_reflection_1 { + top: 722px; + left: 729px; +} + +.ui_city_overview.night .city_overview_building.wall_0 { + top: 476px; + left: 658px; +} + +.ui_city_overview.night .city_overview_building.wall_1 { + top: 411px; + left: 625px; +} + +.ui_city_overview.night .city_overview_building.wall_1c { + top: 410px; + left: 625px; +} + +.ui_city_overview.night .city_overview_building.wall_2 { + top: 400px; + left: 624px; +} + +.ui_city_overview.night .city_overview_building.wall_2c { + top: 400px; + left: 624px; +} + +.ui_city_overview.night .city_overview_building.wall_3 { + top: 398px; + left: 625px; +} + +.ui_city_overview.night .city_overview_building.wall_3c { + top: 398px; + left: 625px; +} + +.ui_city_overview.night .city_overview_building.boat1 { + top: 901px; + left: 1203px; +} + +.ui_city_overview.night .city_overview_building.boat2 { + top: 1065px; + left: 570px; +} + +.ui_city_overview.night .city_overview_building.boat3 { + top: 801px; + left: 286px; +} + +.ui_city_overview.night .city_overview_building.boat5 { + top: 1019px; + left: 1545px; +} + +.ui_city_overview.night .city_overview_building.boat6 { + top: 114px; + left: 1317px; +} + +.ui_city_overview .city_overview_overlay.academy { + top: 319px; + left: 997px; +} + +.ui_city_overview .city_overview_overlay.barracks { + top: 471px; + left: 797px; +} + +.ui_city_overview .city_overview_overlay.docks { + top: 639px; + left: 870px; +} + +.ui_city_overview .city_overview_overlay.farm { + top: 408px; + left: 1232px; +} + +.ui_city_overview .city_overview_overlay.hide { + top: 613px; + left: 1018px; +} + +.ui_city_overview .city_overview_overlay.ironer { + top: 304px; + left: 699px; +} + +.ui_city_overview .city_overview_overlay.lumber { + top: 714px; + left: 1076px; +} + +.ui_city_overview .city_overview_overlay.main { + top: 453px; + left: 1064px; +} + +.ui_city_overview .city_overview_overlay.market { + top: 520px; + left: 1188px; +} + +.ui_city_overview .city_overview_overlay.stoner { + top: 543px; + left: 712px; +} + +.ui_city_overview .city_overview_overlay.storage { + top: 515px; + left: 929px; +} + +.ui_city_overview .city_overview_overlay.temple { + top: 406px; + left: 669px; +} + +.ui_city_overview .city_overview_overlay.wall { + top: 611px; + left: 1330px; +} + +.ui_city_overview .city_overview_overlay.special1 { + top: 330px; + left: 845px; +} + +.ui_city_overview .city_overview_overlay.special1_container { + top: 382px; + left: 670px; +} + +.ui_city_overview .city_overview_overlay.theater { + top: 330px; + left: 845px; +} + +.ui_city_overview .city_overview_overlay.thermal { + top: 330px; + left: 845px; +} + +.ui_city_overview .city_overview_overlay.library { + top: 330px; + left: 845px; +} + +.ui_city_overview .city_overview_overlay.lighthouse { + top: 630px; + left: 650px; +} + +.ui_city_overview .city_overview_overlay.special2 { + top: 613px; + left: 1130px; +} + +.ui_city_overview .city_overview_overlay.special2_container { + top: 665px; + left: 945px; +} + +.ui_city_overview .city_overview_overlay.tower { + top: 613px; + left: 1120px; +} + +.ui_city_overview .city_overview_overlay.statue { + top: 613px; + left: 1120px; +} + +.ui_city_overview .city_overview_overlay.oracle { + top: 613px; + left: 1120px; +} + +.ui_city_overview .city_overview_overlay.trade_office { + top: 613px; + left: 1120px; +} + +.ui_city_overview .city_overview_overlay.place { + top: -10000px; + left: -10000px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.docks { + top: 647px; + left: 957px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.lumber { + top: 674px; + left: 1132px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.academy { + top: 341px; + left: 1052px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.barracks { + top: 471px; + left: 891px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.farm { + top: 408px; + left: 1232px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.hide { + top: 613px; + left: 1079px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.ironer { + top: 327px; + left: 768px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.main { + top: 453px; + left: 1105px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.market { + top: 520px; + left: 1255px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.stoner { + top: 543px; + left: 758px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.storage { + top: 534px; + left: 1020px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.temple { + top: 398px; + left: 727px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.wall { + top: 611px; + left: 1386px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.tower { + top: 613px; + left: 1188px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.statue { + top: 613px; + left: 1188px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.oracle { + top: 613px; + left: 1188px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.trade_office { + top: 613px; + left: 1188px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.theater { + top: 337px; + left: 927px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.thermal { + top: 337px; + left: 927px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.library { + top: 337px; + left: 927px; +} + +.ui_city_overview .construction_overlay_frame_instant_buy.lighthouse { + top: 580px; + left: 708px; +} + +.ui_city_overview .city_overview_building { + z-index: 10; +} + +.ui_city_overview .city_overview_building.wall_0 { + z-index: 15; +} + +.ui_city_overview .city_overview_building.wall_1 { + z-index: 15; +} + +.ui_city_overview .city_overview_building.wall_1c { + z-index: 15; +} + +.ui_city_overview .city_overview_building.wall_2 { + z-index: 15; +} + +.ui_city_overview .city_overview_building.wall_2c { + z-index: 15; +} + +.ui_city_overview .city_overview_building.wall_3 { + z-index: 15; +} + +.ui_city_overview .city_overview_building.wall_3c { + z-index: 15; +} + +.ui_city_overview .city_overview_building.academy_3 { + z-index: 15; +} + +.ui_city_overview .city_overview_building.field_2 { + z-index: 9; +} + +.ui_city_overview .city_overview_building.field_3 { + z-index: 9; +} + +.ui_city_overview .city_overview_building.thermal_1 { + z-index: 9; +} + +.city_overview_building_animation.academy { + width: 26px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/academy.gif) no-repeat 0 0; +} + +.city_overview_building_animation.barracks { + width: 114px; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/barracks.gif) no-repeat 0 0; +} + +.city_overview_building_animation.docks { + width: 203px; + height: 132px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/docks.gif) no-repeat 0 0; +} + +.city_overview_building_animation.farm { + width: 40px; + height: 36px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/farm.gif) no-repeat 0 0; +} + +.city_overview_building_animation.ironer_1 { + width: 87px; + height: 61px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/ironer_1.gif) no-repeat 0 0; +} + +.city_overview_building_animation.ironer_2 { + width: 87px; + height: 61px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/ironer_2.gif) no-repeat 0 0; +} + +.city_overview_building_animation.ironer_3 { + width: 87px; + height: 61px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/ironer_3.gif) no-repeat 0 0; +} + +.city_overview_building_animation.lumber { + width: 33px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/lumber.gif) no-repeat 0 0; +} + +.city_overview_building_animation.main_1 { + width: 34px; + height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/main_1.gif) no-repeat 0 0; +} + +.city_overview_building_animation.main_2 { + width: 34px; + height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/main_2.gif) no-repeat 0 0; +} + +.city_overview_building_animation.main_3_1 { + width: 34px; + height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/main_3_1.gif) no-repeat 0 0; +} + +.city_overview_building_animation.main_3_2 { + width: 70px; + height: 67px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/main_3_2.gif) no-repeat 0 0; +} + +.city_overview_building_animation.market_1 { + width: 72px; + height: 45px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/market_1.gif) no-repeat 0 0; +} + +.city_overview_building_animation.market_2 { + width: 72px; + height: 45px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/market_2.gif) no-repeat 0 0; +} + +.city_overview_building_animation.market_3 { + width: 86px; + height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/market_3.gif) no-repeat 0 0; +} + +.city_overview_building_animation.mill { + width: 56px; + height: 56px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/mill.gif) no-repeat 0 0; +} + +.city_overview_building_animation.olympic { + width: 84px; + height: 66px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/olympic.gif) no-repeat 0 0; +} + +.city_overview_building_animation.place { + width: 77px; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/place.gif) no-repeat 0 0; +} + +.city_overview_building_animation.stoner_1 { + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/stoner_1.gif) no-repeat 0 0; +} + +.city_overview_building_animation.stoner_2 { + width: 29px; + height: 29px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/stoner_2.gif) no-repeat 0 0; +} + +.city_overview_building_animation.stoner_3 { + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/stoner_3.gif) no-repeat 0 0; +} + +.city_overview_building_animation.temple { + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/temple_2.62.gif) no-repeat 0 0; +} + +.city_overview_building_animation.theater { + width: 126px; + height: 69px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/theater.gif) no-repeat 0 0; +} + +.city_overview_building_animation.triumph { + width: 99px; + height: 78px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/triumph.gif) no-repeat 0 0; +} + +.city_overview_building_animation.construction_barracks { + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/construction_barracks.gif) no-repeat 0 0; +} + +.city_overview_building_animation.construction_docks { + width: 31px; + height: 31px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/construction_docks.gif) no-repeat 0 0; +} + +.city_overview_building_animation.construction_farm { + width: 37px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/construction_farm_2.79.gif) no-repeat 0 0; +} + +.city_overview_building_animation.construction_main_1 { + width: 37px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/construction_main_1.gif) no-repeat 0 0; +} + +.city_overview_building_animation.construction_main_2 { + width: 37px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/construction_main_2.gif) no-repeat 0 0; +} + +.city_overview_building_animation.construction_main_3 { + width: 37px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/construction_main_3.gif) no-repeat 0 0; +} + +.city_overview_building_animation.construction_stoner { + width: 38px; + height: 38px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/construction_stoner.gif) no-repeat 0 0; +} + +.city_overview_building_animation.construction_temple { + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/buildings/animations/construction_temple.gif) no-repeat 0 0; +} + +.city_overview_building_animation.blessed_town_place { + width: 66px; + height: 78px; +} + +.ui_city_overview .city_overview_building_animation.academy { + top: 456px; + left: 1010px; +} + +.ui_city_overview .city_overview_building_animation.barracks { + top: 539px; + left: 850px; +} + +.ui_city_overview .city_overview_building_animation.docks { + top: 655px; + left: 879px; +} + +.ui_city_overview .city_overview_building_animation.farm { + top: 430px; + left: 1245px; +} + +.ui_city_overview .city_overview_building_animation.ironer_1 { + top: 394px; + left: 771px; +} + +.ui_city_overview .city_overview_building_animation.ironer_2 { + top: 404px; + left: 779px; +} + +.ui_city_overview .city_overview_building_animation.ironer_3 { + top: 394px; + left: 760px; +} + +.ui_city_overview .city_overview_building_animation.lumber { + top: 752px; + left: 1096px; +} + +.ui_city_overview .city_overview_building_animation.main_1 { + top: 545px; + left: 1085px; +} + +.ui_city_overview .city_overview_building_animation.main_2 { + top: 545px; + left: 1085px; +} + +.ui_city_overview .city_overview_building_animation.main_3_1 { + top: 560px; + left: 1092px; +} + +.ui_city_overview .city_overview_building_animation.main_3_2 { + top: 514px; + left: 1120px; +} + +.ui_city_overview .city_overview_building_animation.market_1 { + top: 575px; + left: 1228px; +} + +.ui_city_overview .city_overview_building_animation.market_2 { + top: 573px; + left: 1227px; +} + +.ui_city_overview .city_overview_building_animation.market_3 { + top: 568px; + left: 1213px; +} + +.ui_city_overview .city_overview_building_animation.mill { + top: 425px; + left: 1180px; +} + +.ui_city_overview .city_overview_building_animation.olympic { + top: 490px; + left: 1556px; +} + +.ui_city_overview .city_overview_building_animation.place { + top: 580px; + left: 1121px; +} + +.ui_city_overview .city_overview_building_animation.stoner_1 { + top: 593px; + left: 827px; +} + +.ui_city_overview .city_overview_building_animation.stoner_2 { + top: 574px; + left: 745px; +} + +.ui_city_overview .city_overview_building_animation.stoner_3 { + top: 620px; + left: 865px; +} + +.ui_city_overview .city_overview_building_animation.temple { + top: 459px; + left: 738px; +} + +.ui_city_overview .city_overview_building_animation.theater { + top: 360px; + left: 877px; +} + +.ui_city_overview .city_overview_building_animation.triumph { + top: 441px; + left: 924px; +} + +.ui_city_overview .city_overview_building_animation.construction_barracks { + top: 537px; + left: 880px; +} + +.ui_city_overview .city_overview_building_animation.construction_docks { + top: 726px; + left: 997px; +} + +.ui_city_overview .city_overview_building_animation.construction_farm { + top: 485px; + left: 1254px; +} + +.ui_city_overview .city_overview_building_animation.construction_main_1 { + top: 537px; + left: 1038px; +} + +.ui_city_overview .city_overview_building_animation.construction_main_2 { + top: 548px; + left: 1038px; +} + +.ui_city_overview .city_overview_building_animation.construction_main_3 { + top: 531px; + left: 1038px; +} + +.ui_city_overview .city_overview_building_animation.construction_stoner { + top: 622px; + left: 797px; +} + +.ui_city_overview .city_overview_building_animation.construction_temple { + top: 457px; + left: 722px; +} + +.ui_city_overview .city_overview_building_animation { + z-index: 11; +} + +.ui_city_overview .city_overview_building_animation.farm { + z-index: 9; +} + +.building_place_blessed_animation .building_place { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/building_place_blessed_animation_23497c9.png) no-repeat 0 -78px; + width: 65px; + height: 79px; +} + +.building_place_blessed_animation .building_place_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/building_place_blessed_animation_23497c9.png) no-repeat 0 0; + width: 66px; + height: 78px; +} + +.context_icon#_unknown_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +.context_icon#attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +.context_icon#claim_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat 0 -50px; + width: 50px; + height: 50px; +} + +.context_icon#colonize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -50px -50px; + width: 50px; + height: 50px; +} + +.context_icon#espionage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -100px 0; + width: 50px; + height: 50px; +} + +.context_icon#goToTown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -100px -50px; + width: 50px; + height: 50px; +} + +.context_icon#god { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat 0 -100px; + width: 50px; + height: 50px; +} + +.context_icon#info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -50px -100px; + width: 50px; + height: 50px; +} + +.context_icon#inventory_put_in { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -100px -100px; + width: 50px; + height: 50px; +} + +.context_icon#inventory_trash { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -150px 0; + width: 50px; + height: 50px; +} + +.context_icon#inventory_use { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -150px -50px; + width: 50px; + height: 50px; +} + +.context_icon#invite_a_friend { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -150px -100px; + width: 50px; + height: 50px; +} + +.context_icon#island_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat 0 -150px; + width: 50px; + height: 50px; +} + +.context_icon#item_reward_stash { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -50px -150px; + width: 50px; + height: 50px; +} + +.context_icon#item_reward_trash { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -100px -150px; + width: 50px; + height: 50px; +} + +.context_icon#item_reward_use { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -150px -150px; + width: 50px; + height: 50px; +} + +.context_icon#item_shop_not_useable { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -200px 0; + width: 50px; + height: 50px; +} + +.context_icon#item_shop_stash { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -200px -50px; + width: 50px; + height: 50px; +} + +.context_icon#item_shop_use { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -200px -100px; + width: 50px; + height: 50px; +} + +.context_icon#jump_to { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -200px -150px; + width: 50px; + height: 50px; +} + +.context_icon#jump_to_island { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat 0 -200px; + width: 50px; + height: 50px; +} + +.context_icon#pillage_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -50px -200px; + width: 50px; + height: 50px; +} + +.context_icon#portal_attack_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -100px -200px; + width: 50px; + height: 50px; +} + +.context_icon#portal_support_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -150px -200px; + width: 50px; + height: 50px; +} + +.context_icon#select_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -200px -200px; + width: 50px; + height: 50px; +} + +.context_icon#support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -250px 0; + width: 50px; + height: 50px; +} + +.context_icon#trading { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -250px -50px; + width: 50px; + height: 50px; +} + +.context_icon#units_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -250px -100px; + width: 50px; + height: 50px; +} + +.context_icon#wonder_donations { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -250px -150px; + width: 50px; + height: 50px; +} + +.context_icon#ww_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/context_menu/icons_f6f7674.png) no-repeat -250px -200px; + width: 50px; + height: 50px; +} + +.construction_queue_sprite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; +} + +.construction_queue_sprite.arrow_green { + background-position: -422px -92px; + width: 5px; + height: 9px; +} + +.construction_queue_sprite.arrow_green_ver { + background-position: -422px -101px; + width: 10px; + height: 6px; +} + +.construction_queue_sprite.arrow_red_ver { + background-position: -427px -92px; + width: 10px; + height: 6px; +} + +.construction_queue_sprite.build_button_hover { + background-position: -185px -347px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.build_button_idle { + background-position: -222px -347px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.build_button_inactive { + background-position: -348px -92px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.build_button_pressed { + background-position: -37px -347px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.button_reduce_hover { + background-position: -148px -347px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.button_reduce_idle { + background-position: -355px -287px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.button_reduce_inactive { + background-position: -74px -347px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.button_reduce_pressed { + background-position: -111px -347px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.empty_slot { + background-position: -308px -92px; + width: 40px; + height: 40px; +} + +.construction_queue_sprite.empty_slot_building { + background-position: -268px -92px; + width: 40px; + height: 40px; +} + +.construction_queue_sprite.empty_slot_research { + background-position: -148px -92px; + width: 40px; + height: 40px; +} + +.construction_queue_sprite.empty_slot_ship { + background-position: -228px -92px; + width: 40px; + height: 40px; +} + +.construction_queue_sprite.empty_slot_unit { + background-position: -188px -92px; + width: 40px; + height: 40px; +} + +.construction_queue_sprite.frame { + background-position: -309px -287px; + width: 46px; + height: 47px; +} + +.construction_queue_sprite.overlay_arrow { + background-position: -326px -194px; + width: 35px; + height: 24px; +} + +.construction_queue_sprite.queue_BG_slice-left { + background-position: -148px 0; + width: 294px; + height: 92px; +} + +.construction_queue_sprite.queue_BG_slice-right { + background-position: 0 -135px; + width: 293px; + height: 92px; +} + +.construction_queue_sprite.queue_advisor-banner-BG { + background-position: -208px -227px; + width: 165px; + height: 60px; +} + +.construction_queue_sprite.queue_bg_senate_left { + background-position: 0 -287px; + width: 209px; + height: 60px; +} + +.construction_queue_sprite.queue_bg_senate_right { + background-position: 0 -227px; + width: 208px; + height: 60px; +} + +.construction_queue_sprite.queue_button-hover { + background-position: -293px -135px; + width: 59px; + height: 59px; +} + +.construction_queue_sprite.queue_button-idle { + background-position: -373px -227px; + width: 59px; + height: 59px; +} + +.construction_queue_sprite.queue_button-pressed { + background-position: -352px -135px; + width: 59px; + height: 59px; +} + +.construction_queue_sprite.spezial_button-hover { + background-position: -385px -92px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.spezial_button-idle { + background-position: -259px -347px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.spezial_button-inactive { + background-position: -392px -287px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.spezial_button-pressed { + background-position: 0 -347px; + width: 37px; + height: 37px; +} + +.construction_queue_sprite.spezial_deco-shadow { + background-position: -209px -287px; + width: 100px; + height: 50px; +} + +.construction_queue_sprite.spezial_deco { + background-position: -293px -219px; + width: 89px; + height: 5px; +} + +.construction_queue_sprite.spezial_gradient_left { + background-position: -74px 0; + width: 74px; + height: 135px; +} + +.construction_queue_sprite.spezial_gradient_right { + background-position: 0 0; + width: 74px; + height: 135px; +} + +.construction_queue_sprite.tear_down { + background-position: -411px -135px; + width: 30px; + height: 26px; +} + +.construction_queue_sprite.timer_BG { + background-position: -296px -358px; + width: 120px; + height: 11px; +} + +.construction_queue_sprite.timer_green { + background-position: -296px -347px; + width: 120px; + height: 11px; +} + +.construction_queue_sprite.tooltip_arrow { + background-position: -293px -194px; + width: 33px; + height: 25px; +} + +.construction_queue_sprite.tooltip_divider { + background-position: -148px -132px; + width: 216px; + height: 1px; +} + +.minimized_windows_area_sprite .button_scroll_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -24px -36px; + width: 14px; + height: 22px; +} + +.minimized_windows_area_sprite .button_scroll_left_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -72px -22px; + width: 14px; + height: 22px; +} + +.minimized_windows_area_sprite .button_scroll_left_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat 0 0; + width: 24px; + height: 36px; +} + +.minimized_windows_area_sprite .button_scroll_left_box_overloaded { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -24px 0; + width: 24px; + height: 36px; +} + +.minimized_windows_area_sprite .button_scroll_left_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -86px 0; + width: 14px; + height: 22px; +} + +.minimized_windows_area_sprite .button_scroll_left_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -86px -22px; + width: 14px; + height: 22px; +} + +.minimized_windows_area_sprite .button_scroll_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -38px -36px; + width: 14px; + height: 22px; +} + +.minimized_windows_area_sprite .button_scroll_right_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -72px -44px; + width: 14px; + height: 22px; +} + +.minimized_windows_area_sprite .button_scroll_right_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat 0 -36px; + width: 24px; + height: 36px; +} + +.minimized_windows_area_sprite .button_scroll_right_box_overloaded { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -48px 0; + width: 24px; + height: 36px; +} + +.minimized_windows_area_sprite .button_scroll_right_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -52px -36px; + width: 14px; + height: 22px; +} + +.minimized_windows_area_sprite .button_scroll_right_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -72px 0; + width: 14px; + height: 22px; +} + +@-webkit-keyframes academy_night_animation-animation { + 100% { + background-position: 0 -660px; + } +} + +@-ms-keyframes academy_night_animation-animation { + 100% { + background-position: 0 -660px; + } +} + +@keyframes academy_night_animation-animation { + 100% { + background-position: 0 -660px; + } +} + +.night .city_overview_building_animation.academy { + width: 26px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/academy_night_animation32cdce4.png) no-repeat 0 0; + -webkit-animation: academy_night_animation-animation 2.3s steps(22) infinite; + -ms-animation: academy_night_animation-animation 2.3s steps(22) infinite; + animation: academy_night_animation-animation 2.3s steps(22) infinite; +} + +@-webkit-keyframes barracks_night_animation-animation { + 100% { + background-position: 0 -902px; + } +} + +@-ms-keyframes barracks_night_animation-animation { + 100% { + background-position: 0 -902px; + } +} + +@keyframes barracks_night_animation-animation { + 100% { + background-position: 0 -902px; + } +} + +.night .city_overview_building_animation.barracks { + width: 114px; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/barracks_night_animationf69e029.png) no-repeat 0 0; + -webkit-animation: barracks_night_animation-animation 2.3s steps(22) infinite; + -ms-animation: barracks_night_animation-animation 2.3s steps(22) infinite; + animation: barracks_night_animation-animation 2.3s steps(22) infinite; +} + +@-webkit-keyframes docks_night_animation-animation { + 100% { + background-position: 0 -3036px; + } +} + +@-ms-keyframes docks_night_animation-animation { + 100% { + background-position: 0 -3036px; + } +} + +@keyframes docks_night_animation-animation { + 100% { + background-position: 0 -3036px; + } +} + +.night .city_overview_building_animation.docks { + width: 203px; + height: 132px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/docks_night_animation8da8107.png) no-repeat 0 0; + -webkit-animation: docks_night_animation-animation 2.4s steps(23) infinite; + -ms-animation: docks_night_animation-animation 2.4s steps(23) infinite; + animation: docks_night_animation-animation 2.4s steps(23) infinite; +} + +@-webkit-keyframes farm_night_animation-animation { + 100% { + background-position: 0 -540px; + } +} + +@-ms-keyframes farm_night_animation-animation { + 100% { + background-position: 0 -540px; + } +} + +@keyframes farm_night_animation-animation { + 100% { + background-position: 0 -540px; + } +} + +.night .city_overview_building_animation.farm { + width: 40px; + height: 36px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/farm_night_animation56c3cf0.png) no-repeat 0 0; + -webkit-animation: farm_night_animation-animation 1.6s steps(15) infinite; + -ms-animation: farm_night_animation-animation 1.6s steps(15) infinite; + animation: farm_night_animation-animation 1.6s steps(15) infinite; +} + +@-webkit-keyframes ironer_1_night_animation-animation { + 100% { + background-position: 0 -2013px; + } +} + +@-ms-keyframes ironer_1_night_animation-animation { + 100% { + background-position: 0 -2013px; + } +} + +@keyframes ironer_1_night_animation-animation { + 100% { + background-position: 0 -2013px; + } +} + +.night .city_overview_building_animation.ironer_1 { + width: 87px; + height: 61px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/ironer_1_night_animationf93a79b.png) no-repeat 0 0; + -webkit-animation: ironer_1_night_animation-animation 3.4s steps(33) infinite; + -ms-animation: ironer_1_night_animation-animation 3.4s steps(33) infinite; + animation: ironer_1_night_animation-animation 3.4s steps(33) infinite; +} + +@-webkit-keyframes ironer_3_night_animation-animation { + 100% { + background-position: 0 -2013px; + } +} + +@-ms-keyframes ironer_3_night_animation-animation { + 100% { + background-position: 0 -2013px; + } +} + +@keyframes ironer_3_night_animation-animation { + 100% { + background-position: 0 -2013px; + } +} + +.night .city_overview_building_animation.ironer_3 { + width: 87px; + height: 61px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/ironer_3_night_animationf93a79b.png) no-repeat 0 0; + -webkit-animation: ironer_3_night_animation-animation 3.4s steps(33) infinite; + -ms-animation: ironer_3_night_animation-animation 3.4s steps(33) infinite; + animation: ironer_3_night_animation-animation 3.4s steps(33) infinite; +} + +@-webkit-keyframes lumber_night_animation-animation { + 100% { + background-position: 0 -481px; + } +} + +@-ms-keyframes lumber_night_animation-animation { + 100% { + background-position: 0 -481px; + } +} + +@keyframes lumber_night_animation-animation { + 100% { + background-position: 0 -481px; + } +} + +.night .city_overview_building_animation.lumber { + width: 33px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/lumber_night_animation701a237.png) no-repeat 0 0; + -webkit-animation: lumber_night_animation-animation 1.4s steps(13) infinite; + -ms-animation: lumber_night_animation-animation 1.4s steps(13) infinite; + animation: lumber_night_animation-animation 1.4s steps(13) infinite; +} + +@-webkit-keyframes main_1_night_animation-animation { + 100% { + background-position: 0 -510px; + } +} + +@-ms-keyframes main_1_night_animation-animation { + 100% { + background-position: 0 -510px; + } +} + +@keyframes main_1_night_animation-animation { + 100% { + background-position: 0 -510px; + } +} + +.night .city_overview_building_animation.main_1 { + width: 34px; + height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/main_1_night_animationa2c1916.png) no-repeat 0 0; + -webkit-animation: main_1_night_animation-animation 1.6s steps(15) infinite; + -ms-animation: main_1_night_animation-animation 1.6s steps(15) infinite; + animation: main_1_night_animation-animation 1.6s steps(15) infinite; +} + +@-webkit-keyframes main_3_1_night_animation-animation { + 100% { + background-position: 0 -510px; + } +} + +@-ms-keyframes main_3_1_night_animation-animation { + 100% { + background-position: 0 -510px; + } +} + +@keyframes main_3_1_night_animation-animation { + 100% { + background-position: 0 -510px; + } +} + +.night .city_overview_building_animation.main_3_1 { + width: 34px; + height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/main_3_1_night_animationff21063.png) no-repeat 0 0; + -webkit-animation: main_3_1_night_animation-animation 1.6s steps(15) infinite; + -ms-animation: main_3_1_night_animation-animation 1.6s steps(15) infinite; + animation: main_3_1_night_animation-animation 1.6s steps(15) infinite; +} + +@-webkit-keyframes main_3_2_night_animation-animation { + 100% { + background-position: 0 -2613px; + } +} + +@-ms-keyframes main_3_2_night_animation-animation { + 100% { + background-position: 0 -2613px; + } +} + +@keyframes main_3_2_night_animation-animation { + 100% { + background-position: 0 -2613px; + } +} + +.night .city_overview_building_animation.main_3_2 { + width: 70px; + height: 67px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/main_3_2_night_animation500f4b3.png) no-repeat 0 0; + -webkit-animation: main_3_2_night_animation-animation 4s steps(39) infinite; + -ms-animation: main_3_2_night_animation-animation 4s steps(39) infinite; + animation: main_3_2_night_animation-animation 4s steps(39) infinite; +} + +@-webkit-keyframes market_1_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +@-ms-keyframes market_1_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +@keyframes market_1_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +.night .city_overview_building_animation.market_1 { + width: 72px; + height: 45px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/market_1_night_animation5064dc8.png) no-repeat 0 0; + -webkit-animation: market_1_night_animation-animation 1.1s steps(10) infinite; + -ms-animation: market_1_night_animation-animation 1.1s steps(10) infinite; + animation: market_1_night_animation-animation 1.1s steps(10) infinite; +} + +@-webkit-keyframes market_2_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +@-ms-keyframes market_2_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +@keyframes market_2_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +.night .city_overview_building_animation.market_2 { + width: 72px; + height: 45px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/market_2_night_animation5064dc8.png) no-repeat 0 0; + -webkit-animation: market_2_night_animation-animation 1.1s steps(10) infinite; + -ms-animation: market_2_night_animation-animation 1.1s steps(10) infinite; + animation: market_2_night_animation-animation 1.1s steps(10) infinite; +} + +@-webkit-keyframes market_3_night_animation-animation { + 100% { + background-position: 0 -340px; + } +} + +@-ms-keyframes market_3_night_animation-animation { + 100% { + background-position: 0 -340px; + } +} + +@keyframes market_3_night_animation-animation { + 100% { + background-position: 0 -340px; + } +} + +.night .city_overview_building_animation.market_3 { + width: 86px; + height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/market_3_night_animationfed83e5.png) no-repeat 0 0; + -webkit-animation: market_3_night_animation-animation 1.1s steps(10) infinite; + -ms-animation: market_3_night_animation-animation 1.1s steps(10) infinite; + animation: market_3_night_animation-animation 1.1s steps(10) infinite; +} + +@-webkit-keyframes mill_night_animation-animation { + 100% { + background-position: 0 -1120px; + } +} + +@-ms-keyframes mill_night_animation-animation { + 100% { + background-position: 0 -1120px; + } +} + +@keyframes mill_night_animation-animation { + 100% { + background-position: 0 -1120px; + } +} + +.night .city_overview_building_animation.mill { + width: 56px; + height: 56px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/mill_night_animatione898700.png) no-repeat 0 0; + -webkit-animation: mill_night_animation-animation 2.1s steps(20) infinite; + -ms-animation: mill_night_animation-animation 2.1s steps(20) infinite; + animation: mill_night_animation-animation 2.1s steps(20) infinite; +} + +@-webkit-keyframes olympic_night_animation-animation { + 100% { + background-position: 0 -2574px; + } +} + +@-ms-keyframes olympic_night_animation-animation { + 100% { + background-position: 0 -2574px; + } +} + +@keyframes olympic_night_animation-animation { + 100% { + background-position: 0 -2574px; + } +} + +.night .city_overview_building_animation.olympic { + width: 84px; + height: 66px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/olympic_night_animation9a3ca30.png) no-repeat 0 0; + -webkit-animation: olympic_night_animation-animation 4s steps(39) infinite; + -ms-animation: olympic_night_animation-animation 4s steps(39) infinite; + animation: olympic_night_animation-animation 4s steps(39) infinite; +} + +@-webkit-keyframes place_night_animation-animation { + 100% { + background-position: 0 -533px; + } +} + +@-ms-keyframes place_night_animation-animation { + 100% { + background-position: 0 -533px; + } +} + +@keyframes place_night_animation-animation { + 100% { + background-position: 0 -533px; + } +} + +.night .city_overview_building_animation.place { + width: 77px; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/place_night_animatione8832d4.png) no-repeat 0 0; + -webkit-animation: place_night_animation-animation 1.4s steps(13) infinite; + -ms-animation: place_night_animation-animation 1.4s steps(13) infinite; + animation: place_night_animation-animation 1.4s steps(13) infinite; +} + +@-webkit-keyframes stoner_1_night_animation-animation { + 100% { + background-position: 0 -665px; + } +} + +@-ms-keyframes stoner_1_night_animation-animation { + 100% { + background-position: 0 -665px; + } +} + +@keyframes stoner_1_night_animation-animation { + 100% { + background-position: 0 -665px; + } +} + +.night .city_overview_building_animation.stoner_1 { + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/stoner_1_night_animationa8aba38.png) no-repeat 0 0; + -webkit-animation: stoner_1_night_animation-animation 2s steps(19) infinite; + -ms-animation: stoner_1_night_animation-animation 2s steps(19) infinite; + animation: stoner_1_night_animation-animation 2s steps(19) infinite; +} + +@-webkit-keyframes stoner_2_night_animation-animation { + 100% { + background-position: 0 -551px; + } +} + +@-ms-keyframes stoner_2_night_animation-animation { + 100% { + background-position: 0 -551px; + } +} + +@keyframes stoner_2_night_animation-animation { + 100% { + background-position: 0 -551px; + } +} + +.night .city_overview_building_animation.stoner_2 { + width: 29px; + height: 29px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/stoner_2_night_animation7c006ae.png) no-repeat 0 0; + -webkit-animation: stoner_2_night_animation-animation 2s steps(19) infinite; + -ms-animation: stoner_2_night_animation-animation 2s steps(19) infinite; + animation: stoner_2_night_animation-animation 2s steps(19) infinite; +} + +@-webkit-keyframes stoner_3_night_animation-animation { + 100% { + background-position: 0 -700px; + } +} + +@-ms-keyframes stoner_3_night_animation-animation { + 100% { + background-position: 0 -700px; + } +} + +@keyframes stoner_3_night_animation-animation { + 100% { + background-position: 0 -700px; + } +} + +.night .city_overview_building_animation.stoner_3 { + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/stoner_3_night_animationf2c940c.png) no-repeat 0 0; + -webkit-animation: stoner_3_night_animation-animation 2.1s steps(20) infinite; + -ms-animation: stoner_3_night_animation-animation 2.1s steps(20) infinite; + animation: stoner_3_night_animation-animation 2.1s steps(20) infinite; +} + +@-webkit-keyframes temple_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +@-ms-keyframes temple_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +@keyframes temple_night_animation-animation { + 100% { + background-position: 0 -450px; + } +} + +.night .city_overview_building_animation.temple { + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/temple_night_animation3dfe860.png) no-repeat 0 0; + -webkit-animation: temple_night_animation-animation 1.6s steps(15) infinite; + -ms-animation: temple_night_animation-animation 1.6s steps(15) infinite; + animation: temple_night_animation-animation 1.6s steps(15) infinite; +} + +@-webkit-keyframes theater_night_animation-animation { + 100% { + background-position: 0 -966px; + } +} + +@-ms-keyframes theater_night_animation-animation { + 100% { + background-position: 0 -966px; + } +} + +@keyframes theater_night_animation-animation { + 100% { + background-position: 0 -966px; + } +} + +.night .city_overview_building_animation.theater { + width: 126px; + height: 69px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/theater_night_animation3c82818.png) no-repeat 0 0; + -webkit-animation: theater_night_animation-animation 1.5s steps(14) infinite; + -ms-animation: theater_night_animation-animation 1.5s steps(14) infinite; + animation: theater_night_animation-animation 1.5s steps(14) infinite; +} + +@-webkit-keyframes triumph_night_animation-animation { + 100% { + background-position: 0 -702px; + } +} + +@-ms-keyframes triumph_night_animation-animation { + 100% { + background-position: 0 -702px; + } +} + +@keyframes triumph_night_animation-animation { + 100% { + background-position: 0 -702px; + } +} + +.night .city_overview_building_animation.triumph { + width: 99px; + height: 78px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/triumph_night_animation3e2a9dc.png) no-repeat 0 0; + -webkit-animation: triumph_night_animation-animation 1s steps(9) infinite; + -ms-animation: triumph_night_animation-animation 1s steps(9) infinite; + animation: triumph_night_animation-animation 1s steps(9) infinite; +} + +@-webkit-keyframes construction_barracks_night_animation-animation { + 100% { + background-position: 0 -560px; + } +} + +@-ms-keyframes construction_barracks_night_animation-animation { + 100% { + background-position: 0 -560px; + } +} + +@keyframes construction_barracks_night_animation-animation { + 100% { + background-position: 0 -560px; + } +} + +.night .city_overview_building_animation.construction_barracks { + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/construction_barracks_night_animation5098405.png) no-repeat 0 0; + -webkit-animation: construction_barracks_night_animation-animation 1.7s steps(16) infinite; + -ms-animation: construction_barracks_night_animation-animation 1.7s steps(16) infinite; + animation: construction_barracks_night_animation-animation 1.7s steps(16) infinite; +} + +@-webkit-keyframes construction_docks_night_animation-animation { + 100% { + background-position: 0 -279px; + } +} + +@-ms-keyframes construction_docks_night_animation-animation { + 100% { + background-position: 0 -279px; + } +} + +@keyframes construction_docks_night_animation-animation { + 100% { + background-position: 0 -279px; + } +} + +.night .city_overview_building_animation.construction_docks { + width: 31px; + height: 31px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/construction_docks_night_animationcf8ffcd.png) no-repeat 0 0; + -webkit-animation: construction_docks_night_animation-animation 1s steps(9) infinite; + -ms-animation: construction_docks_night_animation-animation 1s steps(9) infinite; + animation: construction_docks_night_animation-animation 1s steps(9) infinite; +} + +@-webkit-keyframes construction_farm_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +@-ms-keyframes construction_farm_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +@keyframes construction_farm_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +.night .city_overview_building_animation.construction_farm { + width: 37px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/construction_farm_night_animatione5f24a0.png) no-repeat 0 0; + -webkit-animation: construction_farm_night_animation-animation 2.5s steps(24) infinite; + -ms-animation: construction_farm_night_animation-animation 2.5s steps(24) infinite; + animation: construction_farm_night_animation-animation 2.5s steps(24) infinite; +} + +@-webkit-keyframes construction_stoner_night_animation-animation { + 100% { + background-position: 0 -760px; + } +} + +@-ms-keyframes construction_stoner_night_animation-animation { + 100% { + background-position: 0 -760px; + } +} + +@keyframes construction_stoner_night_animation-animation { + 100% { + background-position: 0 -760px; + } +} + +.night .city_overview_building_animation.construction_stoner { + width: 38px; + height: 38px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/construction_stoner_night_animationdbd24d6.png) no-repeat 0 0; + -webkit-animation: construction_stoner_night_animation-animation 2.1s steps(20) infinite; + -ms-animation: construction_stoner_night_animation-animation 2.1s steps(20) infinite; + animation: construction_stoner_night_animation-animation 2.1s steps(20) infinite; +} + +@-webkit-keyframes construction_temple_night_animation-animation { + 100% { + background-position: 0 -700px; + } +} + +@-ms-keyframes construction_temple_night_animation-animation { + 100% { + background-position: 0 -700px; + } +} + +@keyframes construction_temple_night_animation-animation { + 100% { + background-position: 0 -700px; + } +} + +.night .city_overview_building_animation.construction_temple { + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/construction_temple_night_animation4491f44.png) no-repeat 0 0; + -webkit-animation: construction_temple_night_animation-animation 2.1s steps(20) infinite; + -ms-animation: construction_temple_night_animation-animation 2.1s steps(20) infinite; + animation: construction_temple_night_animation-animation 2.1s steps(20) infinite; +} + +@-webkit-keyframes construction_main_1_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +@-ms-keyframes construction_main_1_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +@keyframes construction_main_1_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +.night .city_overview_building_animation.construction_main_1 { + width: 37px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/construction_main_1_night_animation21bd4ac.png) no-repeat 0 0; + -webkit-animation: construction_main_1_night_animation-animation 2.5s steps(24) infinite; + -ms-animation: construction_main_1_night_animation-animation 2.5s steps(24) infinite; + animation: construction_main_1_night_animation-animation 2.5s steps(24) infinite; +} + +@-webkit-keyframes construction_main_2_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +@-ms-keyframes construction_main_2_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +@keyframes construction_main_2_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +.night .city_overview_building_animation.construction_main_2 { + width: 37px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/construction_main_2_night_animation21bd4ac.png) no-repeat 0 0; + -webkit-animation: construction_main_2_night_animation-animation 2.5s steps(24) infinite; + -ms-animation: construction_main_2_night_animation-animation 2.5s steps(24) infinite; + animation: construction_main_2_night_animation-animation 2.5s steps(24) infinite; +} + +@-webkit-keyframes construction_main_3_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +@-ms-keyframes construction_main_3_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +@keyframes construction_main_3_night_animation-animation { + 100% { + background-position: 0 -888px; + } +} + +.night .city_overview_building_animation.construction_main_3 { + width: 37px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/construction_main_3_night_animation21bd4ac.png) no-repeat 0 0; + -webkit-animation: construction_main_3_night_animation-animation 2.5s steps(24) infinite; + -ms-animation: construction_main_3_night_animation-animation 2.5s steps(24) infinite; + animation: construction_main_3_night_animation-animation 2.5s steps(24) infinite; +} + +.shared_single_event_images .ranking_bg_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/single_images/ranking_bg_middle_96af2b6.png) no-repeat 0 0; + width: 4px; + height: 149px; +} + +.shared_event_images .deco { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -306px -300px; + width: 42px; + height: 26px; +} + +.shared_event_images .deco_flipped { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -348px -300px; + width: 42px; + height: 26px; +} + +.shared_event_images .harmony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -212px -300px; + width: 55px; + height: 58px; +} + +.shared_event_images .harmony_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -390px -300px; + width: 27px; + height: 23px; +} + +.shared_event_images .icon_rank { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -417px -300px; + width: 21px; + height: 17px; +} + +.shared_event_images .line_horizontal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; +} + +.shared_event_images .ranking_bg_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 -300px; + width: 106px; + height: 149px; +} + +.shared_event_images .ranking_bg_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -106px -300px; + width: 106px; + height: 149px; +} + +.shared_event_images .resource_amount_circle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -267px -300px; + width: 39px; + height: 39px; +} + +.shared_event_images .reward_overlay_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 0; + width: 758px; + height: 300px; +} + +.night .city_overview_building_animation.ironer_2 { + width: 87px; + height: 61px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/ironer_1_night_animationf93a79b.png) no-repeat 0 0; + -webkit-animation: ironer_1_night_animation-animation 3.4s steps(33) infinite; + -ms-animation: ironer_1_night_animation-animation 3.4s steps(33) infinite; + animation: ironer_1_night_animation-animation 3.4s steps(33) infinite; +} + +.night .city_overview_building_animation.main_2 { + width: 34px; + height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/animations_night/main_1_night_animationa2c1916.png) no-repeat 0 0; + -webkit-animation: main_1_night_animation-animation 1.6s steps(15) infinite; + -ms-animation: main_1_night_animation-animation 1.6s steps(15) infinite; + animation: main_1_night_animation-animation 1.6s steps(15) infinite; +} + +.ui_city_overview.night .environment_animation:not(.clouds) { + opacity: .5; +} + +.ui_city_overview.night .city_overview_building_animation.academy { + z-index: 15; +} + +.clouds .cloud_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/clouds.png) no-repeat 0 0; + width: 376px; + height: 334px; +} + +.clouds .cloud_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/clouds.png) no-repeat 0 -334px; + width: 397px; + height: 269px; +} + +.clouds .cloud_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/clouds.png) no-repeat 0 -603px; + width: 554px; + height: 392px; +} + +.clouds .cloud_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/clouds.png) no-repeat 0 -995px; + width: 298px; + height: 306px; +} + +.clouds .cloud_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/clouds.png) no-repeat 0 -1301px; + width: 232px; + height: 165px; +} + +@-webkit-keyframes env-shore_waves_1-animation { + 100% { + background-position: 0 -2000px; + } +} + +@-ms-keyframes env-shore_waves_1-animation { + 100% { + background-position: 0 -2000px; + } +} + +@keyframes env-shore_waves_1-animation { + 100% { + background-position: 0 -2000px; + } +} + +.environment_animation.shore_waves_1 { + width: 196px; + height: 125px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/shore_waves_1.png) no-repeat 0 0; + -webkit-animation: env-shore_waves_1-animation 1.7s steps(16) infinite; + -ms-animation: env-shore_waves_1-animation 1.7s steps(16) infinite; + animation: env-shore_waves_1-animation 1.7s steps(16) infinite; +} + +@-webkit-keyframes env-shore_waves_2-animation { + 100% { + background-position: 0 -1320px; + } +} + +@-ms-keyframes env-shore_waves_2-animation { + 100% { + background-position: 0 -1320px; + } +} + +@keyframes env-shore_waves_2-animation { + 100% { + background-position: 0 -1320px; + } +} + +.environment_animation.shore_waves_2 { + width: 293px; + height: 60px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/shore_waves_2.png) no-repeat 0 0; + -webkit-animation: env-shore_waves_2-animation 2.3s steps(22) infinite; + -ms-animation: env-shore_waves_2-animation 2.3s steps(22) infinite; + animation: env-shore_waves_2-animation 2.3s steps(22) infinite; +} + +@-webkit-keyframes env-shore_waves_3-animation { + 100% { + background-position: 0 -954px; + } +} + +@-ms-keyframes env-shore_waves_3-animation { + 100% { + background-position: 0 -954px; + } +} + +@keyframes env-shore_waves_3-animation { + 100% { + background-position: 0 -954px; + } +} + +.environment_animation.shore_waves_3 { + width: 210px; + height: 53px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/shore_waves_3.png) no-repeat 0 0; + -webkit-animation: env-shore_waves_3-animation 1.9s steps(18) infinite; + -ms-animation: env-shore_waves_3-animation 1.9s steps(18) infinite; + animation: env-shore_waves_3-animation 1.9s steps(18) infinite; +} + +@-webkit-keyframes env-shore_waves_4-animation { + 100% { + background-position: 0 -1200px; + } +} + +@-ms-keyframes env-shore_waves_4-animation { + 100% { + background-position: 0 -1200px; + } +} + +@keyframes env-shore_waves_4-animation { + 100% { + background-position: 0 -1200px; + } +} + +.environment_animation.shore_waves_4 { + width: 205px; + height: 48px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/shore_waves_4.png) no-repeat 0 0; + -webkit-animation: env-shore_waves_4-animation 2.6s steps(25) infinite; + -ms-animation: env-shore_waves_4-animation 2.6s steps(25) infinite; + animation: env-shore_waves_4-animation 2.6s steps(25) infinite; +} + +@-webkit-keyframes env-river_1-animation { + 100% { + background-position: 0 -1265px; + } +} + +@-ms-keyframes env-river_1-animation { + 100% { + background-position: 0 -1265px; + } +} + +@keyframes env-river_1-animation { + 100% { + background-position: 0 -1265px; + } +} + +.environment_animation.river_1 { + width: 58px; + height: 55px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/river_1.png) no-repeat 0 0; + -webkit-animation: env-river_1-animation 2.4s steps(23) infinite; + -ms-animation: env-river_1-animation 2.4s steps(23) infinite; + animation: env-river_1-animation 2.4s steps(23) infinite; +} + +@-webkit-keyframes env-river_2-animation { + 100% { + background-position: 0 -943px; + } +} + +@-ms-keyframes env-river_2-animation { + 100% { + background-position: 0 -943px; + } +} + +@keyframes env-river_2-animation { + 100% { + background-position: 0 -943px; + } +} + +.environment_animation.river_2 { + width: 53px; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/river_2.png) no-repeat 0 0; + -webkit-animation: env-river_2-animation 2.4s steps(23) infinite; + -ms-animation: env-river_2-animation 2.4s steps(23) infinite; + animation: env-river_2-animation 2.4s steps(23) infinite; +} + +@-webkit-keyframes env-river_3-animation { + 100% { + background-position: 0 -1472px; + } +} + +@-ms-keyframes env-river_3-animation { + 100% { + background-position: 0 -1472px; + } +} + +@keyframes env-river_3-animation { + 100% { + background-position: 0 -1472px; + } +} + +.environment_animation.river_3 { + width: 50px; + height: 64px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/river_3.png) no-repeat 0 0; + -webkit-animation: env-river_3-animation 2.4s steps(23) infinite; + -ms-animation: env-river_3-animation 2.4s steps(23) infinite; + animation: env-river_3-animation 2.4s steps(23) infinite; +} + +@-webkit-keyframes env-fishes_1-animation { + 100% { + background-position: 0 -17922px; + } +} + +@-ms-keyframes env-fishes_1-animation { + 100% { + background-position: 0 -17922px; + } +} + +@keyframes env-fishes_1-animation { + 100% { + background-position: 0 -17922px; + } +} + +.environment_animation.fishes_1 { + width: 71px; + height: 58px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/fishes_1.png) no-repeat 0 0; + -webkit-animation: env-fishes_1-animation 31s steps(309) infinite; + -ms-animation: env-fishes_1-animation 31s steps(309) infinite; + animation: env-fishes_1-animation 31s steps(309) infinite; +} + +@-webkit-keyframes env-fishes_2-animation { + 100% { + background-position: 0 -5831px; + } +} + +@-ms-keyframes env-fishes_2-animation { + 100% { + background-position: 0 -5831px; + } +} + +@keyframes env-fishes_2-animation { + 100% { + background-position: 0 -5831px; + } +} + +.environment_animation.fishes_2 { + width: 51px; + height: 49px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/fishes_2.png) no-repeat 0 0; + -webkit-animation: env-fishes_2-animation 12s steps(119) infinite; + -ms-animation: env-fishes_2-animation 12s steps(119) infinite; + animation: env-fishes_2-animation 12s steps(119) infinite; +} + +@-webkit-keyframes env-fishes_3-animation { + 100% { + background-position: 0 -31827px; + } +} + +@-ms-keyframes env-fishes_3-animation { + 100% { + background-position: 0 -31827px; + } +} + +@keyframes env-fishes_3-animation { + 100% { + background-position: 0 -31827px; + } +} + +.environment_animation.fishes_3 { + width: 125px; + height: 103px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/fishes_3.png) no-repeat 0 0; + -webkit-animation: env-fishes_3-animation 31s steps(309) infinite; + -ms-animation: env-fishes_3-animation 31s steps(309) infinite; + animation: env-fishes_3-animation 31s steps(309) infinite; +} + +@-webkit-keyframes env-fishes_4-animation { + 100% { + background-position: 0 -31702px; + } +} + +@-ms-keyframes env-fishes_4-animation { + 100% { + background-position: 0 -31702px; + } +} + +@keyframes env-fishes_4-animation { + 100% { + background-position: 0 -31702px; + } +} + +.environment_animation.fishes_4 { + width: 126px; + height: 121px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/fishes_4-2.79.png) no-repeat 0 0; + -webkit-animation: env-fishes_4-animation 26.3s steps(262) infinite; + -ms-animation: env-fishes_4-animation 26.3s steps(262) infinite; + animation: env-fishes_4-animation 26.3s steps(262) infinite; +} + +@-webkit-keyframes env-fishes_5-animation { + 100% { + background-position: 0 -7378px; + } +} + +@-ms-keyframes env-fishes_5-animation { + 100% { + background-position: 0 -7378px; + } +} + +@keyframes env-fishes_5-animation { + 100% { + background-position: 0 -7378px; + } +} + +.environment_animation.fishes_5 { + width: 56px; + height: 62px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/fishes_5.png) no-repeat 0 0; + -webkit-animation: env-fishes_5-animation 12s steps(119) infinite; + -ms-animation: env-fishes_5-animation 12s steps(119) infinite; + animation: env-fishes_5-animation 12s steps(119) infinite; +} + +@-webkit-keyframes env-fishes_6-animation { + 100% { + background-position: 0 -17922px; + } +} + +@-ms-keyframes env-fishes_6-animation { + 100% { + background-position: 0 -17922px; + } +} + +@keyframes env-fishes_6-animation { + 100% { + background-position: 0 -17922px; + } +} + +.environment_animation.fishes_6 { + width: 71px; + height: 58px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/fishes_6.png) no-repeat 0 0; + -webkit-animation: env-fishes_6-animation 31s steps(309) infinite; + -ms-animation: env-fishes_6-animation 31s steps(309) infinite; + animation: env-fishes_6-animation 31s steps(309) infinite; +} + +@-webkit-keyframes env-fishes_7-animation { + 100% { + background-position: 0 -5831px; + } +} + +@-ms-keyframes env-fishes_7-animation { + 100% { + background-position: 0 -5831px; + } +} + +@keyframes env-fishes_7-animation { + 100% { + background-position: 0 -5831px; + } +} + +.environment_animation.fishes_7 { + width: 51px; + height: 49px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/fishes_7.png) no-repeat 0 0; + -webkit-animation: env-fishes_7-animation 12s steps(119) infinite; + -ms-animation: env-fishes_7-animation 12s steps(119) infinite; + animation: env-fishes_7-animation 12s steps(119) infinite; +} + +@-webkit-keyframes env-waterfall_1-animation { + 100% { + background-position: 0 -1817px; + } +} + +@-ms-keyframes env-waterfall_1-animation { + 100% { + background-position: 0 -1817px; + } +} + +@keyframes env-waterfall_1-animation { + 100% { + background-position: 0 -1817px; + } +} + +.environment_animation.waterfall_1 { + width: 93px; + height: 79px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/waterfall_1.png) no-repeat 0 0; + -webkit-animation: env-waterfall_1-animation 2.4s steps(23) infinite; + -ms-animation: env-waterfall_1-animation 2.4s steps(23) infinite; + animation: env-waterfall_1-animation 2.4s steps(23) infinite; +} + +@-webkit-keyframes env-waterfall_2-animation { + 100% { + background-position: 0 -2346px; + } +} + +@-ms-keyframes env-waterfall_2-animation { + 100% { + background-position: 0 -2346px; + } +} + +@keyframes env-waterfall_2-animation { + 100% { + background-position: 0 -2346px; + } +} + +.environment_animation.waterfall_2 { + width: 81px; + height: 102px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/environment_animations/waterfall_2.png) no-repeat 0 0; + -webkit-animation: env-waterfall_2-animation 2.4s steps(23) infinite; + -ms-animation: env-waterfall_2-animation 2.4s steps(23) infinite; + animation: env-waterfall_2-animation 2.4s steps(23) infinite; +} + +.ui_city_overview .environment_animation.shore_waves_1 { + top: 781px; + left: 1014px; +} + +.ui_city_overview .environment_animation.shore_waves_2 { + top: 666px; + left: 516px; +} + +.ui_city_overview .environment_animation.shore_waves_3 { + top: 895px; + left: 1222px; +} + +.ui_city_overview .environment_animation.shore_waves_4 { + top: 926px; + left: 1450px; +} + +.ui_city_overview .environment_animation.river_1 { + top: 308px; + left: 338px; +} + +.ui_city_overview .environment_animation.river_2 { + top: 233px; + left: 417px; +} + +.ui_city_overview .environment_animation.river_3 { + top: 139px; + left: 471px; +} + +.ui_city_overview .environment_animation.waterfall_1 { + top: 550px; + left: 157px; +} + +.ui_city_overview .environment_animation.waterfall_2 { + top: 433px; + left: 180px; +} + +.ui_city_overview .environment_animation.fishes_1 { + top: 700px; + left: 350px; +} + +.ui_city_overview .environment_animation.fishes_2 { + top: 930px; + left: 250px; +} + +.ui_city_overview .environment_animation.fishes_3 { + top: 930px; + left: 750px; +} + +.ui_city_overview .environment_animation.fishes_4 { + top: 1030px; + left: 950px; +} + +.ui_city_overview .environment_animation.fishes_5 { + top: 730px; + left: 150px; +} + +.ui_city_overview .environment_animation.fishes_6 { + top: 930px; + left: 1150px; +} + +.ui_city_overview .environment_animation.fishes_7 { + top: 730px; + left: 750px; +} + +@-webkit-keyframes valentinesday_sprites-animation { + 100% { + background-position: 0 -3550px; + } +} + +@-ms-keyframes valentinesday_sprites-animation { + 100% { + background-position: 0 -3550px; + } +} + +@keyframes valentinesday_sprites-animation { + 100% { + background-position: 0 -3550px; + } +} + +.css_animation.valentinesday_sprites { + width: 82px; + height: 71px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/valentinesday/mermaid_animation.png) no-repeat 0 0; + -webkit-animation: valentinesday_sprites-animation 5.1s steps(50) infinite; + -ms-animation: valentinesday_sprites-animation 5.1s steps(50) infinite; + animation: valentinesday_sprites-animation 5.1s steps(50) infinite; +} + +@-webkit-keyframes valentinesday_mermaid_mouseover_sprites-animation { + 100% { + background-position: 0 -1650px; + } +} + +@-ms-keyframes valentinesday_mermaid_mouseover_sprites-animation { + 100% { + background-position: 0 -1650px; + } +} + +@keyframes valentinesday_mermaid_mouseover_sprites-animation { + 100% { + background-position: 0 -1650px; + } +} + +.css_animation.valentinesday_mermaid_mouseover_sprites { + width: 56px; + height: 75px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/valentinesday/mermaid_mouseover.png) no-repeat 0 0; + -webkit-animation: valentinesday_mermaid_mouseover_sprites-animation 2.3s steps(22) infinite; + -ms-animation: valentinesday_mermaid_mouseover_sprites-animation 2.3s steps(22) infinite; + animation: valentinesday_mermaid_mouseover_sprites-animation 2.3s steps(22) infinite; +} + +.grepo_box_corner .box_corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -28px -45px; + width: 14px; + height: 15px; +} + +.grepo_box_corner .box_corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -42px -45px; + width: 14px; + height: 15px; +} + +.grepo_box_corner .box_corner_extra_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat 0 0; + width: 43px; + height: 45px; +} + +.grepo_box_corner .box_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -43px 0; + width: 14px; + height: 41px; +} + +.grepo_box_corner .box_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -57px 0; + width: 14px; + height: 41px; +} + +.grepo_box_corner .box_no_title_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -71px 0; + width: 14px; + height: 41px; +} + +.grepo_box_corner .box_no_title_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -85px 0; + width: 14px; + height: 41px; +} + +.grepo_box_corner .box_with_footer_corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat 0 -45px; + width: 14px; + height: 35px; +} + +.grepo_box_corner .box_with_footer_corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -14px -45px; + width: 14px; + height: 35px; +} + +.quest_type .ally_membership { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px 0; + width: 44px; + height: 44px; +} + +.quest_type .ask_for_res { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -88px; + width: 44px; + height: 44px; +} + +.quest_type .attack_on_enemy_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -44px; + width: 44px; + height: 44px; +} + +.quest_type .attack_village_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -44px; + width: 44px; + height: 44px; +} + +.quest_type .build_time_reduction { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px 0; + width: 44px; + height: 44px; +} + +.quest_type .cast_spell { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -44px; + width: 44px; + height: 44px; +} + +.quest_type .change_profiletext_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -88px; + width: 44px; + height: 44px; +} + +.quest_type .change_townname_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -88px; + width: 44px; + height: 44px; +} + +.quest_type .choose_god { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -88px; + width: 44px; + height: 44px; +} + +.quest_type .conquer_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px 0; + width: 44px; + height: 44px; +} + +.quest_type .control_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -44px; + width: 44px; + height: 44px; +} + +.quest_type .culture_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -88px; + width: 44px; + height: 44px; +} + +.quest_type .emailconfirmation_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -132px; + width: 44px; + height: 44px; +} + +.quest_type .found_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -132px; + width: 44px; + height: 44px; +} + +.quest_type .hero_assign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -132px; + width: 44px; + height: 44px; +} + +.quest_type .invite_friend { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -132px; + width: 44px; + height: 44px; +} + +.quest_type .land_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px 0; + width: 44px; + height: 44px; +} + +.quest_type .land_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -44px; + width: 44px; + height: 44px; +} + +.quest_type .loot_village_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 0; + width: 44px; + height: 44px; +} + +.quest_type .mobile_transfer2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -132px; + width: 44px; + height: 44px; +} + +.quest_type .naval_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -176px; + width: 44px; + height: 44px; +} + +.quest_type .olympia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -176px; + width: 44px; + height: 44px; +} + +.quest_type .phoenician { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -176px; + width: 44px; + height: 44px; +} + +.quest_type .pillage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -176px; + width: 44px; + height: 44px; +} + +.quest_type .questline_attackspot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -176px; + width: 44px; + height: 44px; +} + +.quest_type .questline_upgrade_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px 0; + width: 44px; + height: 44px; +} + +.quest_type .shrine_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -44px; + width: 44px; + height: 44px; +} + +.quest_type .spy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -88px; + width: 44px; + height: 44px; +} + +.quest_type .store_silver { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -132px; + width: 44px; + height: 44px; +} + +.quest_type .take_over { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -176px; + width: 44px; + height: 44px; +} + +.quest_type .town_feast { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -220px; + width: 44px; + height: 44px; +} + +.quest_type .trade_with_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -220px; + width: 44px; + height: 44px; +} + +.quest_type .trade_with_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -220px; + width: 44px; + height: 44px; +} + +.quest_type .train_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -220px; + width: 44px; + height: 44px; +} + +.quest_type .triumph { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -220px; + width: 44px; + height: 44px; +} + +.quest_type .win_attack_on_enemy_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -220px; + width: 44px; + height: 44px; +} + +.grepolis_score .summary .event_category .icon_position { + position: absolute; + left: 255px; +} + +.grepolis_score .summary .event_category .slinger { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -200px -300px; + width: 100px; + height: 100px; + top: 12px; + margin-left: 4px; +} + +.grepolis_score .summary .event_category .spartan_assassins { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -100px 0; + width: 100px; + height: 100px; + top: 12px; + margin-left: 4px; +} + +.grepolis_score .summary .event_category .hades, +.grepolis_score .summary .event_category .sparta_vs_hades { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat 0 -100px; + width: 100px; + height: 100px; + top: 14px; + margin-left: 6px; +} + +.grepolis_score .summary .event_category .incantation { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -300px 0; + width: 100px; + height: 100px; + top: 7px; + margin-left: 7px; +} + +.grepolis_score .summary .event_category .demeter { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -100px -100px; + width: 100px; + height: 100px; + top: 23px; + margin-left: 5px; +} + +.grepolis_score .summary .event_category .grepolympia_summer { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -888px; + width: 93px; + height: 99px; + margin-left: 10px; + top: 8px; +} + +.grepolis_score .summary .event_category .grepolympia_winter { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -468px -888px; + width: 93px; + height: 99px; + margin-left: 10px; + top: 8px; +} + +.grepolis_score .summary .event_category .grepolympia_worldcup { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat 0 -200px; + width: 100px; + height: 100px; + margin-left: 6px; + top: 14px; +} + +.grepolis_score .summary .event_category .nwot { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -300px -200px; + width: 100px; + height: 100px; + top: 15px; + margin-left: 5px; +} + +.grepolis_score .summary .event_category .tyche { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat 0 0; + width: 100px; + height: 100px; + margin-left: 10px; + margin-top: 10px; +} + +.grepolis_score .summary .event_category .easter_hen { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -200px -100px; + width: 100px; + height: 100px; + margin-top: 10px; + margin-left: 8px; +} + +.grepolis_score .summary .event_category .gridevent_battleships { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -100px -200px; + width: 100px; + height: 100px; + margin-left: 6px; + margin-top: 6px; +} + +.grepolis_score .summary .event_category .gridevent_gods_gifts { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -300px -300px; + width: 80px; + height: 80px; + margin-left: 17px; + margin-top: 26px; +} + +.grepolis_score .summary .event_category .rota { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -100px -300px; + width: 100px; + height: 100px; + -webkit-transform: scale(.7); + -ms-transform: scale(.7); + -o-transform: scale(.7); + transform: scale(.7); + margin-top: 18px; + margin-left: 6px; +} + +.grepolis_score .summary .event_category .rota_battle { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat 0 -300px; + width: 100px; + height: 100px; + -webkit-transform: scale(.7); + -ms-transform: scale(.7); + -o-transform: scale(.7); + transform: scale(.7); + margin-top: 14px; + margin-left: 4px; +} + +.grepolis_score .summary .event_category .divine_trials { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -200px 0; + width: 100px; + height: 100px; + -webkit-transform: scale(.7); + -ms-transform: scale(.7); + -o-transform: scale(.7); + transform: scale(.7); + margin-top: 17px; + margin-left: 7px; +} + +.grepolis_score .summary .event_category .dionysia { + position: absolute; + left: 255px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -300px -100px; + width: 100px; + height: 100px; + -webkit-transform: scale(.7); + -ms-transform: scale(.7); + -o-transform: scale(.7); + transform: scale(.7); + margin-top: 14px; + margin-left: 4px; +} + +.campaign .background_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/background_hero_1a95f42.jpg) no-repeat 0 0; + width: 472px; + height: 208px; +} + +.campaign .background_nohero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/background_nohero_74b07fb.jpg) no-repeat 0 0; + width: 472px; + height: 208px; +} + +.campaign .box_blue_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/box_blue_border_t_7564c67.png) no-repeat 0 0; + width: 1px; + height: 43px; +} + +.campaign .box_border_b { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/box_border_b_23a5fb4.png) no-repeat 0 0; + width: 1px; + height: 4px; +} + +.campaign .box_red_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/box_red_border_t_aa53a9b.png) no-repeat 0 0; + width: 1px; + height: 43px; +} + +.campaign .box_ver_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/box_ver_border_645973c.png) no-repeat 0 0; + width: 3px; + height: 1px; +} + +.campaign .frame_my_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/frame_my_army_cb189df.png) no-repeat 0 0; + width: 772px; + height: 122px; +} + +.campaign .frame_tooltip_unit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/frame_tooltip_unit_47f5a3e.png) no-repeat 0 0; + width: 319px; + height: 505px; +} + +.campaign .frame_tooltip_unit2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/frame_tooltip_unit2_ea724dd.png) no-repeat 0 0; + width: 319px; + height: 436px; +} + +.campaign .healer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/healer_08e111d.jpg) no-repeat 0 0; + width: 341px; + height: 228px; +} + +.campaign .interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/interstitial_9759130.jpg) no-repeat 0 0; + width: 727px; + height: 380px; +} + +.campaign .map { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/map_615b52e.jpg) no-repeat 0 0; + width: 1810px; + height: 1305px; +} + +.campaign .speechbubble_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/speechbubble_middle_a1b602b.png) no-repeat 0 0; + width: 402px; + height: 10px; +} + +.campaign .triumph { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/triumph_3aa81c4.jpg) no-repeat 0 0; + width: 268px; + height: 385px; +} + +.campaign .troopss_awarding_illustration { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/troopss_awarding_illustration_4d505c4.jpg) no-repeat 0 0; + width: 756px; + height: 425px; +} + +.campaign .vitellus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/vitellus_58842b1.png) no-repeat 0 0; + width: 770px; + height: 537px; +} + +.campaign_tutorial .info_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_1_70e6a5c.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.campaign_tutorial .info_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_2_029ef7f.png) no-repeat 0 0; + width: 398px; + height: 217px; +} + +.campaign_tutorial .info_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_3_74f42dc.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.campaign_tutorial .info_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_4_2618609.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.campaign_tutorial .info_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_5_a512e57.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.campaign_tutorial .info_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_6_f99035a.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.campaign_tutorial .info_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_7_8de1996.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.campaign_tutorial .info_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_8_9ffea52.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.campaign_scroll_animation .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/glow_e9ec524.png) no-repeat 0 0; + width: 119px; + height: 118px; +} + +.campaign_scroll_animation .harmony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/harmony_72a2556.png) no-repeat 0 0; + width: 55px; + height: 58px; +} + +.campaign_scroll_animation .scroll_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_left_17e1209.png) no-repeat 0 0; + width: 37px; + height: 70px; +} + +.campaign_scroll_animation .scroll_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_middle_dc72eed.png) no-repeat 0 0; + width: 200px; + height: 70px; +} + +.campaign_scroll_animation .scroll_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_right_d103e71.png) no-repeat 0 0; + width: 37px; + height: 70px; +} + +.campaign_sprites .artillery { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -356px; + width: 245px; + height: 212px; +} + +.campaign_sprites .artillery_50x50 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -815px; + width: 50px; + height: 50px; +} + +.campaign_sprites .badge_attack1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -870px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_attack1_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -559px -870px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_attack2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -628px -870px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_attack2_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -697px -870px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_collect-reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -766px -870px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_collect-reward_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -835px -870px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_collect_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -904px -870px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_collect_reward_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px 0; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -93px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_cooldown_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -186px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -279px; + width: 69px; + height: 93px; +} + +.campaign_sprites .badge_locked_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -372px; + width: 69px; + height: 93px; +} + +.campaign_sprites .button_icon_maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1071px -465px; + width: 11px; + height: 11px; +} + +.campaign_sprites .button_icon_minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1071px -476px; + width: 11px; + height: 11px; +} + +.campaign_sprites .culture_mask { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -356px; + width: 31px; + height: 43px; +} + +.campaign_sprites .divider_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px -560px; + width: 218px; + height: 1px; +} + +.campaign_sprites .event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -898px -424px; + width: 113px; + height: 125px; +} + +.campaign_sprites .event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px -424px; + width: 125px; + height: 136px; +} + +.campaign_sprites .event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -592px -170px; + width: 113px; + height: 125px; +} + +.campaign_sprites .event_ui_expanded { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -646px -819px; + width: 130px; + height: 25px; +} + +.campaign_sprites .frame_daily_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -780px; + width: 404px; + height: 39px; +} + +.campaign_sprites .frame_my_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 0; + width: 773px; + height: 170px; +} + +.campaign_sprites .frame_tooltip_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -992px; + width: 93px; + height: 61px; +} + +.campaign_sprites .hastati { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -245px -356px; + width: 245px; + height: 212px; +} + +.campaign_sprites .hastati_50x50 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -865px; + width: 50px; + height: 50px; +} + +.campaign_sprites .hastati_50x50_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -915px; + width: 50px; + height: 50px; +} + +.campaign_sprites .hastati_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -356px; + width: 245px; + height: 212px; +} + +.campaign_sprites .head_mercs { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -465px; + width: 53px; + height: 73px; +} + +.campaign_sprites .healer_50x50 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -705px -170px; + width: 50px; + height: 50px; +} + +.campaign_sprites .healer_tooltip { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -170px; + width: 341px; + height: 186px; +} + +.campaign_sprites .horseman { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px 0; + width: 245px; + height: 212px; +} + +.campaign_sprites .horseman_50x50 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -705px -220px; + width: 50px; + height: 50px; +} + +.campaign_sprites .horseman_50x50_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -93px -992px; + width: 50px; + height: 50px; +} + +.campaign_sprites .horseman_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px -212px; + width: 245px; + height: 212px; +} + +.campaign_sprites .icon_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -472px; + width: 31px; + height: 31px; +} + +.campaign_sprites .icon_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -973px -870px; + width: 40px; + height: 48px; +} + +.campaign_sprites .icon_power_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -538px; + width: 58px; + height: 53px; +} + +.campaign_sprites .icon_power_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -503px; + width: 26px; + height: 26px; +} + +.campaign_sprites .icon_wounded { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -399px; + width: 30px; + height: 38px; +} + +.campaign_sprites .legionnaire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -568px; + width: 245px; + height: 212px; +} + +.campaign_sprites .legionnaire_50x50 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -143px -992px; + width: 50px; + height: 50px; +} + +.campaign_sprites .legionnaire_50x50_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -193px -992px; + width: 50px; + height: 50px; +} + +.campaign_sprites .legionnaire_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -245px -568px; + width: 245px; + height: 212px; +} + +.campaign_sprites .myarmy_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -819px; + width: 156px; + height: 51px; +} + +.campaign_sprites .myarmy_unit_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -243px -992px; + width: 50px; + height: 50px; +} + +.campaign_sprites .powerup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -437px; + width: 32px; + height: 35px; +} + +.campaign_sprites .reward_culture_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -591px; + width: 54px; + height: 56px; +} + +.campaign_sprites .reward_culture_point_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -647px; + width: 54px; + height: 56px; +} + +.campaign_sprites .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -341px -170px; + width: 150px; + height: 150px; +} + +.campaign_sprites .reward_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -703px; + width: 54px; + height: 56px; +} + +.campaign_sprites .reward_hero_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -759px; + width: 54px; + height: 56px; +} + +.campaign_sprites .sagittarii { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -568px; + width: 245px; + height: 212px; +} + +.campaign_sprites .sagittarii_50x50 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -293px -992px; + width: 50px; + height: 50px; +} + +.campaign_sprites .sagittarii_50x50_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -343px -992px; + width: 50px; + height: 50px; +} + +.campaign_sprites .sagittarii_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -568px; + width: 245px; + height: 212px; +} + +.campaign_sprites .special_stage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -491px -170px; + width: 101px; + height: 146px; +} + +.campaign_sprites .speechbubble_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -965px; + width: 49px; + height: 23px; +} + +.campaign_sprites .speechbubble_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -341px -320px; + width: 402px; + height: 10px; +} + +.campaign_sprites .speechbubble_middle_tile { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -341px -330px; + width: 402px; + height: 10px; +} + +.campaign_sprites .speechbubble_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -341px -340px; + width: 402px; + height: 10px; +} + +.campaign_sprites .vexillarius { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -780px; + width: 245px; + height: 212px; +} + +.campaign_sprites .vexillarius_50x50 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -393px -992px; + width: 50px; + height: 50px; +} + +.campaign_sprites .vexillarius_50x50_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -443px -992px; + width: 50px; + height: 50px; +} + +.campaign_sprites .vexillarius_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -245px -780px; + width: 245px; + height: 212px; +} + +.campaign_sprites .bg_report_lose { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 0; + width: 493px; + height: 490px; +} + +.campaign_sprites .bg_report_win { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -493px 0; + width: 493px; + height: 490px; +} + +.campaign_sprites .box_blue_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -28px -706px; + width: 28px; + height: 90px; +} + +.campaign_sprites .box_blue_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -84px -706px; + width: 28px; + height: 90px; +} + +.campaign_sprites .box_blue_curtain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -119px -588px; + width: 335px; + height: 32px; +} + +.campaign_sprites .box_corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -855px -490px; + width: 3px; + height: 4px; +} + +.campaign_sprites .box_corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -852px -490px; + width: 3px; + height: 4px; +} + +.campaign_sprites .box_red_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -56px -706px; + width: 28px; + height: 90px; +} + +.campaign_sprites .box_red_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 -706px; + width: 28px; + height: 90px; +} + +.campaign_sprites .box_red_curtain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -358px -529px; + width: 335px; + height: 32px; +} + +.campaign_sprites .frame_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -119px -620px; + width: 56px; + height: 57px; +} + +.campaign_sprites .frame_myarmy_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -358px -490px; + width: 453px; + height: 39px; +} + +.campaign_sprites .hourglass { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -811px -490px; + width: 25px; + height: 29px; +} + +.campaign_sprites .icon_hercules_bonus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -836px -490px; + width: 16px; + height: 28px; +} + +.campaign_sprites .line_horizontal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -811px -519px; + width: 158px; + height: 1px; +} + +.campaign_sprites .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 -588px; + width: 119px; + height: 118px; +} + +.campaign_sprites .reward_iks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -175px -620px; + width: 47px; + height: 47px; +} + +.campaign_sprites .scroll { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 -490px; + width: 358px; + height: 98px; +} + +.campaign_collect .glow_alaris { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat 0 0; + width: 756px; + height: 425px; +} + +.campaign_collect .glow_hastati { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat -756px 0; + width: 756px; + height: 425px; +} + +.campaign_collect .glow_legionary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat 0 -425px; + width: 756px; + height: 425px; +} + +.campaign_collect .glow_sagittarii { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat -756px -425px; + width: 756px; + height: 425px; +} + +.campaign_collect .glow_vexillarius { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat 0 -850px; + width: 756px; + height: 425px; +} + +.campaign_collect .icon_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat -878px -850px; + width: 31px; + height: 31px; +} + +.campaign_collect .troops_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat -756px -850px; + width: 122px; + height: 36px; +} + +.campaign_sprites .fabric_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/animation_e8e6e83.png) no-repeat -320px -388px; + width: 121px; + height: 98px; +} + +.campaign_sprites .fabric_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/animation_e8e6e83.png) no-repeat -320px -486px; + width: 109px; + height: 56px; +} + +.campaign_sprites .shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/animation_e8e6e83.png) no-repeat 0 0; + width: 320px; + height: 320px; +} + +.campaign_sprites .spear_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/animation_e8e6e83.png) no-repeat 0 -320px; + width: 227px; + height: 388px; +} + +.campaign_sprites .spear_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/animation_e8e6e83.png) no-repeat -320px 0; + width: 227px; + height: 388px; +} + +.campaign_last_stage .background_final_victory { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/last_stage_1010df0.png) no-repeat 0 0; + width: 514px; + height: 453px; +} + +.campaign_last_stage .scroll_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/last_stage_1010df0.png) no-repeat -514px 0; + width: 207px; + height: 92px; +} + +.advent .advisors_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -410px -260px; + width: 598px; + height: 184px; +} + +.advent .advisors_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 -844px; + width: 344px; + height: 119px; +} + +.advent .advisors_on { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -344px -844px; + width: 344px; + height: 119px; +} + +.advent .balls_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -509px; + width: 302px; + height: 84px; +} + +.advent .bells_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -448px; + width: 68px; + height: 53px; +} + +.advent .bells_23 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -509px -444px; + width: 106px; + height: 51px; +} + +.advent .berry_21 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -410px -444px; + width: 99px; + height: 80px; +} + +.advent .bigshard1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -593px; + width: 115px; + height: 191px; +} + +.advent .bigshard2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -119px; + width: 134px; + height: 195px; +} + +.advent .bigshard3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1176px -119px; + width: 134px; + height: 195px; +} + +.advent .bigshard4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -314px; + width: 134px; + height: 195px; +} + +.advent .bigshard5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1176px -314px; + width: 134px; + height: 195px; +} + +.advent .bot_shard1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1318px -784px; + width: 50px; + height: 50px; +} + +.advent .bot_shard2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1318px -834px; + width: 50px; + height: 50px; +} + +.advent .bot_shard3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -615px -444px; + width: 50px; + height: 50px; +} + +.advent .bot_shard4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -665px -444px; + width: 50px; + height: 50px; +} + +.advent .bot_shard5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -715px -444px; + width: 50px; + height: 50px; +} + +.advent .branches_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1157px -593px; + width: 140px; + height: 152px; +} + +.advent .branches_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -916px -527px; + width: 106px; + height: 165px; +} + +.advent .button_premium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -740px; + width: 74px; + height: 74px; +} + +.advent .button_premium_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -814px; + width: 74px; + height: 74px; +} + +.advent .button_premium_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -888px; + width: 74px; + height: 74px; +} + +.advent .button_stop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -962px; + width: 74px; + height: 74px; +} + +.advent .button_stop_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -1036px; + width: 74px; + height: 74px; +} + +.advent .button_stop_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -1110px; + width: 74px; + height: 74px; +} + +.advent .button_turn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -119px; + width: 74px; + height: 74px; +} + +.advent .button_turn_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -193px; + width: 74px; + height: 74px; +} + +.advent .button_turn_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -314px; + width: 74px; + height: 74px; +} + +.advent .deer_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -409px -963px; + width: 154px; + height: 93px; +} + +.advent .event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -916px -692px; + width: 95px; + height: 93px; +} + +.advent .event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -464px -1095px; + width: 100px; + height: 100px; +} + +.advent .event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -563px -963px; + width: 95px; + height: 93px; +} + +.advent .fir_cone_16 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -388px; + width: 66px; + height: 60px; +} + +.advent .flower_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -398px; + width: 84px; + height: 89px; +} + +.advent .flower_19 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -1184px; + width: 64px; + height: 62px; +} + +.advent .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1297px -685px; + width: 53px; + height: 55px; +} + +.advent .griffin_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -333px -1095px; + width: 131px; + height: 103px; +} + +.advent .harpyie_20 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 -1095px; + width: 107px; + height: 152px; +} + +.advent .hat_24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -918px; + width: 107px; + height: 45px; +} + +.advent .hero_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -410px 0; + width: 632px; + height: 260px; +} + +.advent .hero_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -688px -844px; + width: 344px; + height: 119px; +} + +.advent .hero_on { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px 0; + width: 344px; + height: 119px; +} + +.advent .minotaur_25 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -159px; + width: 78px; + height: 152px; +} + +.advent .mistle_toe_18 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -311px; + width: 91px; + height: 87px; +} + +.advent .perls_09 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 -527px; + width: 325px; + height: 317px; +} + +.advent .pin_collect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -325px -789px; + width: 41px; + height: 54px; +} + +.advent .pin_current_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -564px -1095px; + width: 38px; + height: 57px; +} + +.advent .pin_neutral { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -826px -963px; + width: 40px; + height: 57px; +} + +.advent .pin_premium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -906px -963px; + width: 40px; + height: 55px; +} + +.advent .pin_transparent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -866px -963px; + width: 40px; + height: 57px; +} + +.advent .premium_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1297px -593px; + width: 87px; + height: 44px; +} + +.advent .present_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -267px; + width: 53px; + height: 43px; +} + +.advent .present_12 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1157px -745px; + width: 56px; + height: 38px; +} + +.advent .present_14 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1297px -637px; + width: 62px; + height: 48px; +} + +.advent .ribbon_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -635px -527px; + width: 281px; + height: 258px; +} + +.advent .ribbon_22 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -276px -963px; + width: 133px; + height: 131px; +} + +.advent .shard_glow_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -765px -444px; + width: 49px; + height: 49px; +} + +.advent .snowball_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -325px -527px; + width: 310px; + height: 262px; +} + +.advent .snowman_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -673px; + width: 88px; + height: 67px; +} + +.advent .tree_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px 0; + width: 92px; + height: 159px; +} + +.advent .vase_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -590px; + width: 73px; + height: 83px; +} + +.advent .wheel { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 0; + width: 410px; + height: 527px; +} + +.advent .wheel_light_no { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -784px; + width: 138px; + height: 134px; +} + +.advent .wheel_light_nw { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1180px -784px; + width: 138px; + height: 134px; +} + +.advent .wheel_light_o { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -107px -1095px; + width: 113px; + height: 138px; +} + +.advent .wheel_light_so { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 -963px; + width: 138px; + height: 132px; +} + +.advent .wheel_light_sw { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -138px -963px; + width: 138px; + height: 132px; +} + +.advent .wheel_light_w { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -220px -1095px; + width: 113px; + height: 138px; +} + +.advent .wheel_shard1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1344px -509px; + width: 42px; + height: 59px; +} + +.advent .wheel_shard2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -658px -963px; + width: 42px; + height: 59px; +} + +.advent .wheel_shard3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -700px -963px; + width: 42px; + height: 59px; +} + +.advent .wheel_shard4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -742px -963px; + width: 42px; + height: 59px; +} + +.advent .wheel_shard5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -784px -963px; + width: 42px; + height: 59px; +} + +.advent .winter_rose_15 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -487px; + width: 65px; + height: 103px; +} + +.advent_single_images .advent_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/advent_background_213b1f8.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.advent_single_images .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/banner_left_7ca3bfb.png) no-repeat 0 0; + width: 106px; + height: 41px; +} + +.advent_single_images .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/banner_middle_6cb3050.png) no-repeat 0 0; + width: 1px; + height: 41px; +} + +.advent_single_images .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/banner_right_cf0f945.png) no-repeat 0 0; + width: 106px; + height: 41px; +} + +.advent_single_images .intersticial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/intersticial_bg_04b82e7.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.nwot .advisors_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -410px -260px; + width: 598px; + height: 184px; +} + +.nwot .advisors_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -611px -527px; + width: 344px; + height: 119px; +} + +.nwot .advisors_on { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -611px -646px; + width: 344px; + height: 119px; +} + +.nwot .bigshard1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -376px; + width: 115px; + height: 191px; +} + +.nwot .bigshard2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -567px; + width: 115px; + height: 191px; +} + +.nwot .bigshard3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -758px; + width: 115px; + height: 191px; +} + +.nwot .bigshard4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -949px; + width: 115px; + height: 191px; +} + +.nwot .bigshard5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -1153px; + width: 115px; + height: 191px; +} + +.nwot .bot_shard1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1250px -941px; + width: 50px; + height: 50px; +} + +.nwot .bot_shard2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1008px -260px; + width: 50px; + height: 50px; +} + +.nwot .bot_shard3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1008px -310px; + width: 50px; + height: 50px; +} + +.nwot .bot_shard4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1008px -360px; + width: 50px; + height: 50px; +} + +.nwot .bot_shard5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -833px -444px; + width: 50px; + height: 50px; +} + +.nwot .button_premium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -1128px; + width: 74px; + height: 74px; +} + +.nwot .button_premium_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -1202px; + width: 74px; + height: 74px; +} + +.nwot .button_premium_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1226px -749px; + width: 74px; + height: 74px; +} + +.nwot .button_stop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1226px -823px; + width: 74px; + height: 74px; +} + +.nwot .button_stop_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -410px -444px; + width: 74px; + height: 74px; +} + +.nwot .button_stop_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -484px -444px; + width: 74px; + height: 74px; +} + +.nwot .button_turn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -558px -444px; + width: 74px; + height: 74px; +} + +.nwot .button_turn_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -632px -444px; + width: 74px; + height: 74px; +} + +.nwot .button_turn_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -706px -444px; + width: 74px; + height: 74px; +} + +.nwot .deco_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1126px -941px; + width: 71px; + height: 56px; +} + +.nwot .deco_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -622px; + width: 66px; + height: 133px; +} + +.nwot .deco_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -1052px; + width: 77px; + height: 76px; +} + +.nwot .deco_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -301px -908px; + width: 136px; + height: 93px; +} + +.nwot .deco_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -1276px; + width: 73px; + height: 64px; +} + +.nwot .deco_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -947px; + width: 75px; + height: 105px; +} + +.nwot .deco_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px 0; + width: 102px; + height: 197px; +} + +.nwot .deco_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -780px -444px; + width: 53px; + height: 70px; +} + +.nwot .deco_09 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px -941px; + width: 66px; + height: 62px; +} + +.nwot .deco_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -197px; + width: 67px; + height: 198px; +} + +.nwot .deco_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -1344px; + width: 110px; + height: 145px; +} + +.nwot .deco_12 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -523px; + width: 102px; + height: 99px; +} + +.nwot .deco_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -185px; + width: 131px; + height: 191px; +} + +.nwot .deco_14 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px -563px; + width: 241px; + height: 186px; +} + +.nwot .deco_15 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -755px; + width: 87px; + height: 100px; +} + +.nwot .deco_16 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px 0; + width: 136px; + height: 185px; +} + +.nwot .deco_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px -749px; + width: 166px; + height: 192px; +} + +.nwot .deco_18 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -855px; + width: 93px; + height: 92px; +} + +.nwot .deco_19 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px -280px; + width: 236px; + height: 283px; +} + +.nwot .deco_20 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -1007px; + width: 200px; + height: 146px; +} + +.nwot .deco_21 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -395px; + width: 99px; + height: 128px; +} + +.nwot .deco_22 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -200px -1007px; + width: 230px; + height: 117px; +} + +.nwot .deco_23 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px 0; + width: 267px; + height: 280px; +} + +.nwot .deco_24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -527px; + width: 301px; + height: 480px; +} + +.nwot .event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -667px -1153px; + width: 113px; + height: 125px; +} + +.nwot .event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -780px -1153px; + width: 113px; + height: 125px; +} + +.nwot .event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -893px -1153px; + width: 113px; + height: 125px; +} + +.nwot .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1197px -941px; + width: 53px; + height: 55px; +} + +.nwot .hero_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -410px 0; + width: 650px; + height: 260px; +} + +.nwot .hero_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -301px -789px; + width: 344px; + height: 119px; +} + +.nwot .hero_on { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -645px -789px; + width: 344px; + height: 119px; +} + +.nwot .pin_collect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -955px -703px; + width: 41px; + height: 54px; +} + +.nwot .pin_current_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -989px -844px; + width: 38px; + height: 57px; +} + +.nwot .pin_neutral { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -955px -646px; + width: 40px; + height: 57px; +} + +.nwot .pin_premium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -989px -789px; + width: 40px; + height: 55px; +} + +.nwot .pin_transparent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -995px -646px; + width: 40px; + height: 57px; +} + +.nwot .premium_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1226px -897px; + width: 87px; + height: 44px; +} + +.nwot .shard_glow_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -955px -577px; + width: 49px; + height: 49px; +} + +.nwot .snowball_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -301px -527px; + width: 310px; + height: 262px; +} + +.nwot .wheel { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 0; + width: 410px; + height: 527px; +} + +.nwot .wheel_light_no { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -115px -1153px; + width: 138px; + height: 134px; +} + +.nwot .wheel_light_nw { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -253px -1153px; + width: 138px; + height: 134px; +} + +.nwot .wheel_light_o { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -110px -1344px; + width: 113px; + height: 138px; +} + +.nwot .wheel_light_so { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -391px -1153px; + width: 138px; + height: 132px; +} + +.nwot .wheel_light_sw { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -529px -1153px; + width: 138px; + height: 132px; +} + +.nwot .wheel_light_w { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -223px -1344px; + width: 113px; + height: 138px; +} + +.nwot .wheel_shard1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -883px -444px; + width: 50px; + height: 50px; +} + +.nwot .wheel_shard2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -933px -444px; + width: 50px; + height: 50px; +} + +.nwot .wheel_shard3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -983px -444px; + width: 50px; + height: 50px; +} + +.nwot .wheel_shard4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -955px -527px; + width: 50px; + height: 50px; +} + +.nwot .wheel_shard5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1005px -527px; + width: 50px; + height: 50px; +} + +.nwot_single_images .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/banner_left_f289b9a.png) no-repeat 0 0; + width: 106px; + height: 41px; +} + +.nwot_single_images .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/banner_middle_16c7784.png) no-repeat 0 0; + width: 1px; + height: 41px; +} + +.nwot_single_images .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/banner_right_bb10184.png) no-repeat 0 0; + width: 106px; + height: 41px; +} + +.nwot_single_images .intersticial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/intersticial_bg_917ecdc.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.nwot_single_images .nwot_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/nwot_background_d8f851b.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.two_parts_progressbar .item_counter { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/widgets/two_parts_progressbar_2.82.png); + width: 68px; + height: 31px; +} + +.two_parts_progressbar .progress_bar_background { + background-position: 0 -266px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/widgets/two_parts_progressbar_2.82.png); + width: 30px; + height: 100px; +} + +.two_parts_progressbar .progress_bar_background_green { + background-position: 0 -96px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/widgets/two_parts_progressbar_2.82.png); + width: 30px; + height: 85px; +} + +.two_parts_progressbar .progress_bar_bg_brown { + background-position: 0 -181px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/widgets/two_parts_progressbar_2.82.png); + width: 29px; + height: 85px; +} + +.two_parts_progressbar .reward_container { + background-position: 0 -31px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/widgets/two_parts_progressbar_2.82.png); + width: 90px; + height: 65px; +} + +@-webkit-keyframes animated_power_50x50-animation { + 100% { + background-position: 0 -1550px; + } +} + +@-ms-keyframes animated_power_50x50-animation { + 100% { + background-position: 0 -1550px; + } +} + +@keyframes animated_power_50x50-animation { + 100% { + background-position: 0 -1550px; + } +} + +.css_animation.animated_power_50x50 { + width: 50px; + height: 50px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/animated_power/animated_power_50x50.png) no-repeat 0 0; + -webkit-animation: animated_power_50x50-animation 3.2s steps(31) infinite; + -ms-animation: animated_power_50x50-animation 3.2s steps(31) infinite; + animation: animated_power_50x50-animation 3.2s steps(31) infinite; +} + +.ribbon_sprite .red_triple_ribbon_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -222px -60px; + width: 110px; + height: 60px; +} + +.ribbon_sprite .red_triple_ribbon_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -222px 0; + width: 110px; + height: 60px; +} + +.ribbon_sprite .ribbon_blue2_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -252px; + width: 52px; + height: 36px; +} + +.ribbon_sprite .ribbon_blue2_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -384px -252px; + width: 52px; + height: 36px; +} + +.ribbon_sprite .ribbon_blue3_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 0; + width: 111px; + height: 64px; +} + +.ribbon_sprite .ribbon_blue3_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -111px 0; + width: 111px; + height: 64px; +} + +.ribbon_sprite .ribbon_blue_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -132px; + width: 55px; + height: 40px; +} + +.ribbon_sprite .ribbon_blue_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -92px; + width: 55px; + height: 40px; +} + +.ribbon_sprite .ribbon_brown_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -41px; + width: 51px; + height: 51px; +} + +.ribbon_sprite .ribbon_brown_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -383px -41px; + width: 51px; + height: 51px; +} + +.ribbon_sprite .ribbon_green_long_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 -114px; + width: 139px; + height: 50px; +} + +.ribbon_sprite .ribbon_green_long_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 -64px; + width: 139px; + height: 50px; +} + +.ribbon_sprite .ribbon_green_short_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -89px -164px; + width: 89px; + height: 64px; +} + +.ribbon_sprite .ribbon_green_short_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -178px -164px; + width: 89px; + height: 64px; +} + +.ribbon_sprite .ribbon_orange_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 -164px; + width: 89px; + height: 64px; +} + +.ribbon_sprite .ribbon_orange_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 -228px; + width: 89px; + height: 64px; +} + +.ribbon_sprite .ribbon_purple_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -89px -228px; + width: 89px; + height: 64px; +} + +.ribbon_sprite .ribbon_purple_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -178px -228px; + width: 89px; + height: 64px; +} + +.ribbon_sprite .ribbon_red_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -172px; + width: 55px; + height: 40px; +} + +.ribbon_sprite .ribbon_red_long_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px 0; + width: 106px; + height: 41px; +} + +.ribbon_sprite .ribbon_red_long_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -222px -120px; + width: 106px; + height: 41px; +} + +.ribbon_sprite .ribbon_red_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -212px; + width: 55px; + height: 40px; +} + +.ribbon_single_images .red_triple_ribbon_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/red_triple_ribbon_middle_05679c4.png) no-repeat 0 0; + width: 1px; + height: 60px; +} + +.ribbon_single_images .ribbon_blue2_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_blue2_middle_279d25a.png) no-repeat 0 0; + width: 14px; + height: 34px; +} + +.ribbon_single_images .ribbon_blue3_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_blue3_middle_8c14084.png) no-repeat 0 0; + width: 1px; + height: 64px; +} + +.ribbon_single_images .ribbon_blue_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_blue_middle_bd549cc.png) no-repeat 0 0; + width: 15px; + height: 40px; +} + +.ribbon_single_images .ribbon_brown_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_brown_middle_57a03a1.png) no-repeat 0 0; + width: 1px; + height: 51px; +} + +.ribbon_single_images .ribbon_green_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_green_middle_814ed33.png) no-repeat 0 0; + width: 1px; + height: 50px; +} + +.ribbon_single_images .ribbon_green_short_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_green_short_middle_91dabb6.png) no-repeat 0 0; + width: 1px; + height: 64px; +} + +.ribbon_single_images .ribbon_orange_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_orange_middle_0cc85a8.png) no-repeat 0 0; + width: 1px; + height: 64px; +} + +.ribbon_single_images .ribbon_purple_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_purple_middle_9400555.png) no-repeat 0 0; + width: 1px; + height: 64px; +} + +.ribbon_single_images .ribbon_red_long_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_red_long_middle_98fe245.png) no-repeat 0 0; + width: 1px; + height: 34px; +} + +.ribbon_single_images .ribbon_red_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_red_middle_52b09e2.png) no-repeat 0 0; + width: 15px; + height: 40px; +} + +.scrollbar_horizontal .scrollbar_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/horizontal.png) no-repeat 0 0; + width: 481px; + height: 6px; +} + +.scrollbar_horizontal .scrollbar_slider_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/horizontal.png) no-repeat 0 -6px; + width: 7px; + height: 16px; +} + +.scrollbar_horizontal .scrollbar_slider_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/horizontal.png) no-repeat 0 -22px; + width: 8px; + height: 16px; +} + +.scrollbar_vertical .scroll_btn_down { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat 0 0; + width: 17px; + height: 18px; +} + +.scrollbar_vertical .scroll_btn_down_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -17px 0; + width: 17px; + height: 18px; +} + +.scrollbar_vertical .scroll_btn_up { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -34px 0; + width: 17px; + height: 18px; +} + +.scrollbar_vertical .scroll_btn_up_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -51px 0; + width: 17px; + height: 18px; +} + +.scrollbar_vertical .scrollbar_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -68px 0; + width: 17px; + height: 18px; +} + +.scrollbar_vertical .scrollbar_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -85px 0; + width: 15px; + height: 2px; +} + +.scrollbar_vertical .scrollbar_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -100px 0; + width: 15px; + height: 18px; +} + +.scrollbar_vertical .scrollbar_purple_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -115px 0; + width: 15px; + height: 2px; +} + +.scrollbar_vertical .scrollbar_purple_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -130px 0; + width: 15px; + height: 18px; +} + +.scrollbar_vertical .scrollbar_purple_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -145px 0; + width: 15px; + height: 2px; +} + +.scrollbar_vertical .scrollbar_red_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -160px 0; + width: 15px; + height: 2px; +} + +.scrollbar_vertical .scrollbar_red_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -175px 0; + width: 15px; + height: 18px; +} + +.scrollbar_vertical .scrollbar_red_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -190px 0; + width: 15px; + height: 2px; +} + +.scrollbar_vertical .scrollbar_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -205px 0; + width: 15px; + height: 2px; +} + +.research_icon.research40x40 { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/research/research_40x40_2.99.png); + width: 40px; + height: 40px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.research_icon.research40x40.archer.inactive { + background-position: 0 0; +} + +.research_icon.research40x40.archer { + background-position: -40px 0; +} + +.research_icon.research40x40.architecture.inactive { + background-position: -80px 0; +} + +.research_icon.research40x40.architecture { + background-position: -120px 0; +} + +.research_icon.research40x40.attack_ship.inactive { + background-position: -160px 0; +} + +.research_icon.research40x40.attack_ship { + background-position: -200px 0; +} + +.research_icon.research40x40.berth.inactive { + background-position: -240px 0; +} + +.research_icon.research40x40.berth { + background-position: -280px 0; +} + +.research_icon.research40x40.big_transporter.inactive { + background-position: -320px 0; +} + +.research_icon.research40x40.big_transporter { + background-position: -360px 0; +} + +.research_icon.research40x40.bireme.inactive { + background-position: -400px 0; +} + +.research_icon.research40x40.bireme { + background-position: -440px 0; +} + +.research_icon.research40x40.booty.inactive { + background-position: -480px 0; +} + +.research_icon.research40x40.booty { + background-position: -520px 0; +} + +.research_icon.research40x40.booty_bpv.inactive { + background-position: -560px 0; +} + +.research_icon.research40x40.booty_bpv { + background-position: -600px 0; +} + +.research_icon.research40x40.breach.inactive { + background-position: -640px 0; +} + +.research_icon.research40x40.breach { + background-position: -680px 0; +} + +.research_icon.research40x40.building_crane.inactive { + background-position: -720px 0; +} + +.research_icon.research40x40.building_crane { + background-position: -760px 0; +} + +.research_icon.research40x40.cartography.inactive { + background-position: -800px 0; +} + +.research_icon.research40x40.cartography { + background-position: -840px 0; +} + +.research_icon.research40x40.catapult.inactive { + background-position: -880px 0; +} + +.research_icon.research40x40.catapult { + background-position: -920px 0; +} + +.research_icon.research40x40.catapult_speed.inactive { + background-position: -960px 0; +} + +.research_icon.research40x40.catapult_speed { + background-position: -1000px 0; +} + +.research_icon.research40x40.chariot.inactive { + background-position: -1040px 0; +} + +.research_icon.research40x40.chariot { + background-position: -1080px 0; +} + +.research_icon.research40x40.coinage.inactive { + background-position: -1120px 0; +} + +.research_icon.research40x40.coinage { + background-position: -1160px 0; +} + +.research_icon.research40x40.colonize_ship.inactive { + background-position: -1200px 0; +} + +.research_icon.research40x40.colonize_ship { + background-position: -1240px 0; +} + +.research_icon.research40x40.combat_experience.inactive { + background-position: -1280px 0; +} + +.research_icon.research40x40.combat_experience { + background-position: -1320px 0; +} + +.research_icon.research40x40.conscription.inactive { + background-position: -1360px 0; +} + +.research_icon.research40x40.conscription { + background-position: -1400px 0; +} + +.research_icon.research40x40.cryptography.inactive { + background-position: -1440px 0; +} + +.research_icon.research40x40.cryptography { + background-position: -1480px 0; +} + +.research_icon.research40x40.defense_attack.inactive { + background-position: -1520px 0; +} + +.research_icon.research40x40.defense_attack { + background-position: -1560px 0; +} + +.research_icon.research40x40.democracy.inactive { + background-position: -1600px 0; +} + +.research_icon.research40x40.democracy { + background-position: -1640px 0; +} + +.research_icon.research40x40.demolition_ship.inactive { + background-position: -1680px 0; +} + +.research_icon.research40x40.demolition_ship { + background-position: -1720px 0; +} + +.research_icon.research40x40.diplomacy.inactive { + background-position: -1760px 0; +} + +.research_icon.research40x40.diplomacy { + background-position: -1800px 0; +} + +.research_icon.research40x40.divine_selection.inactive { + background-position: -1840px 0; +} + +.research_icon.research40x40.divine_selection { + background-position: -1880px 0; +} + +.research_icon.research40x40.espionage.inactive { + background-position: -1920px 0; +} + +.research_icon.research40x40.espionage { + background-position: -1960px 0; +} + +.research_icon.research40x40.godsent.inactive { + background-position: -2000px 0; +} + +.research_icon.research40x40.godsent { + background-position: -2040px 0; +} + +.research_icon.research40x40.hoplite.inactive { + background-position: -2080px 0; +} + +.research_icon.research40x40.hoplite { + background-position: -2120px 0; +} + +.research_icon.research40x40.instructor.inactive { + background-position: -2160px 0; +} + +.research_icon.research40x40.instructor { + background-position: -2200px 0; +} + +.research_icon.research40x40.mathematics.inactive { + background-position: -2240px 0; +} + +.research_icon.research40x40.mathematics { + background-position: -2280px 0; +} + +.research_icon.research40x40.meteorology.inactive { + background-position: -2320px 0; +} + +.research_icon.research40x40.meteorology { + background-position: -2360px 0; +} + +.research_icon.research40x40.phalanx.inactive { + background-position: -2400px 0; +} + +.research_icon.research40x40.phalanx { + background-position: -2440px 0; +} + +.research_icon.research40x40.pillage.inactive { + background-position: -2480px 0; +} + +.research_icon.research40x40.pillage { + background-position: -2520px 0; +} + +.research_icon.research40x40.plow.inactive { + background-position: -2560px 0; +} + +.research_icon.research40x40.plow { + background-position: -2600px 0; +} + +.research_icon.research40x40.pottery.inactive { + background-position: -2640px 0; +} + +.research_icon.research40x40.pottery { + background-position: -2680px 0; +} + +.research_icon.research40x40.ram.inactive { + background-position: -2720px 0; +} + +.research_icon.research40x40.ram { + background-position: -2760px 0; +} + +.research_icon.research40x40.rider.inactive { + background-position: -2800px 0; +} + +.research_icon.research40x40.rider { + background-position: -2840px 0; +} + +.research_icon.research40x40.set_sail.inactive { + background-position: -2880px 0; +} + +.research_icon.research40x40.set_sail { + background-position: -2920px 0; +} + +.research_icon.research40x40.shipwright.inactive { + background-position: -2960px 0; +} + +.research_icon.research40x40.shipwright { + background-position: -3000px 0; +} + +.research_icon.research40x40.siege_breaker.inactive { + background-position: -3040px 0; +} + +.research_icon.research40x40.siege_breaker { + background-position: -3080px 0; +} + +.research_icon.research40x40.slinger.inactive { + background-position: -3120px 0; +} + +.research_icon.research40x40.slinger { + background-position: -3160px 0; +} + +.research_icon.research40x40.small_transporter.inactive { + background-position: -3200px 0; +} + +.research_icon.research40x40.small_transporter { + background-position: -3240px 0; +} + +.research_icon.research40x40.stone_storm.inactive { + background-position: -3280px 0; +} + +.research_icon.research40x40.stone_storm { + background-position: -3320px 0; +} + +.research_icon.research40x40.strong_wine.inactive { + background-position: -3360px 0; +} + +.research_icon.research40x40.strong_wine { + background-position: -3400px 0; +} + +.research_icon.research40x40.sword.inactive { + background-position: -3440px 0; +} + +.research_icon.research40x40.sword { + background-position: -3480px 0; +} + +.research_icon.research40x40.take_over.inactive { + background-position: -3520px 0; +} + +.research_icon.research40x40.take_over { + background-position: -3560px 0; +} + +.research_icon.research40x40.take_over_old.inactive { + background-position: -3600px 0; +} + +.research_icon.research40x40.take_over_old { + background-position: -3640px 0; +} + +.research_icon.research40x40.temple_looting.inactive { + background-position: -3680px 0; +} + +.research_icon.research40x40.temple_looting { + background-position: -3720px 0; +} + +.research_icon.research40x40.town_guard.inactive { + background-position: -3760px 0; +} + +.research_icon.research40x40.town_guard { + background-position: -3800px 0; +} + +.research_icon.research40x40.trireme.inactive { + background-position: -3840px 0; +} + +.research_icon.research40x40.trireme { + background-position: -3880px 0; +} + +.research_icon.research40x40.units_claim.inactive { + background-position: -3920px 0; +} + +.research_icon.research40x40.units_claim { + background-position: -3960px 0; +} + +.research_icon.research { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/research/research_50x50_2.99.png); + width: 50px; + height: 50px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.research_icon.research.archer.inactive { + background-position: 0 0; +} + +.research_icon.research.archer { + background-position: -50px 0; +} + +.research_icon.research.architecture.inactive { + background-position: -100px 0; +} + +.research_icon.research.architecture { + background-position: -150px 0; +} + +.research_icon.research.attack_ship.inactive { + background-position: -200px 0; +} + +.research_icon.research.attack_ship { + background-position: -250px 0; +} + +.research_icon.research.berth.inactive { + background-position: -300px 0; +} + +.research_icon.research.berth { + background-position: -350px 0; +} + +.research_icon.research.big_transporter.inactive { + background-position: -400px 0; +} + +.research_icon.research.big_transporter { + background-position: -450px 0; +} + +.research_icon.research.bireme.inactive { + background-position: -500px 0; +} + +.research_icon.research.bireme { + background-position: -550px 0; +} + +.research_icon.research.booty.inactive { + background-position: -600px 0; +} + +.research_icon.research.booty { + background-position: -650px 0; +} + +.research_icon.research.booty_bpv.inactive { + background-position: -700px 0; +} + +.research_icon.research.booty_bpv { + background-position: -750px 0; +} + +.research_icon.research.breach.inactive { + background-position: -800px 0; +} + +.research_icon.research.breach { + background-position: -850px 0; +} + +.research_icon.research.building_crane.inactive { + background-position: -900px 0; +} + +.research_icon.research.building_crane { + background-position: -950px 0; +} + +.research_icon.research.cartography.inactive { + background-position: -1000px 0; +} + +.research_icon.research.cartography { + background-position: -1050px 0; +} + +.research_icon.research.catapult.inactive { + background-position: -1100px 0; +} + +.research_icon.research.catapult { + background-position: -1150px 0; +} + +.research_icon.research.catapult_speed.inactive { + background-position: -1200px 0; +} + +.research_icon.research.catapult_speed { + background-position: -1250px 0; +} + +.research_icon.research.chariot.inactive { + background-position: -1300px 0; +} + +.research_icon.research.chariot { + background-position: -1350px 0; +} + +.research_icon.research.coinage.inactive { + background-position: -1400px 0; +} + +.research_icon.research.coinage { + background-position: -1450px 0; +} + +.research_icon.research.colonize_ship.inactive { + background-position: -1500px 0; +} + +.research_icon.research.colonize_ship { + background-position: -1550px 0; +} + +.research_icon.research.combat_experience.inactive { + background-position: -1600px 0; +} + +.research_icon.research.combat_experience { + background-position: -1650px 0; +} + +.research_icon.research.conscription.inactive { + background-position: -1700px 0; +} + +.research_icon.research.conscription { + background-position: -1750px 0; +} + +.research_icon.research.cryptography.inactive { + background-position: -1800px 0; +} + +.research_icon.research.cryptography { + background-position: -1850px 0; +} + +.research_icon.research.defense_attack.inactive { + background-position: -1900px 0; +} + +.research_icon.research.defense_attack { + background-position: -1950px 0; +} + +.research_icon.research.democracy.inactive { + background-position: -2000px 0; +} + +.research_icon.research.democracy { + background-position: -2050px 0; +} + +.research_icon.research.demolition_ship.inactive { + background-position: -2100px 0; +} + +.research_icon.research.demolition_ship { + background-position: -2150px 0; +} + +.research_icon.research.diplomacy.inactive { + background-position: -2200px 0; +} + +.research_icon.research.diplomacy { + background-position: -2250px 0; +} + +.research_icon.research.divine_selection.inactive { + background-position: -2300px 0; +} + +.research_icon.research.divine_selection { + background-position: -2350px 0; +} + +.research_icon.research.espionage.inactive { + background-position: -2400px 0; +} + +.research_icon.research.espionage { + background-position: -2450px 0; +} + +.research_icon.research.godsent.inactive { + background-position: -2500px 0; +} + +.research_icon.research.godsent { + background-position: -2550px 0; +} + +.research_icon.research.hoplite.inactive { + background-position: -2600px 0; +} + +.research_icon.research.hoplite { + background-position: -2650px 0; +} + +.research_icon.research.instructor.inactive { + background-position: -2700px 0; +} + +.research_icon.research.instructor { + background-position: -2750px 0; +} + +.research_icon.research.mathematics.inactive { + background-position: -2800px 0; +} + +.research_icon.research.mathematics { + background-position: -2850px 0; +} + +.research_icon.research.meteorology.inactive { + background-position: -2900px 0; +} + +.research_icon.research.meteorology { + background-position: -2950px 0; +} + +.research_icon.research.phalanx.inactive { + background-position: -3000px 0; +} + +.research_icon.research.phalanx { + background-position: -3050px 0; +} + +.research_icon.research.pillage.inactive { + background-position: -3100px 0; +} + +.research_icon.research.pillage { + background-position: -3150px 0; +} + +.research_icon.research.plow.inactive { + background-position: -3200px 0; +} + +.research_icon.research.plow { + background-position: -3250px 0; +} + +.research_icon.research.pottery.inactive { + background-position: -3300px 0; +} + +.research_icon.research.pottery { + background-position: -3350px 0; +} + +.research_icon.research.ram.inactive { + background-position: -3400px 0; +} + +.research_icon.research.ram { + background-position: -3450px 0; +} + +.research_icon.research.rider.inactive { + background-position: -3500px 0; +} + +.research_icon.research.rider { + background-position: -3550px 0; +} + +.research_icon.research.set_sail.inactive { + background-position: -3600px 0; +} + +.research_icon.research.set_sail { + background-position: -3650px 0; +} + +.research_icon.research.shipwright.inactive { + background-position: -3700px 0; +} + +.research_icon.research.shipwright { + background-position: -3750px 0; +} + +.research_icon.research.siege_breaker.inactive { + background-position: -3800px 0; +} + +.research_icon.research.siege_breaker { + background-position: -3850px 0; +} + +.research_icon.research.slinger.inactive { + background-position: -3900px 0; +} + +.research_icon.research.slinger { + background-position: -3950px 0; +} + +.research_icon.research.small_transporter.inactive { + background-position: -4000px 0; +} + +.research_icon.research.small_transporter { + background-position: -4050px 0; +} + +.research_icon.research.stone_storm.inactive { + background-position: -4100px 0; +} + +.research_icon.research.stone_storm { + background-position: -4150px 0; +} + +.research_icon.research.strong_wine.inactive { + background-position: -4200px 0; +} + +.research_icon.research.strong_wine { + background-position: -4250px 0; +} + +.research_icon.research.sword.inactive { + background-position: -4300px 0; +} + +.research_icon.research.sword { + background-position: -4350px 0; +} + +.research_icon.research.take_over.inactive { + background-position: -4400px 0; +} + +.research_icon.research.take_over { + background-position: -4450px 0; +} + +.research_icon.research.take_over_old.inactive { + background-position: -4500px 0; +} + +.research_icon.research.take_over_old { + background-position: -4550px 0; +} + +.research_icon.research.temple_looting.inactive { + background-position: -4600px 0; +} + +.research_icon.research.temple_looting { + background-position: -4650px 0; +} + +.research_icon.research.town_guard.inactive { + background-position: -4700px 0; +} + +.research_icon.research.town_guard { + background-position: -4750px 0; +} + +.research_icon.research.trireme.inactive { + background-position: -4800px 0; +} + +.research_icon.research.trireme { + background-position: -4850px 0; +} + +.research_icon.research.units_claim.inactive { + background-position: -4900px 0; +} + +.research_icon.research.units_claim { + background-position: -4950px 0; +} + +.research_icon.research40x40, +.research_icon.research50x50 { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.hero232x164 { + width: 232px; + height: 164px; +} + +.hero232x164.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) 0 0 no-repeat; +} + +.hero232x164.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -232px 0 no-repeat; +} + +.hero232x164.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) 0 -164px no-repeat; +} + +.hero232x164.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -232px -164px no-repeat; +} + +.hero232x164.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -464px 0 no-repeat; +} + +.hero232x164.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -1392px 0 no-repeat; +} + +.hero232x164.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -464px -164px no-repeat; +} + +.hero232x164.argus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) 0 -328px no-repeat; +} + +.hero232x164.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -232px -328px no-repeat; +} + +.hero232x164.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -464px -328px no-repeat; +} + +.hero232x164.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) 0 -492px no-repeat; +} + +.hero232x164.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -232px -492px no-repeat; +} + +.hero232x164.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -464px -492px no-repeat; +} + +.hero232x164.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -696px 0 no-repeat; +} + +.hero232x164.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -696px -164px no-repeat; +} + +.hero232x164.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -696px -328px no-repeat; +} + +.hero232x164.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -696px -492px no-repeat; +} + +.hero232x164.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) 0 -656px no-repeat; +} + +.hero232x164.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -232px -656px no-repeat; +} + +.hero232x164.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -464px -656px no-repeat; +} + +.hero232x164.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -696px -656px no-repeat; +} + +.hero232x164.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -928px 0 no-repeat; +} + +.hero232x164.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -928px -164px no-repeat; +} + +.hero232x164.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -928px -328px no-repeat; +} + +.hero232x164.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -928px -492px no-repeat; +} + +.hero232x164.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -928px -656px no-repeat; +} + +.hero232x164.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) 0 -820px no-repeat; +} + +.hero232x164.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -232px -820px no-repeat; +} + +.hero232x164.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -464px -820px no-repeat; +} + +.hero232x164.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -696px -820px no-repeat; +} + +.hero232x164.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -928px -820px no-repeat; +} + +.hero232x164.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) 0 -984px no-repeat; +} + +.hero232x164.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -232px -984px no-repeat; +} + +.hero232x164.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -464px -984px no-repeat; +} + +.hero232x164.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -696px -984px no-repeat; +} + +.hero232x164.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -928px -984px no-repeat; +} + +.hero232x164.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -1160px 0 no-repeat; +} + +.hero232x164.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -1160px -164px no-repeat; +} + +.hero232x164.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -1160px -328px no-repeat; +} + +.hero232x164.unknown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -1160px -492px no-repeat; +} + +.hero232x164.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -1160px -656px no-repeat; +} + +.hero232x164.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -1160px -820px no-repeat; +} + +.hero232x164.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -1160px -984px no-repeat; +} + +.hero232x164.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) 0 -1148px no-repeat; +} + +.hero232x164.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_232x232_4f6e8b7.jpg) -232px -1148px no-repeat; +} + +.hero123x87 { + width: 123px; + height: 87px; +} + +.hero123x87.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -123px 0 no-repeat; +} + +.hero123x87.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) 0 -89px no-repeat; +} + +.hero123x87.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -123px -89px no-repeat; +} + +.hero123x87.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -246px 0 no-repeat; +} + +.hero123x87.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -246px -87px no-repeat; +} + +.hero123x87.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) 0 0 no-repeat; +} + +.hero123x87.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) 0 -176px no-repeat; +} + +.hero123x87.argus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -123px -176px no-repeat; +} + +.hero123x87.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -246px -176px no-repeat; +} + +.hero123x87.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) 0 -263px no-repeat; +} + +.hero123x87.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -123px -263px no-repeat; +} + +.hero123x87.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -246px -263px no-repeat; +} + +.hero123x87.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -369px 0 no-repeat; +} + +.hero123x87.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -369px -87px no-repeat; +} + +.hero123x87.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -369px -174px no-repeat; +} + +.hero123x87.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -369px -261px no-repeat; +} + +.hero123x87.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) 0 -350px no-repeat; +} + +.hero123x87.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -123px -350px no-repeat; +} + +.hero123x87.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -246px -350px no-repeat; +} + +.hero123x87.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -369px -350px no-repeat; +} + +.hero123x87.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -492px 0 no-repeat; +} + +.hero123x87.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -492px -87px no-repeat; +} + +.hero123x87.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -492px -174px no-repeat; +} + +.hero123x87.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -492px -261px no-repeat; +} + +.hero123x87.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -492px -348px no-repeat; +} + +.hero123x87.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) 0 -437px no-repeat; +} + +.hero123x87.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -123px -437px no-repeat; +} + +.hero123x87.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -246px -437px no-repeat; +} + +.hero123x87.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -369px -437px no-repeat; +} + +.hero123x87.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -492px -437px no-repeat; +} + +.hero123x87.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) 0 -524px no-repeat; +} + +.hero123x87.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -123px -524px no-repeat; +} + +.hero123x87.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -246px -524px no-repeat; +} + +.hero123x87.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -369px -524px no-repeat; +} + +.hero123x87.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -492px -524px no-repeat; +} + +.hero123x87.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -615px 0 no-repeat; +} + +.hero123x87.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -615px -87px no-repeat; +} + +.hero123x87.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -615px -174px no-repeat; +} + +.hero123x87.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -615px -261px no-repeat; +} + +.hero123x87.unknown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -615px -348px no-repeat; +} + +.hero123x87.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -615px -435px no-repeat; +} + +.hero123x87.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -615px -522px no-repeat; +} + +.hero123x87.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) 0 -611px no-repeat; +} + +.hero123x87.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -123px -611px no-repeat; +} + +.hero123x87.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/heroes/heroes_portraits_123x123_026733d.jpg) -246px -611px no-repeat; +} + +.hero25x25, +.unit_icon25x25 { + width: 25px; + height: 25px; +} + +.hero25x25.achilles, +.unit_icon25x25.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 0 no-repeat; +} + +.hero25x25.agamemnon, +.unit_icon25x25.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px 0 no-repeat; +} + +.hero25x25.ajax, +.unit_icon25x25.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 -25px no-repeat; +} + +.hero25x25.alexandrios, +.unit_icon25x25.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px -25px no-repeat; +} + +.hero25x25.andromeda, +.unit_icon25x25.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px 0 no-repeat; +} + +.hero25x25.anysia, +.unit_icon25x25.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px -25px no-repeat; +} + +.hero25x25.apheledes, +.unit_icon25x25.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 -50px no-repeat; +} + +.hero25x25.archer, +.unit_icon25x25.archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px -50px no-repeat; +} + +.hero25x25.argus, +.unit_icon25x25.argus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px -50px no-repeat; +} + +.hero25x25.aristotle, +.unit_icon25x25.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px 0 no-repeat; +} + +.hero25x25.atalanta, +.unit_icon25x25.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px -25px no-repeat; +} + +.hero25x25.attack_ship, +.unit_icon25x25.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px -50px no-repeat; +} + +.hero25x25.big_transporter, +.unit_icon25x25.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 -75px no-repeat; +} + +.hero25x25.bireme, +.unit_icon25x25.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px -75px no-repeat; +} + +.hero25x25.calydonian_boar, +.unit_icon25x25.calydonian_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px -75px no-repeat; +} + +.hero25x25.catapult, +.unit_icon25x25.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px -75px no-repeat; +} + +.hero25x25.centaur, +.unit_icon25x25.centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px 0 no-repeat; +} + +.hero25x25.cerberus, +.unit_icon25x25.cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px -25px no-repeat; +} + +.hero25x25.chariot, +.unit_icon25x25.chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px -50px no-repeat; +} + +.hero25x25.cheiron, +.unit_icon25x25.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px -75px no-repeat; +} + +.hero25x25.christopholus, +.unit_icon25x25.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 -100px no-repeat; +} + +.hero25x25.colonize_ship, +.unit_icon25x25.colonize_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px -100px no-repeat; +} + +.hero25x25.daidalos, +.unit_icon25x25.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px -100px no-repeat; +} + +.hero25x25.deimos, +.unit_icon25x25.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px -100px no-repeat; +} + +.hero25x25.democritus, +.unit_icon25x25.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px -100px no-repeat; +} + +.hero25x25.demolition_ship, +.unit_icon25x25.demolition_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px 0 no-repeat; +} + +.hero25x25.deryntes, +.unit_icon25x25.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px -25px no-repeat; +} + +.hero25x25.ephialtes, +.unit_icon25x25.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px -50px no-repeat; +} + +.hero25x25.eurybia, +.unit_icon25x25.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px -75px no-repeat; +} + +.hero25x25.ferkyon, +.unit_icon25x25.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px -100px no-repeat; +} + +.hero25x25.fury, +.unit_icon25x25.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 -125px no-repeat; +} + +.hero25x25.godsent, +.unit_icon25x25.godsent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px -125px no-repeat; +} + +.hero25x25.griffin, +.unit_icon25x25.griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px -125px no-repeat; +} + +.hero25x25.harpy, +.unit_icon25x25.harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px -125px no-repeat; +} + +.hero25x25.hector, +.unit_icon25x25.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px -125px no-repeat; +} + +.hero25x25.helen, +.unit_icon25x25.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px -125px no-repeat; +} + +.hero25x25.hercules, +.unit_icon25x25.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px 0 no-repeat; +} + +.hero25x25.hoplite, +.unit_icon25x25.hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px -25px no-repeat; +} + +.hero25x25.iason, +.unit_icon25x25.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px -50px no-repeat; +} + +.hero25x25.ladon, +.unit_icon25x25.ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px -75px no-repeat; +} + +.hero25x25.leonidas, +.unit_icon25x25.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px -100px no-repeat; +} + +.hero25x25.lysippe, +.unit_icon25x25.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px -125px no-repeat; +} + +.hero25x25.manticore, +.unit_icon25x25.manticore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 -150px no-repeat; +} + +.hero25x25.medea, +.unit_icon25x25.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px -150px no-repeat; +} + +.hero25x25.medusa, +.unit_icon25x25.medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px -150px no-repeat; +} + +.hero25x25.melousa, +.unit_icon25x25.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px -150px no-repeat; +} + +.hero25x25.mihalis, +.unit_icon25x25.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px -150px no-repeat; +} + +.hero25x25.militia, +.unit_icon25x25.militia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px -150px no-repeat; +} + +.hero25x25.minotaur, +.unit_icon25x25.minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px -150px no-repeat; +} + +.hero25x25.odysseus, +.unit_icon25x25.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -175px 0 no-repeat; +} + +.hero25x25.orpheus, +.unit_icon25x25.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -175px -25px no-repeat; +} + +.hero25x25.pariphaistes, +.unit_icon25x25.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -175px -50px no-repeat; +} + +.hero25x25.pegasus, +.unit_icon25x25.pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -175px -75px no-repeat; +} + +.hero25x25.pelops, +.unit_icon25x25.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -175px -100px no-repeat; +} + +.hero25x25.perseus, +.unit_icon25x25.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -175px -125px no-repeat; +} + +.hero25x25.philoctetes, +.unit_icon25x25.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -175px -150px no-repeat; +} + +.hero25x25.rekonos, +.unit_icon25x25.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 -175px no-repeat; +} + +.hero25x25.rider, +.unit_icon25x25.rider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px -175px no-repeat; +} + +.hero25x25.satyr, +.unit_icon25x25.satyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px -175px no-repeat; +} + +.hero25x25.sea_monster, +.unit_icon25x25.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px -175px no-repeat; +} + +.hero25x25.siren, +.unit_icon25x25.siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px -175px no-repeat; +} + +.hero25x25.slinger, +.unit_icon25x25.slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px -175px no-repeat; +} + +.hero25x25.small_transporter, +.unit_icon25x25.small_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px -175px no-repeat; +} + +.hero25x25.spartoi, +.unit_icon25x25.spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -175px -175px no-repeat; +} + +.hero25x25.sword, +.unit_icon25x25.sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -200px 0 no-repeat; +} + +.hero25x25.telemachos, +.unit_icon25x25.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -200px -25px no-repeat; +} + +.hero25x25.terylea, +.unit_icon25x25.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -200px -50px no-repeat; +} + +.hero25x25.themistokles, +.unit_icon25x25.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -200px -75px no-repeat; +} + +.hero25x25.theseus, +.unit_icon25x25.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -200px -100px no-repeat; +} + +.hero25x25.trireme, +.unit_icon25x25.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -200px -125px no-repeat; +} + +.hero25x25.unknown, +.unit_icon25x25.unknown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -200px -150px no-repeat; +} + +.hero25x25.unknown_hero, +.unit_icon25x25.unknown_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -200px -175px no-repeat; +} + +.hero25x25.unknown_naval, +.unit_icon25x25.unknown_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) 0 -200px no-repeat; +} + +.hero25x25.urephon, +.unit_icon25x25.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -25px -200px no-repeat; +} + +.hero25x25.vedouma, +.unit_icon25x25.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -50px -200px no-repeat; +} + +.hero25x25.xanthos, +.unit_icon25x25.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -75px -200px no-repeat; +} + +.hero25x25.ylestres, +.unit_icon25x25.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -100px -200px no-repeat; +} + +.hero25x25.zuretha, +.unit_icon25x25.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -125px -200px no-repeat; +} + +.hero25x25.zyklop, +.unit_icon25x25.zyklop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_25x25_e0a7ea8.png) -150px -200px no-repeat; +} + +.hero50x50, +.unit_icon50x50 { + width: 50px; + height: 50px; +} + +.hero50x50.achilles, +.unit_icon50x50.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 0 no-repeat; +} + +.hero50x50.agamemnon, +.unit_icon50x50.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px 0 no-repeat; +} + +.hero50x50.ajax, +.unit_icon50x50.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 -50px no-repeat; +} + +.hero50x50.alexandrios, +.unit_icon50x50.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px -50px no-repeat; +} + +.hero50x50.andromeda, +.unit_icon50x50.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px 0 no-repeat; +} + +.hero50x50.anysia, +.unit_icon50x50.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px -50px no-repeat; +} + +.hero50x50.apheledes, +.unit_icon50x50.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 -100px no-repeat; +} + +.hero50x50.archer, +.unit_icon50x50.archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px -100px no-repeat; +} + +.hero50x50.argus, +.unit_icon50x50.argus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px -100px no-repeat; +} + +.hero50x50.aristotle, +.unit_icon50x50.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px 0 no-repeat; +} + +.hero50x50.atalanta, +.unit_icon50x50.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px -50px no-repeat; +} + +.hero50x50.attack_ship, +.unit_icon50x50.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px -100px no-repeat; +} + +.hero50x50.big_transporter, +.unit_icon50x50.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 -150px no-repeat; +} + +.hero50x50.bireme, +.unit_icon50x50.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px -150px no-repeat; +} + +.hero50x50.calydonian_boar, +.unit_icon50x50.calydonian_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px -150px no-repeat; +} + +.hero50x50.catapult, +.unit_icon50x50.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px -150px no-repeat; +} + +.hero50x50.centaur, +.unit_icon50x50.centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px 0 no-repeat; +} + +.hero50x50.cerberus, +.unit_icon50x50.cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px -50px no-repeat; +} + +.hero50x50.chariot, +.unit_icon50x50.chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px -100px no-repeat; +} + +.hero50x50.cheiron, +.unit_icon50x50.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px -150px no-repeat; +} + +.hero50x50.christopholus, +.unit_icon50x50.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 -200px no-repeat; +} + +.hero50x50.colonize_ship, +.unit_icon50x50.colonize_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px -200px no-repeat; +} + +.hero50x50.daidalos, +.unit_icon50x50.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px -200px no-repeat; +} + +.hero50x50.deimos, +.unit_icon50x50.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px -200px no-repeat; +} + +.hero50x50.democritus, +.unit_icon50x50.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px -200px no-repeat; +} + +.hero50x50.demolition_ship, +.unit_icon50x50.demolition_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px 0 no-repeat; +} + +.hero50x50.deryntes, +.unit_icon50x50.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px -50px no-repeat; +} + +.hero50x50.ephialtes, +.unit_icon50x50.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px -100px no-repeat; +} + +.hero50x50.eurybia, +.unit_icon50x50.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px -150px no-repeat; +} + +.hero50x50.ferkyon, +.unit_icon50x50.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px -200px no-repeat; +} + +.hero50x50.fury, +.unit_icon50x50.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 -250px no-repeat; +} + +.hero50x50.godsent, +.unit_icon50x50.godsent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px -250px no-repeat; +} + +.hero50x50.griffin, +.unit_icon50x50.griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px -250px no-repeat; +} + +.hero50x50.harpy, +.unit_icon50x50.harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px -250px no-repeat; +} + +.hero50x50.hector, +.unit_icon50x50.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px -250px no-repeat; +} + +.hero50x50.helen, +.unit_icon50x50.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px -250px no-repeat; +} + +.hero50x50.hercules, +.unit_icon50x50.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px 0 no-repeat; +} + +.hero50x50.hoplite, +.unit_icon50x50.hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px -50px no-repeat; +} + +.hero50x50.iason, +.unit_icon50x50.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px -100px no-repeat; +} + +.hero50x50.ladon, +.unit_icon50x50.ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px -150px no-repeat; +} + +.hero50x50.leonidas, +.unit_icon50x50.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px -200px no-repeat; +} + +.hero50x50.lysippe, +.unit_icon50x50.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px -250px no-repeat; +} + +.hero50x50.manticore, +.unit_icon50x50.manticore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 -300px no-repeat; +} + +.hero50x50.medea, +.unit_icon50x50.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px -300px no-repeat; +} + +.hero50x50.medusa, +.unit_icon50x50.medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px -300px no-repeat; +} + +.hero50x50.melousa, +.unit_icon50x50.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px -300px no-repeat; +} + +.hero50x50.mihalis, +.unit_icon50x50.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px -300px no-repeat; +} + +.hero50x50.militia, +.unit_icon50x50.militia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px -300px no-repeat; +} + +.hero50x50.minotaur, +.unit_icon50x50.minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px -300px no-repeat; +} + +.hero50x50.odysseus, +.unit_icon50x50.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -350px 0 no-repeat; +} + +.hero50x50.orpheus, +.unit_icon50x50.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -350px -50px no-repeat; +} + +.hero50x50.pariphaistes, +.unit_icon50x50.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -350px -100px no-repeat; +} + +.hero50x50.pegasus, +.unit_icon50x50.pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -350px -150px no-repeat; +} + +.hero50x50.pelops, +.unit_icon50x50.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -350px -200px no-repeat; +} + +.hero50x50.perseus, +.unit_icon50x50.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -350px -250px no-repeat; +} + +.hero50x50.philoctetes, +.unit_icon50x50.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -350px -300px no-repeat; +} + +.hero50x50.rekonos, +.unit_icon50x50.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 -350px no-repeat; +} + +.hero50x50.rider, +.unit_icon50x50.rider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px -350px no-repeat; +} + +.hero50x50.satyr, +.unit_icon50x50.satyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px -350px no-repeat; +} + +.hero50x50.sea_monster, +.unit_icon50x50.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px -350px no-repeat; +} + +.hero50x50.siren, +.unit_icon50x50.siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px -350px no-repeat; +} + +.hero50x50.slinger, +.unit_icon50x50.slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px -350px no-repeat; +} + +.hero50x50.small_transporter, +.unit_icon50x50.small_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px -350px no-repeat; +} + +.hero50x50.spartoi, +.unit_icon50x50.spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -350px -350px no-repeat; +} + +.hero50x50.sword, +.unit_icon50x50.sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -400px 0 no-repeat; +} + +.hero50x50.telemachos, +.unit_icon50x50.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -400px -50px no-repeat; +} + +.hero50x50.terylea, +.unit_icon50x50.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -400px -100px no-repeat; +} + +.hero50x50.themistokles, +.unit_icon50x50.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -400px -150px no-repeat; +} + +.hero50x50.theseus, +.unit_icon50x50.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -400px -200px no-repeat; +} + +.hero50x50.trireme, +.unit_icon50x50.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -400px -250px no-repeat; +} + +.hero50x50.unknown, +.unit_icon50x50.unknown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -400px -300px no-repeat; +} + +.hero50x50.unknown_hero, +.unit_icon50x50.unknown_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -400px -350px no-repeat; +} + +.hero50x50.unknown_naval, +.unit_icon50x50.unknown_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) 0 -400px no-repeat; +} + +.hero50x50.urephon, +.unit_icon50x50.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -50px -400px no-repeat; +} + +.hero50x50.vedouma, +.unit_icon50x50.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -100px -400px no-repeat; +} + +.hero50x50.xanthos, +.unit_icon50x50.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -150px -400px no-repeat; +} + +.hero50x50.ylestres, +.unit_icon50x50.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -200px -400px no-repeat; +} + +.hero50x50.zuretha, +.unit_icon50x50.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -250px -400px no-repeat; +} + +.hero50x50.zyklop, +.unit_icon50x50.zyklop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_50x50_654368f.png) -300px -400px no-repeat; +} + +.hero40x40, +.unit_icon40x40 { + width: 40px; + height: 40px; +} + +.hero40x40.achilles, +.unit_icon40x40.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 0 no-repeat; +} + +.hero40x40.agamemnon, +.unit_icon40x40.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px 0 no-repeat; +} + +.hero40x40.ajax, +.unit_icon40x40.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 -40px no-repeat; +} + +.hero40x40.alexandrios, +.unit_icon40x40.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px -40px no-repeat; +} + +.hero40x40.andromeda, +.unit_icon40x40.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px 0 no-repeat; +} + +.hero40x40.anysia, +.unit_icon40x40.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px -40px no-repeat; +} + +.hero40x40.apheledes, +.unit_icon40x40.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 -80px no-repeat; +} + +.hero40x40.archer, +.unit_icon40x40.archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px -80px no-repeat; +} + +.hero40x40.argus, +.unit_icon40x40.argus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px -80px no-repeat; +} + +.hero40x40.aristotle, +.unit_icon40x40.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px 0 no-repeat; +} + +.hero40x40.atalanta, +.unit_icon40x40.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px -40px no-repeat; +} + +.hero40x40.attack_ship, +.unit_icon40x40.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px -80px no-repeat; +} + +.hero40x40.big_transporter, +.unit_icon40x40.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 -120px no-repeat; +} + +.hero40x40.bireme, +.unit_icon40x40.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px -120px no-repeat; +} + +.hero40x40.calydonian_boar, +.unit_icon40x40.calydonian_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px -120px no-repeat; +} + +.hero40x40.catapult, +.unit_icon40x40.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px -120px no-repeat; +} + +.hero40x40.centaur, +.unit_icon40x40.centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px 0 no-repeat; +} + +.hero40x40.cerberus, +.unit_icon40x40.cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px -40px no-repeat; +} + +.hero40x40.chariot, +.unit_icon40x40.chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px -80px no-repeat; +} + +.hero40x40.cheiron, +.unit_icon40x40.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px -120px no-repeat; +} + +.hero40x40.christopholus, +.unit_icon40x40.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 -160px no-repeat; +} + +.hero40x40.colonize_ship, +.unit_icon40x40.colonize_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px -160px no-repeat; +} + +.hero40x40.daidalos, +.unit_icon40x40.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px -160px no-repeat; +} + +.hero40x40.deimos, +.unit_icon40x40.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px -160px no-repeat; +} + +.hero40x40.democritus, +.unit_icon40x40.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px -160px no-repeat; +} + +.hero40x40.demolition_ship, +.unit_icon40x40.demolition_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px 0 no-repeat; +} + +.hero40x40.deryntes, +.unit_icon40x40.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px -40px no-repeat; +} + +.hero40x40.ephialtes, +.unit_icon40x40.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px -80px no-repeat; +} + +.hero40x40.eurybia, +.unit_icon40x40.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px -120px no-repeat; +} + +.hero40x40.ferkyon, +.unit_icon40x40.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px -160px no-repeat; +} + +.hero40x40.fury, +.unit_icon40x40.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 -200px no-repeat; +} + +.hero40x40.godsent, +.unit_icon40x40.godsent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px -200px no-repeat; +} + +.hero40x40.griffin, +.unit_icon40x40.griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px -200px no-repeat; +} + +.hero40x40.harpy, +.unit_icon40x40.harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px -200px no-repeat; +} + +.hero40x40.hector, +.unit_icon40x40.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px -200px no-repeat; +} + +.hero40x40.helen, +.unit_icon40x40.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px -200px no-repeat; +} + +.hero40x40.hercules, +.unit_icon40x40.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px 0 no-repeat; +} + +.hero40x40.hoplite, +.unit_icon40x40.hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px -40px no-repeat; +} + +.hero40x40.iason, +.unit_icon40x40.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px -80px no-repeat; +} + +.hero40x40.ladon, +.unit_icon40x40.ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px -120px no-repeat; +} + +.hero40x40.leonidas, +.unit_icon40x40.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px -160px no-repeat; +} + +.hero40x40.lysippe, +.unit_icon40x40.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px -200px no-repeat; +} + +.hero40x40.manticore, +.unit_icon40x40.manticore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 -240px no-repeat; +} + +.hero40x40.medea, +.unit_icon40x40.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px -240px no-repeat; +} + +.hero40x40.medusa, +.unit_icon40x40.medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px -240px no-repeat; +} + +.hero40x40.melousa, +.unit_icon40x40.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px -240px no-repeat; +} + +.hero40x40.mihalis, +.unit_icon40x40.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px -240px no-repeat; +} + +.hero40x40.militia, +.unit_icon40x40.militia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px -240px no-repeat; +} + +.hero40x40.minotaur, +.unit_icon40x40.minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px -240px no-repeat; +} + +.hero40x40.odysseus, +.unit_icon40x40.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -280px 0 no-repeat; +} + +.hero40x40.orpheus, +.unit_icon40x40.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -280px -40px no-repeat; +} + +.hero40x40.pariphaistes, +.unit_icon40x40.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -280px -80px no-repeat; +} + +.hero40x40.pegasus, +.unit_icon40x40.pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -280px -120px no-repeat; +} + +.hero40x40.pelops, +.unit_icon40x40.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -280px -160px no-repeat; +} + +.hero40x40.perseus, +.unit_icon40x40.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -280px -200px no-repeat; +} + +.hero40x40.philoctetes, +.unit_icon40x40.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -280px -240px no-repeat; +} + +.hero40x40.rekonos, +.unit_icon40x40.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 -280px no-repeat; +} + +.hero40x40.rider, +.unit_icon40x40.rider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px -280px no-repeat; +} + +.hero40x40.satyr, +.unit_icon40x40.satyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px -280px no-repeat; +} + +.hero40x40.sea_monster, +.unit_icon40x40.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px -280px no-repeat; +} + +.hero40x40.siren, +.unit_icon40x40.siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px -280px no-repeat; +} + +.hero40x40.slinger, +.unit_icon40x40.slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px -280px no-repeat; +} + +.hero40x40.small_transporter, +.unit_icon40x40.small_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px -280px no-repeat; +} + +.hero40x40.spartoi, +.unit_icon40x40.spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -280px -280px no-repeat; +} + +.hero40x40.sword, +.unit_icon40x40.sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -320px 0 no-repeat; +} + +.hero40x40.telemachos, +.unit_icon40x40.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -320px -40px no-repeat; +} + +.hero40x40.terylea, +.unit_icon40x40.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -320px -80px no-repeat; +} + +.hero40x40.themistokles, +.unit_icon40x40.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -320px -120px no-repeat; +} + +.hero40x40.theseus, +.unit_icon40x40.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -320px -160px no-repeat; +} + +.hero40x40.trireme, +.unit_icon40x40.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -320px -200px no-repeat; +} + +.hero40x40.unknown, +.unit_icon40x40.unknown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -320px -240px no-repeat; +} + +.hero40x40.unknown_hero, +.unit_icon40x40.unknown_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -320px -280px no-repeat; +} + +.hero40x40.unknown_naval, +.unit_icon40x40.unknown_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) 0 -320px no-repeat; +} + +.hero40x40.urephon, +.unit_icon40x40.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -40px -320px no-repeat; +} + +.hero40x40.vedouma, +.unit_icon40x40.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -80px -320px no-repeat; +} + +.hero40x40.xanthos, +.unit_icon40x40.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -120px -320px no-repeat; +} + +.hero40x40.ylestres, +.unit_icon40x40.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -160px -320px no-repeat; +} + +.hero40x40.zuretha, +.unit_icon40x40.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -200px -320px no-repeat; +} + +.hero40x40.zyklop, +.unit_icon40x40.zyklop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_40x40_66aaef2.png) -240px -320px no-repeat; +} + +.hero70x70, +.unit_icon70x70 { + width: 70px; + height: 70px; +} + +.hero70x70.achilles, +.unit_icon70x70.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 0 no-repeat; +} + +.hero70x70.agamemnon, +.unit_icon70x70.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px 0 no-repeat; +} + +.hero70x70.ajax, +.unit_icon70x70.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 -70px no-repeat; +} + +.hero70x70.alexandrios, +.unit_icon70x70.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px -70px no-repeat; +} + +.hero70x70.andromeda, +.unit_icon70x70.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px 0 no-repeat; +} + +.hero70x70.anysia, +.unit_icon70x70.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px -70px no-repeat; +} + +.hero70x70.apheledes, +.unit_icon70x70.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 -140px no-repeat; +} + +.hero70x70.archer, +.unit_icon70x70.archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px -140px no-repeat; +} + +.hero70x70.argus, +.unit_icon70x70.argus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px -140px no-repeat; +} + +.hero70x70.aristotle, +.unit_icon70x70.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px 0 no-repeat; +} + +.hero70x70.atalanta, +.unit_icon70x70.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px -70px no-repeat; +} + +.hero70x70.attack_ship, +.unit_icon70x70.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px -140px no-repeat; +} + +.hero70x70.big_transporter, +.unit_icon70x70.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 -210px no-repeat; +} + +.hero70x70.bireme, +.unit_icon70x70.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px -210px no-repeat; +} + +.hero70x70.calydonian_boar, +.unit_icon70x70.calydonian_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px -210px no-repeat; +} + +.hero70x70.catapult, +.unit_icon70x70.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px -210px no-repeat; +} + +.hero70x70.centaur, +.unit_icon70x70.centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px 0 no-repeat; +} + +.hero70x70.cerberus, +.unit_icon70x70.cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px -70px no-repeat; +} + +.hero70x70.chariot, +.unit_icon70x70.chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px -140px no-repeat; +} + +.hero70x70.cheiron, +.unit_icon70x70.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px -210px no-repeat; +} + +.hero70x70.christopholus, +.unit_icon70x70.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 -280px no-repeat; +} + +.hero70x70.colonize_ship, +.unit_icon70x70.colonize_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px -280px no-repeat; +} + +.hero70x70.daidalos, +.unit_icon70x70.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px -280px no-repeat; +} + +.hero70x70.deimos, +.unit_icon70x70.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px -280px no-repeat; +} + +.hero70x70.democritus, +.unit_icon70x70.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px -280px no-repeat; +} + +.hero70x70.demolition_ship, +.unit_icon70x70.demolition_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px 0 no-repeat; +} + +.hero70x70.deryntes, +.unit_icon70x70.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px -70px no-repeat; +} + +.hero70x70.ephialtes, +.unit_icon70x70.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px -140px no-repeat; +} + +.hero70x70.eurybia, +.unit_icon70x70.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px -210px no-repeat; +} + +.hero70x70.ferkyon, +.unit_icon70x70.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px -280px no-repeat; +} + +.hero70x70.fury, +.unit_icon70x70.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 -350px no-repeat; +} + +.hero70x70.godsent, +.unit_icon70x70.godsent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px -350px no-repeat; +} + +.hero70x70.griffin, +.unit_icon70x70.griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px -350px no-repeat; +} + +.hero70x70.harpy, +.unit_icon70x70.harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px -350px no-repeat; +} + +.hero70x70.hector, +.unit_icon70x70.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px -350px no-repeat; +} + +.hero70x70.helen, +.unit_icon70x70.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px -350px no-repeat; +} + +.hero70x70.hercules, +.unit_icon70x70.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px 0 no-repeat; +} + +.hero70x70.hoplite, +.unit_icon70x70.hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px -70px no-repeat; +} + +.hero70x70.iason, +.unit_icon70x70.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px -140px no-repeat; +} + +.hero70x70.ladon, +.unit_icon70x70.ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px -210px no-repeat; +} + +.hero70x70.leonidas, +.unit_icon70x70.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px -280px no-repeat; +} + +.hero70x70.lysippe, +.unit_icon70x70.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px -350px no-repeat; +} + +.hero70x70.manticore, +.unit_icon70x70.manticore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 -420px no-repeat; +} + +.hero70x70.medea, +.unit_icon70x70.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px -420px no-repeat; +} + +.hero70x70.medusa, +.unit_icon70x70.medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px -420px no-repeat; +} + +.hero70x70.melousa, +.unit_icon70x70.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px -420px no-repeat; +} + +.hero70x70.mihalis, +.unit_icon70x70.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px -420px no-repeat; +} + +.hero70x70.militia, +.unit_icon70x70.militia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px -420px no-repeat; +} + +.hero70x70.minotaur, +.unit_icon70x70.minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px -420px no-repeat; +} + +.hero70x70.odysseus, +.unit_icon70x70.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -490px 0 no-repeat; +} + +.hero70x70.orpheus, +.unit_icon70x70.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -490px -70px no-repeat; +} + +.hero70x70.pariphaistes, +.unit_icon70x70.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -490px -140px no-repeat; +} + +.hero70x70.pegasus, +.unit_icon70x70.pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -490px -210px no-repeat; +} + +.hero70x70.pelops, +.unit_icon70x70.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -490px -280px no-repeat; +} + +.hero70x70.perseus, +.unit_icon70x70.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -490px -350px no-repeat; +} + +.hero70x70.philoctetes, +.unit_icon70x70.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -490px -420px no-repeat; +} + +.hero70x70.rekonos, +.unit_icon70x70.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 -490px no-repeat; +} + +.hero70x70.rider, +.unit_icon70x70.rider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px -490px no-repeat; +} + +.hero70x70.satyr, +.unit_icon70x70.satyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px -490px no-repeat; +} + +.hero70x70.sea_monster, +.unit_icon70x70.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px -490px no-repeat; +} + +.hero70x70.siren, +.unit_icon70x70.siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px -490px no-repeat; +} + +.hero70x70.slinger, +.unit_icon70x70.slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px -490px no-repeat; +} + +.hero70x70.small_transporter, +.unit_icon70x70.small_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px -490px no-repeat; +} + +.hero70x70.spartoi, +.unit_icon70x70.spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -490px -490px no-repeat; +} + +.hero70x70.sword, +.unit_icon70x70.sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -560px 0 no-repeat; +} + +.hero70x70.telemachos, +.unit_icon70x70.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -560px -70px no-repeat; +} + +.hero70x70.terylea, +.unit_icon70x70.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -560px -140px no-repeat; +} + +.hero70x70.themistokles, +.unit_icon70x70.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -560px -210px no-repeat; +} + +.hero70x70.theseus, +.unit_icon70x70.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -560px -280px no-repeat; +} + +.hero70x70.trireme, +.unit_icon70x70.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -560px -350px no-repeat; +} + +.hero70x70.unknown, +.unit_icon70x70.unknown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -560px -420px no-repeat; +} + +.hero70x70.unknown_hero, +.unit_icon70x70.unknown_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -560px -490px no-repeat; +} + +.hero70x70.unknown_naval, +.unit_icon70x70.unknown_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) 0 -560px no-repeat; +} + +.hero70x70.urephon, +.unit_icon70x70.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -70px -560px no-repeat; +} + +.hero70x70.vedouma, +.unit_icon70x70.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -140px -560px no-repeat; +} + +.hero70x70.xanthos, +.unit_icon70x70.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -210px -560px no-repeat; +} + +.hero70x70.ylestres, +.unit_icon70x70.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -280px -560px no-repeat; +} + +.hero70x70.zuretha, +.unit_icon70x70.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -350px -560px no-repeat; +} + +.hero70x70.zyklop, +.unit_icon70x70.zyklop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_70x70_467fcae.png) -420px -560px no-repeat; +} + +.hero90x90, +.unit_icon90x90 { + width: 90px; + height: 90px; +} + +.hero90x90.achilles, +.unit_icon90x90.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 0 no-repeat; +} + +.hero90x90.agamemnon, +.unit_icon90x90.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px 0 no-repeat; +} + +.hero90x90.ajax, +.unit_icon90x90.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 -90px no-repeat; +} + +.hero90x90.alexandrios, +.unit_icon90x90.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px -90px no-repeat; +} + +.hero90x90.andromeda, +.unit_icon90x90.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px 0 no-repeat; +} + +.hero90x90.anysia, +.unit_icon90x90.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px -90px no-repeat; +} + +.hero90x90.apheledes, +.unit_icon90x90.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 -180px no-repeat; +} + +.hero90x90.archer, +.unit_icon90x90.archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px -180px no-repeat; +} + +.hero90x90.argus, +.unit_icon90x90.argus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px -180px no-repeat; +} + +.hero90x90.aristotle, +.unit_icon90x90.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px 0 no-repeat; +} + +.hero90x90.atalanta, +.unit_icon90x90.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px -90px no-repeat; +} + +.hero90x90.attack_ship, +.unit_icon90x90.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px -180px no-repeat; +} + +.hero90x90.big_transporter, +.unit_icon90x90.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 -270px no-repeat; +} + +.hero90x90.bireme, +.unit_icon90x90.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px -270px no-repeat; +} + +.hero90x90.calydonian_boar, +.unit_icon90x90.calydonian_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px -270px no-repeat; +} + +.hero90x90.catapult, +.unit_icon90x90.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px -270px no-repeat; +} + +.hero90x90.centaur, +.unit_icon90x90.centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px 0 no-repeat; +} + +.hero90x90.cerberus, +.unit_icon90x90.cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px -90px no-repeat; +} + +.hero90x90.chariot, +.unit_icon90x90.chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px -180px no-repeat; +} + +.hero90x90.cheiron, +.unit_icon90x90.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px -270px no-repeat; +} + +.hero90x90.christopholus, +.unit_icon90x90.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 -360px no-repeat; +} + +.hero90x90.colonize_ship, +.unit_icon90x90.colonize_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px -360px no-repeat; +} + +.hero90x90.daidalos, +.unit_icon90x90.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px -360px no-repeat; +} + +.hero90x90.deimos, +.unit_icon90x90.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px -360px no-repeat; +} + +.hero90x90.democritus, +.unit_icon90x90.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px -360px no-repeat; +} + +.hero90x90.demolition_ship, +.unit_icon90x90.demolition_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px 0 no-repeat; +} + +.hero90x90.deryntes, +.unit_icon90x90.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px -90px no-repeat; +} + +.hero90x90.ephialtes, +.unit_icon90x90.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px -180px no-repeat; +} + +.hero90x90.eurybia, +.unit_icon90x90.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px -270px no-repeat; +} + +.hero90x90.ferkyon, +.unit_icon90x90.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px -360px no-repeat; +} + +.hero90x90.fury, +.unit_icon90x90.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 -450px no-repeat; +} + +.hero90x90.godsent, +.unit_icon90x90.godsent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px -450px no-repeat; +} + +.hero90x90.griffin, +.unit_icon90x90.griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px -450px no-repeat; +} + +.hero90x90.harpy, +.unit_icon90x90.harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px -450px no-repeat; +} + +.hero90x90.hector, +.unit_icon90x90.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px -450px no-repeat; +} + +.hero90x90.helen, +.unit_icon90x90.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px -450px no-repeat; +} + +.hero90x90.hercules, +.unit_icon90x90.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px 0 no-repeat; +} + +.hero90x90.hoplite, +.unit_icon90x90.hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px -90px no-repeat; +} + +.hero90x90.iason, +.unit_icon90x90.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px -180px no-repeat; +} + +.hero90x90.ladon, +.unit_icon90x90.ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px -270px no-repeat; +} + +.hero90x90.leonidas, +.unit_icon90x90.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px -360px no-repeat; +} + +.hero90x90.lysippe, +.unit_icon90x90.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px -450px no-repeat; +} + +.hero90x90.manticore, +.unit_icon90x90.manticore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 -540px no-repeat; +} + +.hero90x90.medea, +.unit_icon90x90.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px -540px no-repeat; +} + +.hero90x90.medusa, +.unit_icon90x90.medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px -540px no-repeat; +} + +.hero90x90.melousa, +.unit_icon90x90.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px -540px no-repeat; +} + +.hero90x90.mihalis, +.unit_icon90x90.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px -540px no-repeat; +} + +.hero90x90.militia, +.unit_icon90x90.militia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px -540px no-repeat; +} + +.hero90x90.minotaur, +.unit_icon90x90.minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px -540px no-repeat; +} + +.hero90x90.odysseus, +.unit_icon90x90.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -630px 0 no-repeat; +} + +.hero90x90.orpheus, +.unit_icon90x90.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -630px -90px no-repeat; +} + +.hero90x90.pariphaistes, +.unit_icon90x90.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -630px -180px no-repeat; +} + +.hero90x90.pegasus, +.unit_icon90x90.pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -630px -270px no-repeat; +} + +.hero90x90.pelops, +.unit_icon90x90.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -630px -360px no-repeat; +} + +.hero90x90.perseus, +.unit_icon90x90.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -630px -450px no-repeat; +} + +.hero90x90.philoctetes, +.unit_icon90x90.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -630px -540px no-repeat; +} + +.hero90x90.rekonos, +.unit_icon90x90.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 -630px no-repeat; +} + +.hero90x90.rider, +.unit_icon90x90.rider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px -630px no-repeat; +} + +.hero90x90.satyr, +.unit_icon90x90.satyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px -630px no-repeat; +} + +.hero90x90.sea_monster, +.unit_icon90x90.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px -630px no-repeat; +} + +.hero90x90.siren, +.unit_icon90x90.siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px -630px no-repeat; +} + +.hero90x90.slinger, +.unit_icon90x90.slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px -630px no-repeat; +} + +.hero90x90.small_transporter, +.unit_icon90x90.small_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px -630px no-repeat; +} + +.hero90x90.spartoi, +.unit_icon90x90.spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -630px -630px no-repeat; +} + +.hero90x90.sword, +.unit_icon90x90.sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -720px 0 no-repeat; +} + +.hero90x90.telemachos, +.unit_icon90x90.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -720px -90px no-repeat; +} + +.hero90x90.terylea, +.unit_icon90x90.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -720px -180px no-repeat; +} + +.hero90x90.themistokles, +.unit_icon90x90.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -720px -270px no-repeat; +} + +.hero90x90.theseus, +.unit_icon90x90.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -720px -360px no-repeat; +} + +.hero90x90.trireme, +.unit_icon90x90.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -720px -450px no-repeat; +} + +.hero90x90.unknown, +.unit_icon90x90.unknown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -720px -540px no-repeat; +} + +.hero90x90.unknown_hero, +.unit_icon90x90.unknown_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -720px -630px no-repeat; +} + +.hero90x90.unknown_naval, +.unit_icon90x90.unknown_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) 0 -720px no-repeat; +} + +.hero90x90.urephon, +.unit_icon90x90.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -90px -720px no-repeat; +} + +.hero90x90.vedouma, +.unit_icon90x90.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -180px -720px no-repeat; +} + +.hero90x90.xanthos, +.unit_icon90x90.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -270px -720px no-repeat; +} + +.hero90x90.ylestres, +.unit_icon90x90.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -360px -720px no-repeat; +} + +.hero90x90.zuretha, +.unit_icon90x90.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -450px -720px no-repeat; +} + +.hero90x90.zyklop, +.unit_icon90x90.zyklop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/unit_icons_90x90_cdf04e5.png) -540px -720px no-repeat; +} + +.units_228x165.archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 0; + width: 228px; + height: 165px; +} + +.units_228x165.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px 0; + width: 228px; + height: 165px; +} + +.units_228x165.brander { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -165px; + width: 228px; + height: 165px; +} + +.units_228x165.calydonian_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -165px; + width: 228px; + height: 165px; +} + +.units_228x165.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px 0; + width: 228px; + height: 165px; +} + +.units_228x165.cavalary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -165px; + width: 228px; + height: 165px; +} + +.units_228x165.centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -330px; + width: 228px; + height: 165px; +} + +.units_228x165.cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -330px; + width: 228px; + height: 165px; +} + +.units_228x165.chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -330px; + width: 228px; + height: 165px; +} + +.units_228x165.colony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -495px; + width: 228px; + height: 165px; +} + +.units_228x165.cyclops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -495px; + width: 228px; + height: 165px; +} + +.units_228x165.fireship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -495px; + width: 228px; + height: 165px; +} + +.units_228x165.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px 0; + width: 228px; + height: 165px; +} + +.units_228x165.giant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -165px; + width: 228px; + height: 165px; +} + +.units_228x165.godsent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -330px; + width: 228px; + height: 165px; +} + +.units_228x165.griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -495px; + width: 228px; + height: 165px; +} + +.units_228x165.harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -660px; + width: 228px; + height: 165px; +} + +.units_228x165.hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -660px; + width: 228px; + height: 165px; +} + +.units_228x165.hydra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -660px; + width: 228px; + height: 165px; +} + +.units_228x165.ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -660px; + width: 228px; + height: 165px; +} + +.units_228x165.machine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px 0; + width: 228px; + height: 165px; +} + +.units_228x165.manticore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -165px; + width: 228px; + height: 165px; +} + +.units_228x165.medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -330px; + width: 228px; + height: 165px; +} + +.units_228x165.militia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -495px; + width: 228px; + height: 165px; +} + +.units_228x165.minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -660px; + width: 228px; + height: 165px; +} + +.units_228x165.pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -825px; + width: 228px; + height: 165px; +} + +.units_228x165.satyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -825px; + width: 228px; + height: 165px; +} + +.units_228x165.siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -825px; + width: 228px; + height: 165px; +} + +.units_228x165.slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -825px; + width: 228px; + height: 165px; +} + +.units_228x165.spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -825px; + width: 228px; + height: 165px; +} + +.units_228x165.swordsman { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -1140px 0; + width: 228px; + height: 165px; +} + +.units_228x165.transportbig { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -1140px -165px; + width: 228px; + height: 165px; +} + +.units_228x165.transportsmall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -1140px -330px; + width: 228px; + height: 165px; +} + +.units_228x165.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -1140px -495px; + width: 228px; + height: 165px; +} + +.unit_icon228x165 { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.unit_icon228x165.militia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -495px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -1140px 0; + width: 228px; + height: 165px; +} + +.unit_icon228x165.slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -825px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 0; + width: 228px; + height: 165px; +} + +.unit_icon228x165.hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -660px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.rider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -165px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -330px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px 0; + width: 228px; + height: 165px; +} + +.unit_icon228x165.minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -660px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.manticore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -165px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.zyklop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -495px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -660px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -330px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -330px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -825px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -330px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px 0; + width: 228px; + height: 165px; +} + +.unit_icon228x165.griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -495px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.calydonian_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -165px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.godsent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -330px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -1140px -165px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px 0; + width: 228px; + height: 165px; +} + +.unit_icon228x165.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -495px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.demolition_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -165px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.small_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -1140px -330px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -1140px -495px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.colonize_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat 0 -495px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -660px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.satyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -228px -825px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -456px -825px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -912px -825px; + width: 228px; + height: 165px; +} + +.unit_icon228x165.ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/units/228x165/units_228x165_1400b80.png) no-repeat -684px -660px; + width: 228px; + height: 165px; +} + +.hero25x25, +.hero40x40, +.hero50x50, +.hero70x70, +.hero90x90, +.unit_icon25x25, +.unit_icon40x40, +.unit_icon50x50, +.unit_icon70x70, +.unit_icon90x90 { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.window_buttons .arrow_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +.window_buttons .arrow_down_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +.window_buttons .arrow_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +} + +.window_buttons .arrow_down_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +.window_buttons .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +.window_buttons .arrow_left_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +.window_buttons .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +.window_buttons .arrow_right_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +.window_buttons .arrow_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +.window_buttons .arrow_up_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +.window_buttons .arrow_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +.window_buttons .arrow_up_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +.window_buttons .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +.window_buttons .close_button_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +.window_buttons .maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +.window_buttons .maximize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +.window_buttons .minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +.window_buttons .minimize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +.window_buttons .wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +.window_buttons .wiki_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +.inventory .empty_inventory { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -291px; + width: 74px; + height: 73px; +} + +.inventory .extended_headline_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -74px; + width: 790px; + height: 37px; +} + +.inventory .gradiant_bottom_scroll { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -153px; + width: 791px; + height: 67px; +} + +.inventory .headline_banner_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -111px; + width: 766px; + height: 42px; +} + +.inventory .inventory_amount_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -8px; + width: 30px; + height: 30px; +} + +.inventory .inventory_lock { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -220px; + width: 72px; + height: 71px; +} + +.inventory .stone_frame_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 0; + width: 791px; + height: 8px; +} + +.inventory .stone_frame_head { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -38px; + width: 791px; + height: 36px; +} + +.headline_banner_blue .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/headline_banner_blue.png) no-repeat 0 0; + width: 111px; + height: 36px; +} + +.headline_banner_blue .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/headline_banner_blue.png) no-repeat 0 -36px; + width: 111px; + height: 36px; +} + +.headline_banner_blue .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/headline_banner_blue.png) no-repeat 0 -72px; + width: 111px; + height: 36px; +} + +.interstitials_special_offer .badge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -892px -289px; + width: 36px; + height: 36px; +} + +.interstitials_special_offer .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -125px; + width: 109px; + height: 41px; +} + +.interstitials_special_offer .banner_left_green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -166px; + width: 109px; + height: 41px; +} + +.interstitials_special_offer .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 -760px; + width: 193px; + height: 41px; +} + +.interstitials_special_offer .banner_middle_green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -193px -760px; + width: 193px; + height: 41px; +} + +.interstitials_special_offer .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -207px; + width: 109px; + height: 41px; +} + +.interstitials_special_offer .banner_right_green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -248px; + width: 109px; + height: 41px; +} + +.interstitials_special_offer .box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 -244px; + width: 574px; + height: 139px; +} + +.interstitials_special_offer .box_green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 -383px; + width: 574px; + height: 139px; +} + +.interstitials_special_offer .chest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 -621px; + width: 129px; + height: 139px; +} + +.interstitials_special_offer .chest_black_friday { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px 0; + width: 125px; + height: 125px; +} + +.interstitials_special_offer .countdown_box_l { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -932px -330px; + width: 20px; + height: 41px; +} + +.interstitials_special_offer .countdown_box_m { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -289px; + width: 60px; + height: 41px; +} + +.interstitials_special_offer .countdown_box_r { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -378px; + width: 20px; + height: 41px; +} + +.interstitials_special_offer .deco_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 0; + width: 678px; + height: 122px; +} + +.interstitials_special_offer .deco_top_green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 -122px; + width: 678px; + height: 122px; +} + +.interstitials_special_offer .icon_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -330px; + width: 50px; + height: 48px; +} + +.interstitials_special_offer .icon_sale { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -882px -330px; + width: 50px; + height: 48px; +} + +.interstitials_special_offer .illustration_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 -522px; + width: 543px; + height: 99px; +} + +.interstitials_special_offer .package_offer_event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -678px -154px; + width: 154px; + height: 154px; +} + +.interstitials_special_offer .package_offer_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -678px -308px; + width: 154px; + height: 154px; +} + +.interstitials_special_offer .package_offer_event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -678px -462px; + width: 154px; + height: 154px; +} + +.interstitials_special_offer .special_offers_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -678px 0; + width: 154px; + height: 154px; +} + +.interstitials_special_offer .special_offers_gold_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -129px -621px; + width: 154px; + height: 106px; +} + +.interstitials_special_offer .special_offers_gold_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -283px -621px; + width: 154px; + height: 106px; +} + +.interstitials_special_offer .special_offers_packages_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -437px -621px; + width: 154px; + height: 96px; +} + +.interstitials_special_offer .special_offers_packages_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -591px -621px; + width: 153px; + height: 94px; +} + +.interstitials_special_offer .speechbubble_arrow_l { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -928px -289px; + width: 26px; + height: 26px; +} + +.buildings_single_images .academy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/academy_677645d.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .barracks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/barracks_97ee9a2.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .docks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/docks_ffe8717.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .farm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/farm_14de42b.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .hide { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/hide_94cfd20.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .ironer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/ironer_76b7882.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .lumber { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/lumber_65773bc.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .main { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/main_d300616.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .market { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/market_e34fa9b.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .place { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/place_9cb8ec3.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .stoner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/stoner_1d8fe2f.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .storage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/storage_8f07d95.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/temple_ea3cf9c.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.buildings_single_images .wall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/wall_46aa725.jpg) no-repeat 0 0; + width: 500px; + height: 400px; +} + +.power_icon12x12 { + width: 12px; + height: 12px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon12x12.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat 0 -12px; +} + +.power_icon12x12.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat 0 -24px; +} + +.power_icon12x12.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat 0 0; +} + +.power_icon12x12.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -12px -12px; +} + +.power_icon12x12.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -12px -24px; +} + +.power_icon12x12.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -12px 0; +} + +.power_icon12x12.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -24px -12px; +} + +.power_icon12x12.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -24px -24px; +} + +.power_icon12x12.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -24px 0; +} + +.power_icon12x12.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -36px -12px; +} + +.power_icon12x12.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -36px -24px; +} + +.power_icon12x12.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -36px 0; +} + +.power_icon12x12.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -48px -12px; +} + +.power_icon12x12.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -48px -24px; +} + +.power_icon12x12.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -48px 0; +} + +.power_icon12x12.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -60px -12px; +} + +.power_icon12x12.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -60px -24px; +} + +.power_icon12x12.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -60px 0; +} + +.power_icon12x12.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -72px -12px; +} + +.power_icon12x12.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -72px -24px; +} + +.power_icon12x12.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -72px 0; +} + +.power_icon12x12.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -84px -12px; +} + +.power_icon12x12.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -84px -24px; +} + +.power_icon12x12.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -84px 0; +} + +.power_icon12x12.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -96px -12px; +} + +.power_icon12x12.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -96px -24px; +} + +.power_icon12x12.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -96px 0; +} + +.power_icon12x12.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -108px -12px; +} + +.power_icon12x12.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -108px -24px; +} + +.power_icon12x12.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -108px 0; +} + +.power_icon12x12.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -120px -12px; +} + +.power_icon12x12.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -120px -24px; +} + +.power_icon12x12.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -120px 0; +} + +.power_icon12x12.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -132px -12px; +} + +.power_icon12x12.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -132px -24px; +} + +.power_icon12x12.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -132px 0; +} + +.power_icon12x12.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -144px -12px; +} + +.power_icon12x12.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -144px -24px; +} + +.power_icon12x12.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -144px 0; +} + +.power_icon12x12.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -156px -12px; +} + +.power_icon12x12.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -156px -24px; +} + +.power_icon12x12.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -156px 0; +} + +.power_icon12x12.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -168px -12px; +} + +.power_icon12x12.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -168px -24px; +} + +.power_icon12x12.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -168px 0; +} + +.power_icon12x12.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -180px -12px; +} + +.power_icon12x12.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -180px -24px; +} + +.power_icon12x12.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -180px 0; +} + +.power_icon12x12.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -192px -12px; +} + +.power_icon12x12.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -192px -24px; +} + +.power_icon12x12.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -192px 0; +} + +.power_icon12x12.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -204px -12px; +} + +.power_icon12x12.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -204px -24px; +} + +.power_icon12x12.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -204px 0; +} + +.power_icon12x12.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -216px -12px; +} + +.power_icon12x12.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -216px -24px; +} + +.power_icon12x12.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -216px 0; +} + +.power_icon12x12.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -228px -12px; +} + +.power_icon12x12.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -228px -24px; +} + +.power_icon12x12.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -228px 0; +} + +.power_icon12x12.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -240px -12px; +} + +.power_icon12x12.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -240px -24px; +} + +.power_icon12x12.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -240px 0; +} + +.power_icon12x12.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -252px -12px; +} + +.power_icon12x12.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -252px -24px; +} + +.power_icon12x12.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -252px 0; +} + +.power_icon12x12.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -264px -12px; +} + +.power_icon12x12.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -264px -24px; +} + +.power_icon12x12.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -264px 0; +} + +.power_icon12x12.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -276px -12px; +} + +.power_icon12x12.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -276px -24px; +} + +.power_icon12x12.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -276px 0; +} + +.power_icon12x12.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -288px -12px; +} + +.power_icon12x12.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -288px -24px; +} + +.power_icon12x12.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -288px 0; +} + +.power_icon12x12.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -300px -12px; +} + +.power_icon12x12.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -300px -24px; +} + +.power_icon12x12.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -300px 0; +} + +.power_icon12x12.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -312px -12px; +} + +.power_icon12x12.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -312px -24px; +} + +.power_icon12x12.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -312px 0; +} + +.power_icon12x12.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -324px -12px; +} + +.power_icon12x12.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -324px -24px; +} + +.power_icon12x12.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -324px 0; +} + +.power_icon12x12.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -336px -12px; +} + +.power_icon12x12.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -336px -24px; +} + +.power_icon12x12.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -336px 0; +} + +.power_icon12x12.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -348px -12px; +} + +.power_icon12x12.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -348px -24px; +} + +.power_icon12x12.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -348px 0; +} + +.power_icon12x12.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -360px -12px; +} + +.power_icon12x12.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -360px -24px; +} + +.power_icon12x12.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -360px 0; +} + +.power_icon12x12.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -372px -12px; +} + +.power_icon12x12.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -372px -24px; +} + +.power_icon12x12.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -372px 0; +} + +.power_icon12x12.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -384px -12px; +} + +.power_icon12x12.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -384px -24px; +} + +.power_icon12x12.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -384px 0; +} + +.power_icon12x12.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -396px -12px; +} + +.power_icon12x12.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -396px -24px; +} + +.power_icon12x12.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -396px 0; +} + +.power_icon12x12.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -408px -12px; +} + +.power_icon12x12.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -408px -24px; +} + +.power_icon12x12.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -408px 0; +} + +.power_icon12x12.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -420px -12px; +} + +.power_icon12x12.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -420px -24px; +} + +.power_icon12x12.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -420px 0; +} + +.power_icon12x12.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -432px -12px; +} + +.power_icon12x12.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -432px -24px; +} + +.power_icon12x12.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -432px 0; +} + +.power_icon12x12.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -444px -12px; +} + +.power_icon12x12.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -444px -24px; +} + +.power_icon12x12.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -444px 0; +} + +.power_icon12x12.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -456px -12px; +} + +.power_icon12x12.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -456px -24px; +} + +.power_icon12x12.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -456px 0; +} + +.power_icon12x12.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -468px -12px; +} + +.power_icon12x12.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -468px -24px; +} + +.power_icon12x12.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -468px 0; +} + +.power_icon12x12.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -480px -12px; +} + +.power_icon12x12.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -480px -24px; +} + +.power_icon12x12.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -480px 0; +} + +.power_icon12x12.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -492px -12px; +} + +.power_icon12x12.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -492px -24px; +} + +.power_icon12x12.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -492px 0; +} + +.power_icon12x12.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -504px -12px; +} + +.power_icon12x12.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -504px -24px; +} + +.power_icon12x12.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -504px 0; +} + +.power_icon12x12.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -516px -12px; +} + +.power_icon12x12.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -516px -24px; +} + +.power_icon12x12.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -516px 0; +} + +.power_icon12x12.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -528px -12px; +} + +.power_icon12x12.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -528px -24px; +} + +.power_icon12x12.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -528px 0; +} + +.power_icon12x12.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -540px -12px; +} + +.power_icon12x12.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -540px -24px; +} + +.power_icon12x12.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -540px 0; +} + +.power_icon12x12.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -552px -12px; +} + +.power_icon12x12.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -552px -24px; +} + +.power_icon12x12.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -552px 0; +} + +.power_icon12x12.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -564px -12px; +} + +.power_icon12x12.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -564px -24px; +} + +.power_icon12x12.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -564px 0; +} + +.power_icon12x12.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -576px -12px; +} + +.power_icon12x12.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -576px -24px; +} + +.power_icon12x12.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -576px 0; +} + +.power_icon12x12.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -588px -12px; +} + +.power_icon12x12.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -588px -24px; +} + +.power_icon12x12.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -588px 0; +} + +.power_icon12x12.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -600px -12px; +} + +.power_icon12x12.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -600px -24px; +} + +.power_icon12x12.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -600px 0; +} + +.power_icon12x12.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -612px -12px; +} + +.power_icon12x12.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -612px -24px; +} + +.power_icon12x12.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -612px 0; +} + +.power_icon12x12.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -624px -12px; +} + +.power_icon12x12.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -624px -24px; +} + +.power_icon12x12.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -624px 0; +} + +.power_icon12x12.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -636px -12px; +} + +.power_icon12x12.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -636px -24px; +} + +.power_icon12x12.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -636px 0; +} + +.power_icon12x12.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -648px -12px; +} + +.power_icon12x12.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -648px -24px; +} + +.power_icon12x12.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -648px 0; +} + +.power_icon12x12.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -660px -12px; +} + +.power_icon12x12.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -660px -24px; +} + +.power_icon12x12.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -660px 0; +} + +.power_icon12x12.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -672px -12px; +} + +.power_icon12x12.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -672px -24px; +} + +.power_icon12x12.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -672px 0; +} + +.power_icon12x12.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -684px -12px; +} + +.power_icon12x12.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -684px -24px; +} + +.power_icon12x12.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -684px 0; +} + +.power_icon12x12.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -696px -12px; +} + +.power_icon12x12.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -696px -24px; +} + +.power_icon12x12.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -696px 0; +} + +.power_icon12x12.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -708px -12px; +} + +.power_icon12x12.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -708px -24px; +} + +.power_icon12x12.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -708px 0; +} + +.power_icon12x12.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -720px -12px; +} + +.power_icon12x12.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -720px -24px; +} + +.power_icon12x12.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -720px 0; +} + +.power_icon12x12.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -732px -12px; +} + +.power_icon12x12.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -732px -24px; +} + +.power_icon12x12.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -732px 0; +} + +.power_icon12x12.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -744px -12px; +} + +.power_icon12x12.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -744px -24px; +} + +.power_icon12x12.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -744px 0; +} + +.power_icon12x12.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -756px -12px; +} + +.power_icon12x12.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -756px -24px; +} + +.power_icon12x12.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -756px 0; +} + +.power_icon12x12.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -768px -12px; +} + +.power_icon12x12.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -768px -24px; +} + +.power_icon12x12.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -768px 0; +} + +.power_icon12x12.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -780px -12px; +} + +.power_icon12x12.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -780px -24px; +} + +.power_icon12x12.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -780px 0; +} + +.power_icon12x12.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -792px -12px; +} + +.power_icon12x12.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -792px -24px; +} + +.power_icon12x12.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -792px 0; +} + +.power_icon12x12.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -804px -12px; +} + +.power_icon12x12.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -804px -24px; +} + +.power_icon12x12.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -804px 0; +} + +.power_icon12x12.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -816px -12px; +} + +.power_icon12x12.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -816px -24px; +} + +.power_icon12x12.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -816px 0; +} + +.power_icon12x12.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -828px -12px; +} + +.power_icon12x12.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -828px -24px; +} + +.power_icon12x12.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -828px 0; +} + +.power_icon12x12.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -840px -12px; +} + +.power_icon12x12.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -840px -24px; +} + +.power_icon12x12.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -840px 0; +} + +.power_icon12x12.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -852px -12px; +} + +.power_icon12x12.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -852px -24px; +} + +.power_icon12x12.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -852px 0; +} + +.power_icon12x12.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -864px -12px; +} + +.power_icon12x12.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -864px -24px; +} + +.power_icon12x12.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -864px 0; +} + +.power_icon12x12.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -876px -12px; +} + +.power_icon12x12.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -876px -24px; +} + +.power_icon12x12.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -876px 0; +} + +.power_icon12x12.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -888px -12px; +} + +.power_icon12x12.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -888px -24px; +} + +.power_icon12x12.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -888px 0; +} + +.power_icon12x12.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -900px -12px; +} + +.power_icon12x12.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -900px -24px; +} + +.power_icon12x12.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -900px 0; +} + +.power_icon12x12.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -912px -12px; +} + +.power_icon12x12.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -912px -24px; +} + +.power_icon12x12.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -912px 0; +} + +.power_icon12x12.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -924px -12px; +} + +.power_icon12x12.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -924px -24px; +} + +.power_icon12x12.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -924px 0; +} + +.power_icon12x12.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -936px -12px; +} + +.power_icon12x12.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -936px -24px; +} + +.power_icon12x12.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -936px 0; +} + +.power_icon12x12.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -948px -12px; +} + +.power_icon12x12.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -948px -24px; +} + +.power_icon12x12.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -948px 0; +} + +.power_icon12x12.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -960px -12px; +} + +.power_icon12x12.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -960px -24px; +} + +.power_icon12x12.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -960px 0; +} + +.power_icon12x12.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -972px -12px; +} + +.power_icon12x12.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -972px -24px; +} + +.power_icon12x12.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -972px 0; +} + +.power_icon12x12.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -984px -12px; +} + +.power_icon12x12.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -984px -24px; +} + +.power_icon12x12.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -984px 0; +} + +.power_icon12x12.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -996px -12px; +} + +.power_icon12x12.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -996px -24px; +} + +.power_icon12x12.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -996px 0; +} + +.power_icon12x12.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1008px -12px; +} + +.power_icon12x12.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1008px -24px; +} + +.power_icon12x12.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1008px 0; +} + +.power_icon12x12.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1020px -12px; +} + +.power_icon12x12.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1020px -24px; +} + +.power_icon12x12.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1020px 0; +} + +.power_icon12x12.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1032px -12px; +} + +.power_icon12x12.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1032px -24px; +} + +.power_icon12x12.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1032px 0; +} + +.power_icon12x12.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1044px -12px; +} + +.power_icon12x12.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1044px -24px; +} + +.power_icon12x12.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1044px 0; +} + +.power_icon12x12.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1056px -12px; +} + +.power_icon12x12.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1056px -24px; +} + +.power_icon12x12.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1056px 0; +} + +.power_icon12x12.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1068px -12px; +} + +.power_icon12x12.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1068px -24px; +} + +.power_icon12x12.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1068px 0; +} + +.power_icon12x12.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1080px -12px; +} + +.power_icon12x12.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1080px -24px; +} + +.power_icon12x12.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1080px 0; +} + +.power_icon12x12.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1092px -12px; +} + +.power_icon12x12.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1092px -24px; +} + +.power_icon12x12.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1092px 0; +} + +.power_icon12x12.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1104px -12px; +} + +.power_icon12x12.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1104px -24px; +} + +.power_icon12x12.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1104px 0; +} + +.power_icon12x12.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1116px -12px; +} + +.power_icon12x12.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1116px -24px; +} + +.power_icon12x12.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1116px 0; +} + +.power_icon12x12.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1128px -12px; +} + +.power_icon12x12.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1128px -24px; +} + +.power_icon12x12.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1128px 0; +} + +.power_icon12x12.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1140px -12px; +} + +.power_icon12x12.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1140px -24px; +} + +.power_icon12x12.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1140px 0; +} + +.power_icon12x12.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1152px -12px; +} + +.power_icon12x12.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1152px -24px; +} + +.power_icon12x12.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1152px 0; +} + +.power_icon12x12.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1164px -12px; +} + +.power_icon12x12.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1164px -24px; +} + +.power_icon12x12.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1164px 0; +} + +.power_icon12x12.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1176px -12px; +} + +.power_icon12x12.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1176px -24px; +} + +.power_icon12x12.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1176px 0; +} + +.power_icon12x12.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1188px -12px; +} + +.power_icon12x12.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1188px -24px; +} + +.power_icon12x12.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1188px 0; +} + +.power_icon12x12.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1200px -12px; +} + +.power_icon12x12.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1200px -24px; +} + +.power_icon12x12.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1200px 0; +} + +.power_icon12x12.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1212px -12px; +} + +.power_icon12x12.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1212px -24px; +} + +.power_icon12x12.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1212px 0; +} + +.power_icon12x12.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1224px -12px; +} + +.power_icon12x12.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1224px -24px; +} + +.power_icon12x12.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1224px 0; +} + +.power_icon12x12.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1236px -12px; +} + +.power_icon12x12.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1236px -24px; +} + +.power_icon12x12.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1236px 0; +} + +.power_icon12x12.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1248px -12px; +} + +.power_icon12x12.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1248px -24px; +} + +.power_icon12x12.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1248px 0; +} + +.power_icon12x12.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1260px -12px; +} + +.power_icon12x12.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1260px -24px; +} + +.power_icon12x12.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1260px 0; +} + +.power_icon12x12.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1272px -12px; +} + +.power_icon12x12.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1272px -24px; +} + +.power_icon12x12.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1272px 0; +} + +.power_icon12x12.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1284px -12px; +} + +.power_icon12x12.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1284px -24px; +} + +.power_icon12x12.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1284px 0; +} + +.power_icon12x12.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1296px -12px; +} + +.power_icon12x12.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1296px -24px; +} + +.power_icon12x12.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1296px 0; +} + +.power_icon12x12.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1308px -12px; +} + +.power_icon12x12.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1308px -24px; +} + +.power_icon12x12.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1308px 0; +} + +.power_icon12x12.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1320px -12px; +} + +.power_icon12x12.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1320px -24px; +} + +.power_icon12x12.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1320px 0; +} + +.power_icon12x12.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1332px -12px; +} + +.power_icon12x12.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1332px -24px; +} + +.power_icon12x12.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1332px 0; +} + +.power_icon12x12.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1344px -12px; +} + +.power_icon12x12.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1344px -24px; +} + +.power_icon12x12.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1344px 0; +} + +.power_icon12x12.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1356px -12px; +} + +.power_icon12x12.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1356px -24px; +} + +.power_icon12x12.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1356px 0; +} + +.power_icon12x12.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1368px -12px; +} + +.power_icon12x12.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1368px -24px; +} + +.power_icon12x12.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1368px 0; +} + +.power_icon12x12.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1380px -12px; +} + +.power_icon12x12.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1380px -24px; +} + +.power_icon12x12.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1380px 0; +} + +.power_icon12x12.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1392px -12px; +} + +.power_icon12x12.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1392px -24px; +} + +.power_icon12x12.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1392px 0; +} + +.power_icon12x12.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1404px -12px; +} + +.power_icon12x12.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1404px -24px; +} + +.power_icon12x12.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1404px 0; +} + +.power_icon12x12.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1416px -12px; +} + +.power_icon12x12.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1416px -24px; +} + +.power_icon12x12.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1416px 0; +} + +.power_icon12x12.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1428px -12px; +} + +.power_icon12x12.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1428px -24px; +} + +.power_icon12x12.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1428px 0; +} + +.power_icon12x12.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1440px -12px; +} + +.power_icon12x12.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1440px -24px; +} + +.power_icon12x12.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1440px 0; +} + +.power_icon12x12.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1452px -12px; +} + +.power_icon12x12.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1452px -24px; +} + +.power_icon12x12.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1452px 0; +} + +.power_icon12x12.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1464px -12px; +} + +.power_icon12x12.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1464px -24px; +} + +.power_icon12x12.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1464px 0; +} + +.power_icon12x12.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1476px -12px; +} + +.power_icon12x12.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1476px -24px; +} + +.power_icon12x12.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1476px 0; +} + +.power_icon12x12.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1488px -12px; +} + +.power_icon12x12.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1488px -24px; +} + +.power_icon12x12.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1488px 0; +} + +.power_icon12x12.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1500px -12px; +} + +.power_icon12x12.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1500px -24px; +} + +.power_icon12x12.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1500px 0; +} + +.power_icon12x12.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1512px -12px; +} + +.power_icon12x12.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1512px -24px; +} + +.power_icon12x12.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1512px 0; +} + +.power_icon12x12.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1524px -12px; +} + +.power_icon12x12.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1524px -24px; +} + +.power_icon12x12.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1524px 0; +} + +.power_icon12x12.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1536px -12px; +} + +.power_icon12x12.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1536px -24px; +} + +.power_icon12x12.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1536px 0; +} + +.power_icon12x12.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1548px -12px; +} + +.power_icon12x12.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1548px -24px; +} + +.power_icon12x12.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1548px 0; +} + +.power_icon12x12.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1560px -12px; +} + +.power_icon12x12.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1560px -24px; +} + +.power_icon12x12.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1560px 0; +} + +.power_icon12x12.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1572px -12px; +} + +.power_icon12x12.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1572px -24px; +} + +.power_icon12x12.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1572px 0; +} + +.power_icon12x12.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1584px -12px; +} + +.power_icon12x12.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1584px -24px; +} + +.power_icon12x12.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1584px 0; +} + +.power_icon12x12.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1596px -12px; +} + +.power_icon12x12.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1596px -24px; +} + +.power_icon12x12.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1596px 0; +} + +.power_icon12x12.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1608px -12px; +} + +.power_icon12x12.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1608px -24px; +} + +.power_icon12x12.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1608px 0; +} + +.power_icon12x12.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1620px -12px; +} + +.power_icon12x12.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1620px -24px; +} + +.power_icon12x12.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1620px 0; +} + +.power_icon12x12.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1632px -12px; +} + +.power_icon12x12.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1632px -24px; +} + +.power_icon12x12.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1632px 0; +} + +.power_icon12x12.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1644px -12px; +} + +.power_icon12x12.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1644px -24px; +} + +.power_icon12x12.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1644px 0; +} + +.power_icon12x12.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1656px -12px; +} + +.power_icon12x12.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1656px -24px; +} + +.power_icon12x12.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1656px 0; +} + +.power_icon12x12.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1668px -12px; +} + +.power_icon12x12.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1668px -24px; +} + +.power_icon12x12.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1668px 0; +} + +.power_icon12x12.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1680px -12px; +} + +.power_icon12x12.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1680px -24px; +} + +.power_icon12x12.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1680px 0; +} + +.power_icon12x12.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1692px -12px; +} + +.power_icon12x12.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1692px -24px; +} + +.power_icon12x12.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1692px 0; +} + +.power_icon12x12.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1704px -12px; +} + +.power_icon12x12.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1704px -24px; +} + +.power_icon12x12.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1704px 0; +} + +.power_icon12x12.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1716px -12px; +} + +.power_icon12x12.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1716px -24px; +} + +.power_icon12x12.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1716px 0; +} + +.power_icon12x12.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1728px -12px; +} + +.power_icon12x12.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1728px -24px; +} + +.power_icon12x12.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1728px 0; +} + +.power_icon12x12.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1740px -12px; +} + +.power_icon12x12.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1740px -24px; +} + +.power_icon12x12.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1740px 0; +} + +.power_icon12x12.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1752px -12px; +} + +.power_icon12x12.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1752px -24px; +} + +.power_icon12x12.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1752px 0; +} + +.power_icon12x12.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1764px -12px; +} + +.power_icon12x12.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1764px -24px; +} + +.power_icon12x12.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1764px 0; +} + +.power_icon12x12.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1776px -12px; +} + +.power_icon12x12.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1776px -24px; +} + +.power_icon12x12.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1776px 0; +} + +.power_icon12x12.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1788px -12px; +} + +.power_icon12x12.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1788px -24px; +} + +.power_icon12x12.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1788px 0; +} + +.power_icon12x12.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1800px -12px; +} + +.power_icon12x12.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1800px -24px; +} + +.power_icon12x12.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1800px 0; +} + +.power_icon12x12.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1812px -12px; +} + +.power_icon12x12.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1812px -24px; +} + +.power_icon12x12.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1812px 0; +} + +.power_icon12x12.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1824px -12px; +} + +.power_icon12x12.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1824px -24px; +} + +.power_icon12x12.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1824px 0; +} + +.power_icon12x12.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1836px -12px; +} + +.power_icon12x12.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1836px -24px; +} + +.power_icon12x12.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1836px 0; +} + +.power_icon12x12.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1848px -12px; +} + +.power_icon12x12.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1848px -24px; +} + +.power_icon12x12.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_7158f4c.png) no-repeat -1848px 0; +} + +.power_icon16x16 { + width: 16px; + height: 16px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon16x16.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat 0 -16px; +} + +.power_icon16x16.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat 0 -32px; +} + +.power_icon16x16.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat 0 0; +} + +.power_icon16x16.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -16px -16px; +} + +.power_icon16x16.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -16px -32px; +} + +.power_icon16x16.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -16px 0; +} + +.power_icon16x16.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -32px -16px; +} + +.power_icon16x16.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -32px -32px; +} + +.power_icon16x16.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -32px 0; +} + +.power_icon16x16.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -48px -16px; +} + +.power_icon16x16.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -48px -32px; +} + +.power_icon16x16.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -48px 0; +} + +.power_icon16x16.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -64px -16px; +} + +.power_icon16x16.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -64px -32px; +} + +.power_icon16x16.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -64px 0; +} + +.power_icon16x16.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -80px -16px; +} + +.power_icon16x16.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -80px -32px; +} + +.power_icon16x16.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -80px 0; +} + +.power_icon16x16.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -96px -16px; +} + +.power_icon16x16.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -96px -32px; +} + +.power_icon16x16.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -96px 0; +} + +.power_icon16x16.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -112px -16px; +} + +.power_icon16x16.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -112px -32px; +} + +.power_icon16x16.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -112px 0; +} + +.power_icon16x16.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -128px -16px; +} + +.power_icon16x16.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -128px -32px; +} + +.power_icon16x16.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -128px 0; +} + +.power_icon16x16.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -144px -16px; +} + +.power_icon16x16.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -144px -32px; +} + +.power_icon16x16.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -144px 0; +} + +.power_icon16x16.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -160px -16px; +} + +.power_icon16x16.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -160px -32px; +} + +.power_icon16x16.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -160px 0; +} + +.power_icon16x16.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -176px -16px; +} + +.power_icon16x16.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -176px -32px; +} + +.power_icon16x16.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -176px 0; +} + +.power_icon16x16.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -192px -16px; +} + +.power_icon16x16.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -192px -32px; +} + +.power_icon16x16.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -192px 0; +} + +.power_icon16x16.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -208px -16px; +} + +.power_icon16x16.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -208px -32px; +} + +.power_icon16x16.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -208px 0; +} + +.power_icon16x16.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -224px -16px; +} + +.power_icon16x16.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -224px -32px; +} + +.power_icon16x16.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -224px 0; +} + +.power_icon16x16.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -240px -16px; +} + +.power_icon16x16.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -240px -32px; +} + +.power_icon16x16.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -240px 0; +} + +.power_icon16x16.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -256px -16px; +} + +.power_icon16x16.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -256px -32px; +} + +.power_icon16x16.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -256px 0; +} + +.power_icon16x16.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -272px -16px; +} + +.power_icon16x16.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -272px -32px; +} + +.power_icon16x16.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -272px 0; +} + +.power_icon16x16.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -288px -16px; +} + +.power_icon16x16.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -288px -32px; +} + +.power_icon16x16.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -288px 0; +} + +.power_icon16x16.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -304px -16px; +} + +.power_icon16x16.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -304px -32px; +} + +.power_icon16x16.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -304px 0; +} + +.power_icon16x16.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -320px -16px; +} + +.power_icon16x16.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -320px -32px; +} + +.power_icon16x16.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -320px 0; +} + +.power_icon16x16.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -336px -16px; +} + +.power_icon16x16.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -336px -32px; +} + +.power_icon16x16.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -336px 0; +} + +.power_icon16x16.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -352px -16px; +} + +.power_icon16x16.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -352px -32px; +} + +.power_icon16x16.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -352px 0; +} + +.power_icon16x16.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -368px -16px; +} + +.power_icon16x16.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -368px -32px; +} + +.power_icon16x16.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -368px 0; +} + +.power_icon16x16.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -384px -16px; +} + +.power_icon16x16.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -384px -32px; +} + +.power_icon16x16.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -384px 0; +} + +.power_icon16x16.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -400px -16px; +} + +.power_icon16x16.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -400px -32px; +} + +.power_icon16x16.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -400px 0; +} + +.power_icon16x16.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -416px -16px; +} + +.power_icon16x16.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -416px -32px; +} + +.power_icon16x16.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -416px 0; +} + +.power_icon16x16.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -432px -16px; +} + +.power_icon16x16.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -432px -32px; +} + +.power_icon16x16.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -432px 0; +} + +.power_icon16x16.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -448px -16px; +} + +.power_icon16x16.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -448px -32px; +} + +.power_icon16x16.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -448px 0; +} + +.power_icon16x16.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -464px -16px; +} + +.power_icon16x16.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -464px -32px; +} + +.power_icon16x16.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -464px 0; +} + +.power_icon16x16.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -480px -16px; +} + +.power_icon16x16.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -480px -32px; +} + +.power_icon16x16.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -480px 0; +} + +.power_icon16x16.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -496px -16px; +} + +.power_icon16x16.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -496px -32px; +} + +.power_icon16x16.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -496px 0; +} + +.power_icon16x16.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -512px -16px; +} + +.power_icon16x16.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -512px -32px; +} + +.power_icon16x16.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -512px 0; +} + +.power_icon16x16.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -528px -16px; +} + +.power_icon16x16.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -528px -32px; +} + +.power_icon16x16.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -528px 0; +} + +.power_icon16x16.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -544px -16px; +} + +.power_icon16x16.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -544px -32px; +} + +.power_icon16x16.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -544px 0; +} + +.power_icon16x16.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -560px -16px; +} + +.power_icon16x16.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -560px -32px; +} + +.power_icon16x16.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -560px 0; +} + +.power_icon16x16.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -576px -16px; +} + +.power_icon16x16.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -576px -32px; +} + +.power_icon16x16.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -576px 0; +} + +.power_icon16x16.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -592px -16px; +} + +.power_icon16x16.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -592px -32px; +} + +.power_icon16x16.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -592px 0; +} + +.power_icon16x16.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -608px -16px; +} + +.power_icon16x16.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -608px -32px; +} + +.power_icon16x16.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -608px 0; +} + +.power_icon16x16.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -624px -16px; +} + +.power_icon16x16.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -624px -32px; +} + +.power_icon16x16.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -624px 0; +} + +.power_icon16x16.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -640px -16px; +} + +.power_icon16x16.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -640px -32px; +} + +.power_icon16x16.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -640px 0; +} + +.power_icon16x16.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -656px -16px; +} + +.power_icon16x16.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -656px -32px; +} + +.power_icon16x16.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -656px 0; +} + +.power_icon16x16.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -672px -16px; +} + +.power_icon16x16.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -672px -32px; +} + +.power_icon16x16.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -672px 0; +} + +.power_icon16x16.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -688px -16px; +} + +.power_icon16x16.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -688px -32px; +} + +.power_icon16x16.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -688px 0; +} + +.power_icon16x16.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -704px -16px; +} + +.power_icon16x16.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -704px -32px; +} + +.power_icon16x16.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -704px 0; +} + +.power_icon16x16.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -720px -16px; +} + +.power_icon16x16.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -720px -32px; +} + +.power_icon16x16.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -720px 0; +} + +.power_icon16x16.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -736px -16px; +} + +.power_icon16x16.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -736px -32px; +} + +.power_icon16x16.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -736px 0; +} + +.power_icon16x16.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -752px -16px; +} + +.power_icon16x16.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -752px -32px; +} + +.power_icon16x16.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -752px 0; +} + +.power_icon16x16.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -768px -16px; +} + +.power_icon16x16.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -768px -32px; +} + +.power_icon16x16.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -768px 0; +} + +.power_icon16x16.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -784px -16px; +} + +.power_icon16x16.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -784px -32px; +} + +.power_icon16x16.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -784px 0; +} + +.power_icon16x16.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -800px -16px; +} + +.power_icon16x16.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -800px -32px; +} + +.power_icon16x16.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -800px 0; +} + +.power_icon16x16.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -816px -16px; +} + +.power_icon16x16.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -816px -32px; +} + +.power_icon16x16.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -816px 0; +} + +.power_icon16x16.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -832px -16px; +} + +.power_icon16x16.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -832px -32px; +} + +.power_icon16x16.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -832px 0; +} + +.power_icon16x16.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -848px -16px; +} + +.power_icon16x16.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -848px -32px; +} + +.power_icon16x16.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -848px 0; +} + +.power_icon16x16.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -864px -16px; +} + +.power_icon16x16.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -864px -32px; +} + +.power_icon16x16.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -864px 0; +} + +.power_icon16x16.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -880px -16px; +} + +.power_icon16x16.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -880px -32px; +} + +.power_icon16x16.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -880px 0; +} + +.power_icon16x16.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -896px -16px; +} + +.power_icon16x16.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -896px -32px; +} + +.power_icon16x16.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -896px 0; +} + +.power_icon16x16.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -912px -16px; +} + +.power_icon16x16.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -912px -32px; +} + +.power_icon16x16.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -912px 0; +} + +.power_icon16x16.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -928px -16px; +} + +.power_icon16x16.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -928px -32px; +} + +.power_icon16x16.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -928px 0; +} + +.power_icon16x16.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -944px -16px; +} + +.power_icon16x16.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -944px -32px; +} + +.power_icon16x16.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -944px 0; +} + +.power_icon16x16.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -960px -16px; +} + +.power_icon16x16.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -960px -32px; +} + +.power_icon16x16.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -960px 0; +} + +.power_icon16x16.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -976px -16px; +} + +.power_icon16x16.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -976px -32px; +} + +.power_icon16x16.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -976px 0; +} + +.power_icon16x16.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -992px -16px; +} + +.power_icon16x16.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -992px -32px; +} + +.power_icon16x16.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -992px 0; +} + +.power_icon16x16.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1008px -16px; +} + +.power_icon16x16.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1008px -32px; +} + +.power_icon16x16.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1008px 0; +} + +.power_icon16x16.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1024px -16px; +} + +.power_icon16x16.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1024px -32px; +} + +.power_icon16x16.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1024px 0; +} + +.power_icon16x16.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1040px -16px; +} + +.power_icon16x16.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1040px -32px; +} + +.power_icon16x16.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1040px 0; +} + +.power_icon16x16.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1056px -16px; +} + +.power_icon16x16.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1056px -32px; +} + +.power_icon16x16.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1056px 0; +} + +.power_icon16x16.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1072px -16px; +} + +.power_icon16x16.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1072px -32px; +} + +.power_icon16x16.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1072px 0; +} + +.power_icon16x16.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1088px -16px; +} + +.power_icon16x16.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1088px -32px; +} + +.power_icon16x16.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1088px 0; +} + +.power_icon16x16.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1104px -16px; +} + +.power_icon16x16.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1104px -32px; +} + +.power_icon16x16.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1104px 0; +} + +.power_icon16x16.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1120px -16px; +} + +.power_icon16x16.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1120px -32px; +} + +.power_icon16x16.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1120px 0; +} + +.power_icon16x16.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1136px -16px; +} + +.power_icon16x16.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1136px -32px; +} + +.power_icon16x16.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1136px 0; +} + +.power_icon16x16.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1152px -16px; +} + +.power_icon16x16.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1152px -32px; +} + +.power_icon16x16.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1152px 0; +} + +.power_icon16x16.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1168px -16px; +} + +.power_icon16x16.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1168px -32px; +} + +.power_icon16x16.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1168px 0; +} + +.power_icon16x16.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1184px -16px; +} + +.power_icon16x16.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1184px -32px; +} + +.power_icon16x16.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1184px 0; +} + +.power_icon16x16.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1200px -16px; +} + +.power_icon16x16.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1200px -32px; +} + +.power_icon16x16.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1200px 0; +} + +.power_icon16x16.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1216px -16px; +} + +.power_icon16x16.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1216px -32px; +} + +.power_icon16x16.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1216px 0; +} + +.power_icon16x16.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1232px -16px; +} + +.power_icon16x16.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1232px -32px; +} + +.power_icon16x16.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1232px 0; +} + +.power_icon16x16.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1248px -16px; +} + +.power_icon16x16.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1248px -32px; +} + +.power_icon16x16.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1248px 0; +} + +.power_icon16x16.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1264px -16px; +} + +.power_icon16x16.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1264px -32px; +} + +.power_icon16x16.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1264px 0; +} + +.power_icon16x16.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1280px -16px; +} + +.power_icon16x16.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1280px -32px; +} + +.power_icon16x16.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1280px 0; +} + +.power_icon16x16.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1296px -16px; +} + +.power_icon16x16.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1296px -32px; +} + +.power_icon16x16.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1296px 0; +} + +.power_icon16x16.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1312px -16px; +} + +.power_icon16x16.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1312px -32px; +} + +.power_icon16x16.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1312px 0; +} + +.power_icon16x16.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1328px -16px; +} + +.power_icon16x16.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1328px -32px; +} + +.power_icon16x16.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1328px 0; +} + +.power_icon16x16.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1344px -16px; +} + +.power_icon16x16.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1344px -32px; +} + +.power_icon16x16.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1344px 0; +} + +.power_icon16x16.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1360px -16px; +} + +.power_icon16x16.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1360px -32px; +} + +.power_icon16x16.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1360px 0; +} + +.power_icon16x16.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1376px -16px; +} + +.power_icon16x16.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1376px -32px; +} + +.power_icon16x16.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1376px 0; +} + +.power_icon16x16.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1392px -16px; +} + +.power_icon16x16.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1392px -32px; +} + +.power_icon16x16.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1392px 0; +} + +.power_icon16x16.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1408px -16px; +} + +.power_icon16x16.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1408px -32px; +} + +.power_icon16x16.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1408px 0; +} + +.power_icon16x16.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1424px -16px; +} + +.power_icon16x16.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1424px -32px; +} + +.power_icon16x16.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1424px 0; +} + +.power_icon16x16.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1440px -16px; +} + +.power_icon16x16.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1440px -32px; +} + +.power_icon16x16.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1440px 0; +} + +.power_icon16x16.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1456px -16px; +} + +.power_icon16x16.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1456px -32px; +} + +.power_icon16x16.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1456px 0; +} + +.power_icon16x16.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1472px -16px; +} + +.power_icon16x16.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1472px -32px; +} + +.power_icon16x16.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1472px 0; +} + +.power_icon16x16.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1488px -16px; +} + +.power_icon16x16.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1488px -32px; +} + +.power_icon16x16.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1488px 0; +} + +.power_icon16x16.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1504px -16px; +} + +.power_icon16x16.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1504px -32px; +} + +.power_icon16x16.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1504px 0; +} + +.power_icon16x16.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1520px -16px; +} + +.power_icon16x16.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1520px -32px; +} + +.power_icon16x16.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1520px 0; +} + +.power_icon16x16.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1536px -16px; +} + +.power_icon16x16.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1536px -32px; +} + +.power_icon16x16.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1536px 0; +} + +.power_icon16x16.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1552px -16px; +} + +.power_icon16x16.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1552px -32px; +} + +.power_icon16x16.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1552px 0; +} + +.power_icon16x16.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1568px -16px; +} + +.power_icon16x16.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1568px -32px; +} + +.power_icon16x16.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1568px 0; +} + +.power_icon16x16.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1584px -16px; +} + +.power_icon16x16.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1584px -32px; +} + +.power_icon16x16.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1584px 0; +} + +.power_icon16x16.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1600px -16px; +} + +.power_icon16x16.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1600px -32px; +} + +.power_icon16x16.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1600px 0; +} + +.power_icon16x16.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1616px -16px; +} + +.power_icon16x16.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1616px -32px; +} + +.power_icon16x16.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1616px 0; +} + +.power_icon16x16.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1632px -16px; +} + +.power_icon16x16.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1632px -32px; +} + +.power_icon16x16.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1632px 0; +} + +.power_icon16x16.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1648px -16px; +} + +.power_icon16x16.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1648px -32px; +} + +.power_icon16x16.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1648px 0; +} + +.power_icon16x16.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1664px -16px; +} + +.power_icon16x16.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1664px -32px; +} + +.power_icon16x16.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1664px 0; +} + +.power_icon16x16.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1680px -16px; +} + +.power_icon16x16.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1680px -32px; +} + +.power_icon16x16.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1680px 0; +} + +.power_icon16x16.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1696px -16px; +} + +.power_icon16x16.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1696px -32px; +} + +.power_icon16x16.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1696px 0; +} + +.power_icon16x16.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1712px -16px; +} + +.power_icon16x16.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1712px -32px; +} + +.power_icon16x16.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1712px 0; +} + +.power_icon16x16.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1728px -16px; +} + +.power_icon16x16.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1728px -32px; +} + +.power_icon16x16.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1728px 0; +} + +.power_icon16x16.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1744px -16px; +} + +.power_icon16x16.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1744px -32px; +} + +.power_icon16x16.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1744px 0; +} + +.power_icon16x16.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1760px -16px; +} + +.power_icon16x16.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1760px -32px; +} + +.power_icon16x16.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1760px 0; +} + +.power_icon16x16.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1776px -16px; +} + +.power_icon16x16.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1776px -32px; +} + +.power_icon16x16.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1776px 0; +} + +.power_icon16x16.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1792px -16px; +} + +.power_icon16x16.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1792px -32px; +} + +.power_icon16x16.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1792px 0; +} + +.power_icon16x16.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1808px -16px; +} + +.power_icon16x16.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1808px -32px; +} + +.power_icon16x16.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1808px 0; +} + +.power_icon16x16.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1824px -16px; +} + +.power_icon16x16.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1824px -32px; +} + +.power_icon16x16.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1824px 0; +} + +.power_icon16x16.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1840px -16px; +} + +.power_icon16x16.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1840px -32px; +} + +.power_icon16x16.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1840px 0; +} + +.power_icon16x16.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1856px -16px; +} + +.power_icon16x16.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1856px -32px; +} + +.power_icon16x16.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1856px 0; +} + +.power_icon16x16.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1872px -16px; +} + +.power_icon16x16.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1872px -32px; +} + +.power_icon16x16.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1872px 0; +} + +.power_icon16x16.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1888px -16px; +} + +.power_icon16x16.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1888px -32px; +} + +.power_icon16x16.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1888px 0; +} + +.power_icon16x16.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1904px -16px; +} + +.power_icon16x16.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1904px -32px; +} + +.power_icon16x16.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1904px 0; +} + +.power_icon16x16.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1920px -16px; +} + +.power_icon16x16.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1920px -32px; +} + +.power_icon16x16.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1920px 0; +} + +.power_icon16x16.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1936px -16px; +} + +.power_icon16x16.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1936px -32px; +} + +.power_icon16x16.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1936px 0; +} + +.power_icon16x16.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1952px -16px; +} + +.power_icon16x16.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1952px -32px; +} + +.power_icon16x16.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1952px 0; +} + +.power_icon16x16.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1968px -16px; +} + +.power_icon16x16.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1968px -32px; +} + +.power_icon16x16.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1968px 0; +} + +.power_icon16x16.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1984px -16px; +} + +.power_icon16x16.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1984px -32px; +} + +.power_icon16x16.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -1984px 0; +} + +.power_icon16x16.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2000px -16px; +} + +.power_icon16x16.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2000px -32px; +} + +.power_icon16x16.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2000px 0; +} + +.power_icon16x16.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2016px -16px; +} + +.power_icon16x16.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2016px -32px; +} + +.power_icon16x16.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2016px 0; +} + +.power_icon16x16.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2032px -16px; +} + +.power_icon16x16.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2032px -32px; +} + +.power_icon16x16.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2032px 0; +} + +.power_icon16x16.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2048px -16px; +} + +.power_icon16x16.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2048px -32px; +} + +.power_icon16x16.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2048px 0; +} + +.power_icon16x16.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2064px -16px; +} + +.power_icon16x16.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2064px -32px; +} + +.power_icon16x16.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2064px 0; +} + +.power_icon16x16.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2080px -16px; +} + +.power_icon16x16.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2080px -32px; +} + +.power_icon16x16.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2080px 0; +} + +.power_icon16x16.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2096px -16px; +} + +.power_icon16x16.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2096px -32px; +} + +.power_icon16x16.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2096px 0; +} + +.power_icon16x16.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2112px -16px; +} + +.power_icon16x16.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2112px -32px; +} + +.power_icon16x16.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2112px 0; +} + +.power_icon16x16.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2128px -16px; +} + +.power_icon16x16.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2128px -32px; +} + +.power_icon16x16.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2128px 0; +} + +.power_icon16x16.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2144px -16px; +} + +.power_icon16x16.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2144px -32px; +} + +.power_icon16x16.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2144px 0; +} + +.power_icon16x16.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2160px -16px; +} + +.power_icon16x16.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2160px -32px; +} + +.power_icon16x16.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2160px 0; +} + +.power_icon16x16.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2176px -16px; +} + +.power_icon16x16.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2176px -32px; +} + +.power_icon16x16.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2176px 0; +} + +.power_icon16x16.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2192px -16px; +} + +.power_icon16x16.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2192px -32px; +} + +.power_icon16x16.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2192px 0; +} + +.power_icon16x16.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2208px -16px; +} + +.power_icon16x16.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2208px -32px; +} + +.power_icon16x16.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2208px 0; +} + +.power_icon16x16.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2224px -16px; +} + +.power_icon16x16.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2224px -32px; +} + +.power_icon16x16.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2224px 0; +} + +.power_icon16x16.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2240px -16px; +} + +.power_icon16x16.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2240px -32px; +} + +.power_icon16x16.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2240px 0; +} + +.power_icon16x16.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2256px -16px; +} + +.power_icon16x16.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2256px -32px; +} + +.power_icon16x16.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2256px 0; +} + +.power_icon16x16.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2272px -16px; +} + +.power_icon16x16.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2272px -32px; +} + +.power_icon16x16.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2272px 0; +} + +.power_icon16x16.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2288px -16px; +} + +.power_icon16x16.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2288px -32px; +} + +.power_icon16x16.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2288px 0; +} + +.power_icon16x16.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2304px -16px; +} + +.power_icon16x16.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2304px -32px; +} + +.power_icon16x16.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2304px 0; +} + +.power_icon16x16.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2320px -16px; +} + +.power_icon16x16.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2320px -32px; +} + +.power_icon16x16.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2320px 0; +} + +.power_icon16x16.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2336px -16px; +} + +.power_icon16x16.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2336px -32px; +} + +.power_icon16x16.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2336px 0; +} + +.power_icon16x16.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2352px -16px; +} + +.power_icon16x16.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2352px -32px; +} + +.power_icon16x16.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2352px 0; +} + +.power_icon16x16.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2368px -16px; +} + +.power_icon16x16.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2368px -32px; +} + +.power_icon16x16.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2368px 0; +} + +.power_icon16x16.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2384px -16px; +} + +.power_icon16x16.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2384px -32px; +} + +.power_icon16x16.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2384px 0; +} + +.power_icon16x16.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2400px -16px; +} + +.power_icon16x16.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2400px -32px; +} + +.power_icon16x16.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2400px 0; +} + +.power_icon16x16.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2416px -16px; +} + +.power_icon16x16.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2416px -32px; +} + +.power_icon16x16.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2416px 0; +} + +.power_icon16x16.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2432px -16px; +} + +.power_icon16x16.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2432px -32px; +} + +.power_icon16x16.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2432px 0; +} + +.power_icon16x16.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2448px -16px; +} + +.power_icon16x16.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2448px -32px; +} + +.power_icon16x16.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2448px 0; +} + +.power_icon16x16.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2464px -16px; +} + +.power_icon16x16.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2464px -32px; +} + +.power_icon16x16.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_1966b23.png) no-repeat -2464px 0; +} + +.power_icon24x24 { + width: 24px; + height: 24px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon24x24.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat 0 -24px; +} + +.power_icon24x24.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat 0 -48px; +} + +.power_icon24x24.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat 0 0; +} + +.power_icon24x24.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -24px -24px; +} + +.power_icon24x24.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -24px -48px; +} + +.power_icon24x24.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -24px 0; +} + +.power_icon24x24.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -48px -24px; +} + +.power_icon24x24.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -48px -48px; +} + +.power_icon24x24.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -48px 0; +} + +.power_icon24x24.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -72px -24px; +} + +.power_icon24x24.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -72px -48px; +} + +.power_icon24x24.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -72px 0; +} + +.power_icon24x24.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -96px -24px; +} + +.power_icon24x24.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -96px -48px; +} + +.power_icon24x24.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -96px 0; +} + +.power_icon24x24.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -120px -24px; +} + +.power_icon24x24.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -120px -48px; +} + +.power_icon24x24.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -120px 0; +} + +.power_icon24x24.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -144px -24px; +} + +.power_icon24x24.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -144px -48px; +} + +.power_icon24x24.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -144px 0; +} + +.power_icon24x24.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -168px -24px; +} + +.power_icon24x24.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -168px -48px; +} + +.power_icon24x24.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -168px 0; +} + +.power_icon24x24.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -192px -24px; +} + +.power_icon24x24.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -192px -48px; +} + +.power_icon24x24.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -192px 0; +} + +.power_icon24x24.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -216px -24px; +} + +.power_icon24x24.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -216px -48px; +} + +.power_icon24x24.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -216px 0; +} + +.power_icon24x24.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -240px -24px; +} + +.power_icon24x24.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -240px -48px; +} + +.power_icon24x24.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -240px 0; +} + +.power_icon24x24.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -264px -24px; +} + +.power_icon24x24.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -264px -48px; +} + +.power_icon24x24.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -264px 0; +} + +.power_icon24x24.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -288px -24px; +} + +.power_icon24x24.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -288px -48px; +} + +.power_icon24x24.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -288px 0; +} + +.power_icon24x24.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -312px -24px; +} + +.power_icon24x24.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -312px -48px; +} + +.power_icon24x24.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -312px 0; +} + +.power_icon24x24.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -336px -24px; +} + +.power_icon24x24.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -336px -48px; +} + +.power_icon24x24.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -336px 0; +} + +.power_icon24x24.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -360px -24px; +} + +.power_icon24x24.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -360px -48px; +} + +.power_icon24x24.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -360px 0; +} + +.power_icon24x24.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -384px -24px; +} + +.power_icon24x24.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -384px -48px; +} + +.power_icon24x24.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -384px 0; +} + +.power_icon24x24.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -408px -24px; +} + +.power_icon24x24.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -408px -48px; +} + +.power_icon24x24.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -408px 0; +} + +.power_icon24x24.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -432px -24px; +} + +.power_icon24x24.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -432px -48px; +} + +.power_icon24x24.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -432px 0; +} + +.power_icon24x24.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -456px -24px; +} + +.power_icon24x24.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -456px -48px; +} + +.power_icon24x24.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -456px 0; +} + +.power_icon24x24.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -480px -24px; +} + +.power_icon24x24.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -480px -48px; +} + +.power_icon24x24.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -480px 0; +} + +.power_icon24x24.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -504px -24px; +} + +.power_icon24x24.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -504px -48px; +} + +.power_icon24x24.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -504px 0; +} + +.power_icon24x24.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -528px -24px; +} + +.power_icon24x24.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -528px -48px; +} + +.power_icon24x24.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -528px 0; +} + +.power_icon24x24.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -552px -24px; +} + +.power_icon24x24.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -552px -48px; +} + +.power_icon24x24.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -552px 0; +} + +.power_icon24x24.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -576px -24px; +} + +.power_icon24x24.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -576px -48px; +} + +.power_icon24x24.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -576px 0; +} + +.power_icon24x24.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -600px -24px; +} + +.power_icon24x24.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -600px -48px; +} + +.power_icon24x24.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -600px 0; +} + +.power_icon24x24.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -624px -24px; +} + +.power_icon24x24.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -624px -48px; +} + +.power_icon24x24.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -624px 0; +} + +.power_icon24x24.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -648px -24px; +} + +.power_icon24x24.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -648px -48px; +} + +.power_icon24x24.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -648px 0; +} + +.power_icon24x24.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -672px -24px; +} + +.power_icon24x24.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -672px -48px; +} + +.power_icon24x24.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -672px 0; +} + +.power_icon24x24.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -696px -24px; +} + +.power_icon24x24.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -696px -48px; +} + +.power_icon24x24.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -696px 0; +} + +.power_icon24x24.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -720px -24px; +} + +.power_icon24x24.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -720px -48px; +} + +.power_icon24x24.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -720px 0; +} + +.power_icon24x24.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -744px -24px; +} + +.power_icon24x24.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -744px -48px; +} + +.power_icon24x24.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -744px 0; +} + +.power_icon24x24.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -768px -24px; +} + +.power_icon24x24.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -768px -48px; +} + +.power_icon24x24.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -768px 0; +} + +.power_icon24x24.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -792px -24px; +} + +.power_icon24x24.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -792px -48px; +} + +.power_icon24x24.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -792px 0; +} + +.power_icon24x24.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -816px -24px; +} + +.power_icon24x24.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -816px -48px; +} + +.power_icon24x24.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -816px 0; +} + +.power_icon24x24.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -840px -24px; +} + +.power_icon24x24.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -840px -48px; +} + +.power_icon24x24.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -840px 0; +} + +.power_icon24x24.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -864px -24px; +}.power_icon24x24.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -864px -48px; +} + +.power_icon24x24.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -864px 0; +} + +.power_icon24x24.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -888px -24px; +} + +.power_icon24x24.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -888px -48px; +} + +.power_icon24x24.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -888px 0; +} + +.power_icon24x24.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -912px -24px; +} + +.power_icon24x24.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -912px -48px; +} + +.power_icon24x24.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -912px 0; +} + +.power_icon24x24.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -936px -24px; +} + +.power_icon24x24.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -936px -48px; +} + +.power_icon24x24.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -936px 0; +} + +.power_icon24x24.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -960px -24px; +} + +.power_icon24x24.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -960px -48px; +} + +.power_icon24x24.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -960px 0; +} + +.power_icon24x24.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -984px -24px; +} + +.power_icon24x24.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -984px -48px; +} + +.power_icon24x24.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -984px 0; +} + +.power_icon24x24.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1008px -24px; +} + +.power_icon24x24.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1008px -48px; +} + +.power_icon24x24.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1008px 0; +} + +.power_icon24x24.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1032px -24px; +} + +.power_icon24x24.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1032px -48px; +} + +.power_icon24x24.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1032px 0; +} + +.power_icon24x24.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1056px -24px; +} + +.power_icon24x24.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1056px -48px; +} + +.power_icon24x24.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1056px 0; +} + +.power_icon24x24.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1080px -24px; +} + +.power_icon24x24.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1080px -48px; +} + +.power_icon24x24.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1080px 0; +} + +.power_icon24x24.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1104px -24px; +} + +.power_icon24x24.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1104px -48px; +} + +.power_icon24x24.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1104px 0; +} + +.power_icon24x24.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1128px -24px; +} + +.power_icon24x24.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1128px -48px; +} + +.power_icon24x24.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1128px 0; +} + +.power_icon24x24.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1152px -24px; +} + +.power_icon24x24.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1152px -48px; +} + +.power_icon24x24.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1152px 0; +} + +.power_icon24x24.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1176px -24px; +} + +.power_icon24x24.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1176px -48px; +} + +.power_icon24x24.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1176px 0; +} + +.power_icon24x24.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1200px -24px; +} + +.power_icon24x24.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1200px -48px; +} + +.power_icon24x24.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1200px 0; +} + +.power_icon24x24.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1224px -24px; +} + +.power_icon24x24.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1224px -48px; +} + +.power_icon24x24.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1224px 0; +} + +.power_icon24x24.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1248px -24px; +} + +.power_icon24x24.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1248px -48px; +} + +.power_icon24x24.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1248px 0; +} + +.power_icon24x24.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1272px -24px; +} + +.power_icon24x24.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1272px -48px; +} + +.power_icon24x24.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1272px 0; +} + +.power_icon24x24.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1296px -24px; +} + +.power_icon24x24.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1296px -48px; +} + +.power_icon24x24.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1296px 0; +} + +.power_icon24x24.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1320px -24px; +} + +.power_icon24x24.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1320px -48px; +} + +.power_icon24x24.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1320px 0; +} + +.power_icon24x24.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1344px -24px; +} + +.power_icon24x24.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1344px -48px; +} + +.power_icon24x24.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1344px 0; +} + +.power_icon24x24.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1368px -24px; +} + +.power_icon24x24.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1368px -48px; +} + +.power_icon24x24.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1368px 0; +} + +.power_icon24x24.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1392px -24px; +} + +.power_icon24x24.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1392px -48px; +} + +.power_icon24x24.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1392px 0; +} + +.power_icon24x24.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1416px -24px; +} + +.power_icon24x24.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1416px -48px; +} + +.power_icon24x24.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1416px 0; +} + +.power_icon24x24.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1440px -24px; +} + +.power_icon24x24.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1440px -48px; +} + +.power_icon24x24.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1440px 0; +} + +.power_icon24x24.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1464px -24px; +} + +.power_icon24x24.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1464px -48px; +} + +.power_icon24x24.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1464px 0; +} + +.power_icon24x24.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1488px -24px; +} + +.power_icon24x24.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1488px -48px; +} + +.power_icon24x24.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1488px 0; +} + +.power_icon24x24.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1512px -24px; +} + +.power_icon24x24.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1512px -48px; +} + +.power_icon24x24.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1512px 0; +} + +.power_icon24x24.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1536px -24px; +} + +.power_icon24x24.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1536px -48px; +} + +.power_icon24x24.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1536px 0; +} + +.power_icon24x24.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1560px -24px; +} + +.power_icon24x24.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1560px -48px; +} + +.power_icon24x24.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1560px 0; +} + +.power_icon24x24.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1584px -24px; +} + +.power_icon24x24.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1584px -48px; +} + +.power_icon24x24.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1584px 0; +} + +.power_icon24x24.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1608px -24px; +} + +.power_icon24x24.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1608px -48px; +} + +.power_icon24x24.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1608px 0; +} + +.power_icon24x24.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1632px -24px; +} + +.power_icon24x24.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1632px -48px; +} + +.power_icon24x24.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1632px 0; +} + +.power_icon24x24.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1656px -24px; +} + +.power_icon24x24.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1656px -48px; +} + +.power_icon24x24.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1656px 0; +} + +.power_icon24x24.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1680px -24px; +} + +.power_icon24x24.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1680px -48px; +} + +.power_icon24x24.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1680px 0; +} + +.power_icon24x24.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1704px -24px; +} + +.power_icon24x24.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1704px -48px; +} + +.power_icon24x24.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1704px 0; +} + +.power_icon24x24.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1728px -24px; +} + +.power_icon24x24.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1728px -48px; +} + +.power_icon24x24.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1728px 0; +} + +.power_icon24x24.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1752px -24px; +} + +.power_icon24x24.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1752px -48px; +} + +.power_icon24x24.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1752px 0; +} + +.power_icon24x24.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1776px -24px; +} + +.power_icon24x24.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1776px -48px; +} + +.power_icon24x24.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1776px 0; +} + +.power_icon24x24.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1800px -24px; +} + +.power_icon24x24.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1800px -48px; +} + +.power_icon24x24.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1800px 0; +} + +.power_icon24x24.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1824px -24px; +} + +.power_icon24x24.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1824px -48px; +} + +.power_icon24x24.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1824px 0; +} + +.power_icon24x24.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1848px -24px; +} + +.power_icon24x24.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1848px -48px; +} + +.power_icon24x24.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1848px 0; +} + +.power_icon24x24.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1872px -24px; +} + +.power_icon24x24.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1872px -48px; +} + +.power_icon24x24.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1872px 0; +} + +.power_icon24x24.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1896px -24px; +} + +.power_icon24x24.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1896px -48px; +} + +.power_icon24x24.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1896px 0; +} + +.power_icon24x24.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1920px -24px; +} + +.power_icon24x24.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1920px -48px; +} + +.power_icon24x24.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1920px 0; +} + +.power_icon24x24.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1944px -24px; +} + +.power_icon24x24.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1944px -48px; +} + +.power_icon24x24.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1944px 0; +} + +.power_icon24x24.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1968px -24px; +} + +.power_icon24x24.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1968px -48px; +} + +.power_icon24x24.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1968px 0; +} + +.power_icon24x24.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1992px -24px; +} + +.power_icon24x24.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1992px -48px; +} + +.power_icon24x24.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -1992px 0; +} + +.power_icon24x24.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2016px -24px; +} + +.power_icon24x24.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2016px -48px; +} + +.power_icon24x24.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2016px 0; +} + +.power_icon24x24.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2040px -24px; +} + +.power_icon24x24.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2040px -48px; +} + +.power_icon24x24.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2040px 0; +} + +.power_icon24x24.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2064px -24px; +} + +.power_icon24x24.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2064px -48px; +} + +.power_icon24x24.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2064px 0; +} + +.power_icon24x24.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2088px -24px; +} + +.power_icon24x24.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2088px -48px; +} + +.power_icon24x24.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2088px 0; +} + +.power_icon24x24.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2112px -24px; +} + +.power_icon24x24.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2112px -48px; +} + +.power_icon24x24.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2112px 0; +} + +.power_icon24x24.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2136px -24px; +} + +.power_icon24x24.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2136px -48px; +} + +.power_icon24x24.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2136px 0; +} + +.power_icon24x24.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2160px -24px; +} + +.power_icon24x24.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2160px -48px; +} + +.power_icon24x24.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2160px 0; +} + +.power_icon24x24.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2184px -24px; +} + +.power_icon24x24.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2184px -48px; +} + +.power_icon24x24.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2184px 0; +} + +.power_icon24x24.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2208px -24px; +} + +.power_icon24x24.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2208px -48px; +} + +.power_icon24x24.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2208px 0; +} + +.power_icon24x24.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2232px -24px; +} + +.power_icon24x24.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2232px -48px; +} + +.power_icon24x24.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2232px 0; +} + +.power_icon24x24.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2256px -24px; +} + +.power_icon24x24.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2256px -48px; +} + +.power_icon24x24.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2256px 0; +} + +.power_icon24x24.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2280px -24px; +} + +.power_icon24x24.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2280px -48px; +} + +.power_icon24x24.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2280px 0; +} + +.power_icon24x24.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2304px -24px; +} + +.power_icon24x24.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2304px -48px; +} + +.power_icon24x24.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2304px 0; +} + +.power_icon24x24.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2328px -24px; +} + +.power_icon24x24.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2328px -48px; +} + +.power_icon24x24.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2328px 0; +} + +.power_icon24x24.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2352px -24px; +} + +.power_icon24x24.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2352px -48px; +} + +.power_icon24x24.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2352px 0; +} + +.power_icon24x24.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2376px -24px; +} + +.power_icon24x24.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2376px -48px; +} + +.power_icon24x24.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2376px 0; +} + +.power_icon24x24.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2400px -24px; +} + +.power_icon24x24.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2400px -48px; +} + +.power_icon24x24.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2400px 0; +} + +.power_icon24x24.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2424px -24px; +} + +.power_icon24x24.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2424px -48px; +} + +.power_icon24x24.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2424px 0; +} + +.power_icon24x24.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2448px -24px; +} + +.power_icon24x24.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2448px -48px; +} + +.power_icon24x24.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2448px 0; +} + +.power_icon24x24.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2472px -24px; +} + +.power_icon24x24.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2472px -48px; +} + +.power_icon24x24.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2472px 0; +} + +.power_icon24x24.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2496px -24px; +} + +.power_icon24x24.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2496px -48px; +} + +.power_icon24x24.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2496px 0; +} + +.power_icon24x24.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2520px -24px; +} + +.power_icon24x24.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2520px -48px; +} + +.power_icon24x24.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2520px 0; +} + +.power_icon24x24.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2544px -24px; +} + +.power_icon24x24.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2544px -48px; +} + +.power_icon24x24.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2544px 0; +} + +.power_icon24x24.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2568px -24px; +} + +.power_icon24x24.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2568px -48px; +} + +.power_icon24x24.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2568px 0; +} + +.power_icon24x24.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2592px -24px; +} + +.power_icon24x24.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2592px -48px; +} + +.power_icon24x24.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2592px 0; +} + +.power_icon24x24.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2616px -24px; +} + +.power_icon24x24.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2616px -48px; +} + +.power_icon24x24.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2616px 0; +} + +.power_icon24x24.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2640px -24px; +} + +.power_icon24x24.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2640px -48px; +} + +.power_icon24x24.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2640px 0; +} + +.power_icon24x24.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2664px -24px; +} + +.power_icon24x24.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2664px -48px; +} + +.power_icon24x24.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2664px 0; +} + +.power_icon24x24.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2688px -24px; +} + +.power_icon24x24.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2688px -48px; +} + +.power_icon24x24.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2688px 0; +} + +.power_icon24x24.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2712px -24px; +} + +.power_icon24x24.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2712px -48px; +} + +.power_icon24x24.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2712px 0; +} + +.power_icon24x24.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2736px -24px; +} + +.power_icon24x24.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2736px -48px; +} + +.power_icon24x24.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2736px 0; +} + +.power_icon24x24.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2760px -24px; +} + +.power_icon24x24.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2760px -48px; +} + +.power_icon24x24.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2760px 0; +} + +.power_icon24x24.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2784px -24px; +} + +.power_icon24x24.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2784px -48px; +} + +.power_icon24x24.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2784px 0; +} + +.power_icon24x24.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2808px -24px; +} + +.power_icon24x24.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2808px -48px; +} + +.power_icon24x24.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2808px 0; +} + +.power_icon24x24.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2832px -24px; +} + +.power_icon24x24.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2832px -48px; +} + +.power_icon24x24.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2832px 0; +} + +.power_icon24x24.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2856px -24px; +} + +.power_icon24x24.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2856px -48px; +} + +.power_icon24x24.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2856px 0; +} + +.power_icon24x24.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2880px -24px; +} + +.power_icon24x24.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2880px -48px; +} + +.power_icon24x24.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2880px 0; +} + +.power_icon24x24.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2904px -24px; +} + +.power_icon24x24.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2904px -48px; +} + +.power_icon24x24.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2904px 0; +} + +.power_icon24x24.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2928px -24px; +} + +.power_icon24x24.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2928px -48px; +} + +.power_icon24x24.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2928px 0; +} + +.power_icon24x24.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2952px -24px; +} + +.power_icon24x24.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2952px -48px; +} + +.power_icon24x24.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2952px 0; +} + +.power_icon24x24.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2976px -24px; +} + +.power_icon24x24.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2976px -48px; +} + +.power_icon24x24.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -2976px 0; +} + +.power_icon24x24.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3000px -24px; +} + +.power_icon24x24.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3000px -48px; +} + +.power_icon24x24.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3000px 0; +} + +.power_icon24x24.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3024px -24px; +} + +.power_icon24x24.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3024px -48px; +} + +.power_icon24x24.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3024px 0; +} + +.power_icon24x24.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3048px -24px; +} + +.power_icon24x24.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3048px -48px; +} + +.power_icon24x24.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3048px 0; +} + +.power_icon24x24.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3072px -24px; +} + +.power_icon24x24.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3072px -48px; +} + +.power_icon24x24.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3072px 0; +} + +.power_icon24x24.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3096px -24px; +} + +.power_icon24x24.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3096px -48px; +} + +.power_icon24x24.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3096px 0; +} + +.power_icon24x24.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3120px -24px; +} + +.power_icon24x24.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3120px -48px; +} + +.power_icon24x24.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3120px 0; +} + +.power_icon24x24.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3144px -24px; +} + +.power_icon24x24.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3144px -48px; +} + +.power_icon24x24.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3144px 0; +} + +.power_icon24x24.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3168px -24px; +} + +.power_icon24x24.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3168px -48px; +} + +.power_icon24x24.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3168px 0; +} + +.power_icon24x24.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3192px -24px; +} + +.power_icon24x24.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3192px -48px; +} + +.power_icon24x24.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3192px 0; +} + +.power_icon24x24.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3216px -24px; +} + +.power_icon24x24.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3216px -48px; +} + +.power_icon24x24.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3216px 0; +} + +.power_icon24x24.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3240px -24px; +} + +.power_icon24x24.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3240px -48px; +} + +.power_icon24x24.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3240px 0; +} + +.power_icon24x24.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3264px -24px; +} + +.power_icon24x24.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3264px -48px; +} + +.power_icon24x24.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3264px 0; +} + +.power_icon24x24.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3288px -24px; +} + +.power_icon24x24.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3288px -48px; +} + +.power_icon24x24.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3288px 0; +} + +.power_icon24x24.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3312px -24px; +} + +.power_icon24x24.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3312px -48px; +} + +.power_icon24x24.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3312px 0; +} + +.power_icon24x24.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3336px -24px; +} + +.power_icon24x24.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3336px -48px; +} + +.power_icon24x24.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3336px 0; +} + +.power_icon24x24.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3360px -24px; +} + +.power_icon24x24.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3360px -48px; +} + +.power_icon24x24.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3360px 0; +} + +.power_icon24x24.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3384px -24px; +} + +.power_icon24x24.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3384px -48px; +} + +.power_icon24x24.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3384px 0; +} + +.power_icon24x24.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3408px -24px; +} + +.power_icon24x24.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3408px -48px; +} + +.power_icon24x24.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3408px 0; +} + +.power_icon24x24.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3432px -24px; +} + +.power_icon24x24.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3432px -48px; +} + +.power_icon24x24.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3432px 0; +} + +.power_icon24x24.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3456px -24px; +} + +.power_icon24x24.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3456px -48px; +} + +.power_icon24x24.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3456px 0; +} + +.power_icon24x24.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3480px -24px; +} + +.power_icon24x24.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3480px -48px; +} + +.power_icon24x24.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3480px 0; +} + +.power_icon24x24.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3504px -24px; +} + +.power_icon24x24.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3504px -48px; +} + +.power_icon24x24.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3504px 0; +} + +.power_icon24x24.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3528px -24px; +} + +.power_icon24x24.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3528px -48px; +} + +.power_icon24x24.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3528px 0; +} + +.power_icon24x24.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3552px -24px; +} + +.power_icon24x24.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3552px -48px; +} + +.power_icon24x24.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3552px 0; +} + +.power_icon24x24.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3576px -24px; +} + +.power_icon24x24.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3576px -48px; +} + +.power_icon24x24.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3576px 0; +} + +.power_icon24x24.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3600px -24px; +} + +.power_icon24x24.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3600px -48px; +} + +.power_icon24x24.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3600px 0; +} + +.power_icon24x24.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3624px -24px; +} + +.power_icon24x24.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3624px -48px; +} + +.power_icon24x24.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3624px 0; +} + +.power_icon24x24.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3648px -24px; +} + +.power_icon24x24.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3648px -48px; +} + +.power_icon24x24.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3648px 0; +} + +.power_icon24x24.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3672px -24px; +} + +.power_icon24x24.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3672px -48px; +} + +.power_icon24x24.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3672px 0; +} + +.power_icon24x24.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3696px -24px; +} + +.power_icon24x24.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3696px -48px; +} + +.power_icon24x24.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_be70fb4.png) no-repeat -3696px 0; +} + +.power_icon30x30 { + width: 30px; + height: 30px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon30x30.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat 0 -30px; +} + +.power_icon30x30.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat 0 -60px; +} + +.power_icon30x30.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat 0 0; +} + +.power_icon30x30.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -30px -30px; +} + +.power_icon30x30.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -30px -60px; +} + +.power_icon30x30.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -30px 0; +} + +.power_icon30x30.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -60px -30px; +} + +.power_icon30x30.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -60px -60px; +} + +.power_icon30x30.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -60px 0; +} + +.power_icon30x30.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -90px -30px; +} + +.power_icon30x30.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -90px -60px; +} + +.power_icon30x30.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -90px 0; +} + +.power_icon30x30.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -120px -30px; +} + +.power_icon30x30.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -120px -60px; +} + +.power_icon30x30.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -120px 0; +} + +.power_icon30x30.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -150px -30px; +} + +.power_icon30x30.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -150px -60px; +} + +.power_icon30x30.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -150px 0; +} + +.power_icon30x30.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -180px -30px; +} + +.power_icon30x30.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -180px -60px; +} + +.power_icon30x30.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -180px 0; +} + +.power_icon30x30.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -210px -30px; +} + +.power_icon30x30.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -210px -60px; +} + +.power_icon30x30.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -210px 0; +} + +.power_icon30x30.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -240px -30px; +} + +.power_icon30x30.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -240px -60px; +} + +.power_icon30x30.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -240px 0; +} + +.power_icon30x30.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -270px -30px; +} + +.power_icon30x30.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -270px -60px; +} + +.power_icon30x30.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -270px 0; +} + +.power_icon30x30.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -300px -30px; +} + +.power_icon30x30.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -300px -60px; +} + +.power_icon30x30.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -300px 0; +} + +.power_icon30x30.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -330px -30px; +} + +.power_icon30x30.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -330px -60px; +} + +.power_icon30x30.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -330px 0; +} + +.power_icon30x30.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -360px -30px; +} + +.power_icon30x30.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -360px -60px; +} + +.power_icon30x30.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -360px 0; +} + +.power_icon30x30.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -390px -30px; +} + +.power_icon30x30.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -390px -60px; +} + +.power_icon30x30.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -390px 0; +} + +.power_icon30x30.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -420px -30px; +} + +.power_icon30x30.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -420px -60px; +} + +.power_icon30x30.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -420px 0; +} + +.power_icon30x30.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -450px -30px; +} + +.power_icon30x30.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -450px -60px; +} + +.power_icon30x30.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -450px 0; +} + +.power_icon30x30.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -480px -30px; +} + +.power_icon30x30.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -480px -60px; +} + +.power_icon30x30.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -480px 0; +} + +.power_icon30x30.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -510px -30px; +} + +.power_icon30x30.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -510px -60px; +} + +.power_icon30x30.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -510px 0; +} + +.power_icon30x30.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -540px -30px; +} + +.power_icon30x30.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -540px -60px; +} + +.power_icon30x30.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -540px 0; +} + +.power_icon30x30.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -570px -30px; +} + +.power_icon30x30.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -570px -60px; +} + +.power_icon30x30.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -570px 0; +} + +.power_icon30x30.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -600px -30px; +} + +.power_icon30x30.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -600px -60px; +} + +.power_icon30x30.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -600px 0; +} + +.power_icon30x30.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -630px -30px; +} + +.power_icon30x30.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -630px -60px; +} + +.power_icon30x30.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -630px 0; +} + +.power_icon30x30.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -660px -30px; +} + +.power_icon30x30.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -660px -60px; +} + +.power_icon30x30.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -660px 0; +} + +.power_icon30x30.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -690px -30px; +} + +.power_icon30x30.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -690px -60px; +} + +.power_icon30x30.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -690px 0; +} + +.power_icon30x30.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -720px -30px; +} + +.power_icon30x30.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -720px -60px; +} + +.power_icon30x30.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -720px 0; +} + +.power_icon30x30.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -750px -30px; +} + +.power_icon30x30.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -750px -60px; +} + +.power_icon30x30.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -750px 0; +} + +.power_icon30x30.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -780px -30px; +} + +.power_icon30x30.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -780px -60px; +} + +.power_icon30x30.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -780px 0; +} + +.power_icon30x30.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -810px -30px; +} + +.power_icon30x30.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -810px -60px; +} + +.power_icon30x30.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -810px 0; +} + +.power_icon30x30.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -840px -30px; +} + +.power_icon30x30.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -840px -60px; +} + +.power_icon30x30.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -840px 0; +} + +.power_icon30x30.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -870px -30px; +} + +.power_icon30x30.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -870px -60px; +} + +.power_icon30x30.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -870px 0; +} + +.power_icon30x30.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -900px -30px; +} + +.power_icon30x30.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -900px -60px; +} + +.power_icon30x30.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -900px 0; +} + +.power_icon30x30.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -930px -30px; +} + +.power_icon30x30.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -930px -60px; +} + +.power_icon30x30.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -930px 0; +} + +.power_icon30x30.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -960px -30px; +} + +.power_icon30x30.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -960px -60px; +} + +.power_icon30x30.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -960px 0; +} + +.power_icon30x30.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -990px -30px; +} + +.power_icon30x30.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -990px -60px; +} + +.power_icon30x30.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -990px 0; +} + +.power_icon30x30.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1020px -30px; +} + +.power_icon30x30.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1020px -60px; +} + +.power_icon30x30.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1020px 0; +} + +.power_icon30x30.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1050px -30px; +} + +.power_icon30x30.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1050px -60px; +} + +.power_icon30x30.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1050px 0; +} + +.power_icon30x30.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1080px -30px; +} + +.power_icon30x30.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1080px -60px; +} + +.power_icon30x30.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1080px 0; +} + +.power_icon30x30.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1110px -30px; +} + +.power_icon30x30.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1110px -60px; +} + +.power_icon30x30.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1110px 0; +} + +.power_icon30x30.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1140px -30px; +} + +.power_icon30x30.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1140px -60px; +} + +.power_icon30x30.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1140px 0; +} + +.power_icon30x30.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1170px -30px; +} + +.power_icon30x30.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1170px -60px; +} + +.power_icon30x30.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1170px 0; +} + +.power_icon30x30.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1200px -30px; +} + +.power_icon30x30.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1200px -60px; +} + +.power_icon30x30.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1200px 0; +} + +.power_icon30x30.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1230px -30px; +} + +.power_icon30x30.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1230px -60px; +} + +.power_icon30x30.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1230px 0; +} + +.power_icon30x30.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1260px -30px; +} + +.power_icon30x30.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1260px -60px; +} + +.power_icon30x30.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1260px 0; +} + +.power_icon30x30.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1290px -30px; +} + +.power_icon30x30.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1290px -60px; +} + +.power_icon30x30.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1290px 0; +} + +.power_icon30x30.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1320px -30px; +} + +.power_icon30x30.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1320px -60px; +} + +.power_icon30x30.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1320px 0; +} + +.power_icon30x30.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1350px -30px; +} + +.power_icon30x30.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1350px -60px; +} + +.power_icon30x30.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1350px 0; +} + +.power_icon30x30.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1380px -30px; +} + +.power_icon30x30.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1380px -60px; +} + +.power_icon30x30.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1380px 0; +} + +.power_icon30x30.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1410px -30px; +} + +.power_icon30x30.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1410px -60px; +} + +.power_icon30x30.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1410px 0; +} + +.power_icon30x30.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1440px -30px; +} + +.power_icon30x30.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1440px -60px; +} + +.power_icon30x30.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1440px 0; +} + +.power_icon30x30.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1470px -30px; +} + +.power_icon30x30.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1470px -60px; +} + +.power_icon30x30.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1470px 0; +} + +.power_icon30x30.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1500px -30px; +} + +.power_icon30x30.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1500px -60px; +} + +.power_icon30x30.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1500px 0; +} + +.power_icon30x30.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1530px -30px; +} + +.power_icon30x30.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1530px -60px; +} + +.power_icon30x30.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1530px 0; +} + +.power_icon30x30.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1560px -30px; +} + +.power_icon30x30.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1560px -60px; +} + +.power_icon30x30.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1560px 0; +} + +.power_icon30x30.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1590px -30px; +} + +.power_icon30x30.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1590px -60px; +} + +.power_icon30x30.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1590px 0; +} + +.power_icon30x30.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1620px -30px; +} + +.power_icon30x30.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1620px -60px; +} + +.power_icon30x30.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1620px 0; +} + +.power_icon30x30.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1650px -30px; +} + +.power_icon30x30.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1650px -60px; +} + +.power_icon30x30.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1650px 0; +} + +.power_icon30x30.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1680px -30px; +} + +.power_icon30x30.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1680px -60px; +} + +.power_icon30x30.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1680px 0; +} + +.power_icon30x30.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1710px -30px; +} + +.power_icon30x30.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1710px -60px; +} + +.power_icon30x30.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1710px 0; +} + +.power_icon30x30.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1740px -30px; +} + +.power_icon30x30.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1740px -60px; +} + +.power_icon30x30.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1740px 0; +} + +.power_icon30x30.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1770px -30px; +} + +.power_icon30x30.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1770px -60px; +} + +.power_icon30x30.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1770px 0; +} + +.power_icon30x30.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1800px -30px; +} + +.power_icon30x30.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1800px -60px; +} + +.power_icon30x30.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1800px 0; +} + +.power_icon30x30.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1830px -30px; +} + +.power_icon30x30.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1830px -60px; +} + +.power_icon30x30.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1830px 0; +} + +.power_icon30x30.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1860px -30px; +} + +.power_icon30x30.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1860px -60px; +} + +.power_icon30x30.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1860px 0; +} + +.power_icon30x30.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1890px -30px; +} + +.power_icon30x30.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1890px -60px; +} + +.power_icon30x30.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1890px 0; +} + +.power_icon30x30.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1920px -30px; +} + +.power_icon30x30.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1920px -60px; +} + +.power_icon30x30.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1920px 0; +} + +.power_icon30x30.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1950px -30px; +} + +.power_icon30x30.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1950px -60px; +} + +.power_icon30x30.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1950px 0; +} + +.power_icon30x30.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1980px -30px; +} + +.power_icon30x30.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1980px -60px; +} + +.power_icon30x30.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1980px 0; +} + +.power_icon30x30.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2010px -30px; +} + +.power_icon30x30.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2010px -60px; +} + +.power_icon30x30.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2010px 0; +} + +.power_icon30x30.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2040px -30px; +} + +.power_icon30x30.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2040px -60px; +} + +.power_icon30x30.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2040px 0; +} + +.power_icon30x30.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2070px -30px; +} + +.power_icon30x30.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2070px -60px; +} + +.power_icon30x30.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2070px 0; +} + +.power_icon30x30.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2100px -30px; +} + +.power_icon30x30.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2100px -60px; +} + +.power_icon30x30.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2100px 0; +} + +.power_icon30x30.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2130px -30px; +} + +.power_icon30x30.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2130px -60px; +} + +.power_icon30x30.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2130px 0; +} + +.power_icon30x30.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2160px -30px; +} + +.power_icon30x30.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2160px -60px; +} + +.power_icon30x30.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2160px 0; +} + +.power_icon30x30.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2190px -30px; +} + +.power_icon30x30.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2190px -60px; +} + +.power_icon30x30.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2190px 0; +} + +.power_icon30x30.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2220px -30px; +} + +.power_icon30x30.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2220px -60px; +} + +.power_icon30x30.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2220px 0; +} + +.power_icon30x30.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2250px -30px; +} + +.power_icon30x30.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2250px -60px; +} + +.power_icon30x30.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2250px 0; +} + +.power_icon30x30.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2280px -30px; +} + +.power_icon30x30.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2280px -60px; +} + +.power_icon30x30.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2280px 0; +} + +.power_icon30x30.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2310px -30px; +} + +.power_icon30x30.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2310px -60px; +} + +.power_icon30x30.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2310px 0; +} + +.power_icon30x30.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2340px -30px; +} + +.power_icon30x30.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2340px -60px; +} + +.power_icon30x30.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2340px 0; +} + +.power_icon30x30.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2370px -30px; +} + +.power_icon30x30.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2370px -60px; +} + +.power_icon30x30.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2370px 0; +} + +.power_icon30x30.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2400px -30px; +} + +.power_icon30x30.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2400px -60px; +} + +.power_icon30x30.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2400px 0; +} + +.power_icon30x30.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2430px -30px; +} + +.power_icon30x30.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2430px -60px; +} + +.power_icon30x30.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2430px 0; +} + +.power_icon30x30.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2460px -30px; +} + +.power_icon30x30.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2460px -60px; +} + +.power_icon30x30.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2460px 0; +} + +.power_icon30x30.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2490px -30px; +} + +.power_icon30x30.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2490px -60px; +} + +.power_icon30x30.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2490px 0; +} + +.power_icon30x30.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2520px -30px; +} + +.power_icon30x30.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2520px -60px; +} + +.power_icon30x30.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2520px 0; +} + +.power_icon30x30.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2550px -30px; +} + +.power_icon30x30.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2550px -60px; +} + +.power_icon30x30.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2550px 0; +} + +.power_icon30x30.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2580px -30px; +} + +.power_icon30x30.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2580px -60px; +} + +.power_icon30x30.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2580px 0; +} + +.power_icon30x30.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2610px -30px; +} + +.power_icon30x30.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2610px -60px; +} + +.power_icon30x30.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2610px 0; +} + +.power_icon30x30.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2640px -30px; +} + +.power_icon30x30.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2640px -60px; +} + +.power_icon30x30.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2640px 0; +} + +.power_icon30x30.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2670px -30px; +} + +.power_icon30x30.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2670px -60px; +} + +.power_icon30x30.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2670px 0; +} + +.power_icon30x30.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2700px -30px; +} + +.power_icon30x30.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2700px -60px; +} + +.power_icon30x30.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2700px 0; +} + +.power_icon30x30.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2730px -30px; +} + +.power_icon30x30.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2730px -60px; +} + +.power_icon30x30.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2730px 0; +} + +.power_icon30x30.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2760px -30px; +} + +.power_icon30x30.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2760px -60px; +} + +.power_icon30x30.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2760px 0; +} + +.power_icon30x30.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2790px -30px; +} + +.power_icon30x30.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2790px -60px; +} + +.power_icon30x30.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2790px 0; +} + +.power_icon30x30.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2820px -30px; +} + +.power_icon30x30.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2820px -60px; +} + +.power_icon30x30.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2820px 0; +} + +.power_icon30x30.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2850px -30px; +} + +.power_icon30x30.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2850px -60px; +} + +.power_icon30x30.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2850px 0; +} + +.power_icon30x30.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2880px -30px; +} + +.power_icon30x30.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2880px -60px; +} + +.power_icon30x30.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2880px 0; +} + +.power_icon30x30.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2910px -30px; +} + +.power_icon30x30.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2910px -60px; +} + +.power_icon30x30.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2910px 0; +} + +.power_icon30x30.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2940px -30px; +} + +.power_icon30x30.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2940px -60px; +} + +.power_icon30x30.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2940px 0; +} + +.power_icon30x30.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2970px -30px; +} + +.power_icon30x30.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2970px -60px; +} + +.power_icon30x30.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2970px 0; +} + +.power_icon30x30.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3000px -30px; +} + +.power_icon30x30.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3000px -60px; +} + +.power_icon30x30.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3000px 0; +} + +.power_icon30x30.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3030px -30px; +} + +.power_icon30x30.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3030px -60px; +} + +.power_icon30x30.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3030px 0; +} + +.power_icon30x30.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3060px -30px; +} + +.power_icon30x30.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3060px -60px; +} + +.power_icon30x30.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3060px 0; +} + +.power_icon30x30.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3090px -30px; +} + +.power_icon30x30.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3090px -60px; +} + +.power_icon30x30.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3090px 0; +} + +.power_icon30x30.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3120px -30px; +} + +.power_icon30x30.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3120px -60px; +} + +.power_icon30x30.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3120px 0; +} + +.power_icon30x30.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3150px -30px; +} + +.power_icon30x30.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3150px -60px; +} + +.power_icon30x30.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3150px 0; +} + +.power_icon30x30.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3180px -30px; +} + +.power_icon30x30.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3180px -60px; +} + +.power_icon30x30.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3180px 0; +} + +.power_icon30x30.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3210px -30px; +} + +.power_icon30x30.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3210px -60px; +} + +.power_icon30x30.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3210px 0; +} + +.power_icon30x30.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3240px -30px; +} + +.power_icon30x30.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3240px -60px; +} + +.power_icon30x30.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3240px 0; +} + +.power_icon30x30.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3270px -30px; +} + +.power_icon30x30.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3270px -60px; +} + +.power_icon30x30.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3270px 0; +} + +.power_icon30x30.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3300px -30px; +} + +.power_icon30x30.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3300px -60px; +} + +.power_icon30x30.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3300px 0; +} + +.power_icon30x30.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3330px -30px; +} + +.power_icon30x30.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3330px -60px; +} + +.power_icon30x30.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3330px 0; +} + +.power_icon30x30.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3360px -30px; +} + +.power_icon30x30.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3360px -60px; +} + +.power_icon30x30.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3360px 0; +} + +.power_icon30x30.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3390px -30px; +} + +.power_icon30x30.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3390px -60px; +} + +.power_icon30x30.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3390px 0; +} + +.power_icon30x30.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3420px -30px; +} + +.power_icon30x30.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3420px -60px; +} + +.power_icon30x30.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3420px 0; +} + +.power_icon30x30.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3450px -30px; +} + +.power_icon30x30.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3450px -60px; +} + +.power_icon30x30.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3450px 0; +} + +.power_icon30x30.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3480px -30px; +} + +.power_icon30x30.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3480px -60px; +} + +.power_icon30x30.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3480px 0; +} + +.power_icon30x30.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3510px -30px; +} + +.power_icon30x30.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3510px -60px; +} + +.power_icon30x30.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3510px 0; +} + +.power_icon30x30.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3540px -30px; +} + +.power_icon30x30.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3540px -60px; +} + +.power_icon30x30.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3540px 0; +} + +.power_icon30x30.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3570px -30px; +} + +.power_icon30x30.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3570px -60px; +} + +.power_icon30x30.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3570px 0; +} + +.power_icon30x30.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3600px -30px; +} + +.power_icon30x30.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3600px -60px; +} + +.power_icon30x30.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3600px 0; +} + +.power_icon30x30.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3630px -30px; +} + +.power_icon30x30.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3630px -60px; +} + +.power_icon30x30.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3630px 0; +} + +.power_icon30x30.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3660px -30px; +} + +.power_icon30x30.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3660px -60px; +} + +.power_icon30x30.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3660px 0; +} + +.power_icon30x30.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3690px -30px; +} + +.power_icon30x30.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3690px -60px; +} + +.power_icon30x30.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3690px 0; +} + +.power_icon30x30.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3720px -30px; +} + +.power_icon30x30.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3720px -60px; +} + +.power_icon30x30.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3720px 0; +} + +.power_icon30x30.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3750px -30px; +} + +.power_icon30x30.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3750px -60px; +} + +.power_icon30x30.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3750px 0; +} + +.power_icon30x30.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3780px -30px; +} + +.power_icon30x30.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3780px -60px; +} + +.power_icon30x30.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3780px 0; +} + +.power_icon30x30.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3810px -30px; +} + +.power_icon30x30.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3810px -60px; +} + +.power_icon30x30.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3810px 0; +} + +.power_icon30x30.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3840px -30px; +} + +.power_icon30x30.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3840px -60px; +} + +.power_icon30x30.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3840px 0; +} + +.power_icon30x30.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3870px -30px; +} + +.power_icon30x30.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3870px -60px; +} + +.power_icon30x30.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3870px 0; +} + +.power_icon30x30.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3900px -30px; +} + +.power_icon30x30.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3900px -60px; +} + +.power_icon30x30.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3900px 0; +} + +.power_icon30x30.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3930px -30px; +} + +.power_icon30x30.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3930px -60px; +} + +.power_icon30x30.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3930px 0; +} + +.power_icon30x30.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3960px -30px; +} + +.power_icon30x30.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3960px -60px; +} + +.power_icon30x30.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3960px 0; +} + +.power_icon30x30.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3990px -30px; +} + +.power_icon30x30.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3990px -60px; +} + +.power_icon30x30.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3990px 0; +} + +.power_icon30x30.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4020px -30px; +} + +.power_icon30x30.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4020px -60px; +} + +.power_icon30x30.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4020px 0; +} + +.power_icon30x30.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4050px -30px; +} + +.power_icon30x30.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4050px -60px; +} + +.power_icon30x30.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4050px 0; +} + +.power_icon30x30.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4080px -30px; +} + +.power_icon30x30.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4080px -60px; +} + +.power_icon30x30.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4080px 0; +} + +.power_icon30x30.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4110px -30px; +} + +.power_icon30x30.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4110px -60px; +} + +.power_icon30x30.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4110px 0; +} + +.power_icon30x30.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4140px -30px; +} + +.power_icon30x30.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4140px -60px; +} + +.power_icon30x30.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4140px 0; +} + +.power_icon30x30.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4170px -30px; +} + +.power_icon30x30.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4170px -60px; +} + +.power_icon30x30.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4170px 0; +} + +.power_icon30x30.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4200px -30px; +} + +.power_icon30x30.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4200px -60px; +} + +.power_icon30x30.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4200px 0; +} + +.power_icon30x30.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4230px -30px; +} + +.power_icon30x30.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4230px -60px; +} + +.power_icon30x30.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4230px 0; +} + +.power_icon30x30.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4260px -30px; +} + +.power_icon30x30.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4260px -60px; +} + +.power_icon30x30.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4260px 0; +} + +.power_icon30x30.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4290px -30px; +} + +.power_icon30x30.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4290px -60px; +} + +.power_icon30x30.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4290px 0; +} + +.power_icon30x30.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4320px -30px; +} + +.power_icon30x30.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4320px -60px; +} + +.power_icon30x30.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4320px 0; +} + +.power_icon30x30.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4350px -30px; +} + +.power_icon30x30.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4350px -60px; +} + +.power_icon30x30.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4350px 0; +} + +.power_icon30x30.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4380px -30px; +} + +.power_icon30x30.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4380px -60px; +} + +.power_icon30x30.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4380px 0; +} + +.power_icon30x30.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4410px -30px; +} + +.power_icon30x30.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4410px -60px; +} + +.power_icon30x30.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4410px 0; +} + +.power_icon30x30.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4440px -30px; +} + +.power_icon30x30.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4440px -60px; +} + +.power_icon30x30.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4440px 0; +} + +.power_icon30x30.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4470px -30px; +} + +.power_icon30x30.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4470px -60px; +} + +.power_icon30x30.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4470px 0; +} + +.power_icon30x30.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4500px -30px; +} + +.power_icon30x30.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4500px -60px; +} + +.power_icon30x30.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4500px 0; +} + +.power_icon30x30.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4530px -30px; +} + +.power_icon30x30.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4530px -60px; +} + +.power_icon30x30.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4530px 0; +} + +.power_icon30x30.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4560px -30px; +} + +.power_icon30x30.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4560px -60px; +} + +.power_icon30x30.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4560px 0; +} + +.power_icon30x30.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4590px -30px; +} + +.power_icon30x30.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4590px -60px; +} + +.power_icon30x30.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4590px 0; +} + +.power_icon30x30.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4620px -30px; +} + +.power_icon30x30.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4620px -60px; +} + +.power_icon30x30.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4620px 0; +} + +.power_icon45x45 { + width: 45px; + height: 45px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon45x45.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat 0 -45px; +} + +.power_icon45x45.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat 0 -90px; +} + +.power_icon45x45.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat 0 0; +} + +.power_icon45x45.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -45px -45px; +} + +.power_icon45x45.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -45px -90px; +} + +.power_icon45x45.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -45px 0; +} + +.power_icon45x45.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -90px -45px; +} + +.power_icon45x45.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -90px -90px; +} + +.power_icon45x45.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -90px 0; +} + +.power_icon45x45.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -135px -45px; +} + +.power_icon45x45.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -135px -90px; +} + +.power_icon45x45.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -135px 0; +} + +.power_icon45x45.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -180px -45px; +} + +.power_icon45x45.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -180px -90px; +} + +.power_icon45x45.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -180px 0; +} + +.power_icon45x45.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -225px -45px; +} + +.power_icon45x45.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -225px -90px; +} + +.power_icon45x45.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -225px 0; +} + +.power_icon45x45.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -270px -45px; +} + +.power_icon45x45.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -270px -90px; +} + +.power_icon45x45.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -270px 0; +} + +.power_icon45x45.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -315px -45px; +} + +.power_icon45x45.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -315px -90px; +} + +.power_icon45x45.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -315px 0; +} + +.power_icon45x45.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -360px -45px; +} + +.power_icon45x45.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -360px -90px; +} + +.power_icon45x45.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -360px 0; +} + +.power_icon45x45.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -405px -45px; +} + +.power_icon45x45.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -405px -90px; +} + +.power_icon45x45.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -405px 0; +} + +.power_icon45x45.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -450px -45px; +} + +.power_icon45x45.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -450px -90px; +} + +.power_icon45x45.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -450px 0; +} + +.power_icon45x45.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -495px -45px; +} + +.power_icon45x45.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -495px -90px; +} + +.power_icon45x45.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -495px 0; +} + +.power_icon45x45.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -540px -45px; +} + +.power_icon45x45.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -540px -90px; +} + +.power_icon45x45.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -540px 0; +} + +.power_icon45x45.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -585px -45px; +} + +.power_icon45x45.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -585px -90px; +} + +.power_icon45x45.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -585px 0; +} + +.power_icon45x45.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -630px -45px; +} + +.power_icon45x45.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -630px -90px; +} + +.power_icon45x45.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -630px 0; +} + +.power_icon45x45.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -675px -45px; +} + +.power_icon45x45.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -675px -90px; +} + +.power_icon45x45.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -675px 0; +} + +.power_icon45x45.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -720px -45px; +} + +.power_icon45x45.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -720px -90px; +} + +.power_icon45x45.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -720px 0; +} + +.power_icon45x45.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -765px -45px; +} + +.power_icon45x45.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -765px -90px; +} + +.power_icon45x45.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -765px 0; +} + +.power_icon45x45.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -810px -45px; +} + +.power_icon45x45.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -810px -90px; +} + +.power_icon45x45.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -810px 0; +} + +.power_icon45x45.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -855px -45px; +} + +.power_icon45x45.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -855px -90px; +} + +.power_icon45x45.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -855px 0; +} + +.power_icon45x45.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -900px -45px; +} + +.power_icon45x45.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -900px -90px; +} + +.power_icon45x45.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -900px 0; +} + +.power_icon45x45.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -945px -45px; +} + +.power_icon45x45.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -945px -90px; +} + +.power_icon45x45.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -945px 0; +} + +.power_icon45x45.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -990px -45px; +} + +.power_icon45x45.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -990px -90px; +} + +.power_icon45x45.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -990px 0; +} + +.power_icon45x45.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1035px -45px; +} + +.power_icon45x45.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1035px -90px; +} + +.power_icon45x45.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1035px 0; +} + +.power_icon45x45.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1080px -45px; +} + +.power_icon45x45.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1080px -90px; +} + +.power_icon45x45.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1080px 0; +} + +.power_icon45x45.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1125px -45px; +} + +.power_icon45x45.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1125px -90px; +} + +.power_icon45x45.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1125px 0; +} + +.power_icon45x45.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1170px -45px; +} + +.power_icon45x45.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1170px -90px; +} + +.power_icon45x45.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1170px 0; +} + +.power_icon45x45.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1215px -45px; +} + +.power_icon45x45.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1215px -90px; +} + +.power_icon45x45.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1215px 0; +} + +.power_icon45x45.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1260px -45px; +} + +.power_icon45x45.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1260px -90px; +} + +.power_icon45x45.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1260px 0; +} + +.power_icon45x45.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1305px -45px; +} + +.power_icon45x45.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1305px -90px; +} + +.power_icon45x45.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1305px 0; +} + +.power_icon45x45.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1350px -45px; +} + +.power_icon45x45.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1350px -90px; +} + +.power_icon45x45.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1350px 0; +} + +.power_icon45x45.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1395px -45px; +} + +.power_icon45x45.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1395px -90px; +} + +.power_icon45x45.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1395px 0; +} + +.power_icon45x45.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1440px -45px; +} + +.power_icon45x45.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1440px -90px; +} + +.power_icon45x45.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1440px 0; +} + +.power_icon45x45.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1485px -45px; +} + +.power_icon45x45.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1485px -90px; +} + +.power_icon45x45.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1485px 0; +} + +.power_icon45x45.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1530px -45px; +} + +.power_icon45x45.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1530px -90px; +} + +.power_icon45x45.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1530px 0; +} + +.power_icon45x45.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1575px -45px; +} + +.power_icon45x45.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1575px -90px; +} + +.power_icon45x45.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1575px 0; +} + +.power_icon45x45.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1620px -45px; +} + +.power_icon45x45.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1620px -90px; +} + +.power_icon45x45.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1620px 0; +} + +.power_icon45x45.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1665px -45px; +} + +.power_icon45x45.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1665px -90px; +} + +.power_icon45x45.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1665px 0; +} + +.power_icon45x45.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1710px -45px; +} + +.power_icon45x45.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1710px -90px; +} + +.power_icon45x45.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1710px 0; +} + +.power_icon45x45.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1755px -45px; +} + +.power_icon45x45.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1755px -90px; +} + +.power_icon45x45.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1755px 0; +} + +.power_icon45x45.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1800px -45px; +} + +.power_icon45x45.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1800px -90px; +} + +.power_icon45x45.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1800px 0; +} + +.power_icon45x45.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1845px -45px; +} + +.power_icon45x45.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1845px -90px; +} + +.power_icon45x45.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1845px 0; +} + +.power_icon45x45.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1890px -45px; +} + +.power_icon45x45.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1890px -90px; +} + +.power_icon45x45.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1890px 0; +} + +.power_icon45x45.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1935px -45px; +} + +.power_icon45x45.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1935px -90px; +} + +.power_icon45x45.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1935px 0; +} + +.power_icon45x45.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1980px -45px; +} + +.power_icon45x45.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1980px -90px; +} + +.power_icon45x45.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1980px 0; +} + +.power_icon45x45.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2025px -45px; +} + +.power_icon45x45.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2025px -90px; +} + +.power_icon45x45.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2025px 0; +} + +.power_icon45x45.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2070px -45px; +} + +.power_icon45x45.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2070px -90px; +} + +.power_icon45x45.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2070px 0; +} + +.power_icon45x45.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2115px -45px; +} + +.power_icon45x45.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2115px -90px; +} + +.power_icon45x45.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2115px 0; +} + +.power_icon45x45.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2160px -45px; +} + +.power_icon45x45.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2160px -90px; +} + +.power_icon45x45.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2160px 0; +} + +.power_icon45x45.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2205px -45px; +} + +.power_icon45x45.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2205px -90px; +} + +.power_icon45x45.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2205px 0; +} + +.power_icon45x45.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2250px -45px; +} + +.power_icon45x45.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2250px -90px; +} + +.power_icon45x45.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2250px 0; +} + +.power_icon45x45.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2295px -45px; +} + +.power_icon45x45.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2295px -90px; +} + +.power_icon45x45.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2295px 0; +} + +.power_icon45x45.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2340px -45px; +} + +.power_icon45x45.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2340px -90px; +} + +.power_icon45x45.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2340px 0; +} + +.power_icon45x45.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2385px -45px; +} + +.power_icon45x45.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2385px -90px; +} + +.power_icon45x45.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2385px 0; +} + +.power_icon45x45.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2430px -45px; +} + +.power_icon45x45.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2430px -90px; +} + +.power_icon45x45.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2430px 0; +} + +.power_icon45x45.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2475px -45px; +} + +.power_icon45x45.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2475px -90px; +} + +.power_icon45x45.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2475px 0; +} + +.power_icon45x45.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2520px -45px; +} + +.power_icon45x45.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2520px -90px; +} + +.power_icon45x45.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2520px 0; +} + +.power_icon45x45.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2565px -45px; +} + +.power_icon45x45.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2565px -90px; +} + +.power_icon45x45.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2565px 0; +} + +.power_icon45x45.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2610px -45px; +} + +.power_icon45x45.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2610px -90px; +} + +.power_icon45x45.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2610px 0; +} + +.power_icon45x45.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2655px -45px; +} + +.power_icon45x45.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2655px -90px; +} + +.power_icon45x45.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2655px 0; +} + +.power_icon45x45.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2700px -45px; +} + +.power_icon45x45.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2700px -90px; +} + +.power_icon45x45.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2700px 0; +} + +.power_icon45x45.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2745px -45px; +} + +.power_icon45x45.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2745px -90px; +} + +.power_icon45x45.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2745px 0; +} + +.power_icon45x45.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2790px -45px; +} + +.power_icon45x45.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2790px -90px; +} + +.power_icon45x45.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2790px 0; +} + +.power_icon45x45.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2835px -45px; +} + +.power_icon45x45.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2835px -90px; +} + +.power_icon45x45.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2835px 0; +} + +.power_icon45x45.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2880px -45px; +} + +.power_icon45x45.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2880px -90px; +} + +.power_icon45x45.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2880px 0; +} + +.power_icon45x45.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2925px -45px; +} + +.power_icon45x45.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2925px -90px; +} + +.power_icon45x45.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2925px 0; +} + +.power_icon45x45.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2970px -45px; +} + +.power_icon45x45.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2970px -90px; +} + +.power_icon45x45.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2970px 0; +} + +.power_icon45x45.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3015px -45px; +} + +.power_icon45x45.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3015px -90px; +} + +.power_icon45x45.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3015px 0; +} + +.power_icon45x45.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3060px -45px; +} + +.power_icon45x45.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3060px -90px; +} + +.power_icon45x45.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3060px 0; +} + +.power_icon45x45.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3105px -45px; +} + +.power_icon45x45.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3105px -90px; +} + +.power_icon45x45.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3105px 0; +} + +.power_icon45x45.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3150px -45px; +} + +.power_icon45x45.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3150px -90px; +} + +.power_icon45x45.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3150px 0; +} + +.power_icon45x45.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3195px -45px; +} + +.power_icon45x45.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3195px -90px; +} + +.power_icon45x45.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3195px 0; +} + +.power_icon45x45.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3240px -45px; +} + +.power_icon45x45.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3240px -90px; +} + +.power_icon45x45.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3240px 0; +} + +.power_icon45x45.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3285px -45px; +} + +.power_icon45x45.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3285px -90px; +} + +.power_icon45x45.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3285px 0; +} + +.power_icon45x45.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3330px -45px; +} + +.power_icon45x45.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3330px -90px; +} + +.power_icon45x45.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3330px 0; +} + +.power_icon45x45.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3375px -45px; +} + +.power_icon45x45.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3375px -90px; +} + +.power_icon45x45.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3375px 0; +} + +.power_icon45x45.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3420px -45px; +} + +.power_icon45x45.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3420px -90px; +} + +.power_icon45x45.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3420px 0; +} + +.power_icon45x45.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3465px -45px; +} + +.power_icon45x45.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3465px -90px; +} + +.power_icon45x45.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3465px 0; +} + +.power_icon45x45.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3510px -45px; +} + +.power_icon45x45.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3510px -90px; +} + +.power_icon45x45.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3510px 0; +} + +.power_icon45x45.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3555px -45px; +} + +.power_icon45x45.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3555px -90px; +} + +.power_icon45x45.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3555px 0; +} + +.power_icon45x45.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3600px -45px; +} + +.power_icon45x45.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3600px -90px; +} + +.power_icon45x45.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3600px 0; +} + +.power_icon45x45.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3645px -45px; +} + +.power_icon45x45.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3645px -90px; +} + +.power_icon45x45.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3645px 0; +} + +.power_icon45x45.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3690px -45px; +} + +.power_icon45x45.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3690px -90px; +} + +.power_icon45x45.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3690px 0; +} + +.power_icon45x45.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3735px -45px; +} + +.power_icon45x45.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3735px -90px; +} + +.power_icon45x45.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3735px 0; +} + +.power_icon45x45.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3780px -45px; +} + +.power_icon45x45.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3780px -90px; +} + +.power_icon45x45.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3780px 0; +} + +.power_icon45x45.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3825px -45px; +} + +.power_icon45x45.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3825px -90px; +} + +.power_icon45x45.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3825px 0; +} + +.power_icon45x45.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3870px -45px; +} + +.power_icon45x45.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3870px -90px; +} + +.power_icon45x45.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3870px 0; +} + +.power_icon45x45.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3915px -45px; +} + +.power_icon45x45.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3915px -90px; +} + +.power_icon45x45.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3915px 0; +} + +.power_icon45x45.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3960px -45px; +} + +.power_icon45x45.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3960px -90px; +} + +.power_icon45x45.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3960px 0; +} + +.power_icon45x45.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4005px -45px; +} + +.power_icon45x45.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4005px -90px; +} + +.power_icon45x45.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4005px 0; +} + +.power_icon45x45.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4050px -45px; +} + +.power_icon45x45.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4050px -90px; +} + +.power_icon45x45.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4050px 0; +} + +.power_icon45x45.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4095px -45px; +} + +.power_icon45x45.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4095px -90px; +} + +.power_icon45x45.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4095px 0; +} + +.power_icon45x45.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4140px -45px; +} + +.power_icon45x45.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4140px -90px; +} + +.power_icon45x45.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4140px 0; +} + +.power_icon45x45.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4185px -45px; +} + +.power_icon45x45.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4185px -90px; +} + +.power_icon45x45.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4185px 0; +} + +.power_icon45x45.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4230px -45px; +} + +.power_icon45x45.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4230px -90px; +} + +.power_icon45x45.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4230px 0; +} + +.power_icon45x45.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4275px -45px; +} + +.power_icon45x45.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4275px -90px; +} + +.power_icon45x45.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4275px 0; +} + +.power_icon45x45.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4320px -45px; +} + +.power_icon45x45.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4320px -90px; +} + +.power_icon45x45.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4320px 0; +} + +.power_icon45x45.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4365px -45px; +} + +.power_icon45x45.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4365px -90px; +} + +.power_icon45x45.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4365px 0; +} + +.power_icon45x45.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4410px -45px; +} + +.power_icon45x45.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4410px -90px; +} + +.power_icon45x45.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4410px 0; +} + +.power_icon45x45.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4455px -45px; +} + +.power_icon45x45.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4455px -90px; +} + +.power_icon45x45.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4455px 0; +} + +.power_icon45x45.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4500px -45px; +} + +.power_icon45x45.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4500px -90px; +} + +.power_icon45x45.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4500px 0; +} + +.power_icon45x45.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4545px -45px; +} + +.power_icon45x45.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4545px -90px; +} + +.power_icon45x45.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4545px 0; +} + +.power_icon45x45.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4590px -45px; +} + +.power_icon45x45.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4590px -90px; +} + +.power_icon45x45.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4590px 0; +} + +.power_icon45x45.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4635px -45px; +} + +.power_icon45x45.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4635px -90px; +} + +.power_icon45x45.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4635px 0; +} + +.power_icon45x45.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4680px -45px; +} + +.power_icon45x45.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4680px -90px; +} + +.power_icon45x45.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4680px 0; +} + +.power_icon45x45.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4725px -45px; +} + +.power_icon45x45.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4725px -90px; +} + +.power_icon45x45.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4725px 0; +} + +.power_icon45x45.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4770px -45px; +} + +.power_icon45x45.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4770px -90px; +} + +.power_icon45x45.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4770px 0; +} + +.power_icon45x45.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4815px -45px; +} + +.power_icon45x45.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4815px -90px; +} + +.power_icon45x45.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4815px 0; +} + +.power_icon45x45.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4860px -45px; +} + +.power_icon45x45.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4860px -90px; +} + +.power_icon45x45.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4860px 0; +} + +.power_icon45x45.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4905px -45px; +} + +.power_icon45x45.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4905px -90px; +} + +.power_icon45x45.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4905px 0; +} + +.power_icon45x45.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4950px -45px; +} + +.power_icon45x45.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4950px -90px; +} + +.power_icon45x45.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4950px 0; +} + +.power_icon45x45.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4995px -45px; +} + +.power_icon45x45.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4995px -90px; +} + +.power_icon45x45.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4995px 0; +} + +.power_icon45x45.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5040px -45px; +} + +.power_icon45x45.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5040px -90px; +} + +.power_icon45x45.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5040px 0; +} + +.power_icon45x45.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5085px -45px; +} + +.power_icon45x45.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5085px -90px; +} + +.power_icon45x45.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5085px 0; +} + +.power_icon45x45.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5130px -45px; +} + +.power_icon45x45.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5130px -90px; +} + +.power_icon45x45.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5130px 0; +} + +.power_icon45x45.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5175px -45px; +} + +.power_icon45x45.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5175px -90px; +} + +.power_icon45x45.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5175px 0; +} + +.power_icon45x45.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5220px -45px; +} + +.power_icon45x45.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5220px -90px; +} + +.power_icon45x45.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5220px 0; +} + +.power_icon45x45.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5265px -45px; +} + +.power_icon45x45.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5265px -90px; +} + +.power_icon45x45.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5265px 0; +} + +.power_icon45x45.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5310px -45px; +} + +.power_icon45x45.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5310px -90px; +} + +.power_icon45x45.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5310px 0; +} + +.power_icon45x45.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5355px -45px; +} + +.power_icon45x45.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5355px -90px; +} + +.power_icon45x45.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5355px 0; +} + +.power_icon45x45.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5400px -45px; +} + +.power_icon45x45.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5400px -90px; +} + +.power_icon45x45.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5400px 0; +} + +.power_icon45x45.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5445px -45px; +} + +.power_icon45x45.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5445px -90px; +} + +.power_icon45x45.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5445px 0; +} + +.power_icon45x45.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5490px -45px; +} + +.power_icon45x45.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5490px -90px; +} + +.power_icon45x45.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5490px 0; +} + +.power_icon45x45.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5535px -45px; +} + +.power_icon45x45.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5535px -90px; +} + +.power_icon45x45.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5535px 0; +} + +.power_icon45x45.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5580px -45px; +} + +.power_icon45x45.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5580px -90px; +} + +.power_icon45x45.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5580px 0; +} + +.power_icon45x45.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5625px -45px; +} + +.power_icon45x45.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5625px -90px; +} + +.power_icon45x45.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5625px 0; +} + +.power_icon45x45.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5670px -45px; +} + +.power_icon45x45.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5670px -90px; +} + +.power_icon45x45.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5670px 0; +} + +.power_icon45x45.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5715px -45px; +} + +.power_icon45x45.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5715px -90px; +} + +.power_icon45x45.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5715px 0; +} + +.power_icon45x45.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5760px -45px; +} + +.power_icon45x45.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5760px -90px; +} + +.power_icon45x45.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5760px 0; +} + +.power_icon45x45.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5805px -45px; +} + +.power_icon45x45.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5805px -90px; +} + +.power_icon45x45.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5805px 0; +} + +.power_icon45x45.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5850px -45px; +} + +.power_icon45x45.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5850px -90px; +} + +.power_icon45x45.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5850px 0; +} + +.power_icon45x45.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5895px -45px; +} + +.power_icon45x45.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5895px -90px; +} + +.power_icon45x45.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5895px 0; +} + +.power_icon45x45.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5940px -45px; +} + +.power_icon45x45.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5940px -90px; +} + +.power_icon45x45.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5940px 0; +} + +.power_icon45x45.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5985px -45px; +} + +.power_icon45x45.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5985px -90px; +} + +.power_icon45x45.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5985px 0; +} + +.power_icon45x45.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6030px -45px; +} + +.power_icon45x45.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6030px -90px; +} + +.power_icon45x45.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6030px 0; +} + +.power_icon45x45.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6075px -45px; +} + +.power_icon45x45.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6075px -90px; +} + +.power_icon45x45.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6075px 0; +} + +.power_icon45x45.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6120px -45px; +} + +.power_icon45x45.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6120px -90px; +} + +.power_icon45x45.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6120px 0; +} + +.power_icon45x45.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6165px -45px; +} + +.power_icon45x45.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6165px -90px; +} + +.power_icon45x45.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6165px 0; +} + +.power_icon45x45.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6210px -45px; +} + +.power_icon45x45.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6210px -90px; +} + +.power_icon45x45.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6210px 0; +} + +.power_icon45x45.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6255px -45px; +} + +.power_icon45x45.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6255px -90px; +} + +.power_icon45x45.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6255px 0; +} + +.power_icon45x45.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6300px -45px; +} + +.power_icon45x45.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6300px -90px; +} + +.power_icon45x45.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6300px 0; +} + +.power_icon45x45.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6345px -45px; +} + +.power_icon45x45.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6345px -90px; +} + +.power_icon45x45.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6345px 0; +} + +.power_icon45x45.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6390px -45px; +} + +.power_icon45x45.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6390px -90px; +} + +.power_icon45x45.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6390px 0; +} + +.power_icon45x45.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6435px -45px; +} + +.power_icon45x45.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6435px -90px; +} + +.power_icon45x45.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6435px 0; +} + +.power_icon45x45.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6480px -45px; +} + +.power_icon45x45.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6480px -90px; +} + +.power_icon45x45.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6480px 0; +} + +.power_icon45x45.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6525px -45px; +} + +.power_icon45x45.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6525px -90px; +} + +.power_icon45x45.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6525px 0; +} + +.power_icon45x45.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6570px -45px; +} + +.power_icon45x45.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6570px -90px; +} + +.power_icon45x45.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6570px 0; +} + +.power_icon45x45.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6615px -45px; +} + +.power_icon45x45.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6615px -90px; +} + +.power_icon45x45.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6615px 0; +} + +.power_icon45x45.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6660px -45px; +} + +.power_icon45x45.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6660px -90px; +} + +.power_icon45x45.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6660px 0; +} + +.power_icon45x45.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6705px -45px; +} + +.power_icon45x45.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6705px -90px; +} + +.power_icon45x45.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6705px 0; +} + +.power_icon45x45.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6750px -45px; +} + +.power_icon45x45.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6750px -90px; +} + +.power_icon45x45.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6750px 0; +} + +.power_icon45x45.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6795px -45px; +} + +.power_icon45x45.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6795px -90px; +} + +.power_icon45x45.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6795px 0; +} + +.power_icon45x45.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6840px -45px; +} + +.power_icon45x45.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6840px -90px; +} + +.power_icon45x45.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6840px 0; +} + +.power_icon45x45.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6885px -45px; +} + +.power_icon45x45.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6885px -90px; +} + +.power_icon45x45.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6885px 0; +} + +.power_icon45x45.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6930px -45px; +} + +.power_icon45x45.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6930px -90px; +} + +.power_icon45x45.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6930px 0; +} + +.power_icon60x60 { + width: 60px; + height: 60px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon60x60.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat 0 -60px; +} + +.power_icon60x60.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat 0 -120px; +} + +.power_icon60x60.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat 0 0; +} + +.power_icon60x60.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -60px -60px; +} + +.power_icon60x60.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -60px -120px; +} + +.power_icon60x60.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -60px 0; +} + +.power_icon60x60.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -120px -60px; +} + +.power_icon60x60.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -120px -120px; +} + +.power_icon60x60.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -120px 0; +} + +.power_icon60x60.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -180px -60px; +} + +.power_icon60x60.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -180px -120px; +} + +.power_icon60x60.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -180px 0; +} + +.power_icon60x60.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -240px -60px; +} + +.power_icon60x60.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -240px -120px; +} + +.power_icon60x60.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -240px 0; +} + +.power_icon60x60.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -300px -60px; +} + +.power_icon60x60.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -300px -120px; +} + +.power_icon60x60.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -300px 0; +} + +.power_icon60x60.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -360px -60px; +} + +.power_icon60x60.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -360px -120px; +} + +.power_icon60x60.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -360px 0; +} + +.power_icon60x60.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -420px -60px; +} + +.power_icon60x60.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -420px -120px; +} + +.power_icon60x60.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -420px 0; +} + +.power_icon60x60.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -480px -60px; +} + +.power_icon60x60.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -480px -120px; +} + +.power_icon60x60.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -480px 0; +} + +.power_icon60x60.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -540px -60px; +} + +.power_icon60x60.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -540px -120px; +} + +.power_icon60x60.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -540px 0; +} + +.power_icon60x60.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -600px -60px; +} + +.power_icon60x60.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -600px -120px; +} + +.power_icon60x60.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -600px 0; +} + +.power_icon60x60.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -660px -60px; +} + +.power_icon60x60.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -660px -120px; +} + +.power_icon60x60.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -660px 0; +} + +.power_icon60x60.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -720px -60px; +} + +.power_icon60x60.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -720px -120px; +} + +.power_icon60x60.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -720px 0; +} + +.power_icon60x60.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -780px -60px; +} + +.power_icon60x60.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -780px -120px; +} + +.power_icon60x60.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -780px 0; +} + +.power_icon60x60.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -840px -60px; +} + +.power_icon60x60.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -840px -120px; +} + +.power_icon60x60.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -840px 0; +} + +.power_icon60x60.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -900px -60px; +} + +.power_icon60x60.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -900px -120px; +} + +.power_icon60x60.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -900px 0; +} + +.power_icon60x60.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -960px -60px; +} + +.power_icon60x60.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -960px -120px; +} + +.power_icon60x60.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -960px 0; +} + +.power_icon60x60.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1020px -60px; +} + +.power_icon60x60.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1020px -120px; +} + +.power_icon60x60.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1020px 0; +} + +.power_icon60x60.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1080px -60px; +} + +.power_icon60x60.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1080px -120px; +} + +.power_icon60x60.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1080px 0; +} + +.power_icon60x60.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1140px -60px; +} + +.power_icon60x60.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1140px -120px; +} + +.power_icon60x60.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1140px 0; +} + +.power_icon60x60.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1200px -60px; +} + +.power_icon60x60.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1200px -120px; +} + +.power_icon60x60.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1200px 0; +} + +.power_icon60x60.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1260px -60px; +} + +.power_icon60x60.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1260px -120px; +} + +.power_icon60x60.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1260px 0; +} + +.power_icon60x60.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1320px -60px; +} + +.power_icon60x60.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1320px -120px; +} + +.power_icon60x60.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1320px 0; +} + +.power_icon60x60.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1380px -60px; +} + +.power_icon60x60.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1380px -120px; +} + +.power_icon60x60.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1380px 0; +} + +.power_icon60x60.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1440px -60px; +} + +.power_icon60x60.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1440px -120px; +} + +.power_icon60x60.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1440px 0; +} + +.power_icon60x60.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1500px -60px; +} + +.power_icon60x60.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1500px -120px; +} + +.power_icon60x60.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1500px 0; +} + +.power_icon60x60.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1560px -60px; +} + +.power_icon60x60.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1560px -120px; +} + +.power_icon60x60.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1560px 0; +} + +.power_icon60x60.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1620px -60px; +} + +.power_icon60x60.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1620px -120px; +} + +.power_icon60x60.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1620px 0; +} + +.power_icon60x60.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1680px -60px; +} + +.power_icon60x60.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1680px -120px; +} + +.power_icon60x60.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1680px 0; +} + +.power_icon60x60.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1740px -60px; +} + +.power_icon60x60.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1740px -120px; +} + +.power_icon60x60.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1740px 0; +} + +.power_icon60x60.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1800px -60px; +} + +.power_icon60x60.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1800px -120px; +} + +.power_icon60x60.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1800px 0; +} + +.power_icon60x60.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1860px -60px; +} + +.power_icon60x60.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1860px -120px; +} + +.power_icon60x60.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1860px 0; +} + +.power_icon60x60.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1920px -60px; +} + +.power_icon60x60.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1920px -120px; +} + +.power_icon60x60.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1920px 0; +} + +.power_icon60x60.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1980px -60px; +} + +.power_icon60x60.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1980px -120px; +} + +.power_icon60x60.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -1980px 0; +} + +.power_icon60x60.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2040px -60px; +} + +.power_icon60x60.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2040px -120px; +} + +.power_icon60x60.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2040px 0; +} + +.power_icon60x60.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2100px -60px; +} + +.power_icon60x60.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2100px -120px; +} + +.power_icon60x60.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2100px 0; +} + +.power_icon60x60.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2160px -60px; +} + +.power_icon60x60.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2160px -120px; +} + +.power_icon60x60.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2160px 0; +} + +.power_icon60x60.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2220px -60px; +} + +.power_icon60x60.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2220px -120px; +} + +.power_icon60x60.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2220px 0; +} + +.power_icon60x60.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2280px -60px; +} + +.power_icon60x60.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2280px -120px; +} + +.power_icon60x60.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2280px 0; +} + +.power_icon60x60.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2340px -60px; +} + +.power_icon60x60.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2340px -120px; +} + +.power_icon60x60.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2340px 0; +} + +.power_icon60x60.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2400px -60px; +} + +.power_icon60x60.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2400px -120px; +} + +.power_icon60x60.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2400px 0; +} + +.power_icon60x60.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2460px -60px; +} + +.power_icon60x60.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2460px -120px; +} + +.power_icon60x60.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2460px 0; +} + +.power_icon60x60.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2520px -60px; +} + +.power_icon60x60.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2520px -120px; +} + +.power_icon60x60.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2520px 0; +} + +.power_icon60x60.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2580px -60px; +} + +.power_icon60x60.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2580px -120px; +} + +.power_icon60x60.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2580px 0; +} + +.power_icon60x60.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2640px -60px; +} + +.power_icon60x60.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2640px -120px; +} + +.power_icon60x60.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2640px 0; +} + +.power_icon60x60.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2700px -60px; +} + +.power_icon60x60.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2700px -120px; +} + +.power_icon60x60.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2700px 0; +} + +.power_icon60x60.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2760px -60px; +} + +.power_icon60x60.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2760px -120px; +} + +.power_icon60x60.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2760px 0; +} + +.power_icon60x60.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2820px -60px; +} + +.power_icon60x60.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2820px -120px; +} + +.power_icon60x60.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2820px 0; +} + +.power_icon60x60.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2880px -60px; +} + +.power_icon60x60.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2880px -120px; +} + +.power_icon60x60.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2880px 0; +} + +.power_icon60x60.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2940px -60px; +} + +.power_icon60x60.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2940px -120px; +} + +.power_icon60x60.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -2940px 0; +} + +.power_icon60x60.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3000px -60px; +} + +.power_icon60x60.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3000px -120px; +} + +.power_icon60x60.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3000px 0; +} + +.power_icon60x60.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3060px -60px; +} + +.power_icon60x60.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3060px -120px; +} + +.power_icon60x60.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3060px 0; +} + +.power_icon60x60.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3120px -60px; +} + +.power_icon60x60.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3120px -120px; +} + +.power_icon60x60.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3120px 0; +} + +.power_icon60x60.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3180px -60px; +} + +.power_icon60x60.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3180px -120px; +} + +.power_icon60x60.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3180px 0; +} + +.power_icon60x60.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3240px -60px; +} + +.power_icon60x60.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3240px -120px; +} + +.power_icon60x60.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3240px 0; +} + +.power_icon60x60.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3300px -60px; +} + +.power_icon60x60.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3300px -120px; +} + +.power_icon60x60.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3300px 0; +} + +.power_icon60x60.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3360px -60px; +} + +.power_icon60x60.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3360px -120px; +} + +.power_icon60x60.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3360px 0; +} + +.power_icon60x60.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3420px -60px; +} + +.power_icon60x60.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3420px -120px; +} + +.power_icon60x60.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3420px 0; +} + +.power_icon60x60.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3480px -60px; +} + +.power_icon60x60.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3480px -120px; +} + +.power_icon60x60.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3480px 0; +} + +.power_icon60x60.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3540px -60px; +} + +.power_icon60x60.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3540px -120px; +} + +.power_icon60x60.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3540px 0; +} + +.power_icon60x60.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3600px -60px; +} + +.power_icon60x60.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3600px -120px; +} + +.power_icon60x60.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3600px 0; +} + +.power_icon60x60.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3660px -60px; +} + +.power_icon60x60.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3660px -120px; +} + +.power_icon60x60.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3660px 0; +} + +.power_icon60x60.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3720px -60px; +} + +.power_icon60x60.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3720px -120px; +} + +.power_icon60x60.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3720px 0; +} + +.power_icon60x60.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3780px -60px; +} + +.power_icon60x60.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3780px -120px; +} + +.power_icon60x60.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3780px 0; +} + +.power_icon60x60.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3840px -60px; +} + +.power_icon60x60.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3840px -120px; +} + +.power_icon60x60.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3840px 0; +} + +.power_icon60x60.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3900px -60px; +} + +.power_icon60x60.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3900px -120px; +} + +.power_icon60x60.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3900px 0; +} + +.power_icon60x60.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3960px -60px; +} + +.power_icon60x60.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3960px -120px; +} + +.power_icon60x60.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -3960px 0; +} + +.power_icon60x60.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4020px -60px; +} + +.power_icon60x60.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4020px -120px; +} + +.power_icon60x60.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4020px 0; +} + +.power_icon60x60.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4080px -60px; +} + +.power_icon60x60.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4080px -120px; +} + +.power_icon60x60.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4080px 0; +} + +.power_icon60x60.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4140px -60px; +} + +.power_icon60x60.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4140px -120px; +} + +.power_icon60x60.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4140px 0; +} + +.power_icon60x60.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4200px -60px; +} + +.power_icon60x60.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4200px -120px; +} + +.power_icon60x60.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4200px 0; +} + +.power_icon60x60.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4260px -60px; +} + +.power_icon60x60.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4260px -120px; +} + +.power_icon60x60.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4260px 0; +} + +.power_icon60x60.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4320px -60px; +} + +.power_icon60x60.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4320px -120px; +} + +.power_icon60x60.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4320px 0; +} + +.power_icon60x60.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4380px -60px; +} + +.power_icon60x60.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4380px -120px; +} + +.power_icon60x60.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4380px 0; +} + +.power_icon60x60.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4440px -60px; +} + +.power_icon60x60.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4440px -120px; +} + +.power_icon60x60.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4440px 0; +} + +.power_icon60x60.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4500px -60px; +} + +.power_icon60x60.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4500px -120px; +} + +.power_icon60x60.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4500px 0; +} + +.power_icon60x60.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4560px -60px; +} + +.power_icon60x60.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4560px -120px; +} + +.power_icon60x60.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4560px 0; +} + +.power_icon60x60.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4620px -60px; +} + +.power_icon60x60.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4620px -120px; +} + +.power_icon60x60.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4620px 0; +} + +.power_icon60x60.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4680px -60px; +} + +.power_icon60x60.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4680px -120px; +} + +.power_icon60x60.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4680px 0; +} + +.power_icon60x60.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4740px -60px; +} + +.power_icon60x60.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4740px -120px; +} + +.power_icon60x60.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4740px 0; +} + +.power_icon60x60.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4800px -60px; +} + +.power_icon60x60.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4800px -120px; +} + +.power_icon60x60.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4800px 0; +} + +.power_icon60x60.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4860px -60px; +} + +.power_icon60x60.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4860px -120px; +} + +.power_icon60x60.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4860px 0; +} + +.power_icon60x60.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4920px -60px; +} + +.power_icon60x60.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4920px -120px; +} + +.power_icon60x60.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4920px 0; +} + +.power_icon60x60.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4980px -60px; +} + +.power_icon60x60.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4980px -120px; +} + +.power_icon60x60.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -4980px 0; +} + +.power_icon60x60.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5040px -60px; +} + +.power_icon60x60.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5040px -120px; +} + +.power_icon60x60.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5040px 0; +} + +.power_icon60x60.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5100px -60px; +} + +.power_icon60x60.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5100px -120px; +} + +.power_icon60x60.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5100px 0; +} + +.power_icon60x60.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5160px -60px; +} + +.power_icon60x60.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5160px -120px; +} + +.power_icon60x60.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5160px 0; +} + +.power_icon60x60.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5220px -60px; +} + +.power_icon60x60.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5220px -120px; +} + +.power_icon60x60.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5220px 0; +} + +.power_icon60x60.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5280px -60px; +} + +.power_icon60x60.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5280px -120px; +} + +.power_icon60x60.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5280px 0; +} + +.power_icon60x60.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5340px -60px; +} + +.power_icon60x60.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5340px -120px; +} + +.power_icon60x60.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5340px 0; +} + +.power_icon60x60.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5400px -60px; +} + +.power_icon60x60.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5400px -120px; +} + +.power_icon60x60.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5400px 0; +} + +.power_icon60x60.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5460px -60px; +} + +.power_icon60x60.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5460px -120px; +} + +.power_icon60x60.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5460px 0; +} + +.power_icon60x60.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5520px -60px; +} + +.power_icon60x60.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5520px -120px; +} + +.power_icon60x60.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5520px 0; +} + +.power_icon60x60.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5580px -60px; +} + +.power_icon60x60.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5580px -120px; +} + +.power_icon60x60.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5580px 0; +} + +.power_icon60x60.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5640px -60px; +} + +.power_icon60x60.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5640px -120px; +} + +.power_icon60x60.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5640px 0; +} + +.power_icon60x60.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5700px -60px; +} + +.power_icon60x60.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5700px -120px; +} + +.power_icon60x60.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5700px 0; +} + +.power_icon60x60.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5760px -60px; +} + +.power_icon60x60.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5760px -120px; +} + +.power_icon60x60.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5760px 0; +} + +.power_icon60x60.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5820px -60px; +} + +.power_icon60x60.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5820px -120px; +} + +.power_icon60x60.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5820px 0; +} + +.power_icon60x60.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5880px -60px; +} + +.power_icon60x60.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5880px -120px; +} + +.power_icon60x60.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5880px 0; +} + +.power_icon60x60.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5940px -60px; +} + +.power_icon60x60.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5940px -120px; +} + +.power_icon60x60.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -5940px 0; +} + +.power_icon60x60.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6000px -60px; +} + +.power_icon60x60.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6000px -120px; +} + +.power_icon60x60.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6000px 0; +} + +.power_icon60x60.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6060px -60px; +} + +.power_icon60x60.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6060px -120px; +} + +.power_icon60x60.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6060px 0; +} + +.power_icon60x60.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6120px -60px; +} + +.power_icon60x60.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6120px -120px; +} + +.power_icon60x60.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6120px 0; +} + +.power_icon60x60.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6180px -60px; +} + +.power_icon60x60.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6180px -120px; +} + +.power_icon60x60.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6180px 0; +} + +.power_icon60x60.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6240px -60px; +} + +.power_icon60x60.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6240px -120px; +} + +.power_icon60x60.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6240px 0; +} + +.power_icon60x60.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6300px -60px; +} + +.power_icon60x60.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6300px -120px; +} + +.power_icon60x60.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6300px 0; +} + +.power_icon60x60.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6360px -60px; +} + +.power_icon60x60.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6360px -120px; +} + +.power_icon60x60.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6360px 0; +} + +.power_icon60x60.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6420px -60px; +} + +.power_icon60x60.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6420px -120px; +} + +.power_icon60x60.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6420px 0; +} + +.power_icon60x60.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6480px -60px; +} + +.power_icon60x60.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6480px -120px; +} + +.power_icon60x60.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6480px 0; +} + +.power_icon60x60.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6540px -60px; +} + +.power_icon60x60.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6540px -120px; +} + +.power_icon60x60.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6540px 0; +} + +.power_icon60x60.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6600px -60px; +} + +.power_icon60x60.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6600px -120px; +} + +.power_icon60x60.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6600px 0; +} + +.power_icon60x60.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6660px -60px; +} + +.power_icon60x60.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6660px -120px; +} + +.power_icon60x60.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6660px 0; +} + +.power_icon60x60.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6720px -60px; +} + +.power_icon60x60.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6720px -120px; +} + +.power_icon60x60.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6720px 0; +} + +.power_icon60x60.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6780px -60px; +} + +.power_icon60x60.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6780px -120px; +} + +.power_icon60x60.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6780px 0; +} + +.power_icon60x60.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6840px -60px; +} + +.power_icon60x60.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6840px -120px; +} + +.power_icon60x60.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6840px 0; +} + +.power_icon60x60.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6900px -60px; +} + +.power_icon60x60.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6900px -120px; +} + +.power_icon60x60.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6900px 0; +} + +.power_icon60x60.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6960px -60px; +} + +.power_icon60x60.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6960px -120px; +} + +.power_icon60x60.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6960px 0; +} + +.power_icon60x60.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7020px -60px; +} + +.power_icon60x60.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7020px -120px; +} + +.power_icon60x60.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7020px 0; +} + +.power_icon60x60.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7080px -60px; +} + +.power_icon60x60.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7080px -120px; +} + +.power_icon60x60.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7080px 0; +} + +.power_icon60x60.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7140px -60px; +} + +.power_icon60x60.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7140px -120px; +} + +.power_icon60x60.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7140px 0; +} + +.power_icon60x60.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7200px -60px; +} + +.power_icon60x60.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7200px -120px; +} + +.power_icon60x60.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7200px 0; +} + +.power_icon60x60.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7260px -60px; +} + +.power_icon60x60.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7260px -120px; +} + +.power_icon60x60.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7260px 0; +} + +.power_icon60x60.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7320px -60px; +} + +.power_icon60x60.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7320px -120px; +} + +.power_icon60x60.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7320px 0; +} + +.power_icon60x60.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7380px -60px; +} + +.power_icon60x60.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7380px -120px; +} + +.power_icon60x60.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7380px 0; +} + +.power_icon60x60.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7440px -60px; +} + +.power_icon60x60.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7440px -120px; +} + +.power_icon60x60.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7440px 0; +} + +.power_icon60x60.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7500px -60px; +} + +.power_icon60x60.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7500px -120px; +} + +.power_icon60x60.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7500px 0; +} + +.power_icon60x60.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7560px -60px; +} + +.power_icon60x60.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7560px -120px; +} + +.power_icon60x60.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7560px 0; +} + +.power_icon60x60.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7620px -60px; +} + +.power_icon60x60.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7620px -120px; +} + +.power_icon60x60.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7620px 0; +} + +.power_icon60x60.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7680px -60px; +} + +.power_icon60x60.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7680px -120px; +} + +.power_icon60x60.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7680px 0; +} + +.power_icon60x60.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7740px -60px; +} + +.power_icon60x60.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7740px -120px; +} + +.power_icon60x60.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7740px 0; +} + +.power_icon60x60.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7800px -60px; +} + +.power_icon60x60.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7800px -120px; +} + +.power_icon60x60.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7800px 0; +} + +.power_icon60x60.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7860px -60px; +} + +.power_icon60x60.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7860px -120px; +} + +.power_icon60x60.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7860px 0; +} + +.power_icon60x60.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7920px -60px; +} + +.power_icon60x60.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7920px -120px; +} + +.power_icon60x60.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7920px 0; +} + +.power_icon60x60.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7980px -60px; +} + +.power_icon60x60.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7980px -120px; +} + +.power_icon60x60.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7980px 0; +} + +.power_icon60x60.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8040px -60px; +} + +.power_icon60x60.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8040px -120px; +} + +.power_icon60x60.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8040px 0; +} + +.power_icon60x60.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8100px -60px; +} + +.power_icon60x60.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8100px -120px; +} + +.power_icon60x60.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8100px 0; +} + +.power_icon60x60.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8160px -60px; +} + +.power_icon60x60.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8160px -120px; +} + +.power_icon60x60.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8160px 0; +} + +.power_icon60x60.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8220px -60px; +} + +.power_icon60x60.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8220px -120px; +} + +.power_icon60x60.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8220px 0; +} + +.power_icon60x60.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8280px -60px; +} + +.power_icon60x60.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8280px -120px; +} + +.power_icon60x60.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8280px 0; +} + +.power_icon60x60.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8340px -60px; +} + +.power_icon60x60.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8340px -120px; +} + +.power_icon60x60.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8340px 0; +} + +.power_icon60x60.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8400px -60px; +} + +.power_icon60x60.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8400px -120px; +} + +.power_icon60x60.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8400px 0; +} + +.power_icon60x60.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8460px -60px; +} + +.power_icon60x60.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8460px -120px; +} + +.power_icon60x60.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8460px 0; +} + +.power_icon60x60.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8520px -60px; +} + +.power_icon60x60.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8520px -120px; +} + +.power_icon60x60.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8520px 0; +} + +.power_icon60x60.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8580px -60px; +} + +.power_icon60x60.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8580px -120px; +} + +.power_icon60x60.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8580px 0; +} + +.power_icon60x60.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8640px -60px; +} + +.power_icon60x60.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8640px -120px; +} + +.power_icon60x60.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8640px 0; +} + +.power_icon60x60.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8700px -60px; +} + +.power_icon60x60.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8700px -120px; +} + +.power_icon60x60.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8700px 0; +} + +.power_icon60x60.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8760px -60px; +} + +.power_icon60x60.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8760px -120px; +} + +.power_icon60x60.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8760px 0; +} + +.power_icon60x60.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8820px -60px; +} + +.power_icon60x60.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8820px -120px; +} + +.power_icon60x60.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8820px 0; +} + +.power_icon60x60.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8880px -60px; +} + +.power_icon60x60.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8880px -120px; +} + +.power_icon60x60.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8880px 0; +} + +.power_icon60x60.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8940px -60px; +} + +.power_icon60x60.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8940px -120px; +} + +.power_icon60x60.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -8940px 0; +} + +.power_icon60x60.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9000px -60px; +} + +.power_icon60x60.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9000px -120px; +} + +.power_icon60x60.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9000px 0; +} + +.power_icon60x60.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9060px -60px; +} + +.power_icon60x60.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9060px -120px; +} + +.power_icon60x60.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9060px 0; +} + +.power_icon60x60.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9120px -60px; +} + +.power_icon60x60.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9120px -120px; +} + +.power_icon60x60.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9120px 0; +} + +.power_icon60x60.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9180px -60px; +} + +.power_icon60x60.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9180px -120px; +} + +.power_icon60x60.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9180px 0; +} + +.power_icon60x60.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9240px -60px; +} + +.power_icon60x60.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9240px -120px; +} + +.power_icon60x60.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -9240px 0; +} + +.power_icon86x86 { + width: 86px; + height: 86px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon86x86.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat 0 -86px; +} + +.power_icon86x86.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat 0 -172px; +} + +.power_icon86x86.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat 0 0; +} + +.power_icon86x86.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -86px -86px; +} + +.power_icon86x86.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -86px -172px; +} + +.power_icon86x86.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -86px 0; +} + +.power_icon86x86.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -172px -86px; +} + +.power_icon86x86.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -172px -172px; +} + +.power_icon86x86.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -172px 0; +} + +.power_icon86x86.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -258px -86px; +} + +.power_icon86x86.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -258px -172px; +} + +.power_icon86x86.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -258px 0; +} + +.power_icon86x86.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -344px -86px; +} + +.power_icon86x86.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -344px -172px; +} + +.power_icon86x86.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -344px 0; +} + +.power_icon86x86.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -430px -86px; +} + +.power_icon86x86.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -430px -172px; +} + +.power_icon86x86.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -430px 0; +} + +.power_icon86x86.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -516px -86px; +} + +.power_icon86x86.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -516px -172px; +} + +.power_icon86x86.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -516px 0; +} + +.power_icon86x86.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -602px -86px; +} + +.power_icon86x86.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -602px -172px; +} + +.power_icon86x86.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -602px 0; +} + +.power_icon86x86.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -688px -86px; +} + +.power_icon86x86.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -688px -172px; +} + +.power_icon86x86.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -688px 0; +} + +.power_icon86x86.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -774px -86px; +} + +.power_icon86x86.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -774px -172px; +} + +.power_icon86x86.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -774px 0; +} + +.power_icon86x86.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -860px -86px; +} + +.power_icon86x86.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -860px -172px; +} + +.power_icon86x86.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -860px 0; +} + +.power_icon86x86.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -946px -86px; +} + +.power_icon86x86.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -946px -172px; +} + +.power_icon86x86.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -946px 0; +} + +.power_icon86x86.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1032px -86px; +} + +.power_icon86x86.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1032px -172px; +} + +.power_icon86x86.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1032px 0; +} + +.power_icon86x86.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1118px -86px; +} + +.power_icon86x86.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1118px -172px; +} + +.power_icon86x86.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1118px 0; +} + +.power_icon86x86.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1204px -86px; +} + +.power_icon86x86.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1204px -172px; +} + +.power_icon86x86.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1204px 0; +} + +.power_icon86x86.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1290px -86px; +} + +.power_icon86x86.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1290px -172px; +} + +.power_icon86x86.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1290px 0; +} + +.power_icon86x86.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1376px -86px; +} + +.power_icon86x86.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1376px -172px; +} + +.power_icon86x86.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1376px 0; +} + +.power_icon86x86.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1462px -86px; +} + +.power_icon86x86.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1462px -172px; +} + +.power_icon86x86.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1462px 0; +} + +.power_icon86x86.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1548px -86px; +} + +.power_icon86x86.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1548px -172px; +} + +.power_icon86x86.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1548px 0; +} + +.power_icon86x86.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1634px -86px; +} + +.power_icon86x86.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1634px -172px; +} + +.power_icon86x86.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1634px 0; +} + +.power_icon86x86.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1720px -86px; +} + +.power_icon86x86.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1720px -172px; +} + +.power_icon86x86.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1720px 0; +} + +.power_icon86x86.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1806px -86px; +} + +.power_icon86x86.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1806px -172px; +} + +.power_icon86x86.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1806px 0; +} + +.power_icon86x86.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1892px -86px; +} + +.power_icon86x86.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1892px -172px; +} + +.power_icon86x86.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1892px 0; +} + +.power_icon86x86.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1978px -86px; +} + +.power_icon86x86.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1978px -172px; +} + +.power_icon86x86.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -1978px 0; +} + +.power_icon86x86.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2064px -86px; +} + +.power_icon86x86.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2064px -172px; +} + +.power_icon86x86.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2064px 0; +} + +.power_icon86x86.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2150px -86px; +} + +.power_icon86x86.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2150px -172px; +} + +.power_icon86x86.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2150px 0; +} + +.power_icon86x86.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2236px -86px; +} + +.power_icon86x86.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2236px -172px; +} + +.power_icon86x86.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2236px 0; +} + +.power_icon86x86.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2322px -86px; +} + +.power_icon86x86.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2322px -172px; +} + +.power_icon86x86.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2322px 0; +} + +.power_icon86x86.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2408px -86px; +} + +.power_icon86x86.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2408px -172px; +} + +.power_icon86x86.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2408px 0; +} + +.power_icon86x86.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2494px -86px; +} + +.power_icon86x86.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2494px -172px; +} + +.power_icon86x86.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2494px 0; +} + +.power_icon86x86.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2580px -86px; +} + +.power_icon86x86.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2580px -172px; +} + +.power_icon86x86.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2580px 0; +} + +.power_icon86x86.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2666px -86px; +} + +.power_icon86x86.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2666px -172px; +} + +.power_icon86x86.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2666px 0; +} + +.power_icon86x86.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2752px -86px; +} + +.power_icon86x86.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2752px -172px; +} + +.power_icon86x86.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2752px 0; +} + +.power_icon86x86.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2838px -86px; +} + +.power_icon86x86.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2838px -172px; +} + +.power_icon86x86.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2838px 0; +} + +.power_icon86x86.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2924px -86px; +} + +.power_icon86x86.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2924px -172px; +} + +.power_icon86x86.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -2924px 0; +} + +.power_icon86x86.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3010px -86px; +} + +.power_icon86x86.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3010px -172px; +} + +.power_icon86x86.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3010px 0; +} + +.power_icon86x86.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3096px -86px; +} + +.power_icon86x86.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3096px -172px; +} + +.power_icon86x86.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3096px 0; +} + +.power_icon86x86.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3182px -86px; +} + +.power_icon86x86.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3182px -172px; +} + +.power_icon86x86.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3182px 0; +} + +.power_icon86x86.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3268px -86px; +} + +.power_icon86x86.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3268px -172px; +} + +.power_icon86x86.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3268px 0; +} + +.power_icon86x86.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3354px -86px; +} + +.power_icon86x86.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3354px -172px; +} + +.power_icon86x86.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3354px 0; +} + +.power_icon86x86.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3440px -86px; +} + +.power_icon86x86.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3440px -172px; +} + +.power_icon86x86.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3440px 0; +} + +.power_icon86x86.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3526px -86px; +} + +.power_icon86x86.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3526px -172px; +} + +.power_icon86x86.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3526px 0; +} + +.power_icon86x86.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3612px -86px; +} + +.power_icon86x86.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3612px -172px; +} + +.power_icon86x86.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3612px 0; +} + +.power_icon86x86.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3698px -86px; +} + +.power_icon86x86.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3698px -172px; +} + +.power_icon86x86.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3698px 0; +} + +.power_icon86x86.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3784px -86px; +} + +.power_icon86x86.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3784px -172px; +} + +.power_icon86x86.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3784px 0; +} + +.power_icon86x86.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3870px -86px; +} + +.power_icon86x86.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3870px -172px; +} + +.power_icon86x86.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3870px 0; +} + +.power_icon86x86.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3956px -86px; +} + +.power_icon86x86.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3956px -172px; +} + +.power_icon86x86.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -3956px 0; +} + +.power_icon86x86.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4042px -86px; +} + +.power_icon86x86.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4042px -172px; +} + +.power_icon86x86.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4042px 0; +} + +.power_icon86x86.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4128px -86px; +} + +.power_icon86x86.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4128px -172px; +} + +.power_icon86x86.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4128px 0; +} + +.power_icon86x86.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4214px -86px; +} + +.power_icon86x86.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4214px -172px; +} + +.power_icon86x86.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4214px 0; +} + +.power_icon86x86.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4300px -86px; +} + +.power_icon86x86.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4300px -172px; +} + +.power_icon86x86.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4300px 0; +} + +.power_icon86x86.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4386px -86px; +} + +.power_icon86x86.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4386px -172px; +} + +.power_icon86x86.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4386px 0; +} + +.power_icon86x86.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4472px -86px; +} + +.power_icon86x86.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4472px -172px; +} + +.power_icon86x86.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4472px 0; +} + +.power_icon86x86.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4558px -86px; +} + +.power_icon86x86.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4558px -172px; +} + +.power_icon86x86.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4558px 0; +} + +.power_icon86x86.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4644px -86px; +} + +.power_icon86x86.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4644px -172px; +} + +.power_icon86x86.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4644px 0; +} + +.power_icon86x86.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4730px -86px; +} + +.power_icon86x86.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4730px -172px; +} + +.power_icon86x86.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4730px 0; +} + +.power_icon86x86.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4816px -86px; +} + +.power_icon86x86.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4816px -172px; +} + +.power_icon86x86.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4816px 0; +} + +.power_icon86x86.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4902px -86px; +} + +.power_icon86x86.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4902px -172px; +} + +.power_icon86x86.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4902px 0; +} + +.power_icon86x86.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4988px -86px; +} + +.power_icon86x86.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4988px -172px; +} + +.power_icon86x86.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -4988px 0; +} + +.power_icon86x86.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5068px -86px; +} + +.power_icon86x86.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5068px -172px; +} + +.power_icon86x86.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5068px 0; +} + +.power_icon86x86.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5154px -86px; +} + +.power_icon86x86.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5154px -172px; +} + +.power_icon86x86.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5154px 0; +} + +.power_icon86x86.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5240px -86px; +} + +.power_icon86x86.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5240px -172px; +} + +.power_icon86x86.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5240px 0; +} + +.power_icon86x86.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5326px -86px; +} + +.power_icon86x86.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5326px -172px; +} + +.power_icon86x86.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5326px 0; +} + +.power_icon86x86.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5412px -86px; +} + +.power_icon86x86.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5412px -172px; +} + +.power_icon86x86.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5412px 0; +} + +.power_icon86x86.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5498px -86px; +} + +.power_icon86x86.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5498px -172px; +} + +.power_icon86x86.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5498px 0; +} + +.power_icon86x86.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5584px -86px; +} + +.power_icon86x86.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5584px -172px; +} + +.power_icon86x86.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5584px 0; +} + +.power_icon86x86.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5670px -86px; +} + +.power_icon86x86.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5670px -172px; +} + +.power_icon86x86.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5670px 0; +} + +.power_icon86x86.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5756px -86px; +} + +.power_icon86x86.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5756px -172px; +} + +.power_icon86x86.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5756px 0; +} + +.power_icon86x86.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5842px -86px; +} + +.power_icon86x86.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5842px -172px; +} + +.power_icon86x86.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5842px 0; +} + +.power_icon86x86.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5928px -86px; +} + +.power_icon86x86.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5928px -172px; +} + +.power_icon86x86.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -5928px 0; +} + +.power_icon86x86.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6014px -86px; +} + +.power_icon86x86.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6014px -172px; +} + +.power_icon86x86.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6014px 0; +} + +.power_icon86x86.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6100px -86px; +} + +.power_icon86x86.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6100px -172px; +} + +.power_icon86x86.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6100px 0; +} + +.power_icon86x86.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6186px -86px; +} + +.power_icon86x86.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6186px -172px; +} + +.power_icon86x86.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6186px 0; +} + +.power_icon86x86.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6272px -86px; +} + +.power_icon86x86.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6272px -172px; +} + +.power_icon86x86.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6272px 0; +} + +.power_icon86x86.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6358px -86px; +} + +.power_icon86x86.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6358px -172px; +} + +.power_icon86x86.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6358px 0; +} + +.power_icon86x86.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6444px -86px; +} + +.power_icon86x86.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6444px -172px; +} + +.power_icon86x86.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6444px 0; +} + +.power_icon86x86.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6530px -86px; +} + +.power_icon86x86.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6530px -172px; +} + +.power_icon86x86.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6530px 0; +} + +.power_icon86x86.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6616px -86px; +} + +.power_icon86x86.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6616px -172px; +} + +.power_icon86x86.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6616px 0; +} + +.power_icon86x86.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6702px -86px; +} + +.power_icon86x86.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6702px -172px; +} + +.power_icon86x86.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6702px 0; +} + +.power_icon86x86.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6788px -86px; +} + +.power_icon86x86.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6788px -172px; +} + +.power_icon86x86.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6788px 0; +} + +.power_icon86x86.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6874px -86px; +} + +.power_icon86x86.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6874px -172px; +} + +.power_icon86x86.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6874px 0; +} + +.power_icon86x86.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6960px -86px; +} + +.power_icon86x86.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6960px -172px; +} + +.power_icon86x86.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -6960px 0; +} + +.power_icon86x86.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7046px -86px; +} + +.power_icon86x86.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7046px -172px; +} + +.power_icon86x86.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7046px 0; +} + +.power_icon86x86.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7132px -86px; +} + +.power_icon86x86.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7132px -172px; +} + +.power_icon86x86.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7132px 0; +} + +.power_icon86x86.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7218px -86px; +} + +.power_icon86x86.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7218px -172px; +} + +.power_icon86x86.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7218px 0; +} + +.power_icon86x86.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7304px -86px; +} + +.power_icon86x86.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7304px -172px; +} + +.power_icon86x86.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7304px 0; +} + +.power_icon86x86.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7390px -86px; +} + +.power_icon86x86.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7390px -172px; +} + +.power_icon86x86.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7390px 0; +} + +.power_icon86x86.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7476px -86px; +} + +.power_icon86x86.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7476px -172px; +} + +.power_icon86x86.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7476px 0; +} + +.power_icon86x86.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7562px -86px; +} + +.power_icon86x86.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7562px -172px; +} + +.power_icon86x86.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7562px 0; +} + +.power_icon86x86.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7648px -86px; +} + +.power_icon86x86.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7648px -172px; +} + +.power_icon86x86.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7648px 0; +} + +.power_icon86x86.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7734px -86px; +} + +.power_icon86x86.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7734px -172px; +} + +.power_icon86x86.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7734px 0; +} + +.power_icon86x86.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7820px -86px; +} + +.power_icon86x86.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7820px -172px; +} + +.power_icon86x86.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7820px 0; +} + +.power_icon86x86.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7906px -86px; +} + +.power_icon86x86.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7906px -172px; +} + +.power_icon86x86.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7906px 0; +} + +.power_icon86x86.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7992px -86px; +} + +.power_icon86x86.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7992px -172px; +} + +.power_icon86x86.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -7992px 0; +} + +.power_icon86x86.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8078px -86px; +} + +.power_icon86x86.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8078px -172px; +} + +.power_icon86x86.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8078px 0; +} + +.power_icon86x86.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8164px -86px; +} + +.power_icon86x86.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8164px -172px; +} + +.power_icon86x86.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8164px 0; +} + +.power_icon86x86.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8250px -86px; +} + +.power_icon86x86.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8250px -172px; +} + +.power_icon86x86.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8250px 0; +} + +.power_icon86x86.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8336px -86px; +} + +.power_icon86x86.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8336px -172px; +} + +.power_icon86x86.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8336px 0; +} + +.power_icon86x86.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8422px -86px; +} + +.power_icon86x86.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8422px -172px; +} + +.power_icon86x86.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8422px 0; +} + +.power_icon86x86.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8508px -86px; +} + +.power_icon86x86.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8508px -172px; +} + +.power_icon86x86.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8508px 0; +} + +.power_icon86x86.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8594px -86px; +} + +.power_icon86x86.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8594px -172px; +} + +.power_icon86x86.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8594px 0; +} + +.power_icon86x86.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8680px -86px; +} + +.power_icon86x86.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8680px -172px; +} + +.power_icon86x86.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8680px 0; +} + +.power_icon86x86.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8766px -86px; +} + +.power_icon86x86.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8766px -172px; +} + +.power_icon86x86.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8766px 0; +} + +.power_icon86x86.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8852px -86px; +} + +.power_icon86x86.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8852px -172px; +} + +.power_icon86x86.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8852px 0; +} + +.power_icon86x86.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8938px -86px; +} + +.power_icon86x86.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8938px -172px; +} + +.power_icon86x86.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -8938px 0; +} + +.power_icon86x86.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9024px -86px; +} + +.power_icon86x86.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9024px -172px; +} + +.power_icon86x86.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9024px 0; +} + +.power_icon86x86.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9110px -86px; +} + +.power_icon86x86.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9110px -172px; +} + +.power_icon86x86.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9110px 0; +} + +.power_icon86x86.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9196px -86px; +} + +.power_icon86x86.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9196px -172px; +} + +.power_icon86x86.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9196px 0; +} + +.power_icon86x86.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9282px -86px; +} + +.power_icon86x86.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9282px -172px; +} + +.power_icon86x86.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9282px 0; +} + +.power_icon86x86.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9368px -86px; +} + +.power_icon86x86.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9368px -172px; +} + +.power_icon86x86.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9368px 0; +} + +.power_icon86x86.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9454px -86px; +} + +.power_icon86x86.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9454px -172px; +} + +.power_icon86x86.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9454px 0; +} + +.power_icon86x86.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9540px -86px; +} + +.power_icon86x86.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9540px -172px; +} + +.power_icon86x86.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9540px 0; +} + +.power_icon86x86.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9626px -86px; +} + +.power_icon86x86.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9626px -172px; +} + +.power_icon86x86.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9626px 0; +} + +.power_icon86x86.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9712px -86px; +} + +.power_icon86x86.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9712px -172px; +} + +.power_icon86x86.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9712px 0; +} + +.power_icon86x86.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9798px -86px; +} + +.power_icon86x86.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9798px -172px; +} + +.power_icon86x86.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9798px 0; +} + +.power_icon86x86.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9884px -86px; +} + +.power_icon86x86.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9884px -172px; +} + +.power_icon86x86.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9884px 0; +} + +.power_icon86x86.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9970px -86px; +} + +.power_icon86x86.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9970px -172px; +} + +.power_icon86x86.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -9970px 0; +} + +.power_icon86x86.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10056px -86px; +} + +.power_icon86x86.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10056px -172px; +} + +.power_icon86x86.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10056px 0; +} + +.power_icon86x86.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10142px -86px; +} + +.power_icon86x86.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10142px -172px; +} + +.power_icon86x86.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10142px 0; +} + +.power_icon86x86.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10228px -86px; +} + +.power_icon86x86.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10228px -172px; +} + +.power_icon86x86.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10228px 0; +} + +.power_icon86x86.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10314px -86px; +} + +.power_icon86x86.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10314px -172px; +} + +.power_icon86x86.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10314px 0; +} + +.power_icon86x86.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10400px -86px; +} + +.power_icon86x86.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10400px -172px; +} + +.power_icon86x86.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10400px 0; +} + +.power_icon86x86.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10486px -86px; +} + +.power_icon86x86.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10486px -172px; +} + +.power_icon86x86.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10486px 0; +} + +.power_icon86x86.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10572px -86px; +} + +.power_icon86x86.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10572px -172px; +} + +.power_icon86x86.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10572px 0; +} + +.power_icon86x86.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10658px -86px; +} + +.power_icon86x86.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10658px -172px; +} + +.power_icon86x86.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10658px 0; +} + +.power_icon86x86.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10744px -86px; +} + +.power_icon86x86.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10744px -172px; +} + +.power_icon86x86.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10744px 0; +} + +.power_icon86x86.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10830px -86px; +} + +.power_icon86x86.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10830px -172px; +} + +.power_icon86x86.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10830px 0; +} + +.power_icon86x86.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10916px -86px; +} + +.power_icon86x86.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10916px -172px; +} + +.power_icon86x86.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -10916px 0; +} + +.power_icon86x86.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11002px -86px; +} + +.power_icon86x86.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11002px -172px; +} + +.power_icon86x86.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11002px 0; +} + +.power_icon86x86.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11088px -86px; +} + +.power_icon86x86.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11088px -172px; +} + +.power_icon86x86.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11088px 0; +} + +.power_icon86x86.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11174px -86px; +} + +.power_icon86x86.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11174px -172px; +} + +.power_icon86x86.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11174px 0; +} + +.power_icon86x86.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11260px -86px; +} + +.power_icon86x86.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11260px -172px; +} + +.power_icon86x86.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11260px 0; +} + +.power_icon86x86.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11346px -86px; +} + +.power_icon86x86.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11346px -172px; +} + +.power_icon86x86.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11346px 0; +} + +.power_icon86x86.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11432px -86px; +} + +.power_icon86x86.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11432px -172px; +} + +.power_icon86x86.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11432px 0; +} + +.power_icon86x86.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11518px -86px; +} + +.power_icon86x86.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11518px -172px; +} + +.power_icon86x86.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11518px 0; +} + +.power_icon86x86.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11604px -86px; +} + +.power_icon86x86.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11604px -172px; +} + +.power_icon86x86.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11604px 0; +} + +.power_icon86x86.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11690px -86px; +} + +.power_icon86x86.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11690px -172px; +} + +.power_icon86x86.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11690px 0; +} + +.power_icon86x86.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11776px -86px; +} + +.power_icon86x86.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11776px -172px; +} + +.power_icon86x86.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11776px 0; +} + +.power_icon86x86.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11862px -86px; +} + +.power_icon86x86.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11862px -172px; +} + +.power_icon86x86.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11862px 0; +} + +.power_icon86x86.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11948px -86px; +} + +.power_icon86x86.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11948px -172px; +} + +.power_icon86x86.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -11948px 0; +} + +.power_icon86x86.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12034px -86px; +} + +.power_icon86x86.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12034px -172px; +} + +.power_icon86x86.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12034px 0; +} + +.power_icon86x86.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12120px -86px; +} + +.power_icon86x86.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12120px -172px; +} + +.power_icon86x86.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12120px 0; +} + +.power_icon86x86.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12206px -86px; +} + +.power_icon86x86.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12206px -172px; +} + +.power_icon86x86.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12206px 0; +} + +.power_icon86x86.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12292px -86px; +} + +.power_icon86x86.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12292px -172px; +} + +.power_icon86x86.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12292px 0; +} + +.power_icon86x86.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12378px -86px; +} + +.power_icon86x86.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12378px -172px; +} + +.power_icon86x86.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12378px 0; +} + +.power_icon86x86.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12464px -86px; +} + +.power_icon86x86.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12464px -172px; +} + +.power_icon86x86.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12464px 0; +} + +.power_icon86x86.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12550px -86px; +} + +.power_icon86x86.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12550px -172px; +} + +.power_icon86x86.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12550px 0; +} + +.power_icon86x86.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12636px -86px; +} + +.power_icon86x86.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12636px -172px; +} + +.power_icon86x86.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12636px 0; +} + +.power_icon86x86.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12722px -86px; +} + +.power_icon86x86.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12722px -172px; +} + +.power_icon86x86.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12722px 0; +} + +.power_icon86x86.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12808px -86px; +} + +.power_icon86x86.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12808px -172px; +} + +.power_icon86x86.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12808px 0; +} + +.power_icon86x86.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12894px -86px; +} + +.power_icon86x86.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12894px -172px; +} + +.power_icon86x86.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12894px 0; +} + +.power_icon86x86.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12980px -86px; +} + +.power_icon86x86.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12980px -172px; +} + +.power_icon86x86.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -12980px 0; +} + +.power_icon86x86.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13066px -86px; +} + +.power_icon86x86.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13066px -172px; +} + +.power_icon86x86.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13066px 0; +} + +.power_icon86x86.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13152px -86px; +} + +.power_icon86x86.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13152px -172px; +} + +.power_icon86x86.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13152px 0; +} + +.power_icon86x86.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13238px -86px; +} + +.power_icon86x86.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13238px -172px; +} + +.power_icon86x86.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_7cd4c1a.png) no-repeat -13238px 0; +} + +.power_icon12x12 { + width: 12px; + height: 12px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon12x12.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat 0 -12px; +} + +.power_icon12x12.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat 0 -24px; +} + +.power_icon12x12.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat 0 0; +} + +.power_icon12x12.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -12px -12px; +} + +.power_icon12x12.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -12px -24px; +} + +.power_icon12x12.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -12px 0; +} + +.power_icon12x12.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -24px -12px; +} + +.power_icon12x12.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -24px -24px; +} + +.power_icon12x12.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -24px 0; +} + +.power_icon12x12.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -36px -12px; +} + +.power_icon12x12.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -36px -24px; +} + +.power_icon12x12.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -36px 0; +} + +.power_icon12x12.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -48px -12px; +} + +.power_icon12x12.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -48px -24px; +} + +.power_icon12x12.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -48px 0; +} + +.power_icon12x12.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -60px -12px; +} + +.power_icon12x12.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -60px -24px; +} + +.power_icon12x12.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -60px 0; +} + +.power_icon12x12.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -72px -12px; +} + +.power_icon12x12.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -72px -24px; +} + +.power_icon12x12.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -72px 0; +} + +.power_icon12x12.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -84px -12px; +} + +.power_icon12x12.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -84px -24px; +} + +.power_icon12x12.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -84px 0; +} + +.power_icon12x12.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -96px -12px; +} + +.power_icon12x12.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -96px -24px; +} + +.power_icon12x12.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -96px 0; +} + +.power_icon12x12.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -108px -12px; +} + +.power_icon12x12.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -108px -24px; +} + +.power_icon12x12.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -108px 0; +} + +.power_icon12x12.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -120px -12px; +} + +.power_icon12x12.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -120px -24px; +} + +.power_icon12x12.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -120px 0; +} + +.power_icon12x12.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -132px -12px; +} + +.power_icon12x12.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -132px -24px; +} + +.power_icon12x12.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -132px 0; +} + +.power_icon12x12.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -144px -12px; +} + +.power_icon12x12.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -144px -24px; +} + +.power_icon12x12.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -144px 0; +} + +.power_icon12x12.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -156px -12px; +} + +.power_icon12x12.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -156px -24px; +} + +.power_icon12x12.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -156px 0; +} + +.power_icon12x12.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -168px -12px; +} + +.power_icon12x12.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -168px -24px; +} + +.power_icon12x12.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -168px 0; +} + +.power_icon12x12.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -180px -12px; +} + +.power_icon12x12.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -180px -24px; +} + +.power_icon12x12.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -180px 0; +} + +.power_icon12x12.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -192px -12px; +} + +.power_icon12x12.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -192px -24px; +} + +.power_icon12x12.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -192px 0; +} + +.power_icon12x12.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -204px -12px; +} + +.power_icon12x12.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -204px -24px; +} + +.power_icon12x12.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -204px 0; +} + +.power_icon12x12.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -216px -12px; +} + +.power_icon12x12.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -216px -24px; +} + +.power_icon12x12.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -216px 0; +} + +.power_icon12x12.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -228px -12px; +} + +.power_icon12x12.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -228px -24px; +} + +.power_icon12x12.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -228px 0; +} + +.power_icon12x12.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -240px -12px; +} + +.power_icon12x12.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -240px -24px; +} + +.power_icon12x12.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -240px 0; +} + +.power_icon12x12.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -252px -12px; +} + +.power_icon12x12.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -252px -24px; +} + +.power_icon12x12.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -252px 0; +} + +.power_icon12x12.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -264px -12px; +} + +.power_icon12x12.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -264px -24px; +} + +.power_icon12x12.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -264px 0; +} + +.power_icon12x12.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -276px -12px; +} + +.power_icon12x12.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -276px -24px; +} + +.power_icon12x12.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -276px 0; +} + +.power_icon12x12.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -288px -12px; +} + +.power_icon12x12.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -288px -24px; +} + +.power_icon12x12.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -288px 0; +} + +.power_icon12x12.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -300px -12px; +} + +.power_icon12x12.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -300px -24px; +} + +.power_icon12x12.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -300px 0; +} + +.power_icon12x12.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -312px -12px; +} + +.power_icon12x12.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -312px -24px; +} + +.power_icon12x12.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -312px 0; +} + +.power_icon12x12.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -324px -12px; +} + +.power_icon12x12.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -324px -24px; +} + +.power_icon12x12.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -324px 0; +} + +.power_icon12x12.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -336px -12px; +} + +.power_icon12x12.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -336px -24px; +} + +.power_icon12x12.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -336px 0; +} + +.power_icon12x12.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -348px -12px; +} + +.power_icon12x12.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -348px -24px; +} + +.power_icon12x12.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -348px 0; +} + +.power_icon12x12.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -360px -12px; +} + +.power_icon12x12.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -360px -24px; +} + +.power_icon12x12.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -360px 0; +} + +.power_icon12x12.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -372px -12px; +} + +.power_icon12x12.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -372px -24px; +} + +.power_icon12x12.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -372px 0; +} + +.power_icon12x12.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -384px -12px; +} + +.power_icon12x12.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -384px -24px; +} + +.power_icon12x12.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -384px 0; +} + +.power_icon12x12.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -396px -12px; +} + +.power_icon12x12.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -396px -24px; +} + +.power_icon12x12.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -396px 0; +} + +.power_icon12x12.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -408px -12px; +} + +.power_icon12x12.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -408px -24px; +} + +.power_icon12x12.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -408px 0; +} + +.power_icon12x12.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -420px -12px; +} + +.power_icon12x12.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -420px -24px; +} + +.power_icon12x12.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -420px 0; +} + +.power_icon12x12.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -432px -12px; +} + +.power_icon12x12.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -432px -24px; +} + +.power_icon12x12.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -432px 0; +} + +.power_icon12x12.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -444px -12px; +} + +.power_icon12x12.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -444px -24px; +} + +.power_icon12x12.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -444px 0; +} + +.power_icon12x12.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -456px -12px; +} + +.power_icon12x12.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -456px -24px; +} + +.power_icon12x12.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -456px 0; +} + +.power_icon12x12.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -468px -12px; +} + +.power_icon12x12.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -468px -24px; +} + +.power_icon12x12.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -468px 0; +} + +.power_icon12x12.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -480px -12px; +} + +.power_icon12x12.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -480px -24px; +} + +.power_icon12x12.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -480px 0; +} + +.power_icon12x12.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -492px -12px; +} + +.power_icon12x12.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -492px -24px; +} + +.power_icon12x12.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -492px 0; +} + +.power_icon12x12.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -504px -12px; +} + +.power_icon12x12.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -504px -24px; +} + +.power_icon12x12.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -504px 0; +} + +.power_icon12x12.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -516px -12px; +} + +.power_icon12x12.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -516px -24px; +} + +.power_icon12x12.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -516px 0; +} + +.power_icon12x12.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -528px -12px; +} + +.power_icon12x12.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -528px -24px; +} + +.power_icon12x12.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -528px 0; +} + +.power_icon12x12.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -540px -12px; +} + +.power_icon12x12.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -540px -24px; +} + +.power_icon12x12.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -540px 0; +} + +.power_icon12x12.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -552px -12px; +} + +.power_icon12x12.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -552px -24px; +} + +.power_icon12x12.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -552px 0; +} + +.power_icon12x12.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -564px -12px; +} + +.power_icon12x12.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -564px -24px; +} + +.power_icon12x12.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -564px 0; +} + +.power_icon12x12.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -576px -12px; +} + +.power_icon12x12.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -576px -24px; +} + +.power_icon12x12.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -576px 0; +} + +.power_icon12x12.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -588px -12px; +} + +.power_icon12x12.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -588px -24px; +} + +.power_icon12x12.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -588px 0; +} + +.power_icon12x12.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -600px -12px; +} + +.power_icon12x12.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -600px -24px; +} + +.power_icon12x12.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -600px 0; +} + +.power_icon12x12.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -612px -12px; +} + +.power_icon12x12.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -612px -24px; +} + +.power_icon12x12.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -612px 0; +} + +.power_icon12x12.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -624px -12px; +} + +.power_icon12x12.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -624px -24px; +} + +.power_icon12x12.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -624px 0; +} + +.power_icon12x12.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -636px -12px; +} + +.power_icon12x12.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -636px -24px; +} + +.power_icon12x12.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -636px 0; +} + +.power_icon12x12.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -648px -12px; +} + +.power_icon12x12.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -648px -24px; +} + +.power_icon12x12.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -648px 0; +} + +.power_icon12x12.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -660px -12px; +} + +.power_icon12x12.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -660px -24px; +} + +.power_icon12x12.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -660px 0; +} + +.power_icon12x12.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -672px -12px; +} + +.power_icon12x12.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -672px -24px; +} + +.power_icon12x12.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -672px 0; +} + +.power_icon12x12.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -684px -12px; +} + +.power_icon12x12.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -684px -24px; +} + +.power_icon12x12.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -684px 0; +} + +.power_icon12x12.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -696px -12px; +} + +.power_icon12x12.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -696px -24px; +} + +.power_icon12x12.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -696px 0; +} + +.power_icon12x12.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -708px -12px; +} + +.power_icon12x12.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -708px -24px; +} + +.power_icon12x12.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -708px 0; +} + +.power_icon12x12.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -720px -12px; +} + +.power_icon12x12.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -720px -24px; +} + +.power_icon12x12.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -720px 0; +} + +.power_icon12x12.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -732px -12px; +} + +.power_icon12x12.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -732px -24px; +} + +.power_icon12x12.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -732px 0; +} + +.power_icon12x12.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -744px -12px; +} + +.power_icon12x12.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -744px -24px; +} + +.power_icon12x12.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -744px 0; +} + +.power_icon12x12.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -756px -12px; +} + +.power_icon12x12.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -756px -24px; +} + +.power_icon12x12.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -756px 0; +} + +.power_icon12x12.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -768px -12px; +} + +.power_icon12x12.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -768px -24px; +} + +.power_icon12x12.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -768px 0; +} + +.power_icon12x12.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -780px -12px; +} + +.power_icon12x12.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -780px -24px; +} + +.power_icon12x12.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -780px 0; +} + +.power_icon12x12.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -792px -12px; +} + +.power_icon12x12.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -792px -24px; +} + +.power_icon12x12.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -792px 0; +} + +.power_icon12x12.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -804px -12px; +} + +.power_icon12x12.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -804px -24px; +} + +.power_icon12x12.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -804px 0; +} + +.power_icon12x12.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -816px -12px; +} + +.power_icon12x12.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -816px -24px; +} + +.power_icon12x12.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -816px 0; +} + +.power_icon12x12.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -828px -12px; +} + +.power_icon12x12.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -828px -24px; +} + +.power_icon12x12.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -828px 0; +} + +.power_icon12x12.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -840px -12px; +} + +.power_icon12x12.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -840px -24px; +} + +.power_icon12x12.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -840px 0; +} + +.power_icon12x12.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -852px -12px; +} + +.power_icon12x12.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -852px -24px; +} + +.power_icon12x12.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -852px 0; +} + +.power_icon12x12.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -864px -12px; +} + +.power_icon12x12.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -864px -24px; +} + +.power_icon12x12.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -864px 0; +} + +.power_icon12x12.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -876px -12px; +} + +.power_icon12x12.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -876px -24px; +} + +.power_icon12x12.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -876px 0; +} + +.power_icon12x12.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -888px -12px; +} + +.power_icon12x12.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -888px -24px; +} + +.power_icon12x12.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -888px 0; +} + +.power_icon12x12.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -900px -12px; +} + +.power_icon12x12.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -900px -24px; +} + +.power_icon12x12.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -900px 0; +} + +.power_icon12x12.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -912px -12px; +} + +.power_icon12x12.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -912px -24px; +} + +.power_icon12x12.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -912px 0; +} + +.power_icon12x12.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -924px -12px; +} + +.power_icon12x12.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -924px -24px; +} + +.power_icon12x12.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -924px 0; +} + +.power_icon12x12.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -936px -12px; +} + +.power_icon12x12.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -936px -24px; +} + +.power_icon12x12.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -936px 0; +} + +.power_icon12x12.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -948px -12px; +} + +.power_icon12x12.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -948px -24px; +} + +.power_icon12x12.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -948px 0; +} + +.power_icon12x12.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -960px -12px; +} + +.power_icon12x12.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -960px -24px; +} + +.power_icon12x12.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -960px 0; +} + +.power_icon12x12.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -972px -12px; +} + +.power_icon12x12.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -972px -24px; +} + +.power_icon12x12.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -972px 0; +} + +.power_icon12x12.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -984px -12px; +} + +.power_icon12x12.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -984px -24px; +} + +.power_icon12x12.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -984px 0; +} + +.power_icon12x12.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -996px -12px; +} + +.power_icon12x12.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -996px -24px; +} + +.power_icon12x12.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -996px 0; +} + +.power_icon12x12.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1008px -12px; +} + +.power_icon12x12.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1008px -24px; +} + +.power_icon12x12.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1008px 0; +} + +.power_icon12x12.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1020px -12px; +} + +.power_icon12x12.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1020px -24px; +} + +.power_icon12x12.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1020px 0; +} + +.power_icon12x12.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1032px -12px; +} + +.power_icon12x12.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1032px -24px; +} + +.power_icon12x12.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1032px 0; +} + +.power_icon12x12.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1044px -12px; +} + +.power_icon12x12.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1044px -24px; +} + +.power_icon12x12.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1044px 0; +} + +.power_icon12x12.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1056px -12px; +} + +.power_icon12x12.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1056px -24px; +} + +.power_icon12x12.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1056px 0; +} + +.power_icon12x12.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1068px -12px; +} + +.power_icon12x12.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1068px -24px; +} + +.power_icon12x12.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1068px 0; +} + +.power_icon12x12.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1080px -12px; +} + +.power_icon12x12.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1080px -24px; +} + +.power_icon12x12.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1080px 0; +} + +.power_icon12x12.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1092px -12px; +} + +.power_icon12x12.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1092px -24px; +} + +.power_icon12x12.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1092px 0; +} + +.power_icon12x12.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1104px -12px; +} + +.power_icon12x12.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1104px -24px; +} + +.power_icon12x12.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1104px 0; +} + +.power_icon12x12.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1116px -12px; +} + +.power_icon12x12.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1116px -24px; +} + +.power_icon12x12.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1116px 0; +} + +.power_icon12x12.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1128px -12px; +} + +.power_icon12x12.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1128px -24px; +} + +.power_icon12x12.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1128px 0; +} + +.power_icon12x12.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1140px -12px; +} + +.power_icon12x12.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1140px -24px; +} + +.power_icon12x12.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1140px 0; +} + +.power_icon12x12.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1152px -12px; +} + +.power_icon12x12.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1152px -24px; +} + +.power_icon12x12.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1152px 0; +} + +.power_icon12x12.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1164px -12px; +} + +.power_icon12x12.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1164px -24px; +} + +.power_icon12x12.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1164px 0; +} + +.power_icon12x12.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1176px -12px; +} + +.power_icon12x12.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1176px -24px; +} + +.power_icon12x12.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1176px 0; +} + +.power_icon12x12.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1188px -12px; +} + +.power_icon12x12.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1188px -24px; +} + +.power_icon12x12.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1188px 0; +} + +.power_icon12x12.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1200px -12px; +} + +.power_icon12x12.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1200px -24px; +} + +.power_icon12x12.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1200px 0; +} + +.power_icon12x12.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1212px -12px; +} + +.power_icon12x12.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1212px -24px; +} + +.power_icon12x12.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1212px 0; +} + +.power_icon12x12.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1224px -12px; +} + +.power_icon12x12.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1224px -24px; +} + +.power_icon12x12.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1224px 0; +} + +.power_icon12x12.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1236px -12px; +} + +.power_icon12x12.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1236px -24px; +} + +.power_icon12x12.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1236px 0; +} + +.power_icon12x12.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1248px -12px; +} + +.power_icon12x12.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1248px -24px; +} + +.power_icon12x12.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1248px 0; +} + +.power_icon12x12.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1260px -12px; +} + +.power_icon12x12.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1260px -24px; +} + +.power_icon12x12.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1260px 0; +} + +.power_icon12x12.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1272px -12px; +} + +.power_icon12x12.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1272px -24px; +} + +.power_icon12x12.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1272px 0; +} + +.power_icon12x12.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1284px -12px; +} + +.power_icon12x12.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1284px -24px; +} + +.power_icon12x12.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1284px 0; +} + +.power_icon12x12.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1296px -12px; +} + +.power_icon12x12.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1296px -24px; +} + +.power_icon12x12.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1296px 0; +} + +.power_icon12x12.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1308px -12px; +} + +.power_icon12x12.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1308px -24px; +} + +.power_icon12x12.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1308px 0; +} + +.power_icon12x12.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1320px -12px; +} + +.power_icon12x12.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1320px -24px; +} + +.power_icon12x12.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1320px 0; +} + +.power_icon12x12.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1332px -12px; +} + +.power_icon12x12.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1332px -24px; +} + +.power_icon12x12.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1332px 0; +} + +.power_icon12x12.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1344px -12px; +} + +.power_icon12x12.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1344px -24px; +} + +.power_icon12x12.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1344px 0; +} + +.power_icon12x12.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1356px -12px; +} + +.power_icon12x12.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1356px -24px; +} + +.power_icon12x12.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1356px 0; +} + +.power_icon12x12.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1368px -12px; +} + +.power_icon12x12.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1368px -24px; +} + +.power_icon12x12.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1368px 0; +} + +.power_icon12x12.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1380px -12px; +} + +.power_icon12x12.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1380px -24px; +} + +.power_icon12x12.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1380px 0; +} + +.power_icon12x12.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1392px -12px; +} + +.power_icon12x12.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1392px -24px; +} + +.power_icon12x12.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1392px 0; +} + +.power_icon12x12.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1404px -12px; +} + +.power_icon12x12.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1404px -24px; +} + +.power_icon12x12.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1404px 0; +} + +.power_icon12x12.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1416px -12px; +} + +.power_icon12x12.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1416px -24px; +} + +.power_icon12x12.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1416px 0; +} + +.power_icon12x12.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1428px -12px; +} + +.power_icon12x12.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1428px -24px; +} + +.power_icon12x12.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1428px 0; +} + +.power_icon12x12.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1440px -12px; +} + +.power_icon12x12.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1440px -24px; +} + +.power_icon12x12.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1440px 0; +} + +.power_icon12x12.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1452px -12px; +} + +.power_icon12x12.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1452px -24px; +} + +.power_icon12x12.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1452px 0; +} + +.power_icon12x12.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1464px -12px; +} + +.power_icon12x12.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1464px -24px; +} + +.power_icon12x12.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1464px 0; +} + +.power_icon12x12.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1476px -12px; +} + +.power_icon12x12.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1476px -24px; +} + +.power_icon12x12.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1476px 0; +} + +.power_icon12x12.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1488px -12px; +} + +.power_icon12x12.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1488px -24px; +} + +.power_icon12x12.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1488px 0; +} + +.power_icon12x12.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1500px -12px; +} + +.power_icon12x12.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1500px -24px; +} + +.power_icon12x12.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1500px 0; +} + +.power_icon12x12.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1512px -12px; +} + +.power_icon12x12.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1512px -24px; +} + +.power_icon12x12.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1512px 0; +} + +.power_icon12x12.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1524px -12px; +} + +.power_icon12x12.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1524px -24px; +} + +.power_icon12x12.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_12x12_part2_f89117d.png) no-repeat -1524px 0; +} + +.power_icon16x16 { + width: 16px; + height: 16px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon16x16.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat 0 -16px; +} + +.power_icon16x16.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat 0 -32px; +} + +.power_icon16x16.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat 0 0; +} + +.power_icon16x16.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -16px -16px; +} + +.power_icon16x16.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -16px -32px; +} + +.power_icon16x16.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -16px 0; +} + +.power_icon16x16.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -32px -16px; +} + +.power_icon16x16.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -32px -32px; +} + +.power_icon16x16.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -32px 0; +} + +.power_icon16x16.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -48px -16px; +} + +.power_icon16x16.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -48px -32px; +} + +.power_icon16x16.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -48px 0; +} + +.power_icon16x16.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -64px -16px; +} + +.power_icon16x16.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -64px -32px; +} + +.power_icon16x16.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -64px 0; +} + +.power_icon16x16.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -80px -16px; +} + +.power_icon16x16.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -80px -32px; +} + +.power_icon16x16.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -80px 0; +} + +.power_icon16x16.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -96px -16px; +} + +.power_icon16x16.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -96px -32px; +} + +.power_icon16x16.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -96px 0; +} + +.power_icon16x16.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -112px -16px; +} + +.power_icon16x16.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -112px -32px; +} + +.power_icon16x16.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -112px 0; +} + +.power_icon16x16.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -128px -16px; +} + +.power_icon16x16.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -128px -32px; +} + +.power_icon16x16.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -128px 0; +} + +.power_icon16x16.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -144px -16px; +} + +.power_icon16x16.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -144px -32px; +} + +.power_icon16x16.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -144px 0; +} + +.power_icon16x16.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -160px -16px; +} + +.power_icon16x16.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -160px -32px; +} + +.power_icon16x16.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -160px 0; +} + +.power_icon16x16.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -176px -16px; +} + +.power_icon16x16.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -176px -32px; +} + +.power_icon16x16.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -176px 0; +} + +.power_icon16x16.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -192px -16px; +} + +.power_icon16x16.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -192px -32px; +} + +.power_icon16x16.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -192px 0; +} + +.power_icon16x16.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -208px -16px; +} + +.power_icon16x16.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -208px -32px; +} + +.power_icon16x16.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -208px 0; +} + +.power_icon16x16.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -224px -16px; +} + +.power_icon16x16.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -224px -32px; +} + +.power_icon16x16.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -224px 0; +} + +.power_icon16x16.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -240px -16px; +} + +.power_icon16x16.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -240px -32px; +} + +.power_icon16x16.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -240px 0; +} + +.power_icon16x16.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -256px -16px; +} + +.power_icon16x16.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -256px -32px; +} + +.power_icon16x16.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -256px 0; +} + +.power_icon16x16.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -272px -16px; +} + +.power_icon16x16.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -272px -32px; +} + +.power_icon16x16.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -272px 0; +} + +.power_icon16x16.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -288px -16px; +} + +.power_icon16x16.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -288px -32px; +} + +.power_icon16x16.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -288px 0; +} + +.power_icon16x16.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -304px -16px; +} + +.power_icon16x16.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -304px -32px; +} + +.power_icon16x16.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -304px 0; +} + +.power_icon16x16.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -320px -16px; +} + +.power_icon16x16.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -320px -32px; +} + +.power_icon16x16.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -320px 0; +} + +.power_icon16x16.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -336px -16px; +} + +.power_icon16x16.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -336px -32px; +} + +.power_icon16x16.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -336px 0; +} + +.power_icon16x16.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -352px -16px; +} + +.power_icon16x16.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -352px -32px; +} + +.power_icon16x16.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -352px 0; +} + +.power_icon16x16.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -368px -16px; +} + +.power_icon16x16.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -368px -32px; +} + +.power_icon16x16.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -368px 0; +} + +.power_icon16x16.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -384px -16px; +} + +.power_icon16x16.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -384px -32px; +} + +.power_icon16x16.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -384px 0; +} + +.power_icon16x16.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -400px -16px; +} + +.power_icon16x16.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -400px -32px; +} + +.power_icon16x16.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -400px 0; +} + +.power_icon16x16.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -416px -16px; +} + +.power_icon16x16.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -416px -32px; +} + +.power_icon16x16.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -416px 0; +} + +.power_icon16x16.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -432px -16px; +} + +.power_icon16x16.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -432px -32px; +} + +.power_icon16x16.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -432px 0; +} + +.power_icon16x16.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -448px -16px; +} + +.power_icon16x16.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -448px -32px; +} + +.power_icon16x16.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -448px 0; +} + +.power_icon16x16.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -464px -16px; +} + +.power_icon16x16.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -464px -32px; +} + +.power_icon16x16.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -464px 0; +} + +.power_icon16x16.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -480px -16px; +} + +.power_icon16x16.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -480px -32px; +} + +.power_icon16x16.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -480px 0; +} + +.power_icon16x16.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -496px -16px; +} + +.power_icon16x16.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -496px -32px; +} + +.power_icon16x16.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -496px 0; +} + +.power_icon16x16.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -512px -16px; +} + +.power_icon16x16.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -512px -32px; +} + +.power_icon16x16.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -512px 0; +} + +.power_icon16x16.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -528px -16px; +} + +.power_icon16x16.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -528px -32px; +} + +.power_icon16x16.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -528px 0; +} + +.power_icon16x16.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -544px -16px; +} + +.power_icon16x16.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -544px -32px; +} + +.power_icon16x16.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -544px 0; +} + +.power_icon16x16.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -560px -16px; +} + +.power_icon16x16.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -560px -32px; +} + +.power_icon16x16.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -560px 0; +} + +.power_icon16x16.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -576px -16px; +} + +.power_icon16x16.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -576px -32px; +} + +.power_icon16x16.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -576px 0; +} + +.power_icon16x16.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -592px -16px; +} + +.power_icon16x16.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -592px -32px; +} + +.power_icon16x16.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -592px 0; +} + +.power_icon16x16.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -608px -16px; +} + +.power_icon16x16.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -608px -32px; +} + +.power_icon16x16.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -608px 0; +} + +.power_icon16x16.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -624px -16px; +} + +.power_icon16x16.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -624px -32px; +} + +.power_icon16x16.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -624px 0; +} + +.power_icon16x16.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -640px -16px; +} + +.power_icon16x16.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -640px -32px; +} + +.power_icon16x16.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -640px 0; +} + +.power_icon16x16.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -656px -16px; +} + +.power_icon16x16.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -656px -32px; +} + +.power_icon16x16.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -656px 0; +} + +.power_icon16x16.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -672px -16px; +} + +.power_icon16x16.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -672px -32px; +} + +.power_icon16x16.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -672px 0; +} + +.power_icon16x16.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -688px -16px; +} + +.power_icon16x16.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -688px -32px; +} + +.power_icon16x16.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -688px 0; +} + +.power_icon16x16.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -704px -16px; +} + +.power_icon16x16.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -704px -32px; +} + +.power_icon16x16.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -704px 0; +} + +.power_icon16x16.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -720px -16px; +} + +.power_icon16x16.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -720px -32px; +} + +.power_icon16x16.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -720px 0; +} + +.power_icon16x16.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -736px -16px; +} + +.power_icon16x16.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -736px -32px; +} + +.power_icon16x16.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -736px 0; +} + +.power_icon16x16.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -752px -16px; +} + +.power_icon16x16.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -752px -32px; +} + +.power_icon16x16.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -752px 0; +} + +.power_icon16x16.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -768px -16px; +} + +.power_icon16x16.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -768px -32px; +} + +.power_icon16x16.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -768px 0; +} + +.power_icon16x16.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -784px -16px; +} + +.power_icon16x16.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -784px -32px; +} + +.power_icon16x16.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -784px 0; +} + +.power_icon16x16.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -800px -16px; +} + +.power_icon16x16.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -800px -32px; +} + +.power_icon16x16.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -800px 0; +} + +.power_icon16x16.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -816px -16px; +} + +.power_icon16x16.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -816px -32px; +} + +.power_icon16x16.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -816px 0; +} + +.power_icon16x16.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -832px -16px; +} + +.power_icon16x16.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -832px -32px; +} + +.power_icon16x16.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -832px 0; +} + +.power_icon16x16.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -848px -16px; +} + +.power_icon16x16.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -848px -32px; +} + +.power_icon16x16.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -848px 0; +} + +.power_icon16x16.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -864px -16px; +} + +.power_icon16x16.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -864px -32px; +} + +.power_icon16x16.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -864px 0; +} + +.power_icon16x16.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -880px -16px; +} + +.power_icon16x16.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -880px -32px; +} + +.power_icon16x16.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -880px 0; +} + +.power_icon16x16.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -896px -16px; +} + +.power_icon16x16.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -896px -32px; +} + +.power_icon16x16.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -896px 0; +} + +.power_icon16x16.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -912px -16px; +} + +.power_icon16x16.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -912px -32px; +} + +.power_icon16x16.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -912px 0; +} + +.power_icon16x16.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -928px -16px; +} + +.power_icon16x16.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -928px -32px; +} + +.power_icon16x16.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -928px 0; +} + +.power_icon16x16.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -944px -16px; +} + +.power_icon16x16.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -944px -32px; +} + +.power_icon16x16.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -944px 0; +} + +.power_icon16x16.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -960px -16px; +} + +.power_icon16x16.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -960px -32px; +} + +.power_icon16x16.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -960px 0; +} + +.power_icon16x16.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -976px -16px; +} + +.power_icon16x16.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -976px -32px; +} + +.power_icon16x16.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -976px 0; +} + +.power_icon16x16.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -992px -16px; +} + +.power_icon16x16.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -992px -32px; +} + +.power_icon16x16.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -992px 0; +} + +.power_icon16x16.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1008px -16px; +} + +.power_icon16x16.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1008px -32px; +} + +.power_icon16x16.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1008px 0; +} + +.power_icon16x16.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1024px -16px; +} + +.power_icon16x16.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1024px -32px; +} + +.power_icon16x16.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1024px 0; +} + +.power_icon16x16.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1040px -16px; +} + +.power_icon16x16.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1040px -32px; +} + +.power_icon16x16.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1040px 0; +} + +.power_icon16x16.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1056px -16px; +} + +.power_icon16x16.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1056px -32px; +} + +.power_icon16x16.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1056px 0; +} + +.power_icon16x16.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1072px -16px; +} + +.power_icon16x16.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1072px -32px; +} + +.power_icon16x16.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1072px 0; +} + +.power_icon16x16.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1088px -16px; +} + +.power_icon16x16.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1088px -32px; +} + +.power_icon16x16.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1088px 0; +} + +.power_icon16x16.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1104px -16px; +} + +.power_icon16x16.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1104px -32px; +} + +.power_icon16x16.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1104px 0; +} + +.power_icon16x16.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1120px -16px; +} + +.power_icon16x16.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1120px -32px; +} + +.power_icon16x16.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1120px 0; +} + +.power_icon16x16.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1136px -16px; +} + +.power_icon16x16.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1136px -32px; +} + +.power_icon16x16.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1136px 0; +} + +.power_icon16x16.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1152px -16px; +} + +.power_icon16x16.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1152px -32px; +} + +.power_icon16x16.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1152px 0; +} + +.power_icon16x16.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1168px -16px; +} + +.power_icon16x16.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1168px -32px; +} + +.power_icon16x16.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1168px 0; +} + +.power_icon16x16.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1184px -16px; +} + +.power_icon16x16.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1184px -32px; +} + +.power_icon16x16.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1184px 0; +} + +.power_icon16x16.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1200px -16px; +} + +.power_icon16x16.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1200px -32px; +} + +.power_icon16x16.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1200px 0; +} + +.power_icon16x16.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1216px -16px; +} + +.power_icon16x16.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1216px -32px; +} + +.power_icon16x16.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1216px 0; +} + +.power_icon16x16.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1232px -16px; +} + +.power_icon16x16.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1232px -32px; +} + +.power_icon16x16.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1232px 0; +} + +.power_icon16x16.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1248px -16px; +} + +.power_icon16x16.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1248px -32px; +} + +.power_icon16x16.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1248px 0; +} + +.power_icon16x16.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1264px -16px; +} + +.power_icon16x16.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1264px -32px; +} + +.power_icon16x16.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1264px 0; +} + +.power_icon16x16.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1280px -16px; +} + +.power_icon16x16.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1280px -32px; +} + +.power_icon16x16.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1280px 0; +} + +.power_icon16x16.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1296px -16px; +} + +.power_icon16x16.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1296px -32px; +} + +.power_icon16x16.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1296px 0; +} + +.power_icon16x16.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1312px -16px; +} + +.power_icon16x16.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1312px -32px; +} + +.power_icon16x16.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1312px 0; +} + +.power_icon16x16.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1328px -16px; +} + +.power_icon16x16.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1328px -32px; +} + +.power_icon16x16.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1328px 0; +} + +.power_icon16x16.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1344px -16px; +} + +.power_icon16x16.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1344px -32px; +} + +.power_icon16x16.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1344px 0; +} + +.power_icon16x16.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1360px -16px; +} + +.power_icon16x16.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1360px -32px; +} + +.power_icon16x16.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1360px 0; +} + +.power_icon16x16.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1376px -16px; +} + +.power_icon16x16.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1376px -32px; +} + +.power_icon16x16.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1376px 0; +} + +.power_icon16x16.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1392px -16px; +} + +.power_icon16x16.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1392px -32px; +} + +.power_icon16x16.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1392px 0; +} + +.power_icon16x16.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1408px -16px; +} + +.power_icon16x16.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1408px -32px; +} + +.power_icon16x16.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1408px 0; +} + +.power_icon16x16.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1424px -16px; +} + +.power_icon16x16.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1424px -32px; +} + +.power_icon16x16.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1424px 0; +} + +.power_icon16x16.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1440px -16px; +} + +.power_icon16x16.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1440px -32px; +} + +.power_icon16x16.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1440px 0; +} + +.power_icon16x16.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1456px -16px; +} + +.power_icon16x16.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1456px -32px; +} + +.power_icon16x16.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1456px 0; +} + +.power_icon16x16.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1472px -16px; +} + +.power_icon16x16.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1472px -32px; +} + +.power_icon16x16.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1472px 0; +} + +.power_icon16x16.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1488px -16px; +} + +.power_icon16x16.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1488px -32px; +} + +.power_icon16x16.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1488px 0; +} + +.power_icon16x16.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1504px -16px; +} + +.power_icon16x16.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1504px -32px; +} + +.power_icon16x16.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1504px 0; +} + +.power_icon16x16.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1520px -16px; +} + +.power_icon16x16.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1520px -32px; +} + +.power_icon16x16.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1520px 0; +} + +.power_icon16x16.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1536px -16px; +} + +.power_icon16x16.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1536px -32px; +} + +.power_icon16x16.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1536px 0; +} + +.power_icon16x16.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1552px -16px; +} + +.power_icon16x16.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1552px -32px; +} + +.power_icon16x16.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1552px 0; +} + +.power_icon16x16.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1568px -16px; +} + +.power_icon16x16.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1568px -32px; +} + +.power_icon16x16.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1568px 0; +} + +.power_icon16x16.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1584px -16px; +} + +.power_icon16x16.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1584px -32px; +} + +.power_icon16x16.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1584px 0; +} + +.power_icon16x16.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1600px -16px; +} + +.power_icon16x16.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1600px -32px; +} + +.power_icon16x16.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1600px 0; +} + +.power_icon16x16.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1616px -16px; +} + +.power_icon16x16.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1616px -32px; +} + +.power_icon16x16.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1616px 0; +} + +.power_icon16x16.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1632px -16px; +} + +.power_icon16x16.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1632px -32px; +} + +.power_icon16x16.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1632px 0; +} + +.power_icon16x16.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1648px -16px; +} + +.power_icon16x16.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1648px -32px; +} + +.power_icon16x16.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1648px 0; +} + +.power_icon16x16.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1664px -16px; +} + +.power_icon16x16.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1664px -32px; +} + +.power_icon16x16.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1664px 0; +} + +.power_icon16x16.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1680px -16px; +} + +.power_icon16x16.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1680px -32px; +} + +.power_icon16x16.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1680px 0; +} + +.power_icon16x16.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1696px -16px; +} + +.power_icon16x16.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1696px -32px; +} + +.power_icon16x16.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1696px 0; +} + +.power_icon16x16.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1712px -16px; +} + +.power_icon16x16.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1712px -32px; +} + +.power_icon16x16.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1712px 0; +} + +.power_icon16x16.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1728px -16px; +} + +.power_icon16x16.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1728px -32px; +} + +.power_icon16x16.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1728px 0; +} + +.power_icon16x16.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1744px -16px; +} + +.power_icon16x16.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1744px -32px; +} + +.power_icon16x16.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1744px 0; +} + +.power_icon16x16.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1760px -16px; +} + +.power_icon16x16.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1760px -32px; +} + +.power_icon16x16.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1760px 0; +} + +.power_icon16x16.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1776px -16px; +} + +.power_icon16x16.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1776px -32px; +} + +.power_icon16x16.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1776px 0; +} + +.power_icon16x16.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1792px -16px; +} + +.power_icon16x16.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1792px -32px; +} + +.power_icon16x16.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1792px 0; +} + +.power_icon16x16.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1808px -16px; +} + +.power_icon16x16.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1808px -32px; +} + +.power_icon16x16.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1808px 0; +} + +.power_icon16x16.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1824px -16px; +} + +.power_icon16x16.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1824px -32px; +} + +.power_icon16x16.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1824px 0; +} + +.power_icon16x16.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1840px -16px; +} + +.power_icon16x16.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1840px -32px; +} + +.power_icon16x16.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1840px 0; +} + +.power_icon16x16.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1856px -16px; +} + +.power_icon16x16.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1856px -32px; +} + +.power_icon16x16.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1856px 0; +} + +.power_icon16x16.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1872px -16px; +} + +.power_icon16x16.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1872px -32px; +} + +.power_icon16x16.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1872px 0; +} + +.power_icon16x16.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1888px -16px; +} + +.power_icon16x16.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1888px -32px; +} + +.power_icon16x16.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1888px 0; +} + +.power_icon16x16.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1904px -16px; +} + +.power_icon16x16.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1904px -32px; +} + +.power_icon16x16.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1904px 0; +} + +.power_icon16x16.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1920px -16px; +} + +.power_icon16x16.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1920px -32px; +} + +.power_icon16x16.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1920px 0; +} + +.power_icon16x16.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1936px -16px; +} + +.power_icon16x16.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1936px -32px; +} + +.power_icon16x16.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1936px 0; +} + +.power_icon16x16.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1952px -16px; +} + +.power_icon16x16.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1952px -32px; +} + +.power_icon16x16.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1952px 0; +} + +.power_icon16x16.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1968px -16px; +} + +.power_icon16x16.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1968px -32px; +} + +.power_icon16x16.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1968px 0; +} + +.power_icon16x16.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1984px -16px; +} + +.power_icon16x16.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1984px -32px; +} + +.power_icon16x16.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -1984px 0; +} + +.power_icon16x16.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2000px -16px; +} + +.power_icon16x16.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2000px -32px; +} + +.power_icon16x16.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2000px 0; +} + +.power_icon16x16.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2016px -16px; +} + +.power_icon16x16.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2016px -32px; +} + +.power_icon16x16.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2016px 0; +} + +.power_icon16x16.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2032px -16px; +} + +.power_icon16x16.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2032px -32px; +} + +.power_icon16x16.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_16x16_part2_5c43c90.png) no-repeat -2032px 0; +} + +.power_icon24x24 { + width: 24px; + height: 24px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon24x24.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat 0 -24px; +} + +.power_icon24x24.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat 0 -48px; +} + +.power_icon24x24.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat 0 0; +} + +.power_icon24x24.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -24px -24px; +} + +.power_icon24x24.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -24px -48px; +} + +.power_icon24x24.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -24px 0; +} + +.power_icon24x24.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -48px -24px; +} + +.power_icon24x24.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -48px -48px; +} + +.power_icon24x24.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -48px 0; +} + +.power_icon24x24.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -72px -24px; +} + +.power_icon24x24.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -72px -48px; +} + +.power_icon24x24.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -72px 0; +} + +.power_icon24x24.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -96px -24px; +} + +.power_icon24x24.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -96px -48px; +} + +.power_icon24x24.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -96px 0; +} + +.power_icon24x24.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -120px -24px; +} + +.power_icon24x24.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -120px -48px; +} + +.power_icon24x24.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -120px 0; +} + +.power_icon24x24.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -144px -24px; +} + +.power_icon24x24.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -144px -48px; +} + +.power_icon24x24.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -144px 0; +} + +.power_icon24x24.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -168px -24px; +} + +.power_icon24x24.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -168px -48px; +} + +.power_icon24x24.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -168px 0; +} + +.power_icon24x24.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -192px -24px; +} + +.power_icon24x24.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -192px -48px; +} + +.power_icon24x24.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -192px 0; +} + +.power_icon24x24.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -216px -24px; +} + +.power_icon24x24.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -216px -48px; +} + +.power_icon24x24.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -216px 0; +} + +.power_icon24x24.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -240px -24px; +} + +.power_icon24x24.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -240px -48px; +} + +.power_icon24x24.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -240px 0; +} + +.power_icon24x24.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -264px -24px; +} + +.power_icon24x24.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -264px -48px; +} + +.power_icon24x24.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -264px 0; +} + +.power_icon24x24.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -288px -24px; +} + +.power_icon24x24.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -288px -48px; +} + +.power_icon24x24.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -288px 0; +} + +.power_icon24x24.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -312px -24px; +} + +.power_icon24x24.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -312px -48px; +} + +.power_icon24x24.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -312px 0; +} + +.power_icon24x24.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -336px -24px; +} + +.power_icon24x24.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -336px -48px; +} + +.power_icon24x24.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -336px 0; +} + +.power_icon24x24.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -360px -24px; +} + +.power_icon24x24.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -360px -48px; +} + +.power_icon24x24.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -360px 0; +} + +.power_icon24x24.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -384px -24px; +} + +.power_icon24x24.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -384px -48px; +} + +.power_icon24x24.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -384px 0; +} + +.power_icon24x24.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -408px -24px; +} + +.power_icon24x24.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -408px -48px; +} + +.power_icon24x24.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -408px 0; +} + +.power_icon24x24.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -432px -24px; +} + +.power_icon24x24.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -432px -48px; +} + +.power_icon24x24.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -432px 0; +} + +.power_icon24x24.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -456px -24px; +} + +.power_icon24x24.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -456px -48px; +} + +.power_icon24x24.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -456px 0; +} + +.power_icon24x24.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -480px -24px; +} + +.power_icon24x24.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -480px -48px; +} + +.power_icon24x24.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -480px 0; +} + +.power_icon24x24.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -504px -24px; +} + +.power_icon24x24.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -504px -48px; +} + +.power_icon24x24.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -504px 0; +} + +.power_icon24x24.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -528px -24px; +} + +.power_icon24x24.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -528px -48px; +} + +.power_icon24x24.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -528px 0; +} + +.power_icon24x24.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -552px -24px; +} + +.power_icon24x24.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -552px -48px; +} + +.power_icon24x24.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -552px 0; +} + +.power_icon24x24.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -576px -24px; +} + +.power_icon24x24.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -576px -48px; +} + +.power_icon24x24.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -576px 0; +} + +.power_icon24x24.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -600px -24px; +} + +.power_icon24x24.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -600px -48px; +} + +.power_icon24x24.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -600px 0; +} + +.power_icon24x24.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -624px -24px; +} + +.power_icon24x24.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -624px -48px; +} + +.power_icon24x24.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -624px 0; +} + +.power_icon24x24.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -648px -24px; +} + +.power_icon24x24.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -648px -48px; +} + +.power_icon24x24.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -648px 0; +} + +.power_icon24x24.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -672px -24px; +} + +.power_icon24x24.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -672px -48px; +} + +.power_icon24x24.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -672px 0; +} + +.power_icon24x24.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -696px -24px; +} + +.power_icon24x24.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -696px -48px; +} + +.power_icon24x24.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -696px 0; +} + +.power_icon24x24.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -720px -24px; +} + +.power_icon24x24.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -720px -48px; +} + +.power_icon24x24.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -720px 0; +} + +.power_icon24x24.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -744px -24px; +} + +.power_icon24x24.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -744px -48px; +} + +.power_icon24x24.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -744px 0; +} + +.power_icon24x24.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -768px -24px; +} + +.power_icon24x24.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -768px -48px; +} + +.power_icon24x24.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -768px 0; +} + +.power_icon24x24.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -792px -24px; +} + +.power_icon24x24.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -792px -48px; +} + +.power_icon24x24.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -792px 0; +} + +.power_icon24x24.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -816px -24px; +} + +.power_icon24x24.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -816px -48px; +} + +.power_icon24x24.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -816px 0; +} + +.power_icon24x24.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -840px -24px; +} + +.power_icon24x24.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -840px -48px; +} + +.power_icon24x24.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -840px 0; +} + +.power_icon24x24.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -864px -24px; +} + +.power_icon24x24.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -864px -48px; +} + +.power_icon24x24.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -864px 0; +} + +.power_icon24x24.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -888px -24px; +} + +.power_icon24x24.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -888px -48px; +} + +.power_icon24x24.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -888px 0; +} + +.power_icon24x24.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -912px -24px; +} + +.power_icon24x24.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -912px -48px; +} + +.power_icon24x24.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -912px 0; +} + +.power_icon24x24.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -936px -24px; +} + +.power_icon24x24.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -936px -48px; +} + +.power_icon24x24.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -936px 0; +} + +.power_icon24x24.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -960px -24px; +} + +.power_icon24x24.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -960px -48px; +} + +.power_icon24x24.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -960px 0; +} + +.power_icon24x24.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -984px -24px; +} + +.power_icon24x24.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -984px -48px; +} + +.power_icon24x24.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -984px 0; +} + +.power_icon24x24.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1008px -24px; +} + +.power_icon24x24.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1008px -48px; +} + +.power_icon24x24.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1008px 0; +} + +.power_icon24x24.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1032px -24px; +} + +.power_icon24x24.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1032px -48px; +} + +.power_icon24x24.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1032px 0; +} + +.power_icon24x24.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1056px -24px; +} + +.power_icon24x24.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1056px -48px; +} + +.power_icon24x24.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1056px 0; +} + +.power_icon24x24.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1080px -24px; +} + +.power_icon24x24.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1080px -48px; +} + +.power_icon24x24.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1080px 0; +} + +.power_icon24x24.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1104px -24px; +} + +.power_icon24x24.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1104px -48px; +} + +.power_icon24x24.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1104px 0; +} + +.power_icon24x24.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1128px -24px; +} + +.power_icon24x24.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1128px -48px; +} + +.power_icon24x24.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1128px 0; +} + +.power_icon24x24.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1152px -24px; +} + +.power_icon24x24.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1152px -48px; +} + +.power_icon24x24.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1152px 0; +} + +.power_icon24x24.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1176px -24px; +} + +.power_icon24x24.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1176px -48px; +} + +.power_icon24x24.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1176px 0; +} + +.power_icon24x24.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1200px -24px; +} + +.power_icon24x24.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1200px -48px; +} + +.power_icon24x24.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1200px 0; +} + +.power_icon24x24.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1224px -24px; +} + +.power_icon24x24.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1224px -48px; +} + +.power_icon24x24.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1224px 0; +} + +.power_icon24x24.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1248px -24px; +} + +.power_icon24x24.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1248px -48px; +} + +.power_icon24x24.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1248px 0; +} + +.power_icon24x24.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1272px -24px; +} + +.power_icon24x24.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1272px -48px; +} + +.power_icon24x24.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1272px 0; +} + +.power_icon24x24.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1296px -24px; +} + +.power_icon24x24.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1296px -48px; +} + +.power_icon24x24.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1296px 0; +} + +.power_icon24x24.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1320px -24px; +} + +.power_icon24x24.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1320px -48px; +} + +.power_icon24x24.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1320px 0; +} + +.power_icon24x24.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1344px -24px; +} + +.power_icon24x24.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1344px -48px; +} + +.power_icon24x24.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1344px 0; +} + +.power_icon24x24.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1368px -24px; +} + +.power_icon24x24.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1368px -48px; +} + +.power_icon24x24.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1368px 0; +} + +.power_icon24x24.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1392px -24px; +} + +.power_icon24x24.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1392px -48px; +} + +.power_icon24x24.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1392px 0; +} + +.power_icon24x24.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1416px -24px; +} + +.power_icon24x24.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1416px -48px; +} + +.power_icon24x24.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1416px 0; +} + +.power_icon24x24.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1440px -24px; +} + +.power_icon24x24.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1440px -48px; +} + +.power_icon24x24.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1440px 0; +} + +.power_icon24x24.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1464px -24px; +} + +.power_icon24x24.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1464px -48px; +} + +.power_icon24x24.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1464px 0; +} + +.power_icon24x24.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1488px -24px; +} + +.power_icon24x24.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1488px -48px; +} + +.power_icon24x24.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1488px 0; +} + +.power_icon24x24.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1512px -24px; +} + +.power_icon24x24.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1512px -48px; +} + +.power_icon24x24.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1512px 0; +} + +.power_icon24x24.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1536px -24px; +} + +.power_icon24x24.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1536px -48px; +} + +.power_icon24x24.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1536px 0; +} + +.power_icon24x24.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1560px -24px; +} + +.power_icon24x24.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1560px -48px; +} + +.power_icon24x24.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1560px 0; +} + +.power_icon24x24.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1584px -24px; +} + +.power_icon24x24.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1584px -48px; +} + +.power_icon24x24.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1584px 0; +} + +.power_icon24x24.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1608px -24px; +} + +.power_icon24x24.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1608px -48px; +} + +.power_icon24x24.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1608px 0; +} + +.power_icon24x24.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1632px -24px; +} + +.power_icon24x24.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1632px -48px; +} + +.power_icon24x24.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1632px 0; +} + +.power_icon24x24.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1656px -24px; +} + +.power_icon24x24.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1656px -48px; +} + +.power_icon24x24.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1656px 0; +} + +.power_icon24x24.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1680px -24px; +} + +.power_icon24x24.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1680px -48px; +} + +.power_icon24x24.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1680px 0; +} + +.power_icon24x24.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1704px -24px; +} + +.power_icon24x24.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1704px -48px; +} + +.power_icon24x24.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1704px 0; +} + +.power_icon24x24.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1728px -24px; +} + +.power_icon24x24.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1728px -48px; +} + +.power_icon24x24.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1728px 0; +} + +.power_icon24x24.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1752px -24px; +} + +.power_icon24x24.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1752px -48px; +} + +.power_icon24x24.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1752px 0; +} + +.power_icon24x24.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1776px -24px; +} + +.power_icon24x24.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1776px -48px; +} + +.power_icon24x24.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1776px 0; +} + +.power_icon24x24.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1800px -24px; +} + +.power_icon24x24.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1800px -48px; +} + +.power_icon24x24.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1800px 0; +} + +.power_icon24x24.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1824px -24px; +} + +.power_icon24x24.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1824px -48px; +} + +.power_icon24x24.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1824px 0; +} + +.power_icon24x24.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1848px -24px; +} + +.power_icon24x24.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1848px -48px; +} + +.power_icon24x24.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1848px 0; +} + +.power_icon24x24.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1872px -24px; +} + +.power_icon24x24.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1872px -48px; +} + +.power_icon24x24.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1872px 0; +} + +.power_icon24x24.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1896px -24px; +} + +.power_icon24x24.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1896px -48px; +} + +.power_icon24x24.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1896px 0; +} + +.power_icon24x24.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1920px -24px; +} + +.power_icon24x24.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1920px -48px; +} + +.power_icon24x24.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1920px 0; +} + +.power_icon24x24.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1944px -24px; +} + +.power_icon24x24.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1944px -48px; +} + +.power_icon24x24.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1944px 0; +} + +.power_icon24x24.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1968px -24px; +} + +.power_icon24x24.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1968px -48px; +} + +.power_icon24x24.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1968px 0; +} + +.power_icon24x24.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1992px -24px; +} + +.power_icon24x24.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1992px -48px; +} + +.power_icon24x24.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -1992px 0; +} + +.power_icon24x24.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2016px -24px; +} + +.power_icon24x24.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2016px -48px; +} + +.power_icon24x24.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2016px 0; +} + +.power_icon24x24.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2040px -24px; +} + +.power_icon24x24.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2040px -48px; +} + +.power_icon24x24.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2040px 0; +} + +.power_icon24x24.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2064px -24px; +} + +.power_icon24x24.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2064px -48px; +} + +.power_icon24x24.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2064px 0; +} + +.power_icon24x24.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2088px -24px; +} + +.power_icon24x24.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2088px -48px; +} + +.power_icon24x24.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2088px 0; +} + +.power_icon24x24.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2112px -24px; +} + +.power_icon24x24.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2112px -48px; +} + +.power_icon24x24.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2112px 0; +} + +.power_icon24x24.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2136px -24px; +} + +.power_icon24x24.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2136px -48px; +} + +.power_icon24x24.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2136px 0; +} + +.power_icon24x24.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2160px -24px; +} + +.power_icon24x24.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2160px -48px; +} + +.power_icon24x24.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2160px 0; +} + +.power_icon24x24.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2184px -24px; +} + +.power_icon24x24.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2184px -48px; +} + +.power_icon24x24.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2184px 0; +} + +.power_icon24x24.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2208px -24px; +} + +.power_icon24x24.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2208px -48px; +} + +.power_icon24x24.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2208px 0; +} + +.power_icon24x24.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2232px -24px; +} + +.power_icon24x24.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2232px -48px; +} + +.power_icon24x24.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2232px 0; +} + +.power_icon24x24.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2256px -24px; +} + +.power_icon24x24.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2256px -48px; +} + +.power_icon24x24.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2256px 0; +} + +.power_icon24x24.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2280px -24px; +} + +.power_icon24x24.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2280px -48px; +} + +.power_icon24x24.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2280px 0; +} + +.power_icon24x24.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2304px -24px; +} + +.power_icon24x24.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2304px -48px; +} + +.power_icon24x24.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2304px 0; +} + +.power_icon24x24.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2328px -24px; +} + +.power_icon24x24.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2328px -48px; +} + +.power_icon24x24.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2328px 0; +} + +.power_icon24x24.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2352px -24px; +} + +.power_icon24x24.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2352px -48px; +} + +.power_icon24x24.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2352px 0; +} + +.power_icon24x24.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2376px -24px; +} + +.power_icon24x24.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2376px -48px; +} + +.power_icon24x24.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2376px 0; +} + +.power_icon24x24.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2400px -24px; +} + +.power_icon24x24.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2400px -48px; +} + +.power_icon24x24.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2400px 0; +} + +.power_icon24x24.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2424px -24px; +} + +.power_icon24x24.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2424px -48px; +} + +.power_icon24x24.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2424px 0; +} + +.power_icon24x24.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2448px -24px; +} + +.power_icon24x24.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2448px -48px; +} + +.power_icon24x24.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2448px 0; +} + +.power_icon24x24.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2472px -24px; +} + +.power_icon24x24.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2472px -48px; +} + +.power_icon24x24.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2472px 0; +} + +.power_icon24x24.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2496px -24px; +} + +.power_icon24x24.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2496px -48px; +} + +.power_icon24x24.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2496px 0; +} + +.power_icon24x24.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2520px -24px; +} + +.power_icon24x24.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2520px -48px; +} + +.power_icon24x24.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2520px 0; +} + +.power_icon24x24.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2544px -24px; +} + +.power_icon24x24.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2544px -48px; +} + +.power_icon24x24.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2544px 0; +} + +.power_icon24x24.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2568px -24px; +} + +.power_icon24x24.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2568px -48px; +} + +.power_icon24x24.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2568px 0; +} + +.power_icon24x24.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2592px -24px; +} + +.power_icon24x24.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2592px -48px; +} + +.power_icon24x24.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2592px 0; +} + +.power_icon24x24.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2616px -24px; +} + +.power_icon24x24.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2616px -48px; +} + +.power_icon24x24.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2616px 0; +} + +.power_icon24x24.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2640px -24px; +} + +.power_icon24x24.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2640px -48px; +} + +.power_icon24x24.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2640px 0; +} + +.power_icon24x24.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2664px -24px; +} + +.power_icon24x24.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2664px -48px; +} + +.power_icon24x24.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2664px 0; +} + +.power_icon24x24.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2688px -24px; +} + +.power_icon24x24.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2688px -48px; +} + +.power_icon24x24.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2688px 0; +} + +.power_icon24x24.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2712px -24px; +} + +.power_icon24x24.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2712px -48px; +} + +.power_icon24x24.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2712px 0; +} + +.power_icon24x24.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2736px -24px; +} + +.power_icon24x24.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2736px -48px; +} + +.power_icon24x24.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2736px 0; +} + +.power_icon24x24.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2760px -24px; +} + +.power_icon24x24.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2760px -48px; +} + +.power_icon24x24.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2760px 0; +} + +.power_icon24x24.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2784px -24px; +} + +.power_icon24x24.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2784px -48px; +} + +.power_icon24x24.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2784px 0; +} + +.power_icon24x24.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2808px -24px; +} + +.power_icon24x24.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2808px -48px; +} + +.power_icon24x24.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2808px 0; +} + +.power_icon24x24.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2832px -24px; +} + +.power_icon24x24.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2832px -48px; +} + +.power_icon24x24.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2832px 0; +} + +.power_icon24x24.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2856px -24px; +} + +.power_icon24x24.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2856px -48px; +} + +.power_icon24x24.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2856px 0; +} + +.power_icon24x24.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2880px -24px; +} + +.power_icon24x24.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2880px -48px; +} + +.power_icon24x24.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2880px 0; +} + +.power_icon24x24.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2904px -24px; +} + +.power_icon24x24.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2904px -48px; +} + +.power_icon24x24.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2904px 0; +} + +.power_icon24x24.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2928px -24px; +} + +.power_icon24x24.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2928px -48px; +} + +.power_icon24x24.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2928px 0; +} + +.power_icon24x24.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2952px -24px; +} + +.power_icon24x24.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2952px -48px; +} + +.power_icon24x24.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2952px 0; +} + +.power_icon24x24.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2976px -24px; +} + +.power_icon24x24.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2976px -48px; +} + +.power_icon24x24.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -2976px 0; +} + +.power_icon24x24.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3000px -24px; +} + +.power_icon24x24.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3000px -48px; +} + +.power_icon24x24.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3000px 0; +} + +.power_icon24x24.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3024px -24px; +} + +.power_icon24x24.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3024px -48px; +} + +.power_icon24x24.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3024px 0; +} + +.power_icon24x24.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3048px -24px; +} + +.power_icon24x24.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3048px -48px; +} + +.power_icon24x24.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_24x24_part2_b351013.png) no-repeat -3048px 0; +} + +.power_icon30x30 { + width: 30px; + height: 30px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon30x30.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat 0 -30px; +} + +.power_icon30x30.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat 0 -60px; +} + +.power_icon30x30.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat 0 0; +} + +.power_icon30x30.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -30px -30px; +} + +.power_icon30x30.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -30px -60px; +} + +.power_icon30x30.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -30px 0; +} + +.power_icon30x30.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -60px -30px; +} + +.power_icon30x30.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -60px -60px; +} + +.power_icon30x30.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -60px 0; +} + +.power_icon30x30.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -90px -30px; +} + +.power_icon30x30.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -90px -60px; +} + +.power_icon30x30.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -90px 0; +} + +.power_icon30x30.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -120px -30px; +} + +.power_icon30x30.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -120px -60px; +} + +.power_icon30x30.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -120px 0; +} + +.power_icon30x30.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -150px -30px; +} + +.power_icon30x30.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -150px -60px; +} + +.power_icon30x30.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -150px 0; +} + +.power_icon30x30.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -180px -30px; +} + +.power_icon30x30.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -180px -60px; +} + +.power_icon30x30.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -180px 0; +} + +.power_icon30x30.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -210px -30px; +} + +.power_icon30x30.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -210px -60px; +} + +.power_icon30x30.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -210px 0; +} + +.power_icon30x30.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -240px -30px; +} + +.power_icon30x30.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -240px -60px; +} + +.power_icon30x30.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -240px 0; +} + +.power_icon30x30.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -270px -30px; +} + +.power_icon30x30.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -270px -60px; +} + +.power_icon30x30.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -270px 0; +} + +.power_icon30x30.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -300px -30px; +} + +.power_icon30x30.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -300px -60px; +} + +.power_icon30x30.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -300px 0; +} + +.power_icon30x30.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -330px -30px; +} + +.power_icon30x30.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -330px -60px; +} + +.power_icon30x30.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -330px 0; +} + +.power_icon30x30.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -360px -30px; +} + +.power_icon30x30.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -360px -60px; +} + +.power_icon30x30.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -360px 0; +} + +.power_icon30x30.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -390px -30px; +} + +.power_icon30x30.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -390px -60px; +} + +.power_icon30x30.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -390px 0; +} + +.power_icon30x30.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -420px -30px; +} + +.power_icon30x30.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -420px -60px; +} + +.power_icon30x30.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -420px 0; +} + +.power_icon30x30.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -450px -30px; +} + +.power_icon30x30.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -450px -60px; +} + +.power_icon30x30.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -450px 0; +} + +.power_icon30x30.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -480px -30px; +} + +.power_icon30x30.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -480px -60px; +} + +.power_icon30x30.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -480px 0; +} + +.power_icon30x30.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -510px -30px; +} + +.power_icon30x30.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -510px -60px; +} + +.power_icon30x30.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -510px 0; +} + +.power_icon30x30.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -540px -30px; +} + +.power_icon30x30.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -540px -60px; +} + +.power_icon30x30.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -540px 0; +} + +.power_icon30x30.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -570px -30px; +} + +.power_icon30x30.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -570px -60px; +} + +.power_icon30x30.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -570px 0; +} + +.power_icon30x30.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -600px -30px; +} + +.power_icon30x30.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -600px -60px; +} + +.power_icon30x30.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -600px 0; +} + +.power_icon30x30.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -630px -30px; +} + +.power_icon30x30.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -630px -60px; +} + +.power_icon30x30.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -630px 0; +} + +.power_icon30x30.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -660px -30px; +} + +.power_icon30x30.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -660px -60px; +} + +.power_icon30x30.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -660px 0; +} + +.power_icon30x30.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -690px -30px; +} + +.power_icon30x30.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -690px -60px; +} + +.power_icon30x30.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -690px 0; +} + +.power_icon30x30.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -720px -30px; +} + +.power_icon30x30.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -720px -60px; +} + +.power_icon30x30.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -720px 0; +} + +.power_icon30x30.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -750px -30px; +} + +.power_icon30x30.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -750px -60px; +} + +.power_icon30x30.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -750px 0; +} + +.power_icon30x30.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -780px -30px; +} + +.power_icon30x30.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -780px -60px; +} + +.power_icon30x30.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -780px 0; +} + +.power_icon30x30.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -810px -30px; +} + +.power_icon30x30.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -810px -60px; +} + +.power_icon30x30.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -810px 0; +} + +.power_icon30x30.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -840px -30px; +} + +.power_icon30x30.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -840px -60px; +} + +.power_icon30x30.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -840px 0; +} + +.power_icon30x30.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -870px -30px; +} + +.power_icon30x30.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -870px -60px; +} + +.power_icon30x30.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -870px 0; +} + +.power_icon30x30.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -900px -30px; +} + +.power_icon30x30.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -900px -60px; +} + +.power_icon30x30.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -900px 0; +} + +.power_icon30x30.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -930px -30px; +} + +.power_icon30x30.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -930px -60px; +} + +.power_icon30x30.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -930px 0; +} + +.power_icon30x30.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -960px -30px; +} + +.power_icon30x30.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -960px -60px; +} + +.power_icon30x30.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -960px 0; +} + +.power_icon30x30.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -990px -30px; +} + +.power_icon30x30.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -990px -60px; +} + +.power_icon30x30.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -990px 0; +} + +.power_icon30x30.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1020px -30px; +} + +.power_icon30x30.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1020px -60px; +} + +.power_icon30x30.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1020px 0; +} + +.power_icon30x30.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1050px -30px; +} + +.power_icon30x30.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1050px -60px; +} + +.power_icon30x30.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1050px 0; +} + +.power_icon30x30.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1080px -30px; +} + +.power_icon30x30.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1080px -60px; +} + +.power_icon30x30.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1080px 0; +} + +.power_icon30x30.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1110px -30px; +} + +.power_icon30x30.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1110px -60px; +} + +.power_icon30x30.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1110px 0; +} + +.power_icon30x30.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1140px -30px; +} + +.power_icon30x30.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1140px -60px; +} + +.power_icon30x30.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1140px 0; +} + +.power_icon30x30.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1170px -30px; +} + +.power_icon30x30.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1170px -60px; +} + +.power_icon30x30.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1170px 0; +} + +.power_icon30x30.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1200px -30px; +} + +.power_icon30x30.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1200px -60px; +} + +.power_icon30x30.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1200px 0; +} + +.power_icon30x30.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1230px -30px; +} + +.power_icon30x30.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1230px -60px; +} + +.power_icon30x30.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1230px 0; +} + +.power_icon30x30.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1260px -30px; +} + +.power_icon30x30.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1260px -60px; +} + +.power_icon30x30.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1260px 0; +} + +.power_icon30x30.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1290px -30px; +} + +.power_icon30x30.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1290px -60px; +} + +.power_icon30x30.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1290px 0; +} + +.power_icon30x30.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1320px -30px; +} + +.power_icon30x30.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1320px -60px; +} + +.power_icon30x30.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1320px 0; +} + +.power_icon30x30.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1350px -30px; +} + +.power_icon30x30.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1350px -60px; +} + +.power_icon30x30.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1350px 0; +} + +.power_icon30x30.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1380px -30px; +} + +.power_icon30x30.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1380px -60px; +} + +.power_icon30x30.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1380px 0; +} + +.power_icon30x30.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1410px -30px; +} + +.power_icon30x30.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1410px -60px; +} + +.power_icon30x30.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1410px 0; +} + +.power_icon30x30.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1440px -30px; +} + +.power_icon30x30.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1440px -60px; +} + +.power_icon30x30.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1440px 0; +} + +.power_icon30x30.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1470px -30px; +} + +.power_icon30x30.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1470px -60px; +} + +.power_icon30x30.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1470px 0; +} + +.power_icon30x30.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1500px -30px; +} + +.power_icon30x30.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1500px -60px; +} + +.power_icon30x30.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1500px 0; +} + +.power_icon30x30.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1530px -30px; +} + +.power_icon30x30.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1530px -60px; +} + +.power_icon30x30.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1530px 0; +} + +.power_icon30x30.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1560px -30px; +} + +.power_icon30x30.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1560px -60px; +} + +.power_icon30x30.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1560px 0; +} + +.power_icon30x30.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1590px -30px; +} + +.power_icon30x30.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1590px -60px; +} + +.power_icon30x30.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1590px 0; +} + +.power_icon30x30.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1620px -30px; +} + +.power_icon30x30.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1620px -60px; +} + +.power_icon30x30.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1620px 0; +} + +.power_icon30x30.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1650px -30px; +} + +.power_icon30x30.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1650px -60px; +} + +.power_icon30x30.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1650px 0; +} + +.power_icon30x30.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1680px -30px; +} + +.power_icon30x30.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1680px -60px; +} + +.power_icon30x30.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1680px 0; +} + +.power_icon30x30.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1710px -30px; +} + +.power_icon30x30.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1710px -60px; +} + +.power_icon30x30.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1710px 0; +} + +.power_icon30x30.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1740px -30px; +} + +.power_icon30x30.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1740px -60px; +} + +.power_icon30x30.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1740px 0; +} + +.power_icon30x30.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1770px -30px; +} + +.power_icon30x30.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1770px -60px; +} + +.power_icon30x30.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1770px 0; +} + +.power_icon30x30.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1800px -30px; +} + +.power_icon30x30.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1800px -60px; +} + +.power_icon30x30.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1800px 0; +} + +.power_icon30x30.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1830px -30px; +} + +.power_icon30x30.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1830px -60px; +} + +.power_icon30x30.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1830px 0; +} + +.power_icon30x30.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1860px -30px; +} + +.power_icon30x30.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1860px -60px; +} + +.power_icon30x30.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1860px 0; +} + +.power_icon30x30.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1890px -30px; +} + +.power_icon30x30.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1890px -60px; +} + +.power_icon30x30.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1890px 0; +} + +.power_icon30x30.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1920px -30px; +} + +.power_icon30x30.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1920px -60px; +} + +.power_icon30x30.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1920px 0; +} + +.power_icon30x30.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1950px -30px; +} + +.power_icon30x30.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1950px -60px; +} + +.power_icon30x30.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1950px 0; +} + +.power_icon30x30.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1980px -30px; +} + +.power_icon30x30.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1980px -60px; +} + +.power_icon30x30.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1980px 0; +} + +.power_icon30x30.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2010px -30px; +} + +.power_icon30x30.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2010px -60px; +} + +.power_icon30x30.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2010px 0; +} + +.power_icon30x30.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2040px -30px; +} + +.power_icon30x30.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2040px -60px; +} + +.power_icon30x30.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2040px 0; +} + +.power_icon30x30.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2070px -30px; +} + +.power_icon30x30.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2070px -60px; +} + +.power_icon30x30.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2070px 0; +} + +.power_icon30x30.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2100px -30px; +} + +.power_icon30x30.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2100px -60px; +} + +.power_icon30x30.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2100px 0; +} + +.power_icon30x30.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2130px -30px; +} + +.power_icon30x30.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2130px -60px; +} + +.power_icon30x30.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2130px 0; +} + +.power_icon30x30.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2160px -30px; +} + +.power_icon30x30.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2160px -60px; +} + +.power_icon30x30.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2160px 0; +} + +.power_icon30x30.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2190px -30px; +} + +.power_icon30x30.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2190px -60px; +} + +.power_icon30x30.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2190px 0; +} + +.power_icon30x30.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2220px -30px; +} + +.power_icon30x30.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2220px -60px; +} + +.power_icon30x30.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2220px 0; +} + +.power_icon30x30.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2250px -30px; +} + +.power_icon30x30.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2250px -60px; +} + +.power_icon30x30.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2250px 0; +} + +.power_icon30x30.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2280px -30px; +} + +.power_icon30x30.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2280px -60px; +} + +.power_icon30x30.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2280px 0; +} + +.power_icon30x30.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2310px -30px; +} + +.power_icon30x30.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2310px -60px; +} + +.power_icon30x30.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2310px 0; +} + +.power_icon30x30.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2340px -30px; +} + +.power_icon30x30.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2340px -60px; +} + +.power_icon30x30.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2340px 0; +} + +.power_icon30x30.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2370px -30px; +} + +.power_icon30x30.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2370px -60px; +} + +.power_icon30x30.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2370px 0; +} + +.power_icon30x30.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2400px -30px; +} + +.power_icon30x30.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2400px -60px; +} + +.power_icon30x30.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2400px 0; +} + +.power_icon30x30.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2430px -30px; +} + +.power_icon30x30.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2430px -60px; +} + +.power_icon30x30.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2430px 0; +} + +.power_icon30x30.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2460px -30px; +} + +.power_icon30x30.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2460px -60px; +} + +.power_icon30x30.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2460px 0; +} + +.power_icon30x30.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2490px -30px; +} + +.power_icon30x30.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2490px -60px; +} + +.power_icon30x30.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2490px 0; +} + +.power_icon30x30.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2520px -30px; +} + +.power_icon30x30.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2520px -60px; +} + +.power_icon30x30.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2520px 0; +} + +.power_icon30x30.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2550px -30px; +} + +.power_icon30x30.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2550px -60px; +} + +.power_icon30x30.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2550px 0; +} + +.power_icon30x30.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2580px -30px; +} + +.power_icon30x30.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2580px -60px; +} + +.power_icon30x30.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2580px 0; +} + +.power_icon30x30.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2610px -30px; +} + +.power_icon30x30.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2610px -60px; +} + +.power_icon30x30.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2610px 0; +} + +.power_icon30x30.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2640px -30px; +} + +.power_icon30x30.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2640px -60px; +} + +.power_icon30x30.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2640px 0; +} + +.power_icon30x30.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2670px -30px; +} + +.power_icon30x30.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2670px -60px; +} + +.power_icon30x30.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2670px 0; +} + +.power_icon30x30.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2700px -30px; +} + +.power_icon30x30.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2700px -60px; +} + +.power_icon30x30.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2700px 0; +} + +.power_icon30x30.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2730px -30px; +} + +.power_icon30x30.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2730px -60px; +} + +.power_icon30x30.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2730px 0; +} + +.power_icon30x30.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2760px -30px; +} + +.power_icon30x30.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2760px -60px; +} + +.power_icon30x30.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2760px 0; +} + +.power_icon30x30.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2790px -30px; +} + +.power_icon30x30.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2790px -60px; +} + +.power_icon30x30.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2790px 0; +} + +.power_icon30x30.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2820px -30px; +} + +.power_icon30x30.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2820px -60px; +} + +.power_icon30x30.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2820px 0; +} + +.power_icon30x30.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2850px -30px; +} + +.power_icon30x30.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2850px -60px; +} + +.power_icon30x30.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2850px 0; +} + +.power_icon30x30.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2880px -30px; +} + +.power_icon30x30.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2880px -60px; +} + +.power_icon30x30.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2880px 0; +} + +.power_icon30x30.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2910px -30px; +} + +.power_icon30x30.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2910px -60px; +} + +.power_icon30x30.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2910px 0; +} + +.power_icon30x30.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2940px -30px; +} + +.power_icon30x30.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2940px -60px; +} + +.power_icon30x30.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2940px 0; +} + +.power_icon30x30.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2970px -30px; +} + +.power_icon30x30.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2970px -60px; +} + +.power_icon30x30.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2970px 0; +} + +.power_icon30x30.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3000px -30px; +} + +.power_icon30x30.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3000px -60px; +} + +.power_icon30x30.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3000px 0; +} + +.power_icon30x30.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3030px -30px; +} + +.power_icon30x30.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3030px -60px; +} + +.power_icon30x30.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3030px 0; +} + +.power_icon30x30.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3060px -30px; +} + +.power_icon30x30.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3060px -60px; +} + +.power_icon30x30.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3060px 0; +} + +.power_icon30x30.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3090px -30px; +} + +.power_icon30x30.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3090px -60px; +} + +.power_icon30x30.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3090px 0; +} + +.power_icon30x30.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3120px -30px; +} + +.power_icon30x30.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3120px -60px; +} + +.power_icon30x30.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3120px 0; +} + +.power_icon30x30.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3150px -30px; +} + +.power_icon30x30.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3150px -60px; +} + +.power_icon30x30.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3150px 0; +} + +.power_icon30x30.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3180px -30px; +} + +.power_icon30x30.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3180px -60px; +} + +.power_icon30x30.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3180px 0; +} + +.power_icon30x30.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3210px -30px; +} + +.power_icon30x30.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3210px -60px; +} + +.power_icon30x30.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3210px 0; +} + +.power_icon30x30.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3240px -30px; +} + +.power_icon30x30.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3240px -60px; +} + +.power_icon30x30.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3240px 0; +} + +.power_icon30x30.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3270px -30px; +} + +.power_icon30x30.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3270px -60px; +} + +.power_icon30x30.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3270px 0; +} + +.power_icon30x30.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3300px -30px; +} + +.power_icon30x30.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3300px -60px; +} + +.power_icon30x30.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3300px 0; +} + +.power_icon30x30.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3330px -30px; +} + +.power_icon30x30.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3330px -60px; +} + +.power_icon30x30.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3330px 0; +} + +.power_icon30x30.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3360px -30px; +} + +.power_icon30x30.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3360px -60px; +} + +.power_icon30x30.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3360px 0; +} + +.power_icon30x30.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3390px -30px; +} + +.power_icon30x30.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3390px -60px; +} + +.power_icon30x30.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3390px 0; +} + +.power_icon30x30.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3420px -30px; +} + +.power_icon30x30.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3420px -60px; +} + +.power_icon30x30.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3420px 0; +} + +.power_icon30x30.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3450px -30px; +} + +.power_icon30x30.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3450px -60px; +} + +.power_icon30x30.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3450px 0; +} + +.power_icon30x30.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3480px -30px; +} + +.power_icon30x30.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3480px -60px; +} + +.power_icon30x30.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3480px 0; +} + +.power_icon30x30.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3510px -30px; +} + +.power_icon30x30.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3510px -60px; +} + +.power_icon30x30.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3510px 0; +} + +.power_icon30x30.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3540px -30px; +} + +.power_icon30x30.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3540px -60px; +} + +.power_icon30x30.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3540px 0; +} + +.power_icon30x30.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3570px -30px; +} + +.power_icon30x30.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3570px -60px; +} + +.power_icon30x30.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3570px 0; +} + +.power_icon30x30.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3600px -30px; +} + +.power_icon30x30.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3600px -60px; +} + +.power_icon30x30.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3600px 0; +} + +.power_icon30x30.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3630px -30px; +} + +.power_icon30x30.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3630px -60px; +} + +.power_icon30x30.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3630px 0; +} + +.power_icon30x30.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3660px -30px; +} + +.power_icon30x30.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3660px -60px; +} + +.power_icon30x30.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3660px 0; +} + +.power_icon30x30.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3690px -30px; +} + +.power_icon30x30.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3690px -60px; +} + +.power_icon30x30.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3690px 0; +} + +.power_icon30x30.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3720px -30px; +} + +.power_icon30x30.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3720px -60px; +} + +.power_icon30x30.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3720px 0; +} + +.power_icon30x30.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3750px -30px; +} + +.power_icon30x30.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3750px -60px; +} + +.power_icon30x30.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3750px 0; +} + +.power_icon30x30.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3780px -30px; +} + +.power_icon30x30.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3780px -60px; +} + +.power_icon30x30.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3780px 0; +} + +.power_icon30x30.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3810px -30px; +} + +.power_icon30x30.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3810px -60px; +} + +.power_icon30x30.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3810px 0; +} + +.power_icon45x45 { + width: 45px; + height: 45px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon45x45.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat 0 -45px; +} + +.power_icon45x45.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat 0 -90px; +} + +.power_icon45x45.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat 0 0; +} + +.power_icon45x45.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -45px -45px; +} + +.power_icon45x45.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -45px -90px; +} + +.power_icon45x45.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -45px 0; +} + +.power_icon45x45.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -90px -45px; +} + +.power_icon45x45.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -90px -90px; +} + +.power_icon45x45.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -90px 0; +} + +.power_icon45x45.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -135px -45px; +} + +.power_icon45x45.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -135px -90px; +} + +.power_icon45x45.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -135px 0; +} + +.power_icon45x45.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -180px -45px; +} + +.power_icon45x45.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -180px -90px; +} + +.power_icon45x45.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -180px 0; +} + +.power_icon45x45.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -225px -45px; +} + +.power_icon45x45.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -225px -90px; +} + +.power_icon45x45.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -225px 0; +} + +.power_icon45x45.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -270px -45px; +} + +.power_icon45x45.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -270px -90px; +} + +.power_icon45x45.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -270px 0; +} + +.power_icon45x45.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -315px -45px; +} + +.power_icon45x45.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -315px -90px; +} + +.power_icon45x45.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -315px 0; +} + +.power_icon45x45.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -360px -45px; +} + +.power_icon45x45.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -360px -90px; +} + +.power_icon45x45.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -360px 0; +} + +.power_icon45x45.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -405px -45px; +} + +.power_icon45x45.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -405px -90px; +} + +.power_icon45x45.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -405px 0; +} + +.power_icon45x45.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -450px -45px; +} + +.power_icon45x45.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -450px -90px; +} + +.power_icon45x45.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -450px 0; +} + +.power_icon45x45.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -495px -45px; +} + +.power_icon45x45.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -495px -90px; +} + +.power_icon45x45.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -495px 0; +} + +.power_icon45x45.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -540px -45px; +} + +.power_icon45x45.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -540px -90px; +} + +.power_icon45x45.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -540px 0; +} + +.power_icon45x45.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -585px -45px; +} + +.power_icon45x45.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -585px -90px; +} + +.power_icon45x45.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -585px 0; +} + +.power_icon45x45.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -630px -45px; +} + +.power_icon45x45.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -630px -90px; +} + +.power_icon45x45.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -630px 0; +} + +.power_icon45x45.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -675px -45px; +} + +.power_icon45x45.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -675px -90px; +} + +.power_icon45x45.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -675px 0; +} + +.power_icon45x45.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -720px -45px; +} + +.power_icon45x45.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -720px -90px; +} + +.power_icon45x45.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -720px 0; +} + +.power_icon45x45.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -765px -45px; +} + +.power_icon45x45.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -765px -90px; +} + +.power_icon45x45.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -765px 0; +} + +.power_icon45x45.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -810px -45px; +} + +.power_icon45x45.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -810px -90px; +} + +.power_icon45x45.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -810px 0; +} + +.power_icon45x45.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -855px -45px; +} + +.power_icon45x45.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -855px -90px; +} + +.power_icon45x45.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -855px 0; +} + +.power_icon45x45.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -900px -45px; +} + +.power_icon45x45.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -900px -90px; +} + +.power_icon45x45.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -900px 0; +} + +.power_icon45x45.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -945px -45px; +} + +.power_icon45x45.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -945px -90px; +} + +.power_icon45x45.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -945px 0; +} + +.power_icon45x45.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -990px -45px; +} + +.power_icon45x45.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -990px -90px; +} + +.power_icon45x45.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -990px 0; +} + +.power_icon45x45.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1035px -45px; +} + +.power_icon45x45.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1035px -90px; +} + +.power_icon45x45.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1035px 0; +} + +.power_icon45x45.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1080px -45px; +} + +.power_icon45x45.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1080px -90px; +} + +.power_icon45x45.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1080px 0; +} + +.power_icon45x45.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1125px -45px; +} + +.power_icon45x45.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1125px -90px; +} + +.power_icon45x45.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1125px 0; +} + +.power_icon45x45.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1170px -45px; +} + +.power_icon45x45.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1170px -90px; +} + +.power_icon45x45.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1170px 0; +} + +.power_icon45x45.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1215px -45px; +} + +.power_icon45x45.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1215px -90px; +} + +.power_icon45x45.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1215px 0; +} + +.power_icon45x45.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1260px -45px; +} + +.power_icon45x45.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1260px -90px; +} + +.power_icon45x45.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1260px 0; +} + +.power_icon45x45.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1305px -45px; +} + +.power_icon45x45.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1305px -90px; +} + +.power_icon45x45.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1305px 0; +} + +.power_icon45x45.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1350px -45px; +} + +.power_icon45x45.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1350px -90px; +} + +.power_icon45x45.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1350px 0; +} + +.power_icon45x45.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1395px -45px; +} + +.power_icon45x45.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1395px -90px; +} + +.power_icon45x45.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1395px 0; +} + +.power_icon45x45.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1440px -45px; +} + +.power_icon45x45.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1440px -90px; +} + +.power_icon45x45.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1440px 0; +} + +.power_icon45x45.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1485px -45px; +} + +.power_icon45x45.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1485px -90px; +} + +.power_icon45x45.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1485px 0; +} + +.power_icon45x45.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1530px -45px; +} + +.power_icon45x45.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1530px -90px; +} + +.power_icon45x45.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1530px 0; +} + +.power_icon45x45.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1575px -45px; +} + +.power_icon45x45.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1575px -90px; +} + +.power_icon45x45.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1575px 0; +} + +.power_icon45x45.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1620px -45px; +} + +.power_icon45x45.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1620px -90px; +} + +.power_icon45x45.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1620px 0; +} + +.power_icon45x45.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1665px -45px; +} + +.power_icon45x45.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1665px -90px; +} + +.power_icon45x45.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1665px 0; +} + +.power_icon45x45.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1710px -45px; +} + +.power_icon45x45.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1710px -90px; +} + +.power_icon45x45.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1710px 0; +} + +.power_icon45x45.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1755px -45px; +} + +.power_icon45x45.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1755px -90px; +} + +.power_icon45x45.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1755px 0; +} + +.power_icon45x45.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1800px -45px; +} + +.power_icon45x45.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1800px -90px; +} + +.power_icon45x45.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1800px 0; +} + +.power_icon45x45.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1845px -45px; +} + +.power_icon45x45.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1845px -90px; +} + +.power_icon45x45.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1845px 0; +} + +.power_icon45x45.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1890px -45px; +} + +.power_icon45x45.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1890px -90px; +} + +.power_icon45x45.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1890px 0; +} + +.power_icon45x45.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1935px -45px; +} + +.power_icon45x45.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1935px -90px; +} + +.power_icon45x45.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1935px 0; +} + +.power_icon45x45.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1980px -45px; +} + +.power_icon45x45.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1980px -90px; +} + +.power_icon45x45.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1980px 0; +} + +.power_icon45x45.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2025px -45px; +} + +.power_icon45x45.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2025px -90px; +} + +.power_icon45x45.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2025px 0; +} + +.power_icon45x45.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2070px -45px; +} + +.power_icon45x45.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2070px -90px; +} + +.power_icon45x45.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2070px 0; +} + +.power_icon45x45.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2115px -45px; +} + +.power_icon45x45.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2115px -90px; +} + +.power_icon45x45.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2115px 0; +} + +.power_icon45x45.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2160px -45px; +} + +.power_icon45x45.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2160px -90px; +} + +.power_icon45x45.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2160px 0; +} + +.power_icon45x45.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2205px -45px; +} + +.power_icon45x45.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2205px -90px; +} + +.power_icon45x45.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2205px 0; +} + +.power_icon45x45.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2250px -45px; +} + +.power_icon45x45.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2250px -90px; +} + +.power_icon45x45.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2250px 0; +} + +.power_icon45x45.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2295px -45px; +} + +.power_icon45x45.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2295px -90px; +} + +.power_icon45x45.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2295px 0; +} + +.power_icon45x45.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2340px -45px; +} + +.power_icon45x45.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2340px -90px; +} + +.power_icon45x45.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2340px 0; +} + +.power_icon45x45.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2385px -45px; +} + +.power_icon45x45.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2385px -90px; +} + +.power_icon45x45.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2385px 0; +} + +.power_icon45x45.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2430px -45px; +} + +.power_icon45x45.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2430px -90px; +} + +.power_icon45x45.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2430px 0; +} + +.power_icon45x45.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2475px -45px; +} + +.power_icon45x45.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2475px -90px; +} + +.power_icon45x45.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2475px 0; +} + +.power_icon45x45.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2520px -45px; +} + +.power_icon45x45.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2520px -90px; +} + +.power_icon45x45.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2520px 0; +} + +.power_icon45x45.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2565px -45px; +} + +.power_icon45x45.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2565px -90px; +} + +.power_icon45x45.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2565px 0; +} + +.power_icon45x45.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2610px -45px; +} + +.power_icon45x45.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2610px -90px; +} + +.power_icon45x45.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2610px 0; +} + +.power_icon45x45.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2655px -45px; +} + +.power_icon45x45.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2655px -90px; +} + +.power_icon45x45.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2655px 0; +} + +.power_icon45x45.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2700px -45px; +} + +.power_icon45x45.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2700px -90px; +} + +.power_icon45x45.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2700px 0; +} + +.power_icon45x45.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2745px -45px; +} + +.power_icon45x45.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2745px -90px; +} + +.power_icon45x45.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2745px 0; +} + +.power_icon45x45.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2790px -45px; +} + +.power_icon45x45.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2790px -90px; +} + +.power_icon45x45.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2790px 0; +} + +.power_icon45x45.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2835px -45px; +} + +.power_icon45x45.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2835px -90px; +} + +.power_icon45x45.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2835px 0; +} + +.power_icon45x45.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2880px -45px; +} + +.power_icon45x45.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2880px -90px; +} + +.power_icon45x45.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2880px 0; +} + +.power_icon45x45.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2925px -45px; +} + +.power_icon45x45.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2925px -90px; +} + +.power_icon45x45.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2925px 0; +} + +.power_icon45x45.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2970px -45px; +} + +.power_icon45x45.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2970px -90px; +} + +.power_icon45x45.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2970px 0; +} + +.power_icon45x45.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3015px -45px; +} + +.power_icon45x45.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3015px -90px; +} + +.power_icon45x45.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3015px 0; +} + +.power_icon45x45.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3060px -45px; +} + +.power_icon45x45.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3060px -90px; +} + +.power_icon45x45.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3060px 0; +} + +.power_icon45x45.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3105px -45px; +} + +.power_icon45x45.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3105px -90px; +} + +.power_icon45x45.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3105px 0; +} + +.power_icon45x45.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3150px -45px; +} + +.power_icon45x45.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3150px -90px; +} + +.power_icon45x45.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3150px 0; +} + +.power_icon45x45.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3195px -45px; +} + +.power_icon45x45.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3195px -90px; +} + +.power_icon45x45.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3195px 0; +} + +.power_icon45x45.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3240px -45px; +} + +.power_icon45x45.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3240px -90px; +} + +.power_icon45x45.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3240px 0; +} + +.power_icon45x45.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3285px -45px; +} + +.power_icon45x45.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3285px -90px; +} + +.power_icon45x45.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3285px 0; +} + +.power_icon45x45.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3330px -45px; +} + +.power_icon45x45.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3330px -90px; +} + +.power_icon45x45.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3330px 0; +} + +.power_icon45x45.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3375px -45px; +} + +.power_icon45x45.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3375px -90px; +} + +.power_icon45x45.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3375px 0; +} + +.power_icon45x45.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3420px -45px; +} + +.power_icon45x45.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3420px -90px; +} + +.power_icon45x45.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3420px 0; +} + +.power_icon45x45.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3465px -45px; +} + +.power_icon45x45.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3465px -90px; +} + +.power_icon45x45.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3465px 0; +} + +.power_icon45x45.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3510px -45px; +} + +.power_icon45x45.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3510px -90px; +} + +.power_icon45x45.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3510px 0; +} + +.power_icon45x45.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3555px -45px; +} + +.power_icon45x45.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3555px -90px; +} + +.power_icon45x45.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3555px 0; +} + +.power_icon45x45.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3600px -45px; +} + +.power_icon45x45.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3600px -90px; +} + +.power_icon45x45.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3600px 0; +} + +.power_icon45x45.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3645px -45px; +} + +.power_icon45x45.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3645px -90px; +} + +.power_icon45x45.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3645px 0; +} + +.power_icon45x45.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3690px -45px; +} + +.power_icon45x45.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3690px -90px; +} + +.power_icon45x45.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3690px 0; +} + +.power_icon45x45.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3735px -45px; +} + +.power_icon45x45.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3735px -90px; +} + +.power_icon45x45.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3735px 0; +} + +.power_icon45x45.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3780px -45px; +} + +.power_icon45x45.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3780px -90px; +} + +.power_icon45x45.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3780px 0; +} + +.power_icon45x45.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3825px -45px; +} + +.power_icon45x45.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3825px -90px; +} + +.power_icon45x45.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3825px 0; +} + +.power_icon45x45.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3870px -45px; +} + +.power_icon45x45.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3870px -90px; +} + +.power_icon45x45.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3870px 0; +} + +.power_icon45x45.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3915px -45px; +} + +.power_icon45x45.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3915px -90px; +} + +.power_icon45x45.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3915px 0; +} + +.power_icon45x45.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3960px -45px; +} + +.power_icon45x45.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3960px -90px; +} + +.power_icon45x45.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3960px 0; +} + +.power_icon45x45.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4005px -45px; +} + +.power_icon45x45.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4005px -90px; +} + +.power_icon45x45.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4005px 0; +} + +.power_icon45x45.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4050px -45px; +} + +.power_icon45x45.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4050px -90px; +} + +.power_icon45x45.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4050px 0; +} + +.power_icon45x45.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4095px -45px; +} + +.power_icon45x45.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4095px -90px; +} + +.power_icon45x45.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4095px 0; +} + +.power_icon45x45.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4140px -45px; +} + +.power_icon45x45.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4140px -90px; +} + +.power_icon45x45.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4140px 0; +} + +.power_icon45x45.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4185px -45px; +} + +.power_icon45x45.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4185px -90px; +} + +.power_icon45x45.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4185px 0; +} + +.power_icon45x45.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4230px -45px; +} + +.power_icon45x45.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4230px -90px; +} + +.power_icon45x45.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4230px 0; +} + +.power_icon45x45.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4275px -45px; +} + +.power_icon45x45.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4275px -90px; +} + +.power_icon45x45.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4275px 0; +} + +.power_icon45x45.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4320px -45px; +} + +.power_icon45x45.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4320px -90px; +} + +.power_icon45x45.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4320px 0; +} + +.power_icon45x45.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4365px -45px; +} + +.power_icon45x45.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4365px -90px; +} + +.power_icon45x45.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4365px 0; +} + +.power_icon45x45.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4410px -45px; +} + +.power_icon45x45.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4410px -90px; +} + +.power_icon45x45.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4410px 0; +} + +.power_icon45x45.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4455px -45px; +} + +.power_icon45x45.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4455px -90px; +} + +.power_icon45x45.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4455px 0; +} + +.power_icon45x45.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4500px -45px; +} + +.power_icon45x45.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4500px -90px; +} + +.power_icon45x45.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4500px 0; +} + +.power_icon45x45.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4545px -45px; +} + +.power_icon45x45.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4545px -90px; +} + +.power_icon45x45.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4545px 0; +} + +.power_icon45x45.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4590px -45px; +} + +.power_icon45x45.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4590px -90px; +} + +.power_icon45x45.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4590px 0; +} + +.power_icon45x45.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4635px -45px; +} + +.power_icon45x45.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4635px -90px; +} + +.power_icon45x45.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4635px 0; +} + +.power_icon45x45.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4680px -45px; +} + +.power_icon45x45.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4680px -90px; +} + +.power_icon45x45.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4680px 0; +} + +.power_icon45x45.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4725px -45px; +} + +.power_icon45x45.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4725px -90px; +} + +.power_icon45x45.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4725px 0; +} + +.power_icon45x45.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4770px -45px; +} + +.power_icon45x45.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4770px -90px; +} + +.power_icon45x45.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4770px 0; +} + +.power_icon45x45.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4815px -45px; +} + +.power_icon45x45.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4815px -90px; +} + +.power_icon45x45.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4815px 0; +} + +.power_icon45x45.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4860px -45px; +} + +.power_icon45x45.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4860px -90px; +} + +.power_icon45x45.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4860px 0; +} + +.power_icon45x45.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4905px -45px; +} + +.power_icon45x45.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4905px -90px; +} + +.power_icon45x45.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4905px 0; +} + +.power_icon45x45.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4950px -45px; +} + +.power_icon45x45.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4950px -90px; +} + +.power_icon45x45.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4950px 0; +} + +.power_icon45x45.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4995px -45px; +}.power_icon45x45.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4995px -90px; +} + +.power_icon45x45.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4995px 0; +} + +.power_icon45x45.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5040px -45px; +} + +.power_icon45x45.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5040px -90px; +} + +.power_icon45x45.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5040px 0; +} + +.power_icon45x45.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5085px -45px; +} + +.power_icon45x45.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5085px -90px; +} + +.power_icon45x45.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5085px 0; +} + +.power_icon45x45.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5130px -45px; +} + +.power_icon45x45.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5130px -90px; +} + +.power_icon45x45.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5130px 0; +} + +.power_icon45x45.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5175px -45px; +} + +.power_icon45x45.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5175px -90px; +} + +.power_icon45x45.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5175px 0; +} + +.power_icon45x45.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5220px -45px; +} + +.power_icon45x45.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5220px -90px; +} + +.power_icon45x45.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5220px 0; +} + +.power_icon45x45.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5265px -45px; +} + +.power_icon45x45.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5265px -90px; +} + +.power_icon45x45.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5265px 0; +} + +.power_icon45x45.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5310px -45px; +} + +.power_icon45x45.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5310px -90px; +} + +.power_icon45x45.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5310px 0; +} + +.power_icon45x45.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5355px -45px; +} + +.power_icon45x45.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5355px -90px; +} + +.power_icon45x45.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5355px 0; +} + +.power_icon45x45.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5400px -45px; +} + +.power_icon45x45.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5400px -90px; +} + +.power_icon45x45.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5400px 0; +} + +.power_icon45x45.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5445px -45px; +} + +.power_icon45x45.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5445px -90px; +} + +.power_icon45x45.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5445px 0; +} + +.power_icon45x45.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5490px -45px; +} + +.power_icon45x45.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5490px -90px; +} + +.power_icon45x45.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5490px 0; +} + +.power_icon45x45.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5535px -45px; +} + +.power_icon45x45.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5535px -90px; +} + +.power_icon45x45.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5535px 0; +} + +.power_icon45x45.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5580px -45px; +} + +.power_icon45x45.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5580px -90px; +} + +.power_icon45x45.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5580px 0; +} + +.power_icon45x45.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5625px -45px; +} + +.power_icon45x45.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5625px -90px; +} + +.power_icon45x45.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5625px 0; +} + +.power_icon45x45.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5670px -45px; +} + +.power_icon45x45.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5670px -90px; +} + +.power_icon45x45.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5670px 0; +} + +.power_icon45x45.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5715px -45px; +} + +.power_icon45x45.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5715px -90px; +} + +.power_icon45x45.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5715px 0; +} + +.power_icon60x60 { + width: 60px; + height: 60px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon60x60.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat 0 -60px; +} + +.power_icon60x60.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat 0 -120px; +} + +.power_icon60x60.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat 0 0; +} + +.power_icon60x60.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -60px -60px; +} + +.power_icon60x60.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -60px -120px; +} + +.power_icon60x60.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -60px 0; +} + +.power_icon60x60.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -120px -60px; +} + +.power_icon60x60.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -120px -120px; +} + +.power_icon60x60.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -120px 0; +} + +.power_icon60x60.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -180px -60px; +} + +.power_icon60x60.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -180px -120px; +} + +.power_icon60x60.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -180px 0; +} + +.power_icon60x60.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -240px -60px; +} + +.power_icon60x60.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -240px -120px; +} + +.power_icon60x60.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -240px 0; +} + +.power_icon60x60.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -300px -60px; +} + +.power_icon60x60.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -300px -120px; +} + +.power_icon60x60.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -300px 0; +} + +.power_icon60x60.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -360px -60px; +} + +.power_icon60x60.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -360px -120px; +} + +.power_icon60x60.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -360px 0; +} + +.power_icon60x60.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -420px -60px; +} + +.power_icon60x60.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -420px -120px; +} + +.power_icon60x60.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -420px 0; +} + +.power_icon60x60.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -480px -60px; +} + +.power_icon60x60.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -480px -120px; +} + +.power_icon60x60.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -480px 0; +} + +.power_icon60x60.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -540px -60px; +} + +.power_icon60x60.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -540px -120px; +} + +.power_icon60x60.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -540px 0; +} + +.power_icon60x60.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -600px -60px; +} + +.power_icon60x60.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -600px -120px; +} + +.power_icon60x60.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -600px 0; +} + +.power_icon60x60.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -660px -60px; +} + +.power_icon60x60.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -660px -120px; +} + +.power_icon60x60.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -660px 0; +} + +.power_icon60x60.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -720px -60px; +} + +.power_icon60x60.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -720px -120px; +} + +.power_icon60x60.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -720px 0; +} + +.power_icon60x60.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -780px -60px; +} + +.power_icon60x60.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -780px -120px; +} + +.power_icon60x60.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -780px 0; +} + +.power_icon60x60.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -840px -60px; +} + +.power_icon60x60.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -840px -120px; +} + +.power_icon60x60.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -840px 0; +} + +.power_icon60x60.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -900px -60px; +} + +.power_icon60x60.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -900px -120px; +} + +.power_icon60x60.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -900px 0; +} + +.power_icon60x60.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -960px -60px; +} + +.power_icon60x60.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -960px -120px; +} + +.power_icon60x60.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -960px 0; +} + +.power_icon60x60.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1020px -60px; +} + +.power_icon60x60.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1020px -120px; +} + +.power_icon60x60.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1020px 0; +} + +.power_icon60x60.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1080px -60px; +} + +.power_icon60x60.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1080px -120px; +} + +.power_icon60x60.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1080px 0; +} + +.power_icon60x60.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1140px -60px; +} + +.power_icon60x60.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1140px -120px; +} + +.power_icon60x60.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1140px 0; +} + +.power_icon60x60.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1200px -60px; +} + +.power_icon60x60.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1200px -120px; +} + +.power_icon60x60.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1200px 0; +} + +.power_icon60x60.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1260px -60px; +} + +.power_icon60x60.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1260px -120px; +} + +.power_icon60x60.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1260px 0; +} + +.power_icon60x60.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1320px -60px; +} + +.power_icon60x60.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1320px -120px; +} + +.power_icon60x60.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1320px 0; +} + +.power_icon60x60.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1380px -60px; +} + +.power_icon60x60.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1380px -120px; +} + +.power_icon60x60.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1380px 0; +} + +.power_icon60x60.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1440px -60px; +} + +.power_icon60x60.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1440px -120px; +} + +.power_icon60x60.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1440px 0; +} + +.power_icon60x60.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1500px -60px; +} + +.power_icon60x60.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1500px -120px; +} + +.power_icon60x60.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1500px 0; +} + +.power_icon60x60.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1560px -60px; +} + +.power_icon60x60.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1560px -120px; +} + +.power_icon60x60.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1560px 0; +} + +.power_icon60x60.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1620px -60px; +} + +.power_icon60x60.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1620px -120px; +} + +.power_icon60x60.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1620px 0; +} + +.power_icon60x60.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1680px -60px; +} + +.power_icon60x60.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1680px -120px; +} + +.power_icon60x60.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1680px 0; +} + +.power_icon60x60.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1740px -60px; +} + +.power_icon60x60.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1740px -120px; +} + +.power_icon60x60.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1740px 0; +} + +.power_icon60x60.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1800px -60px; +} + +.power_icon60x60.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1800px -120px; +} + +.power_icon60x60.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1800px 0; +} + +.power_icon60x60.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1860px -60px; +} + +.power_icon60x60.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1860px -120px; +} + +.power_icon60x60.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1860px 0; +} + +.power_icon60x60.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1920px -60px; +} + +.power_icon60x60.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1920px -120px; +} + +.power_icon60x60.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1920px 0; +} + +.power_icon60x60.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1980px -60px; +} + +.power_icon60x60.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1980px -120px; +} + +.power_icon60x60.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -1980px 0; +} + +.power_icon60x60.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2040px -60px; +} + +.power_icon60x60.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2040px -120px; +} + +.power_icon60x60.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2040px 0; +} + +.power_icon60x60.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2100px -60px; +} + +.power_icon60x60.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2100px -120px; +} + +.power_icon60x60.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2100px 0; +} + +.power_icon60x60.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2160px -60px; +} + +.power_icon60x60.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2160px -120px; +} + +.power_icon60x60.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2160px 0; +} + +.power_icon60x60.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2220px -60px; +} + +.power_icon60x60.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2220px -120px; +} + +.power_icon60x60.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2220px 0; +} + +.power_icon60x60.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2280px -60px; +} + +.power_icon60x60.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2280px -120px; +} + +.power_icon60x60.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2280px 0; +} + +.power_icon60x60.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2340px -60px; +} + +.power_icon60x60.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2340px -120px; +} + +.power_icon60x60.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2340px 0; +} + +.power_icon60x60.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2400px -60px; +} + +.power_icon60x60.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2400px -120px; +} + +.power_icon60x60.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2400px 0; +} + +.power_icon60x60.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2460px -60px; +} + +.power_icon60x60.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2460px -120px; +} + +.power_icon60x60.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2460px 0; +} + +.power_icon60x60.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2520px -60px; +} + +.power_icon60x60.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2520px -120px; +} + +.power_icon60x60.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2520px 0; +} + +.power_icon60x60.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2580px -60px; +} + +.power_icon60x60.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2580px -120px; +} + +.power_icon60x60.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2580px 0; +} + +.power_icon60x60.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2640px -60px; +} + +.power_icon60x60.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2640px -120px; +} + +.power_icon60x60.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2640px 0; +} + +.power_icon60x60.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2700px -60px; +} + +.power_icon60x60.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2700px -120px; +} + +.power_icon60x60.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2700px 0; +} + +.power_icon60x60.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2760px -60px; +} + +.power_icon60x60.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2760px -120px; +} + +.power_icon60x60.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2760px 0; +} + +.power_icon60x60.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2820px -60px; +} + +.power_icon60x60.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2820px -120px; +} + +.power_icon60x60.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2820px 0; +} + +.power_icon60x60.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2880px -60px; +} + +.power_icon60x60.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2880px -120px; +} + +.power_icon60x60.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2880px 0; +} + +.power_icon60x60.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2940px -60px; +} + +.power_icon60x60.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2940px -120px; +} + +.power_icon60x60.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -2940px 0; +} + +.power_icon60x60.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3000px -60px; +} + +.power_icon60x60.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3000px -120px; +} + +.power_icon60x60.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3000px 0; +} + +.power_icon60x60.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3060px -60px; +} + +.power_icon60x60.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3060px -120px; +} + +.power_icon60x60.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3060px 0; +} + +.power_icon60x60.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3120px -60px; +} + +.power_icon60x60.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3120px -120px; +} + +.power_icon60x60.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3120px 0; +} + +.power_icon60x60.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3180px -60px; +} + +.power_icon60x60.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3180px -120px; +} + +.power_icon60x60.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3180px 0; +} + +.power_icon60x60.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3240px -60px; +} + +.power_icon60x60.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3240px -120px; +} + +.power_icon60x60.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3240px 0; +} + +.power_icon60x60.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3300px -60px; +} + +.power_icon60x60.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3300px -120px; +} + +.power_icon60x60.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3300px 0; +} + +.power_icon60x60.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3360px -60px; +} + +.power_icon60x60.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3360px -120px; +} + +.power_icon60x60.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3360px 0; +} + +.power_icon60x60.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3420px -60px; +} + +.power_icon60x60.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3420px -120px; +} + +.power_icon60x60.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3420px 0; +} + +.power_icon60x60.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3480px -60px; +} + +.power_icon60x60.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3480px -120px; +} + +.power_icon60x60.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3480px 0; +} + +.power_icon60x60.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3540px -60px; +} + +.power_icon60x60.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3540px -120px; +} + +.power_icon60x60.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3540px 0; +} + +.power_icon60x60.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3600px -60px; +} + +.power_icon60x60.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3600px -120px; +} + +.power_icon60x60.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3600px 0; +} + +.power_icon60x60.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3660px -60px; +} + +.power_icon60x60.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3660px -120px; +} + +.power_icon60x60.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3660px 0; +} + +.power_icon60x60.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3720px -60px; +} + +.power_icon60x60.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3720px -120px; +} + +.power_icon60x60.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3720px 0; +} + +.power_icon60x60.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3780px -60px; +} + +.power_icon60x60.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3780px -120px; +} + +.power_icon60x60.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3780px 0; +} + +.power_icon60x60.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3840px -60px; +} + +.power_icon60x60.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3840px -120px; +} + +.power_icon60x60.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3840px 0; +} + +.power_icon60x60.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3900px -60px; +} + +.power_icon60x60.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3900px -120px; +} + +.power_icon60x60.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3900px 0; +} + +.power_icon60x60.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3960px -60px; +} + +.power_icon60x60.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3960px -120px; +} + +.power_icon60x60.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -3960px 0; +} + +.power_icon60x60.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4020px -60px; +} + +.power_icon60x60.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4020px -120px; +} + +.power_icon60x60.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4020px 0; +} + +.power_icon60x60.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4080px -60px; +} + +.power_icon60x60.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4080px -120px; +} + +.power_icon60x60.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4080px 0; +} + +.power_icon60x60.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4140px -60px; +} + +.power_icon60x60.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4140px -120px; +} + +.power_icon60x60.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4140px 0; +} + +.power_icon60x60.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4200px -60px; +} + +.power_icon60x60.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4200px -120px; +} + +.power_icon60x60.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4200px 0; +} + +.power_icon60x60.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4260px -60px; +} + +.power_icon60x60.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4260px -120px; +} + +.power_icon60x60.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4260px 0; +} + +.power_icon60x60.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4320px -60px; +} + +.power_icon60x60.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4320px -120px; +} + +.power_icon60x60.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4320px 0; +} + +.power_icon60x60.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4380px -60px; +} + +.power_icon60x60.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4380px -120px; +} + +.power_icon60x60.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4380px 0; +} + +.power_icon60x60.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4440px -60px; +} + +.power_icon60x60.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4440px -120px; +} + +.power_icon60x60.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4440px 0; +} + +.power_icon60x60.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4500px -60px; +} + +.power_icon60x60.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4500px -120px; +} + +.power_icon60x60.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4500px 0; +} + +.power_icon60x60.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4560px -60px; +} + +.power_icon60x60.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4560px -120px; +} + +.power_icon60x60.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4560px 0; +} + +.power_icon60x60.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4620px -60px; +} + +.power_icon60x60.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4620px -120px; +} + +.power_icon60x60.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4620px 0; +} + +.power_icon60x60.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4680px -60px; +} + +.power_icon60x60.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4680px -120px; +} + +.power_icon60x60.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4680px 0; +} + +.power_icon60x60.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4740px -60px; +} + +.power_icon60x60.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4740px -120px; +} + +.power_icon60x60.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4740px 0; +} + +.power_icon60x60.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4800px -60px; +} + +.power_icon60x60.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4800px -120px; +} + +.power_icon60x60.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4800px 0; +} + +.power_icon60x60.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4860px -60px; +} + +.power_icon60x60.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4860px -120px; +} + +.power_icon60x60.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4860px 0; +} + +.power_icon60x60.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4920px -60px; +} + +.power_icon60x60.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4920px -120px; +} + +.power_icon60x60.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4920px 0; +} + +.power_icon60x60.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4980px -60px; +} + +.power_icon60x60.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4980px -120px; +} + +.power_icon60x60.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -4980px 0; +} + +.power_icon60x60.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5040px -60px; +} + +.power_icon60x60.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5040px -120px; +} + +.power_icon60x60.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5040px 0; +} + +.power_icon60x60.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5100px -60px; +} + +.power_icon60x60.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5100px -120px; +} + +.power_icon60x60.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5100px 0; +} + +.power_icon60x60.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5160px -60px; +} + +.power_icon60x60.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5160px -120px; +} + +.power_icon60x60.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5160px 0; +} + +.power_icon60x60.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5220px -60px; +} + +.power_icon60x60.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5220px -120px; +} + +.power_icon60x60.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5220px 0; +} + +.power_icon60x60.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5280px -60px; +} + +.power_icon60x60.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5280px -120px; +} + +.power_icon60x60.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5280px 0; +} + +.power_icon60x60.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5340px -60px; +} + +.power_icon60x60.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5340px -120px; +} + +.power_icon60x60.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5340px 0; +} + +.power_icon60x60.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5400px -60px; +} + +.power_icon60x60.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5400px -120px; +} + +.power_icon60x60.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5400px 0; +} + +.power_icon60x60.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5460px -60px; +} + +.power_icon60x60.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5460px -120px; +} + +.power_icon60x60.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5460px 0; +} + +.power_icon60x60.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5520px -60px; +} + +.power_icon60x60.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5520px -120px; +} + +.power_icon60x60.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5520px 0; +} + +.power_icon60x60.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5580px -60px; +} + +.power_icon60x60.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5580px -120px; +} + +.power_icon60x60.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5580px 0; +} + +.power_icon60x60.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5640px -60px; +} + +.power_icon60x60.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5640px -120px; +} + +.power_icon60x60.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5640px 0; +} + +.power_icon60x60.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5700px -60px; +} + +.power_icon60x60.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5700px -120px; +} + +.power_icon60x60.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5700px 0; +} + +.power_icon60x60.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5760px -60px; +} + +.power_icon60x60.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5760px -120px; +} + +.power_icon60x60.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5760px 0; +} + +.power_icon60x60.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5820px -60px; +} + +.power_icon60x60.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5820px -120px; +} + +.power_icon60x60.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5820px 0; +} + +.power_icon60x60.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5880px -60px; +} + +.power_icon60x60.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5880px -120px; +} + +.power_icon60x60.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5880px 0; +} + +.power_icon60x60.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5940px -60px; +} + +.power_icon60x60.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5940px -120px; +} + +.power_icon60x60.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -5940px 0; +} + +.power_icon60x60.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6000px -60px; +} + +.power_icon60x60.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6000px -120px; +} + +.power_icon60x60.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6000px 0; +} + +.power_icon60x60.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6060px -60px; +} + +.power_icon60x60.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6060px -120px; +} + +.power_icon60x60.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6060px 0; +} + +.power_icon60x60.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6120px -60px; +} + +.power_icon60x60.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6120px -120px; +} + +.power_icon60x60.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6120px 0; +} + +.power_icon60x60.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6180px -60px; +} + +.power_icon60x60.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6180px -120px; +} + +.power_icon60x60.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6180px 0; +} + +.power_icon60x60.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6240px -60px; +} + +.power_icon60x60.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6240px -120px; +} + +.power_icon60x60.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6240px 0; +} + +.power_icon60x60.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6300px -60px; +} + +.power_icon60x60.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6300px -120px; +} + +.power_icon60x60.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6300px 0; +} + +.power_icon60x60.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6360px -60px; +} + +.power_icon60x60.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6360px -120px; +} + +.power_icon60x60.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6360px 0; +} + +.power_icon60x60.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6420px -60px; +} + +.power_icon60x60.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6420px -120px; +} + +.power_icon60x60.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6420px 0; +} + +.power_icon60x60.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6480px -60px; +} + +.power_icon60x60.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6480px -120px; +} + +.power_icon60x60.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6480px 0; +} + +.power_icon60x60.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6540px -60px; +} + +.power_icon60x60.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6540px -120px; +} + +.power_icon60x60.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6540px 0; +} + +.power_icon60x60.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6600px -60px; +} + +.power_icon60x60.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6600px -120px; +} + +.power_icon60x60.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6600px 0; +} + +.power_icon60x60.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6660px -60px; +} + +.power_icon60x60.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6660px -120px; +} + +.power_icon60x60.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6660px 0; +} + +.power_icon60x60.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6720px -60px; +} + +.power_icon60x60.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6720px -120px; +} + +.power_icon60x60.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6720px 0; +} + +.power_icon60x60.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6780px -60px; +} + +.power_icon60x60.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6780px -120px; +} + +.power_icon60x60.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6780px 0; +} + +.power_icon60x60.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6840px -60px; +} + +.power_icon60x60.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6840px -120px; +} + +.power_icon60x60.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6840px 0; +} + +.power_icon60x60.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6900px -60px; +} + +.power_icon60x60.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6900px -120px; +} + +.power_icon60x60.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6900px 0; +} + +.power_icon60x60.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6960px -60px; +} + +.power_icon60x60.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6960px -120px; +} + +.power_icon60x60.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -6960px 0; +} + +.power_icon60x60.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7020px -60px; +} + +.power_icon60x60.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7020px -120px; +} + +.power_icon60x60.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7020px 0; +} + +.power_icon60x60.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7080px -60px; +} + +.power_icon60x60.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7080px -120px; +} + +.power_icon60x60.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7080px 0; +} + +.power_icon60x60.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7140px -60px; +} + +.power_icon60x60.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7140px -120px; +} + +.power_icon60x60.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7140px 0; +} + +.power_icon60x60.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7200px -60px; +} + +.power_icon60x60.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7200px -120px; +} + +.power_icon60x60.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7200px 0; +} + +.power_icon60x60.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7260px -60px; +} + +.power_icon60x60.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7260px -120px; +} + +.power_icon60x60.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7260px 0; +} + +.power_icon60x60.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7320px -60px; +} + +.power_icon60x60.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7320px -120px; +} + +.power_icon60x60.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7320px 0; +} + +.power_icon60x60.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7380px -60px; +} + +.power_icon60x60.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7380px -120px; +} + +.power_icon60x60.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7380px 0; +} + +.power_icon60x60.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7440px -60px; +} + +.power_icon60x60.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7440px -120px; +} + +.power_icon60x60.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7440px 0; +} + +.power_icon60x60.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7500px -60px; +} + +.power_icon60x60.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7500px -120px; +} + +.power_icon60x60.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7500px 0; +} + +.power_icon60x60.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7560px -60px; +} + +.power_icon60x60.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7560px -120px; +} + +.power_icon60x60.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7560px 0; +} + +.power_icon60x60.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7620px -60px; +} + +.power_icon60x60.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7620px -120px; +} + +.power_icon60x60.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_part2_a66ddce.png) no-repeat -7620px 0; +} + +.power_icon86x86 { + width: 86px; + height: 86px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.power_icon86x86.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat 0 -86px; +} + +.power_icon86x86.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat 0 -172px; +} + +.power_icon86x86.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat 0 0; +} + +.power_icon86x86.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -86px -86px; +} + +.power_icon86x86.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -86px -172px; +} + +.power_icon86x86.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -86px 0; +} + +.power_icon86x86.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -172px -86px; +} + +.power_icon86x86.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -172px -172px; +} + +.power_icon86x86.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -172px 0; +} + +.power_icon86x86.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -258px -86px; +} + +.power_icon86x86.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -258px -172px; +} + +.power_icon86x86.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -258px 0; +} + +.power_icon86x86.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -344px -86px; +} + +.power_icon86x86.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -344px -172px; +} + +.power_icon86x86.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -344px 0; +} + +.power_icon86x86.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -430px -86px; +} + +.power_icon86x86.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -430px -172px; +} + +.power_icon86x86.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -430px 0; +} + +.power_icon86x86.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -516px -86px; +} + +.power_icon86x86.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -516px -172px; +} + +.power_icon86x86.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -516px 0; +} + +.power_icon86x86.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -602px -86px; +} + +.power_icon86x86.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -602px -172px; +} + +.power_icon86x86.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -602px 0; +} + +.power_icon86x86.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -688px -86px; +} + +.power_icon86x86.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -688px -172px; +} + +.power_icon86x86.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -688px 0; +} + +.power_icon86x86.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -774px -86px; +} + +.power_icon86x86.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -774px -172px; +} + +.power_icon86x86.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -774px 0; +} + +.power_icon86x86.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -860px -86px; +} + +.power_icon86x86.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -860px -172px; +} + +.power_icon86x86.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -860px 0; +} + +.power_icon86x86.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -946px -86px; +} + +.power_icon86x86.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -946px -172px; +} + +.power_icon86x86.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -946px 0; +} + +.power_icon86x86.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1032px -86px; +} + +.power_icon86x86.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1032px -172px; +} + +.power_icon86x86.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1032px 0; +} + +.power_icon86x86.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1118px -86px; +} + +.power_icon86x86.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1118px -172px; +} + +.power_icon86x86.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1118px 0; +} + +.power_icon86x86.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1204px -86px; +} + +.power_icon86x86.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1204px -172px; +} + +.power_icon86x86.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1204px 0; +} + +.power_icon86x86.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1290px -86px; +} + +.power_icon86x86.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1290px -172px; +} + +.power_icon86x86.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1290px 0; +} + +.power_icon86x86.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1376px -86px; +} + +.power_icon86x86.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1376px -172px; +} + +.power_icon86x86.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1376px 0; +} + +.power_icon86x86.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1462px -86px; +} + +.power_icon86x86.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1462px -172px; +} + +.power_icon86x86.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1462px 0; +} + +.power_icon86x86.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1548px -86px; +} + +.power_icon86x86.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1548px -172px; +} + +.power_icon86x86.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1548px 0; +} + +.power_icon86x86.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1634px -86px; +} + +.power_icon86x86.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1634px -172px; +} + +.power_icon86x86.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1634px 0; +} + +.power_icon86x86.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1720px -86px; +} + +.power_icon86x86.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1720px -172px; +} + +.power_icon86x86.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1720px 0; +} + +.power_icon86x86.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1806px -86px; +} + +.power_icon86x86.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1806px -172px; +} + +.power_icon86x86.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1806px 0; +} + +.power_icon86x86.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1892px -86px; +} + +.power_icon86x86.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1892px -172px; +} + +.power_icon86x86.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1892px 0; +} + +.power_icon86x86.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1978px -86px; +} + +.power_icon86x86.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1978px -172px; +} + +.power_icon86x86.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -1978px 0; +} + +.power_icon86x86.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2064px -86px; +} + +.power_icon86x86.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2064px -172px; +} + +.power_icon86x86.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2064px 0; +} + +.power_icon86x86.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2150px -86px; +} + +.power_icon86x86.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2150px -172px; +} + +.power_icon86x86.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2150px 0; +} + +.power_icon86x86.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2236px -86px; +} + +.power_icon86x86.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2236px -172px; +} + +.power_icon86x86.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2236px 0; +} + +.power_icon86x86.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2322px -86px; +} + +.power_icon86x86.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2322px -172px; +} + +.power_icon86x86.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2322px 0; +} + +.power_icon86x86.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2408px -86px; +} + +.power_icon86x86.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2408px -172px; +} + +.power_icon86x86.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2408px 0; +} + +.power_icon86x86.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2494px -86px; +} + +.power_icon86x86.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2494px -172px; +} + +.power_icon86x86.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2494px 0; +} + +.power_icon86x86.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2580px -86px; +} + +.power_icon86x86.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2580px -172px; +} + +.power_icon86x86.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2580px 0; +} + +.power_icon86x86.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2666px -86px; +} + +.power_icon86x86.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2666px -172px; +} + +.power_icon86x86.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2666px 0; +} + +.power_icon86x86.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2752px -86px; +} + +.power_icon86x86.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2752px -172px; +} + +.power_icon86x86.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2752px 0; +} + +.power_icon86x86.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2838px -86px; +} + +.power_icon86x86.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2838px -172px; +} + +.power_icon86x86.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2838px 0; +} + +.power_icon86x86.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2924px -86px; +} + +.power_icon86x86.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2924px -172px; +} + +.power_icon86x86.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -2924px 0; +} + +.power_icon86x86.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3010px -86px; +} + +.power_icon86x86.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3010px -172px; +} + +.power_icon86x86.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3010px 0; +} + +.power_icon86x86.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3096px -86px; +} + +.power_icon86x86.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3096px -172px; +} + +.power_icon86x86.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3096px 0; +} + +.power_icon86x86.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3182px -86px; +} + +.power_icon86x86.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3182px -172px; +} + +.power_icon86x86.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3182px 0; +} + +.power_icon86x86.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3268px -86px; +} + +.power_icon86x86.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3268px -172px; +} + +.power_icon86x86.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3268px 0; +} + +.power_icon86x86.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3354px -86px; +} + +.power_icon86x86.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3354px -172px; +} + +.power_icon86x86.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3354px 0; +} + +.power_icon86x86.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3440px -86px; +} + +.power_icon86x86.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3440px -172px; +} + +.power_icon86x86.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3440px 0; +} + +.power_icon86x86.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3526px -86px; +} + +.power_icon86x86.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3526px -172px; +} + +.power_icon86x86.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3526px 0; +} + +.power_icon86x86.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3612px -86px; +} + +.power_icon86x86.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3612px -172px; +} + +.power_icon86x86.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3612px 0; +} + +.power_icon86x86.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3698px -86px; +} + +.power_icon86x86.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3698px -172px; +} + +.power_icon86x86.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3698px 0; +} + +.power_icon86x86.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3784px -86px; +} + +.power_icon86x86.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3784px -172px; +} + +.power_icon86x86.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3784px 0; +} + +.power_icon86x86.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3870px -86px; +} + +.power_icon86x86.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3870px -172px; +} + +.power_icon86x86.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3870px 0; +} + +.power_icon86x86.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3956px -86px; +} + +.power_icon86x86.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3956px -172px; +} + +.power_icon86x86.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -3956px 0; +} + +.power_icon86x86.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4042px -86px; +} + +.power_icon86x86.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4042px -172px; +} + +.power_icon86x86.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4042px 0; +} + +.power_icon86x86.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4128px -86px; +} + +.power_icon86x86.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4128px -172px; +} + +.power_icon86x86.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4128px 0; +} + +.power_icon86x86.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4214px -86px; +} + +.power_icon86x86.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4214px -172px; +} + +.power_icon86x86.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4214px 0; +} + +.power_icon86x86.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4300px -86px; +} + +.power_icon86x86.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4300px -172px; +} + +.power_icon86x86.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4300px 0; +} + +.power_icon86x86.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4386px -86px; +} + +.power_icon86x86.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4386px -172px; +} + +.power_icon86x86.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4386px 0; +} + +.power_icon86x86.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4472px -86px; +} + +.power_icon86x86.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4472px -172px; +} + +.power_icon86x86.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4472px 0; +} + +.power_icon86x86.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4558px -86px; +} + +.power_icon86x86.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4558px -172px; +} + +.power_icon86x86.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4558px 0; +} + +.power_icon86x86.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4644px -86px; +} + +.power_icon86x86.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4644px -172px; +} + +.power_icon86x86.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4644px 0; +} + +.power_icon86x86.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4730px -86px; +} + +.power_icon86x86.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4730px -172px; +} + +.power_icon86x86.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4730px 0; +} + +.power_icon86x86.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4816px -86px; +} + +.power_icon86x86.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4816px -172px; +} + +.power_icon86x86.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4816px 0; +} + +.power_icon86x86.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4902px -86px; +} + +.power_icon86x86.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4902px -172px; +} + +.power_icon86x86.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4902px 0; +} + +.power_icon86x86.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4988px -86px; +} + +.power_icon86x86.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4988px -172px; +} + +.power_icon86x86.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -4988px 0; +} + +.power_icon86x86.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5074px -86px; +} + +.power_icon86x86.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5074px -172px; +} + +.power_icon86x86.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5074px 0; +} + +.power_icon86x86.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5160px -86px; +} + +.power_icon86x86.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5160px -172px; +} + +.power_icon86x86.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5160px 0; +} + +.power_icon86x86.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5246px -86px; +} + +.power_icon86x86.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5246px -172px; +} + +.power_icon86x86.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5246px 0; +} + +.power_icon86x86.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5332px -86px; +} + +.power_icon86x86.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5332px -172px; +} + +.power_icon86x86.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5332px 0; +} + +.power_icon86x86.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5418px -86px; +} + +.power_icon86x86.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5418px -172px; +} + +.power_icon86x86.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5418px 0; +} + +.power_icon86x86.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5504px -86px; +} + +.power_icon86x86.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5504px -172px; +} + +.power_icon86x86.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5504px 0; +} + +.power_icon86x86.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5590px -86px; +} + +.power_icon86x86.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5590px -172px; +} + +.power_icon86x86.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5590px 0; +} + +.power_icon86x86.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5676px -86px; +} + +.power_icon86x86.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5676px -172px; +} + +.power_icon86x86.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5676px 0; +} + +.power_icon86x86.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5762px -86px; +} + +.power_icon86x86.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5762px -172px; +} + +.power_icon86x86.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5762px 0; +} + +.power_icon86x86.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5848px -86px; +} + +.power_icon86x86.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5848px -172px; +} + +.power_icon86x86.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5848px 0; +} + +.power_icon86x86.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5934px -86px; +} + +.power_icon86x86.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5934px -172px; +} + +.power_icon86x86.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -5934px 0; +} + +.power_icon86x86.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6020px -86px; +} + +.power_icon86x86.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6020px -172px; +} + +.power_icon86x86.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6020px 0; +} + +.power_icon86x86.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6106px -86px; +} + +.power_icon86x86.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6106px -172px; +} + +.power_icon86x86.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6106px 0; +} + +.power_icon86x86.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6192px -86px; +} + +.power_icon86x86.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6192px -172px; +} + +.power_icon86x86.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6192px 0; +} + +.power_icon86x86.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6278px -86px; +} + +.power_icon86x86.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6278px -172px; +} + +.power_icon86x86.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6278px 0; +} + +.power_icon86x86.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6364px -86px; +} + +.power_icon86x86.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6364px -172px; +} + +.power_icon86x86.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6364px 0; +} + +.power_icon86x86.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6450px -86px; +} + +.power_icon86x86.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6450px -172px; +} + +.power_icon86x86.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6450px 0; +} + +.power_icon86x86.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6536px -86px; +} + +.power_icon86x86.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6536px -172px; +} + +.power_icon86x86.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6536px 0; +} + +.power_icon86x86.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6622px -86px; +} + +.power_icon86x86.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6622px -172px; +} + +.power_icon86x86.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6622px 0; +} + +.power_icon86x86.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6708px -86px; +} + +.power_icon86x86.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6708px -172px; +} + +.power_icon86x86.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6708px 0; +} + +.power_icon86x86.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6794px -86px; +} + +.power_icon86x86.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6794px -172px; +} + +.power_icon86x86.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6794px 0; +} + +.power_icon86x86.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6880px -86px; +} + +.power_icon86x86.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6880px -172px; +} + +.power_icon86x86.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6880px 0; +} + +.power_icon86x86.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6966px -86px; +} + +.power_icon86x86.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6966px -172px; +} + +.power_icon86x86.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -6966px 0; +} + +.power_icon86x86.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7052px -86px; +} + +.power_icon86x86.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7052px -172px; +} + +.power_icon86x86.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7052px 0; +} + +.power_icon86x86.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7138px -86px; +} + +.power_icon86x86.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7138px -172px; +} + +.power_icon86x86.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7138px 0; +} + +.power_icon86x86.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7224px -86px; +} + +.power_icon86x86.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7224px -172px; +} + +.power_icon86x86.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7224px 0; +} + +.power_icon86x86.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7310px -86px; +} + +.power_icon86x86.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7310px -172px; +} + +.power_icon86x86.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7310px 0; +} + +.power_icon86x86.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7396px -86px; +} + +.power_icon86x86.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7396px -172px; +} + +.power_icon86x86.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7396px 0; +} + +.power_icon86x86.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7482px -86px; +} + +.power_icon86x86.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7482px -172px; +} + +.power_icon86x86.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7482px 0; +} + +.power_icon86x86.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7568px -86px; +} + +.power_icon86x86.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7568px -172px; +} + +.power_icon86x86.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7568px 0; +} + +.power_icon86x86.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7654px -86px; +} + +.power_icon86x86.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7654px -172px; +} + +.power_icon86x86.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7654px 0; +} + +.power_icon86x86.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7740px -86px; +} + +.power_icon86x86.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7740px -172px; +} + +.power_icon86x86.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7740px 0; +} + +.power_icon86x86.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7826px -86px; +} + +.power_icon86x86.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7826px -172px; +} + +.power_icon86x86.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7826px 0; +} + +.power_icon86x86.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7912px -86px; +} + +.power_icon86x86.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7912px -172px; +} + +.power_icon86x86.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7912px 0; +} + +.power_icon86x86.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7998px -86px; +} + +.power_icon86x86.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7998px -172px; +} + +.power_icon86x86.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -7998px 0; +} + +.power_icon86x86.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8084px -86px; +} + +.power_icon86x86.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8084px -172px; +} + +.power_icon86x86.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8084px 0; +} + +.power_icon86x86.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8170px -86px; +} + +.power_icon86x86.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8170px -172px; +} + +.power_icon86x86.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8170px 0; +} + +.power_icon86x86.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8256px -86px; +} + +.power_icon86x86.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8256px -172px; +} + +.power_icon86x86.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8256px 0; +} + +.power_icon86x86.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8342px -86px; +} + +.power_icon86x86.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8342px -172px; +} + +.power_icon86x86.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8342px 0; +} + +.power_icon86x86.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8428px -86px; +} + +.power_icon86x86.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8428px -172px; +} + +.power_icon86x86.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8428px 0; +} + +.power_icon86x86.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8514px -86px; +} + +.power_icon86x86.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8514px -172px; +} + +.power_icon86x86.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8514px 0; +} + +.power_icon86x86.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8600px -86px; +} + +.power_icon86x86.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8600px -172px; +} + +.power_icon86x86.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8600px 0; +} + +.power_icon86x86.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8686px -86px; +} + +.power_icon86x86.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8686px -172px; +} + +.power_icon86x86.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8686px 0; +} + +.power_icon86x86.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8772px -86px; +} + +.power_icon86x86.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8772px -172px; +} + +.power_icon86x86.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8772px 0; +} + +.power_icon86x86.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8858px -86px; +} + +.power_icon86x86.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8858px -172px; +} + +.power_icon86x86.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8858px 0; +} + +.power_icon86x86.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8944px -86px; +} + +.power_icon86x86.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8944px -172px; +} + +.power_icon86x86.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -8944px 0; +} + +.power_icon86x86.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9030px -86px; +} + +.power_icon86x86.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9030px -172px; +} + +.power_icon86x86.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9030px 0; +} + +.power_icon86x86.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9116px -86px; +} + +.power_icon86x86.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9116px -172px; +} + +.power_icon86x86.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9116px 0; +} + +.power_icon86x86.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9202px -86px; +} + +.power_icon86x86.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9202px -172px; +} + +.power_icon86x86.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9202px 0; +} + +.power_icon86x86.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9288px -86px; +} + +.power_icon86x86.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9288px -172px; +} + +.power_icon86x86.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9288px 0; +} + +.power_icon86x86.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9374px -86px; +} + +.power_icon86x86.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9374px -172px; +} + +.power_icon86x86.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9374px 0; +} + +.power_icon86x86.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9460px -86px; +} + +.power_icon86x86.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9460px -172px; +} + +.power_icon86x86.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9460px 0; +} + +.power_icon86x86.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9546px -86px; +} + +.power_icon86x86.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9546px -172px; +} + +.power_icon86x86.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9546px 0; +} + +.power_icon86x86.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9632px -86px; +} + +.power_icon86x86.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9632px -172px; +} + +.power_icon86x86.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9632px 0; +} + +.power_icon86x86.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9718px -86px; +} + +.power_icon86x86.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9718px -172px; +} + +.power_icon86x86.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9718px 0; +} + +.power_icon86x86.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9804px -86px; +} + +.power_icon86x86.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9804px -172px; +} + +.power_icon86x86.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9804px 0; +} + +.power_icon86x86.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9890px -86px; +} + +.power_icon86x86.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9890px -172px; +} + +.power_icon86x86.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9890px 0; +} + +.power_icon86x86.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9976px -86px; +} + +.power_icon86x86.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9976px -172px; +} + +.power_icon86x86.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -9976px 0; +} + +.power_icon86x86.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10062px -86px; +} + +.power_icon86x86.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10062px -172px; +} + +.power_icon86x86.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10062px 0; +} + +.power_icon86x86.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10148px -86px; +} + +.power_icon86x86.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10148px -172px; +} + +.power_icon86x86.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10148px 0; +} + +.power_icon86x86.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10234px -86px; +} + +.power_icon86x86.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10234px -172px; +} + +.power_icon86x86.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10234px 0; +} + +.power_icon86x86.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10320px -86px; +} + +.power_icon86x86.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10320px -172px; +} + +.power_icon86x86.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10320px 0; +} + +.power_icon86x86.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10406px -86px; +} + +.power_icon86x86.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10406px -172px; +} + +.power_icon86x86.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10406px 0; +} + +.power_icon86x86.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10492px -86px; +} + +.power_icon86x86.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10492px -172px; +} + +.power_icon86x86.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10492px 0; +} + +.power_icon86x86.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10578px -86px; +} + +.power_icon86x86.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10578px -172px; +} + +.power_icon86x86.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10578px 0; +} + +.power_icon86x86.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10664px -86px; +} + +.power_icon86x86.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10664px -172px; +} + +.power_icon86x86.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10664px 0; +} + +.power_icon86x86.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10750px -86px; +} + +.power_icon86x86.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10750px -172px; +} + +.power_icon86x86.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10750px 0; +} + +.power_icon86x86.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10836px -86px; +} + +.power_icon86x86.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10836px -172px; +} + +.power_icon86x86.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10836px 0; +} + +.power_icon86x86.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10922px -86px; +} + +.power_icon86x86.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10922px -172px; +} + +.power_icon86x86.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_86x86_part2_e77aa84.png) no-repeat -10922px 0; +} + +.power_icon12x12.lvl.lvl1:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -199px -22px; + width: 1px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl1:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -202px -22px; + width: 1px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl2:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -200px -32px; + width: 2px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl2:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -201px -58px; + width: 2px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl3:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -200px -34px; + width: 3px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl3:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -196px -62px; + width: 3px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl4:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -200px -36px; + width: 3px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl4:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -199px -62px; + width: 3px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl5:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -200px -38px; + width: 2px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl5:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -201px -60px; + width: 2px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl6:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -200px -46px; + width: 3px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl6:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -198px -92px; + width: 3px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl7:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -195px -54px; + width: 4px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl7:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -199px -110px; + width: 4px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl8:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -191px -62px; + width: 5px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl8:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -195px -46px; + width: 5px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl9:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -199px -54px; + width: 3px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl9:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -189px -116px; + width: 3px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.lvl10:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -200px -22px; + width: 2px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.lvl.disabled.lvl10:after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -201px -56px; + width: 2px; + height: 2px; + pointer-events: none; +} + +.power_icon12x12.upgradable:not(.lvl)::after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -58px -29px; + width: 2px; + height: 3px; + pointer-events: none; +} + +.power_icon12x12.upgradable:not(.lvl).disabled::after { + position: absolute; + content: ""; + left: 0; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -60px -29px; + width: 2px; + height: 3px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl1:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -200px -24px; + width: 3px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl1:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -200px -28px; + width: 3px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl2:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -134px; + width: 5px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl2:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -122px; + width: 5px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl3:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -192px -130px; + width: 7px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl3:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -194px -118px; + width: 7px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl4:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -186px -130px; + width: 6px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl4:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -188px -118px; + width: 6px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl5:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -130px; + width: 4px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl5:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -198px -88px; + width: 4px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl6:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -197px -122px; + width: 6px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl6:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -118px; + width: 6px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl7:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -192px -126px; + width: 8px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl7:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -195px -112px; + width: 8px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl8:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -126px; + width: 10px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl8:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -187px -122px; + width: 10px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl9:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -189px -112px; + width: 6px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl9:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -187px -134px; + width: 6px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.lvl10:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -199px -130px; + width: 4px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.lvl.disabled.lvl10:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -199px -106px; + width: 4px; + height: 4px; + pointer-events: none; +} + +.power_icon16x16.upgradable:not(.lvl)::after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -56px -33px; + width: 4px; + height: 6px; + pointer-events: none; +} + +.power_icon16x16.upgradable:not(.lvl).disabled::after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -58px -23px; + width: 4px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl1:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -199px -16px; + width: 4px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl1:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -198px -64px; + width: 4px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl2:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -192px -106px; + width: 7px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl2:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -195px -48px; + width: 7px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl3:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -106px; + width: 10px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl3:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -82px; + width: 10px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl4:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -192px -100px; + width: 10px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl4:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -192px -76px; + width: 10px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl5:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -195px -94px; + width: 7px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl5:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -195px -40px; + width: 7px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl6:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -100px; + width: 10px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl6:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -76px; + width: 10px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl7:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -94px; + width: 13px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl7:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -70px; + width: 13px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl8:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -88px; + width: 16px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl8:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -64px; + width: 16px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl9:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -192px -82px; + width: 10px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl9:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -191px -56px; + width: 10px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.lvl10:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -112px; + width: 7px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.lvl.disabled.lvl10:after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -195px -70px; + width: 7px; + height: 6px; + pointer-events: none; +} + +.power_icon24x24.upgradable:not(.lvl)::after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -52px -23px; + width: 6px; + height: 9px; + pointer-events: none; +} + +.power_icon24x24.upgradable:not(.lvl).disabled::after { + position: absolute; + content: ""; + left: 0; + bottom: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -46px -23px; + width: 6px; + height: 9px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl1:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -195px -24px; + width: 5px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl1:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -175px -48px; + width: 5px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl2:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -191px -32px; + width: 9px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl2:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -170px -132px; + width: 9px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl3:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -48px; + width: 13px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl3:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -150px -168px; + width: 13px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl4:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -40px; + width: 13px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl4:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -137px -168px; + width: 13px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl5:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -32px; + width: 9px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl5:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -171px -96px; + width: 9px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl6:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -24px; + width: 13px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl6:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -124px -168px; + width: 13px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl7:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -16px; + width: 17px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl7:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -107px -168px; + width: 17px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl8:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -8px; + width: 21px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl8:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px 0; + width: 21px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl9:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -144px; + width: 13px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl9:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -133px -40px; + width: 13px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.lvl10:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -182px -56px; + width: 9px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.lvl.disabled.lvl10:after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -170px -144px; + width: 9px; + height: 8px; + pointer-events: none; +} + +.power_icon30x30.upgradable:not(.lvl)::after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -48px -33px; + width: 8px; + height: 11px; + pointer-events: none; +} + +.power_icon30x30.upgradable:not(.lvl).disabled::after { + position: absolute; + content: ""; + left: 1px; + bottom: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -40px -33px; + width: 8px; + height: 11px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl1:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -174px -64px; + width: 8px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl1:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -174px -16px; + width: 8px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl2:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -96px; + width: 14px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl2:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -120px -152px; + width: 14px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl3:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -108px; + width: 20px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl3:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -134px -152px; + width: 20px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl4:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -120px; + width: 19px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl4:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -154px -152px; + width: 19px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl5:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -132px; + width: 13px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl5:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 -168px; + width: 13px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl6:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -26px -152px; + width: 19px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl6:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -13px -168px; + width: 19px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl7:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -45px -152px; + width: 25px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl7:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -32px -168px; + width: 25px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl8:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -70px -152px; + width: 31px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl8:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -57px -168px; + width: 31px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl9:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -101px -152px; + width: 19px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl9:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -88px -168px; + width: 19px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.lvl10:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -141px -72px; + width: 13px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.lvl.disabled.lvl10:after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -141px -84px; + width: 13px; + height: 12px; + pointer-events: none; +} + +.power_icon45x45.upgradable:not(.lvl)::after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -16px -33px; + width: 12px; + height: 17px; + pointer-events: none; +} + +.power_icon45x45.upgradable:not(.lvl).disabled::after { + position: absolute; + content: ""; + left: 1px; + bottom: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -28px -33px; + width: 12px; + height: 17px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl1:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -133px -24px; + width: 10px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl1:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -143px -24px; + width: 10px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl2:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -48px; + width: 18px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl2:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 -136px; + width: 18px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl3:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 -152px; + width: 26px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl3:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -125px -120px; + width: 26px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl4:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -32px; + width: 25px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl4:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -100px -120px; + width: 25px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl5:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -16px; + width: 17px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl5:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -83px -120px; + width: 17px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl6:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px 0; + width: 25px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl6:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -58px -120px; + width: 25px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl7:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -117px -136px; + width: 33px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl7:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -25px -120px; + width: 33px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl8:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -76px -136px; + width: 41px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl8:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -35px -136px; + width: 41px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl9:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 -120px; + width: 25px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl9:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -80px; + width: 25px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.lvl10:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -157px -64px; + width: 17px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.lvl.disabled.lvl10:after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -18px -136px; + width: 17px; + height: 16px; + pointer-events: none; +} + +.power_icon60x60.upgradable:not(.lvl)::after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat 0 -33px; + width: 16px; + height: 23px; + pointer-events: none; +} + +.power_icon60x60.upgradable:not(.lvl).disabled::after { + position: absolute; + content: ""; + left: 2px; + bottom: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -46px 0; + width: 16px; + height: 23px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl1:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -15px 0; + width: 15px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl1:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 0; + width: 15px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl2:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 -24px; + width: 27px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl2:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -121px -48px; + width: 27px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl3:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -56px 0; + width: 39px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl3:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 -72px; + width: 39px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl4:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -56px -24px; + width: 38px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl4:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -39px -72px; + width: 38px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl5:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -27px -24px; + width: 26px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl5:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -77px -72px; + width: 26px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl6:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 -48px; + width: 38px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl6:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -103px -72px; + width: 38px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl7:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -38px -48px; + width: 50px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl7:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat 0 -96px; + width: 50px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl8:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -95px 0; + width: 62px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl8:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -50px -96px; + width: 62px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl9:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -95px -24px; + width: 38px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl9:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -112px -96px; + width: 38px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.lvl10:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -30px 0; + width: 26px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.lvl.disabled.lvl10:after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/numbers_2.82.png) no-repeat -95px -48px; + width: 26px; + height: 24px; + pointer-events: none; +} + +.power_icon86x86.upgradable:not(.lvl)::after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat 0 0; + width: 23px; + height: 33px; + pointer-events: none; +} + +.power_icon86x86.upgradable:not(.lvl).disabled::after { + position: absolute; + content: ""; + left: 2px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/upgradable_indicator_da27a06.png) no-repeat -23px 0; + width: 23px; + height: 33px; + pointer-events: none; +} + +.reward_icon .amount { + position: absolute; + bottom: 5px; + right: 5px; + pointer-events: none; +} + +.btn_reward .reward_icon, +.icon.reward .reward_icon { + cursor: pointer; +} + +.btn_reward .reward_icon.disabled, +.icon.reward .reward_icon.disabled { + cursor: default; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.artifact_hunter_max_ambrosia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) 0 0 no-repeat; +} + +.award76x76.artifact_hunter_max_athenas_cornucopia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -76px 0 no-repeat; +} + +.award76x76.artifact_hunter_max_golden_fleece { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) 0 -76px no-repeat; +} + +.award76x76.artifact_hunter_max_palladion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -76px -76px no-repeat; +} + +.award76x76.artifact_hunter_max_silver_kantharos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -152px 0 no-repeat; +} + +.award76x76.artifact_hunter_max_zeus_spark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -152px -76px no-repeat; +} + +.award76x76.attacker_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) 0 -152px no-repeat; +} + +.award76x76.defender_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -76px -152px no-repeat; +} + +.award76x76.domination_conquerors { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -152px -152px no-repeat; +} + +.award76x76.domination_lesser_dominators { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -228px 0 no-repeat; +} + +.award76x76.domination_minor_dominators { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -228px -76px no-repeat; +} + +.award76x76.domination_victors { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -228px -152px no-repeat; +} + +.award76x76.early_game_over { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) 0 -228px no-repeat; +} + +.award76x76.hero_fellowship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -76px -228px no-repeat; +} + +.award76x76.hero_rare_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -152px -228px no-repeat; +} + +.award76x76.hero_wise_men { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -228px -228px no-repeat; +} + +.award76x76.heroic_strategist { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -304px 0 no-repeat; +} + +.award76x76.island_quests_done { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -304px -76px no-repeat; +} + +.award76x76.island_quests_evil { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -304px -152px no-repeat; +} + +.award76x76.island_quests_good { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -304px -228px no-repeat; +} + +.award76x76.last_man_standing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) 0 -304px no-repeat; +} + +.award76x76.looter_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -76px -304px no-repeat; +} + +.award76x76.market_merge_success { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -152px -304px no-repeat; +} + +.award76x76.most_towns_conquered_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -228px -304px no-repeat; +} + +.award76x76.olympus_awakening_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -304px -304px no-repeat; +} + +.award76x76.olympus_blessing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -380px 0 no-repeat; +} + +.award76x76.olympus_champion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -380px -76px no-repeat; +} + +.award76x76.olympus_close_to_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -380px -152px no-repeat; +} + +.award76x76.olympus_follower_of_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -380px -228px no-repeat; +} + +.award76x76.olympus_follower_of_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -380px -304px no-repeat; +} + +.award76x76.olympus_follower_of_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) 0 -380px no-repeat; +} + +.award76x76.olympus_follower_of_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -76px -380px no-repeat; +} + +.award76x76.olympus_follower_of_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -152px -380px no-repeat; +} + +.award76x76.olympus_follower_of_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -228px -380px no-repeat; +} + +.award76x76.olympus_follower_of_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -304px -380px no-repeat; +} + +.award76x76.olympus_follower_of_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -380px -380px no-repeat; +} + +.award76x76.supporter_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -456px 0 no-repeat; +} + +.award76x76.tutorial_quests { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -456px -76px no-repeat; +} + +.award76x76.wonder_colossus_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -456px -152px no-repeat; +} + +.award76x76.wonder_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -456px -228px no-repeat; +} + +.award76x76.wonder_finished_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -456px -304px no-repeat; +} + +.award76x76.wonder_finished_all_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -456px -380px no-repeat; +} + +.award76x76.wonder_gardens_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) 0 -456px no-repeat; +} + +.award76x76.wonder_lighthouse_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -76px -456px no-repeat; +} + +.award76x76.wonder_mausoleum_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -152px -456px no-repeat; +} + +.award76x76.wonder_pyramid_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -228px -456px no-repeat; +} + +.award76x76.wonder_statue_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -304px -456px no-repeat; +} + +.award76x76.wonder_temple_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_76x76_5e1a6d6.png) -380px -456px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.artifact_hunter_max_ambrosia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) 0 0 no-repeat; +} + +.award31x31.artifact_hunter_max_athenas_cornucopia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -31px 0 no-repeat; +} + +.award31x31.artifact_hunter_max_golden_fleece { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) 0 -31px no-repeat; +} + +.award31x31.artifact_hunter_max_palladion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -31px -31px no-repeat; +} + +.award31x31.artifact_hunter_max_silver_kantharos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -62px 0 no-repeat; +} + +.award31x31.artifact_hunter_max_zeus_spark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -62px -31px no-repeat; +} + +.award31x31.attacker_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) 0 -62px no-repeat; +} + +.award31x31.defender_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -31px -62px no-repeat; +} + +.award31x31.domination_conquerors { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -62px -62px no-repeat; +} + +.award31x31.domination_lesser_dominators { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -93px 0 no-repeat; +} + +.award31x31.domination_minor_dominators { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -93px -31px no-repeat; +} + +.award31x31.domination_victors { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -93px -62px no-repeat; +} + +.award31x31.early_game_over { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) 0 -93px no-repeat; +} + +.award31x31.hero_fellowship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -31px -93px no-repeat; +} + +.award31x31.hero_rare_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -62px -93px no-repeat; +} + +.award31x31.hero_wise_men { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -93px -93px no-repeat; +} + +.award31x31.heroic_strategist { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -124px 0 no-repeat; +} + +.award31x31.island_quests_done { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -124px -31px no-repeat; +} + +.award31x31.island_quests_evil { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -124px -62px no-repeat; +} + +.award31x31.island_quests_good { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -124px -93px no-repeat; +} + +.award31x31.last_man_standing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) 0 -124px no-repeat; +} + +.award31x31.looter_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -31px -124px no-repeat; +} + +.award31x31.market_merge_success { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -62px -124px no-repeat; +} + +.award31x31.most_towns_conquered_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -93px -124px no-repeat; +} + +.award31x31.olympus_awakening_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -124px -124px no-repeat; +} + +.award31x31.olympus_blessing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -155px 0 no-repeat; +} + +.award31x31.olympus_champion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -155px -31px no-repeat; +} + +.award31x31.olympus_close_to_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -155px -62px no-repeat; +} + +.award31x31.olympus_follower_of_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -155px -93px no-repeat; +} + +.award31x31.olympus_follower_of_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -155px -124px no-repeat; +} + +.award31x31.olympus_follower_of_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) 0 -155px no-repeat; +} + +.award31x31.olympus_follower_of_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -31px -155px no-repeat; +} + +.award31x31.olympus_follower_of_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -62px -155px no-repeat; +} + +.award31x31.olympus_follower_of_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -93px -155px no-repeat; +} + +.award31x31.olympus_follower_of_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -124px -155px no-repeat; +} + +.award31x31.olympus_follower_of_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -155px -155px no-repeat; +} + +.award31x31.supporter_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -186px 0 no-repeat; +} + +.award31x31.tutorial_quests { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -186px -31px no-repeat; +} + +.award31x31.wonder_colossus_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -186px -62px no-repeat; +} + +.award31x31.wonder_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -186px -93px no-repeat; +} + +.award31x31.wonder_finished_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -186px -124px no-repeat; +} + +.award31x31.wonder_finished_all_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -186px -155px no-repeat; +} + +.award31x31.wonder_gardens_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) 0 -186px no-repeat; +} + +.award31x31.wonder_lighthouse_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -31px -186px no-repeat; +} + +.award31x31.wonder_mausoleum_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -62px -186px no-repeat; +} + +.award31x31.wonder_pyramid_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -93px -186px no-repeat; +} + +.award31x31.wonder_statue_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -124px -186px no-repeat; +} + +.award31x31.wonder_temple_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_31x31_f510f87.png) -155px -186px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.artifact_hunter_ambrosia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 0 no-repeat; +} + +.award76x76.artifact_hunter_athenas_cornucopia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px 0 no-repeat; +} + +.award76x76.artifact_hunter_golden_fleece_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -76px no-repeat; +} + +.award76x76.artifact_hunter_palladion_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -76px no-repeat; +} + +.award76x76.artifact_hunter_silver_kantharos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px 0 no-repeat; +} + +.award76x76.artifact_hunter_zeus_spark_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -76px no-repeat; +} + +.award76x76.build_buildings_library_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -152px no-repeat; +} + +.award76x76.build_buildings_lighthouse_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -152px no-repeat; +} + +.award76x76.build_buildings_oracle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -152px no-repeat; +} + +.award76x76.build_buildings_statue_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px 0 no-repeat; +} + +.award76x76.build_buildings_theater_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -76px no-repeat; +} + +.award76x76.build_buildings_thermal_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -152px no-repeat; +} + +.award76x76.build_buildings_tower_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -228px no-repeat; +} + +.award76x76.build_buildings_trade_office_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -228px no-repeat; +} + +.award76x76.colonize_ships_built_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -228px no-repeat; +} + +.award76x76.creator_of_legends_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -228px no-repeat; +} + +.award76x76.cultural_step_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px 0 no-repeat; +} + +.award76x76.domination_dominate_the_world_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -76px no-repeat; +} + +.award76x76.domination_ocean_emperor_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -152px no-repeat; +} + +.award76x76.domination_world_emperor_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -228px no-repeat; +} + +.award76x76.espionage_failed_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -304px no-repeat; +} + +.award76x76.espionage_successful_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -304px no-repeat; +} + +.award76x76.friend_of_heroes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -304px no-repeat; +} + +.award76x76.hero_level_agamemnon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -304px no-repeat; +} + +.award76x76.hero_level_ajax_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -304px no-repeat; +} + +.award76x76.hero_level_alexandrios_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px 0 no-repeat; +} + +.award76x76.hero_level_andromeda_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -76px no-repeat; +} + +.award76x76.hero_level_anysia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -152px no-repeat; +} + +.award76x76.hero_level_apheledes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -228px no-repeat; +} + +.award76x76.hero_level_argus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -304px no-repeat; +} + +.award76x76.hero_level_aristotle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -380px no-repeat; +} + +.award76x76.hero_level_atalanta_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -380px no-repeat; +} + +.award76x76.hero_level_cheiron_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -380px no-repeat; +} + +.award76x76.hero_level_christopholus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -380px no-repeat; +} + +.award76x76.hero_level_daidalos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -380px no-repeat; +} + +.award76x76.hero_level_deimos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -380px no-repeat; +} + +.award76x76.hero_level_democritus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px 0 no-repeat; +} + +.award76x76.hero_level_eurybia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -76px no-repeat; +} + +.award76x76.hero_level_ferkyon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -152px no-repeat; +} + +.award76x76.hero_level_hector_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -228px no-repeat; +} + +.award76x76.hero_level_helen_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -304px no-repeat; +} + +.award76x76.hero_level_hercules_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -380px no-repeat; +} + +.award76x76.hero_level_iason_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -456px no-repeat; +} + +.award76x76.hero_level_leonidas_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -456px no-repeat; +} + +.award76x76.hero_level_lysippe_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -456px no-repeat; +} + +.award76x76.hero_level_medea_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -456px no-repeat; +} + +.award76x76.hero_level_melousa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -456px no-repeat; +} + +.award76x76.hero_level_mihalis_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -456px no-repeat; +} + +.award76x76.hero_level_odysseus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -456px no-repeat; +} + +.award76x76.hero_level_orpheus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px 0 no-repeat; +} + +.award76x76.hero_level_pariphaistes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -76px no-repeat; +} + +.award76x76.hero_level_pelops_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -152px no-repeat; +} + +.award76x76.hero_level_perseus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -228px no-repeat; +} + +.award76x76.hero_level_philoctetes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -304px no-repeat; +} + +.award76x76.hero_level_rekonos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -380px no-repeat; +} + +.award76x76.hero_level_telemachos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -456px no-repeat; +} + +.award76x76.hero_level_terylea_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -532px no-repeat; +} + +.award76x76.hero_level_themistokles_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -532px no-repeat; +} + +.award76x76.hero_level_urephon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -532px no-repeat; +} + +.award76x76.hero_level_ylestres_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -532px no-repeat; +} + +.award76x76.hero_level_zuretha_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -532px no-repeat; +} + +.award76x76.hero_money_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -532px no-repeat; +} + +.award76x76.island_quests_done_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -532px no-repeat; +} + +.award76x76.island_quests_evil_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -532px no-repeat; +} + +.award76x76.island_quests_good_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px 0 no-repeat; +} + +.award76x76.killed_units_agamemnon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -76px no-repeat; +} + +.award76x76.killed_units_ajax_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -152px no-repeat; +} + +.award76x76.killed_units_alexandrios_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -228px no-repeat; +} + +.award76x76.killed_units_andromeda_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -304px no-repeat; +} + +.award76x76.killed_units_anysia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -380px no-repeat; +} + +.award76x76.killed_units_apheledes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -456px no-repeat; +} + +.award76x76.killed_units_archer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -532px no-repeat; +} + +.award76x76.killed_units_argus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -608px no-repeat; +} + +.award76x76.killed_units_aristotle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -608px no-repeat; +} + +.award76x76.killed_units_atalanta_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -608px no-repeat; +} + +.award76x76.killed_units_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -608px no-repeat; +} + +.award76x76.killed_units_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -608px no-repeat; +} + +.award76x76.killed_units_bireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -608px no-repeat; +} + +.award76x76.killed_units_calydonian_boar_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -608px no-repeat; +} + +.award76x76.killed_units_catapult_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -608px no-repeat; +} + +.award76x76.killed_units_centaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -608px no-repeat; +} + +.award76x76.killed_units_cerberus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px 0 no-repeat; +} + +.award76x76.killed_units_chariot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -76px no-repeat; +} + +.award76x76.killed_units_cheiron_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -152px no-repeat; +} + +.award76x76.killed_units_christopholus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -228px no-repeat; +} + +.award76x76.killed_units_daidalos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -304px no-repeat; +} + +.award76x76.killed_units_defending_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -380px no-repeat; +} + +.award76x76.killed_units_defending_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -456px no-repeat; +} + +.award76x76.killed_units_defending_catapult_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -532px no-repeat; +} + +.award76x76.killed_units_defending_chariot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -608px no-repeat; +} + +.award76x76.killed_units_defending_colonize_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -684px no-repeat; +} + +.award76x76.killed_units_defending_fury_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -684px no-repeat; +} + +.award76x76.killed_units_defending_godsent_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -684px no-repeat; +} + +.award76x76.killed_units_defending_griffin_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -684px no-repeat; +} + +.award76x76.killed_units_defending_harpy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -684px no-repeat; +} + +.award76x76.killed_units_defending_hoplite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -684px no-repeat; +} + +.award76x76.killed_units_defending_ladon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -684px no-repeat; +} + +.award76x76.killed_units_defending_manticore_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -684px no-repeat; +} + +.award76x76.killed_units_defending_medusa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -684px no-repeat; +} + +.award76x76.killed_units_defending_minotaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -684px no-repeat; +} + +.award76x76.killed_units_defending_rider_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px 0 no-repeat; +} + +.award76x76.killed_units_defending_satyr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -76px no-repeat; +} + +.award76x76.killed_units_defending_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -152px no-repeat; +} + +.award76x76.killed_units_defending_siren_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -228px no-repeat; +} + +.award76x76.killed_units_defending_slinger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -304px no-repeat; +} + +.award76x76.killed_units_defending_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -380px no-repeat; +} + +.award76x76.killed_units_defending_spartoi_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -456px no-repeat; +} + +.award76x76.killed_units_defending_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -532px no-repeat; +} + +.award76x76.killed_units_defending_zyklop_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -608px no-repeat; +} + +.award76x76.killed_units_deimos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -684px no-repeat; +} + +.award76x76.killed_units_democritus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -760px no-repeat; +} + +.award76x76.killed_units_demolition_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -760px no-repeat; +} + +.award76x76.killed_units_eurybia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -760px no-repeat; +} + +.award76x76.killed_units_ferkyon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -760px no-repeat; +} + +.award76x76.killed_units_fury_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -760px no-repeat; +} + +.award76x76.killed_units_godsent_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -760px no-repeat; +} + +.award76x76.killed_units_griffin_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -760px no-repeat; +} + +.award76x76.killed_units_harpy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -760px no-repeat; +} + +.award76x76.killed_units_hector_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -760px no-repeat; +} + +.award76x76.killed_units_helen_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -760px no-repeat; +} + +.award76x76.killed_units_hercules_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -760px no-repeat; +} + +.award76x76.killed_units_hoplite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px 0 no-repeat; +} + +.award76x76.killed_units_iason_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -76px no-repeat; +} + +.award76x76.killed_units_ladon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -152px no-repeat; +} + +.award76x76.killed_units_leonidas_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -228px no-repeat; +} + +.award76x76.killed_units_lysippe_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -304px no-repeat; +} + +.award76x76.killed_units_manticore_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -380px no-repeat; +} + +.award76x76.killed_units_medea_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -456px no-repeat; +} + +.award76x76.killed_units_medusa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -532px no-repeat; +} + +.award76x76.killed_units_melousa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -608px no-repeat; +} + +.award76x76.killed_units_mihalis_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -684px no-repeat; +} + +.award76x76.killed_units_minotaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -760px no-repeat; +} + +.award76x76.killed_units_odysseus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -836px no-repeat; +} + +.award76x76.killed_units_orpheus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -836px no-repeat; +} + +.award76x76.killed_units_pariphaistes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -836px no-repeat; +} + +.award76x76.killed_units_pegasus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -836px no-repeat; +} + +.award76x76.killed_units_pelops_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -836px no-repeat; +} + +.award76x76.killed_units_perseus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -836px no-repeat; +} + +.award76x76.killed_units_philoctetes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -836px no-repeat; +} + +.award76x76.killed_units_rekonos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -836px no-repeat; +} + +.award76x76.killed_units_rider_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -836px no-repeat; +} + +.award76x76.killed_units_satyr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -836px no-repeat; +} + +.award76x76.killed_units_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -836px no-repeat; +} + +.award76x76.killed_units_siren_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -836px no-repeat; +} + +.award76x76.killed_units_slinger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px 0 no-repeat; +} + +.award76x76.killed_units_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -76px no-repeat; +} + +.award76x76.killed_units_spartoi_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -152px no-repeat; +} + +.award76x76.killed_units_support_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -228px no-repeat; +} + +.award76x76.killed_units_support_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -304px no-repeat; +} + +.award76x76.killed_units_support_catapult_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -380px no-repeat; +} + +.award76x76.killed_units_support_chariot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -456px no-repeat; +} + +.award76x76.killed_units_support_colonize_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -532px no-repeat; +} + +.award76x76.killed_units_support_fury_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -608px no-repeat; +} + +.award76x76.killed_units_support_godsent_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -684px no-repeat; +} + +.award76x76.killed_units_support_griffin_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -760px no-repeat; +} + +.award76x76.killed_units_support_harpy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -836px no-repeat; +} + +.award76x76.killed_units_support_hoplite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -912px no-repeat; +} + +.award76x76.killed_units_support_ladon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -912px no-repeat; +} + +.award76x76.killed_units_support_manticore_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -912px no-repeat; +} + +.award76x76.killed_units_support_medusa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -912px no-repeat; +} + +.award76x76.killed_units_support_minotaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -912px no-repeat; +} + +.award76x76.killed_units_support_rider_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -912px no-repeat; +} + +.award76x76.killed_units_support_satyr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -912px no-repeat; +} + +.award76x76.killed_units_support_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -912px no-repeat; +} + +.award76x76.killed_units_support_siren_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -912px no-repeat; +} + +.award76x76.killed_units_support_slinger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -912px no-repeat; +} + +.award76x76.killed_units_support_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -912px no-repeat; +} + +.award76x76.killed_units_support_spartoi_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -912px no-repeat; +} + +.award76x76.killed_units_support_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -912px no-repeat; +} + +.award76x76.killed_units_support_zyklop_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px 0 no-repeat; +} + +.award76x76.killed_units_sword_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -76px no-repeat; +} + +.award76x76.killed_units_telemachos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -152px no-repeat; +} + +.award76x76.killed_units_terylea_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -228px no-repeat; +} + +.award76x76.killed_units_themistokles_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -304px no-repeat; +} + +.award76x76.killed_units_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -380px no-repeat; +} + +.award76x76.killed_units_urephon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -456px no-repeat; +} + +.award76x76.killed_units_ylestres_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -532px no-repeat; +} + +.award76x76.killed_units_zuretha_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -608px no-repeat; +} + +.award76x76.killed_units_zyklop_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -684px no-repeat; +} + +.award76x76.mythological_units_built_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -760px no-repeat; +} + +.award76x76.olympus_devoted_servant_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -836px no-repeat; +} + +.award76x76.own_islands_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -912px no-repeat; +} + +.award76x76.points_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -988px no-repeat; +} + +.award76x76.powers_used_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -988px no-repeat; +} + +.award76x76.resources_loot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -988px no-repeat; +} + +.award76x76.resources_trade_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -988px no-repeat; +} + +.award76x76.sea_ranking_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -988px no-repeat; +} + +.award76x76.speed_world_finished_ally_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -988px no-repeat; +} + +.award76x76.speed_world_finished_player_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -988px no-repeat; +} + +.award76x76.towns_conquered_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -988px no-repeat; +} + +.award76x76.towns_founded_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -988px no-repeat; +} + +.award76x76.train_units_archer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -988px no-repeat; +} + +.award76x76.train_units_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -988px no-repeat; +} + +.award76x76.train_units_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -988px no-repeat; +} + +.award76x76.train_units_bireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -988px no-repeat; +} + +.award76x76.train_units_calydonian_boar_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -988px no-repeat; +} + +.award76x76.train_units_catapult_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px 0 no-repeat; +} + +.award76x76.train_units_centaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -76px no-repeat; +} + +.award76x76.train_units_cerberus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -152px no-repeat; +} + +.award76x76.train_units_chariot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -228px no-repeat; +} + +.award76x76.train_units_demolition_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -304px no-repeat; +} + +.award76x76.train_units_fury_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -380px no-repeat; +} + +.award76x76.train_units_godsent_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -456px no-repeat; +} + +.award76x76.train_units_griffin_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -532px no-repeat; +} + +.award76x76.train_units_harpy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -608px no-repeat; +} + +.award76x76.train_units_hoplite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -684px no-repeat; +} + +.award76x76.train_units_ladon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -760px no-repeat; +} + +.award76x76.train_units_manticore_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -836px no-repeat; +} + +.award76x76.train_units_medusa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -912px no-repeat; +} + +.award76x76.train_units_minotaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -988px no-repeat; +} + +.award76x76.train_units_pegasus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) 0 -1064px no-repeat; +} + +.award76x76.train_units_rider_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -76px -1064px no-repeat; +} + +.award76x76.train_units_satyr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -152px -1064px no-repeat; +} + +.award76x76.train_units_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -228px -1064px no-repeat; +} + +.award76x76.train_units_siren_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -304px -1064px no-repeat; +} + +.award76x76.train_units_slinger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -380px -1064px no-repeat; +} + +.award76x76.train_units_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -456px -1064px no-repeat; +} + +.award76x76.train_units_spartoi_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -532px -1064px no-repeat; +} + +.award76x76.train_units_sword_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -608px -1064px no-repeat; +} + +.award76x76.train_units_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -684px -1064px no-repeat; +} + +.award76x76.train_units_zyklop_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -760px -1064px no-repeat; +} + +.award76x76.units_claimed_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -836px -1064px no-repeat; +} + +.award76x76.units_killed_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -912px -1064px no-repeat; +} + +.award76x76.units_lost_during_farm_attack_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -988px -1064px no-repeat; +} + +.award76x76.units_lost_during_support_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1064px -1064px no-repeat; +} + +.award76x76.units_lost_without_fight_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1140px 0 no-repeat; +} + +.award76x76.various_earth_shaker_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1140px -76px no-repeat; +} + +.award76x76.various_great_fleet_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1140px -152px no-repeat; +} + +.award76x76.various_great_mobilization_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1140px -228px no-repeat; +} + +.award76x76.various_guptas_god_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1140px -304px no-repeat; +} + +.award76x76.world_ranking_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_1_76x76_9e96d8e.png) -1140px -380px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.artifact_hunter_ambrosia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 0 no-repeat; +} + +.award76x76.artifact_hunter_athenas_cornucopia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px 0 no-repeat; +} + +.award76x76.artifact_hunter_golden_fleece_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -76px no-repeat; +} + +.award76x76.artifact_hunter_palladion_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -76px no-repeat; +} + +.award76x76.artifact_hunter_silver_kantharos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px 0 no-repeat; +} + +.award76x76.artifact_hunter_zeus_spark_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -76px no-repeat; +} + +.award76x76.build_buildings_library_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -152px no-repeat; +} + +.award76x76.build_buildings_lighthouse_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -152px no-repeat; +} + +.award76x76.build_buildings_oracle_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -152px no-repeat; +} + +.award76x76.build_buildings_statue_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px 0 no-repeat; +} + +.award76x76.build_buildings_theater_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -76px no-repeat; +} + +.award76x76.build_buildings_thermal_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -152px no-repeat; +} + +.award76x76.build_buildings_tower_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -228px no-repeat; +} + +.award76x76.build_buildings_trade_office_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -228px no-repeat; +} + +.award76x76.colonize_ships_built_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -228px no-repeat; +} + +.award76x76.creator_of_legends_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -228px no-repeat; +} + +.award76x76.cultural_step_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px 0 no-repeat; +} + +.award76x76.domination_dominate_the_world_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -76px no-repeat; +} + +.award76x76.domination_ocean_emperor_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -152px no-repeat; +} + +.award76x76.domination_world_emperor_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -228px no-repeat; +} + +.award76x76.espionage_failed_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -304px no-repeat; +} + +.award76x76.espionage_successful_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -304px no-repeat; +} + +.award76x76.friend_of_heroes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -304px no-repeat; +} + +.award76x76.hero_level_agamemnon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -304px no-repeat; +} + +.award76x76.hero_level_ajax_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -304px no-repeat; +} + +.award76x76.hero_level_alexandrios_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px 0 no-repeat; +} + +.award76x76.hero_level_andromeda_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -76px no-repeat; +} + +.award76x76.hero_level_anysia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -152px no-repeat; +} + +.award76x76.hero_level_apheledes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -228px no-repeat; +} + +.award76x76.hero_level_argus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -304px no-repeat; +} + +.award76x76.hero_level_aristotle_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -380px no-repeat; +} + +.award76x76.hero_level_atalanta_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -380px no-repeat; +} + +.award76x76.hero_level_cheiron_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -380px no-repeat; +} + +.award76x76.hero_level_christopholus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -380px no-repeat; +} + +.award76x76.hero_level_daidalos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -380px no-repeat; +} + +.award76x76.hero_level_deimos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -380px no-repeat; +} + +.award76x76.hero_level_democritus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px 0 no-repeat; +} + +.award76x76.hero_level_eurybia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -76px no-repeat; +} + +.award76x76.hero_level_ferkyon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -152px no-repeat; +} + +.award76x76.hero_level_hector_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -228px no-repeat; +} + +.award76x76.hero_level_helen_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -304px no-repeat; +} + +.award76x76.hero_level_hercules_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -380px no-repeat; +} + +.award76x76.hero_level_iason_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -456px no-repeat; +} + +.award76x76.hero_level_leonidas_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -456px no-repeat; +} + +.award76x76.hero_level_lysippe_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -456px no-repeat; +} + +.award76x76.hero_level_medea_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -456px no-repeat; +} + +.award76x76.hero_level_melousa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -456px no-repeat; +} + +.award76x76.hero_level_mihalis_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -456px no-repeat; +} + +.award76x76.hero_level_odysseus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -456px no-repeat; +} + +.award76x76.hero_level_orpheus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px 0 no-repeat; +} + +.award76x76.hero_level_pariphaistes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -76px no-repeat; +} + +.award76x76.hero_level_pelops_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -152px no-repeat; +} + +.award76x76.hero_level_perseus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -228px no-repeat; +} + +.award76x76.hero_level_philoctetes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -304px no-repeat; +} + +.award76x76.hero_level_rekonos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -380px no-repeat; +} + +.award76x76.hero_level_telemachos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -456px no-repeat; +} + +.award76x76.hero_level_terylea_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -532px no-repeat; +} + +.award76x76.hero_level_themistokles_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -532px no-repeat; +} + +.award76x76.hero_level_urephon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -532px no-repeat; +} + +.award76x76.hero_level_ylestres_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -532px no-repeat; +} + +.award76x76.hero_level_zuretha_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -532px no-repeat; +} + +.award76x76.hero_money_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -532px no-repeat; +} + +.award76x76.island_quests_done_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -532px no-repeat; +} + +.award76x76.island_quests_evil_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -532px no-repeat; +} + +.award76x76.island_quests_good_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px 0 no-repeat; +} + +.award76x76.killed_units_agamemnon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -76px no-repeat; +} + +.award76x76.killed_units_ajax_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -152px no-repeat; +} + +.award76x76.killed_units_alexandrios_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -228px no-repeat; +} + +.award76x76.killed_units_andromeda_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -304px no-repeat; +} + +.award76x76.killed_units_anysia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -380px no-repeat; +} + +.award76x76.killed_units_apheledes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -456px no-repeat; +} + +.award76x76.killed_units_archer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -532px no-repeat; +} + +.award76x76.killed_units_argus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -608px no-repeat; +} + +.award76x76.killed_units_aristotle_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -608px no-repeat; +} + +.award76x76.killed_units_atalanta_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -608px no-repeat; +} + +.award76x76.killed_units_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -608px no-repeat; +} + +.award76x76.killed_units_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -608px no-repeat; +} + +.award76x76.killed_units_bireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -608px no-repeat; +} + +.award76x76.killed_units_calydonian_boar_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -608px no-repeat; +} + +.award76x76.killed_units_catapult_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -608px no-repeat; +} + +.award76x76.killed_units_centaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -608px no-repeat; +} + +.award76x76.killed_units_cerberus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px 0 no-repeat; +} + +.award76x76.killed_units_chariot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -76px no-repeat; +} + +.award76x76.killed_units_cheiron_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -152px no-repeat; +} + +.award76x76.killed_units_christopholus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -228px no-repeat; +} + +.award76x76.killed_units_daidalos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -304px no-repeat; +} + +.award76x76.killed_units_defending_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -380px no-repeat; +} + +.award76x76.killed_units_defending_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -456px no-repeat; +} + +.award76x76.killed_units_defending_catapult_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -532px no-repeat; +} + +.award76x76.killed_units_defending_chariot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -608px no-repeat; +} + +.award76x76.killed_units_defending_colonize_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -684px no-repeat; +} + +.award76x76.killed_units_defending_fury_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -684px no-repeat; +} + +.award76x76.killed_units_defending_godsent_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -684px no-repeat; +} + +.award76x76.killed_units_defending_griffin_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -684px no-repeat; +} + +.award76x76.killed_units_defending_harpy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -684px no-repeat; +} + +.award76x76.killed_units_defending_hoplite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -684px no-repeat; +} + +.award76x76.killed_units_defending_ladon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -684px no-repeat; +} + +.award76x76.killed_units_defending_manticore_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -684px no-repeat; +} + +.award76x76.killed_units_defending_medusa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -684px no-repeat; +} + +.award76x76.killed_units_defending_minotaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -684px no-repeat; +} + +.award76x76.killed_units_defending_rider_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px 0 no-repeat; +} + +.award76x76.killed_units_defending_satyr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -76px no-repeat; +} + +.award76x76.killed_units_defending_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -152px no-repeat; +} + +.award76x76.killed_units_defending_siren_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -228px no-repeat; +} + +.award76x76.killed_units_defending_slinger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -304px no-repeat; +} + +.award76x76.killed_units_defending_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -380px no-repeat; +} + +.award76x76.killed_units_defending_spartoi_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -456px no-repeat; +} + +.award76x76.killed_units_defending_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -532px no-repeat; +} + +.award76x76.killed_units_defending_zyklop_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -608px no-repeat; +} + +.award76x76.killed_units_deimos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -684px no-repeat; +} + +.award76x76.killed_units_democritus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -760px no-repeat; +} + +.award76x76.killed_units_demolition_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -760px no-repeat; +} + +.award76x76.killed_units_eurybia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -760px no-repeat; +} + +.award76x76.killed_units_ferkyon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -760px no-repeat; +} + +.award76x76.killed_units_fury_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -760px no-repeat; +} + +.award76x76.killed_units_godsent_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -760px no-repeat; +} + +.award76x76.killed_units_griffin_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -760px no-repeat; +} + +.award76x76.killed_units_harpy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -760px no-repeat; +} + +.award76x76.killed_units_hector_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -760px no-repeat; +} + +.award76x76.killed_units_helen_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -760px no-repeat; +} + +.award76x76.killed_units_hercules_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -760px no-repeat; +} + +.award76x76.killed_units_hoplite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px 0 no-repeat; +} + +.award76x76.killed_units_iason_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -76px no-repeat; +} + +.award76x76.killed_units_ladon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -152px no-repeat; +} + +.award76x76.killed_units_leonidas_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -228px no-repeat; +} + +.award76x76.killed_units_lysippe_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -304px no-repeat; +} + +.award76x76.killed_units_manticore_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -380px no-repeat; +} + +.award76x76.killed_units_medea_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -456px no-repeat; +} + +.award76x76.killed_units_medusa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -532px no-repeat; +} + +.award76x76.killed_units_melousa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -608px no-repeat; +} + +.award76x76.killed_units_mihalis_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -684px no-repeat; +} + +.award76x76.killed_units_minotaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -760px no-repeat; +} + +.award76x76.killed_units_odysseus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -836px no-repeat; +} + +.award76x76.killed_units_orpheus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -836px no-repeat; +} + +.award76x76.killed_units_pariphaistes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -836px no-repeat; +} + +.award76x76.killed_units_pegasus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -836px no-repeat; +} + +.award76x76.killed_units_pelops_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -836px no-repeat; +} + +.award76x76.killed_units_perseus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -836px no-repeat; +} + +.award76x76.killed_units_philoctetes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -836px no-repeat; +} + +.award76x76.killed_units_rekonos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -836px no-repeat; +} + +.award76x76.killed_units_rider_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -836px no-repeat; +} + +.award76x76.killed_units_satyr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -836px no-repeat; +} + +.award76x76.killed_units_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -836px no-repeat; +} + +.award76x76.killed_units_siren_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -836px no-repeat; +} + +.award76x76.killed_units_slinger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px 0 no-repeat; +} + +.award76x76.killed_units_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -76px no-repeat; +} + +.award76x76.killed_units_spartoi_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -152px no-repeat; +} + +.award76x76.killed_units_support_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -228px no-repeat; +} + +.award76x76.killed_units_support_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -304px no-repeat; +} + +.award76x76.killed_units_support_catapult_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -380px no-repeat; +} + +.award76x76.killed_units_support_chariot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -456px no-repeat; +} + +.award76x76.killed_units_support_colonize_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -532px no-repeat; +} + +.award76x76.killed_units_support_fury_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -608px no-repeat; +} + +.award76x76.killed_units_support_godsent_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -684px no-repeat; +} + +.award76x76.killed_units_support_griffin_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -760px no-repeat; +} + +.award76x76.killed_units_support_harpy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -836px no-repeat; +} + +.award76x76.killed_units_support_hoplite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -912px no-repeat; +} + +.award76x76.killed_units_support_ladon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -912px no-repeat; +} + +.award76x76.killed_units_support_manticore_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -912px no-repeat; +} + +.award76x76.killed_units_support_medusa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -912px no-repeat; +} + +.award76x76.killed_units_support_minotaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -912px no-repeat; +} + +.award76x76.killed_units_support_rider_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -912px no-repeat; +} + +.award76x76.killed_units_support_satyr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -912px no-repeat; +} + +.award76x76.killed_units_support_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -912px no-repeat; +} + +.award76x76.killed_units_support_siren_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -912px no-repeat; +} + +.award76x76.killed_units_support_slinger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -912px no-repeat; +} + +.award76x76.killed_units_support_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -912px no-repeat; +} + +.award76x76.killed_units_support_spartoi_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -912px no-repeat; +} + +.award76x76.killed_units_support_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -912px no-repeat; +} + +.award76x76.killed_units_support_zyklop_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px 0 no-repeat; +} + +.award76x76.killed_units_sword_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -76px no-repeat; +} + +.award76x76.killed_units_telemachos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -152px no-repeat; +} + +.award76x76.killed_units_terylea_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -228px no-repeat; +} + +.award76x76.killed_units_themistokles_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -304px no-repeat; +} + +.award76x76.killed_units_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -380px no-repeat; +} + +.award76x76.killed_units_urephon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -456px no-repeat; +} + +.award76x76.killed_units_ylestres_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -532px no-repeat; +} + +.award76x76.killed_units_zuretha_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -608px no-repeat; +} + +.award76x76.killed_units_zyklop_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -684px no-repeat; +} + +.award76x76.mythological_units_built_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -760px no-repeat; +} + +.award76x76.olympus_devoted_servant_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -836px no-repeat; +} + +.award76x76.own_islands_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -912px no-repeat; +} + +.award76x76.points_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -988px no-repeat; +} + +.award76x76.powers_used_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -988px no-repeat; +} + +.award76x76.resources_loot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -988px no-repeat; +} + +.award76x76.resources_trade_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -988px no-repeat; +} + +.award76x76.sea_ranking_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -988px no-repeat; +} + +.award76x76.speed_world_finished_ally_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -988px no-repeat; +} + +.award76x76.speed_world_finished_player_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -988px no-repeat; +} + +.award76x76.towns_conquered_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -988px no-repeat; +} + +.award76x76.towns_founded_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -988px no-repeat; +} + +.award76x76.train_units_archer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -988px no-repeat; +} + +.award76x76.train_units_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -988px no-repeat; +} + +.award76x76.train_units_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -988px no-repeat; +} + +.award76x76.train_units_bireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -988px no-repeat; +} + +.award76x76.train_units_calydonian_boar_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -988px no-repeat; +} + +.award76x76.train_units_catapult_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px 0 no-repeat; +} + +.award76x76.train_units_centaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -76px no-repeat; +} + +.award76x76.train_units_cerberus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -152px no-repeat; +} + +.award76x76.train_units_chariot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -228px no-repeat; +} + +.award76x76.train_units_demolition_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -304px no-repeat; +} + +.award76x76.train_units_fury_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -380px no-repeat; +} + +.award76x76.train_units_godsent_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -456px no-repeat; +} + +.award76x76.train_units_griffin_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -532px no-repeat; +} + +.award76x76.train_units_harpy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -608px no-repeat; +} + +.award76x76.train_units_hoplite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -684px no-repeat; +} + +.award76x76.train_units_ladon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -760px no-repeat; +} + +.award76x76.train_units_manticore_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -836px no-repeat; +} + +.award76x76.train_units_medusa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -912px no-repeat; +} + +.award76x76.train_units_minotaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -988px no-repeat; +} + +.award76x76.train_units_pegasus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) 0 -1064px no-repeat; +} + +.award76x76.train_units_rider_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -76px -1064px no-repeat; +} + +.award76x76.train_units_satyr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -152px -1064px no-repeat; +} + +.award76x76.train_units_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -228px -1064px no-repeat; +} + +.award76x76.train_units_siren_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -304px -1064px no-repeat; +} + +.award76x76.train_units_slinger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -380px -1064px no-repeat; +} + +.award76x76.train_units_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -456px -1064px no-repeat; +} + +.award76x76.train_units_spartoi_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -532px -1064px no-repeat; +} + +.award76x76.train_units_sword_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -608px -1064px no-repeat; +} + +.award76x76.train_units_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -684px -1064px no-repeat; +} + +.award76x76.train_units_zyklop_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -760px -1064px no-repeat; +} + +.award76x76.units_claimed_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -836px -1064px no-repeat; +} + +.award76x76.units_killed_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -912px -1064px no-repeat; +} + +.award76x76.units_lost_during_farm_attack_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -988px -1064px no-repeat; +} + +.award76x76.units_lost_during_support_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1064px -1064px no-repeat; +} + +.award76x76.units_lost_without_fight_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1140px 0 no-repeat; +} + +.award76x76.various_earth_shaker_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1140px -76px no-repeat; +} + +.award76x76.various_great_fleet_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1140px -152px no-repeat; +} + +.award76x76.various_great_mobilization_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1140px -228px no-repeat; +} + +.award76x76.various_guptas_god_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1140px -304px no-repeat; +} + +.award76x76.world_ranking_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_2_76x76_471cbc3.png) -1140px -380px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.artifact_hunter_ambrosia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 0 no-repeat; +} + +.award76x76.artifact_hunter_athenas_cornucopia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px 0 no-repeat; +} + +.award76x76.artifact_hunter_golden_fleece_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -76px no-repeat; +} + +.award76x76.artifact_hunter_palladion_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -76px no-repeat; +} + +.award76x76.artifact_hunter_silver_kantharos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px 0 no-repeat; +} + +.award76x76.artifact_hunter_zeus_spark_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -76px no-repeat; +} + +.award76x76.build_buildings_library_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -152px no-repeat; +} + +.award76x76.build_buildings_lighthouse_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -152px no-repeat; +} + +.award76x76.build_buildings_oracle_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -152px no-repeat; +} + +.award76x76.build_buildings_statue_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px 0 no-repeat; +} + +.award76x76.build_buildings_theater_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -76px no-repeat; +} + +.award76x76.build_buildings_thermal_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -152px no-repeat; +} + +.award76x76.build_buildings_tower_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -228px no-repeat; +} + +.award76x76.build_buildings_trade_office_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -228px no-repeat; +} + +.award76x76.colonize_ships_built_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -228px no-repeat; +} + +.award76x76.creator_of_legends_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -228px no-repeat; +} + +.award76x76.cultural_step_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px 0 no-repeat; +} + +.award76x76.domination_dominate_the_world_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -76px no-repeat; +} + +.award76x76.domination_ocean_emperor_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -152px no-repeat; +} + +.award76x76.domination_world_emperor_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -228px no-repeat; +} + +.award76x76.espionage_failed_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -304px no-repeat; +} + +.award76x76.espionage_successful_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -304px no-repeat; +} + +.award76x76.friend_of_heroes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -304px no-repeat; +} + +.award76x76.hero_level_agamemnon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -304px no-repeat; +} + +.award76x76.hero_level_ajax_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -304px no-repeat; +} + +.award76x76.hero_level_alexandrios_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px 0 no-repeat; +} + +.award76x76.hero_level_andromeda_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -76px no-repeat; +} + +.award76x76.hero_level_anysia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -152px no-repeat; +} + +.award76x76.hero_level_apheledes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -228px no-repeat; +} + +.award76x76.hero_level_argus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -304px no-repeat; +} + +.award76x76.hero_level_aristotle_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -380px no-repeat; +} + +.award76x76.hero_level_atalanta_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -380px no-repeat; +} + +.award76x76.hero_level_cheiron_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -380px no-repeat; +} + +.award76x76.hero_level_christopholus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -380px no-repeat; +} + +.award76x76.hero_level_daidalos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -380px no-repeat; +} + +.award76x76.hero_level_deimos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -380px no-repeat; +} + +.award76x76.hero_level_democritus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px 0 no-repeat; +} + +.award76x76.hero_level_eurybia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -76px no-repeat; +} + +.award76x76.hero_level_ferkyon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -152px no-repeat; +} + +.award76x76.hero_level_hector_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -228px no-repeat; +} + +.award76x76.hero_level_helen_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -304px no-repeat; +} + +.award76x76.hero_level_hercules_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -380px no-repeat; +} + +.award76x76.hero_level_iason_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -456px no-repeat; +} + +.award76x76.hero_level_leonidas_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -456px no-repeat; +} + +.award76x76.hero_level_lysippe_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -456px no-repeat; +} + +.award76x76.hero_level_medea_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -456px no-repeat; +} + +.award76x76.hero_level_melousa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -456px no-repeat; +} + +.award76x76.hero_level_mihalis_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -456px no-repeat; +} + +.award76x76.hero_level_odysseus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -456px no-repeat; +} + +.award76x76.hero_level_orpheus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px 0 no-repeat; +} + +.award76x76.hero_level_pariphaistes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -76px no-repeat; +} + +.award76x76.hero_level_pelops_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -152px no-repeat; +} + +.award76x76.hero_level_perseus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -228px no-repeat; +} + +.award76x76.hero_level_philoctetes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -304px no-repeat; +} + +.award76x76.hero_level_rekonos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -380px no-repeat; +} + +.award76x76.hero_level_telemachos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -456px no-repeat; +} + +.award76x76.hero_level_terylea_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -532px no-repeat; +} + +.award76x76.hero_level_themistokles_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -532px no-repeat; +} + +.award76x76.hero_level_urephon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -532px no-repeat; +} + +.award76x76.hero_level_ylestres_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -532px no-repeat; +} + +.award76x76.hero_level_zuretha_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -532px no-repeat; +} + +.award76x76.hero_money_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -532px no-repeat; +} + +.award76x76.island_quests_done_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -532px no-repeat; +} + +.award76x76.island_quests_evil_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -532px no-repeat; +} + +.award76x76.island_quests_good_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px 0 no-repeat; +} + +.award76x76.killed_units_agamemnon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -76px no-repeat; +} + +.award76x76.killed_units_ajax_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -152px no-repeat; +} + +.award76x76.killed_units_alexandrios_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -228px no-repeat; +} + +.award76x76.killed_units_andromeda_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -304px no-repeat; +} + +.award76x76.killed_units_anysia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -380px no-repeat; +} + +.award76x76.killed_units_apheledes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -456px no-repeat; +} + +.award76x76.killed_units_archer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -532px no-repeat; +} + +.award76x76.killed_units_argus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -608px no-repeat; +} + +.award76x76.killed_units_aristotle_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -608px no-repeat; +} + +.award76x76.killed_units_atalanta_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -608px no-repeat; +} + +.award76x76.killed_units_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -608px no-repeat; +} + +.award76x76.killed_units_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -608px no-repeat; +} + +.award76x76.killed_units_bireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -608px no-repeat; +} + +.award76x76.killed_units_calydonian_boar_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -608px no-repeat; +} + +.award76x76.killed_units_catapult_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -608px no-repeat; +} + +.award76x76.killed_units_centaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -608px no-repeat; +} + +.award76x76.killed_units_cerberus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px 0 no-repeat; +} + +.award76x76.killed_units_chariot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -76px no-repeat; +} + +.award76x76.killed_units_cheiron_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -152px no-repeat; +} + +.award76x76.killed_units_christopholus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -228px no-repeat; +} + +.award76x76.killed_units_daidalos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -304px no-repeat; +} + +.award76x76.killed_units_defending_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -380px no-repeat; +} + +.award76x76.killed_units_defending_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -456px no-repeat; +} + +.award76x76.killed_units_defending_catapult_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -532px no-repeat; +} + +.award76x76.killed_units_defending_chariot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -608px no-repeat; +} + +.award76x76.killed_units_defending_colonize_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -684px no-repeat; +} + +.award76x76.killed_units_defending_fury_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -684px no-repeat; +} + +.award76x76.killed_units_defending_godsent_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -684px no-repeat; +} + +.award76x76.killed_units_defending_griffin_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -684px no-repeat; +} + +.award76x76.killed_units_defending_harpy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -684px no-repeat; +} + +.award76x76.killed_units_defending_hoplite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -684px no-repeat; +} + +.award76x76.killed_units_defending_ladon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -684px no-repeat; +} + +.award76x76.killed_units_defending_manticore_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -684px no-repeat; +} + +.award76x76.killed_units_defending_medusa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -684px no-repeat; +} + +.award76x76.killed_units_defending_minotaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -684px no-repeat; +} + +.award76x76.killed_units_defending_rider_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px 0 no-repeat; +} + +.award76x76.killed_units_defending_satyr_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -76px no-repeat; +} + +.award76x76.killed_units_defending_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -152px no-repeat; +} + +.award76x76.killed_units_defending_siren_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -228px no-repeat; +} + +.award76x76.killed_units_defending_slinger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -304px no-repeat; +} + +.award76x76.killed_units_defending_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -380px no-repeat; +} + +.award76x76.killed_units_defending_spartoi_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -456px no-repeat; +} + +.award76x76.killed_units_defending_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -532px no-repeat; +} + +.award76x76.killed_units_defending_zyklop_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -608px no-repeat; +} + +.award76x76.killed_units_deimos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -684px no-repeat; +} + +.award76x76.killed_units_democritus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -760px no-repeat; +} + +.award76x76.killed_units_demolition_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -760px no-repeat; +} + +.award76x76.killed_units_eurybia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -760px no-repeat; +} + +.award76x76.killed_units_ferkyon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -760px no-repeat; +} + +.award76x76.killed_units_fury_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -760px no-repeat; +} + +.award76x76.killed_units_godsent_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -760px no-repeat; +} + +.award76x76.killed_units_griffin_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -760px no-repeat; +} + +.award76x76.killed_units_harpy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -760px no-repeat; +} + +.award76x76.killed_units_hector_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -760px no-repeat; +} + +.award76x76.killed_units_helen_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -760px no-repeat; +} + +.award76x76.killed_units_hercules_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -760px no-repeat; +} + +.award76x76.killed_units_hoplite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px 0 no-repeat; +} + +.award76x76.killed_units_iason_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -76px no-repeat; +} + +.award76x76.killed_units_ladon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -152px no-repeat; +} + +.award76x76.killed_units_leonidas_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -228px no-repeat; +} + +.award76x76.killed_units_lysippe_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -304px no-repeat; +} + +.award76x76.killed_units_manticore_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -380px no-repeat; +} + +.award76x76.killed_units_medea_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -456px no-repeat; +} + +.award76x76.killed_units_medusa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -532px no-repeat; +} + +.award76x76.killed_units_melousa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -608px no-repeat; +} + +.award76x76.killed_units_mihalis_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -684px no-repeat; +} + +.award76x76.killed_units_minotaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -760px no-repeat; +} + +.award76x76.killed_units_odysseus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -836px no-repeat; +} + +.award76x76.killed_units_orpheus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -836px no-repeat; +} + +.award76x76.killed_units_pariphaistes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -836px no-repeat; +} + +.award76x76.killed_units_pegasus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -836px no-repeat; +} + +.award76x76.killed_units_pelops_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -836px no-repeat; +} + +.award76x76.killed_units_perseus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -836px no-repeat; +} + +.award76x76.killed_units_philoctetes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -836px no-repeat; +} + +.award76x76.killed_units_rekonos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -836px no-repeat; +} + +.award76x76.killed_units_rider_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -836px no-repeat; +} + +.award76x76.killed_units_satyr_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -836px no-repeat; +} + +.award76x76.killed_units_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -836px no-repeat; +} + +.award76x76.killed_units_siren_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -836px no-repeat; +} + +.award76x76.killed_units_slinger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px 0 no-repeat; +} + +.award76x76.killed_units_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -76px no-repeat; +} + +.award76x76.killed_units_spartoi_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -152px no-repeat; +} + +.award76x76.killed_units_support_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -228px no-repeat; +} + +.award76x76.killed_units_support_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -304px no-repeat; +} + +.award76x76.killed_units_support_catapult_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -380px no-repeat; +} + +.award76x76.killed_units_support_chariot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -456px no-repeat; +} + +.award76x76.killed_units_support_colonize_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -532px no-repeat; +} + +.award76x76.killed_units_support_fury_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -608px no-repeat; +} + +.award76x76.killed_units_support_godsent_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -684px no-repeat; +} + +.award76x76.killed_units_support_griffin_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -760px no-repeat; +} + +.award76x76.killed_units_support_harpy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -836px no-repeat; +} + +.award76x76.killed_units_support_hoplite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -912px no-repeat; +} + +.award76x76.killed_units_support_ladon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -912px no-repeat; +} + +.award76x76.killed_units_support_manticore_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -912px no-repeat; +} + +.award76x76.killed_units_support_medusa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -912px no-repeat; +} + +.award76x76.killed_units_support_minotaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -912px no-repeat; +} + +.award76x76.killed_units_support_rider_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -912px no-repeat; +} + +.award76x76.killed_units_support_satyr_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -912px no-repeat; +} + +.award76x76.killed_units_support_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -912px no-repeat; +} + +.award76x76.killed_units_support_siren_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -912px no-repeat; +} + +.award76x76.killed_units_support_slinger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -912px no-repeat; +} + +.award76x76.killed_units_support_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -912px no-repeat; +} + +.award76x76.killed_units_support_spartoi_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -912px no-repeat; +} + +.award76x76.killed_units_support_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -912px no-repeat; +} + +.award76x76.killed_units_support_zyklop_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px 0 no-repeat; +} + +.award76x76.killed_units_sword_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -76px no-repeat; +} + +.award76x76.killed_units_telemachos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -152px no-repeat; +} + +.award76x76.killed_units_terylea_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -228px no-repeat; +} + +.award76x76.killed_units_themistokles_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -304px no-repeat; +} + +.award76x76.killed_units_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -380px no-repeat; +} + +.award76x76.killed_units_urephon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -456px no-repeat; +} + +.award76x76.killed_units_ylestres_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -532px no-repeat; +} + +.award76x76.killed_units_zuretha_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -608px no-repeat; +} + +.award76x76.killed_units_zyklop_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -684px no-repeat; +} + +.award76x76.mythological_units_built_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -760px no-repeat; +} + +.award76x76.olympus_devoted_servant_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -836px no-repeat; +} + +.award76x76.own_islands_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -912px no-repeat; +} + +.award76x76.points_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -988px no-repeat; +} + +.award76x76.powers_used_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -988px no-repeat; +} + +.award76x76.resources_loot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -988px no-repeat; +} + +.award76x76.resources_trade_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -988px no-repeat; +} + +.award76x76.sea_ranking_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -988px no-repeat; +} + +.award76x76.speed_world_finished_ally_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -988px no-repeat; +} + +.award76x76.speed_world_finished_player_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -988px no-repeat; +} + +.award76x76.towns_conquered_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -988px no-repeat; +} + +.award76x76.towns_founded_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -988px no-repeat; +} + +.award76x76.train_units_archer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -988px no-repeat; +} + +.award76x76.train_units_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -988px no-repeat; +} + +.award76x76.train_units_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -988px no-repeat; +} + +.award76x76.train_units_bireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -988px no-repeat; +} + +.award76x76.train_units_calydonian_boar_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -988px no-repeat; +} + +.award76x76.train_units_catapult_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px 0 no-repeat; +} + +.award76x76.train_units_centaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -76px no-repeat; +} + +.award76x76.train_units_cerberus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -152px no-repeat; +} + +.award76x76.train_units_chariot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -228px no-repeat; +} + +.award76x76.train_units_demolition_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -304px no-repeat; +} + +.award76x76.train_units_fury_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -380px no-repeat; +} + +.award76x76.train_units_godsent_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -456px no-repeat; +} + +.award76x76.train_units_griffin_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -532px no-repeat; +} + +.award76x76.train_units_harpy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -608px no-repeat; +} + +.award76x76.train_units_hoplite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -684px no-repeat; +} + +.award76x76.train_units_ladon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -760px no-repeat; +} + +.award76x76.train_units_manticore_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -836px no-repeat; +} + +.award76x76.train_units_medusa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -912px no-repeat; +} + +.award76x76.train_units_minotaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -988px no-repeat; +} + +.award76x76.train_units_pegasus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) 0 -1064px no-repeat; +} + +.award76x76.train_units_rider_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -76px -1064px no-repeat; +} + +.award76x76.train_units_satyr_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -152px -1064px no-repeat; +} + +.award76x76.train_units_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -228px -1064px no-repeat; +} + +.award76x76.train_units_siren_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -304px -1064px no-repeat; +} + +.award76x76.train_units_slinger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -380px -1064px no-repeat; +} + +.award76x76.train_units_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -456px -1064px no-repeat; +} + +.award76x76.train_units_spartoi_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -532px -1064px no-repeat; +} + +.award76x76.train_units_sword_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -608px -1064px no-repeat; +} + +.award76x76.train_units_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -684px -1064px no-repeat; +} + +.award76x76.train_units_zyklop_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -760px -1064px no-repeat; +} + +.award76x76.units_claimed_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -836px -1064px no-repeat; +} + +.award76x76.units_killed_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -912px -1064px no-repeat; +} + +.award76x76.units_lost_during_farm_attack_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -988px -1064px no-repeat; +} + +.award76x76.units_lost_during_support_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1064px -1064px no-repeat; +} + +.award76x76.units_lost_without_fight_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1140px 0 no-repeat; +} + +.award76x76.various_earth_shaker_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1140px -76px no-repeat; +} + +.award76x76.various_great_fleet_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1140px -152px no-repeat; +} + +.award76x76.various_great_mobilization_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1140px -228px no-repeat; +} + +.award76x76.various_guptas_god_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1140px -304px no-repeat; +} + +.award76x76.world_ranking_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_3_76x76_bcadd33.png) -1140px -380px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.artifact_hunter_ambrosia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 0 no-repeat; +} + +.award76x76.artifact_hunter_athenas_cornucopia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px 0 no-repeat; +} + +.award76x76.artifact_hunter_golden_fleece_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -76px no-repeat; +} + +.award76x76.artifact_hunter_palladion_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -76px no-repeat; +} + +.award76x76.artifact_hunter_silver_kantharos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px 0 no-repeat; +} + +.award76x76.artifact_hunter_zeus_spark_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -76px no-repeat; +} + +.award76x76.build_buildings_library_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -152px no-repeat; +} + +.award76x76.build_buildings_lighthouse_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -152px no-repeat; +} + +.award76x76.build_buildings_oracle_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -152px no-repeat; +} + +.award76x76.build_buildings_statue_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px 0 no-repeat; +} + +.award76x76.build_buildings_theater_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -76px no-repeat; +} + +.award76x76.build_buildings_thermal_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -152px no-repeat; +} + +.award76x76.build_buildings_tower_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -228px no-repeat; +} + +.award76x76.build_buildings_trade_office_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -228px no-repeat; +} + +.award76x76.colonize_ships_built_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -228px no-repeat; +} + +.award76x76.creator_of_legends_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -228px no-repeat; +} + +.award76x76.cultural_step_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px 0 no-repeat; +} + +.award76x76.domination_dominate_the_world_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -76px no-repeat; +} + +.award76x76.domination_ocean_emperor_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -152px no-repeat; +} + +.award76x76.domination_world_emperor_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -228px no-repeat; +} + +.award76x76.espionage_failed_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -304px no-repeat; +} + +.award76x76.espionage_successful_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -304px no-repeat; +} + +.award76x76.friend_of_heroes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -304px no-repeat; +} + +.award76x76.hero_level_agamemnon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -304px no-repeat; +} + +.award76x76.hero_level_ajax_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -304px no-repeat; +} + +.award76x76.hero_level_alexandrios_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px 0 no-repeat; +} + +.award76x76.hero_level_andromeda_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -76px no-repeat; +} + +.award76x76.hero_level_anysia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -152px no-repeat; +} + +.award76x76.hero_level_apheledes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -228px no-repeat; +} + +.award76x76.hero_level_argus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -304px no-repeat; +} + +.award76x76.hero_level_aristotle_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -380px no-repeat; +} + +.award76x76.hero_level_atalanta_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -380px no-repeat; +} + +.award76x76.hero_level_cheiron_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -380px no-repeat; +} + +.award76x76.hero_level_christopholus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -380px no-repeat; +} + +.award76x76.hero_level_daidalos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -380px no-repeat; +} + +.award76x76.hero_level_deimos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -380px no-repeat; +} + +.award76x76.hero_level_democritus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px 0 no-repeat; +} + +.award76x76.hero_level_eurybia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -76px no-repeat; +} + +.award76x76.hero_level_ferkyon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -152px no-repeat; +} + +.award76x76.hero_level_hector_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -228px no-repeat; +} + +.award76x76.hero_level_helen_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -304px no-repeat; +} + +.award76x76.hero_level_hercules_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -380px no-repeat; +} + +.award76x76.hero_level_iason_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -456px no-repeat; +} + +.award76x76.hero_level_leonidas_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -456px no-repeat; +} + +.award76x76.hero_level_lysippe_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -456px no-repeat; +} + +.award76x76.hero_level_medea_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -456px no-repeat; +} + +.award76x76.hero_level_melousa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -456px no-repeat; +} + +.award76x76.hero_level_mihalis_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -456px no-repeat; +} + +.award76x76.hero_level_odysseus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -456px no-repeat; +} + +.award76x76.hero_level_orpheus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px 0 no-repeat; +} + +.award76x76.hero_level_pariphaistes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -76px no-repeat; +} + +.award76x76.hero_level_pelops_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -152px no-repeat; +} + +.award76x76.hero_level_perseus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -228px no-repeat; +} + +.award76x76.hero_level_philoctetes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -304px no-repeat; +} + +.award76x76.hero_level_rekonos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -380px no-repeat; +} + +.award76x76.hero_level_telemachos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -456px no-repeat; +} + +.award76x76.hero_level_terylea_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -532px no-repeat; +} + +.award76x76.hero_level_themistokles_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -532px no-repeat; +} + +.award76x76.hero_level_urephon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -532px no-repeat; +} + +.award76x76.hero_level_ylestres_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -532px no-repeat; +} + +.award76x76.hero_level_zuretha_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -532px no-repeat; +} + +.award76x76.hero_money_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -532px no-repeat; +} + +.award76x76.island_quests_done_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -532px no-repeat; +} + +.award76x76.island_quests_evil_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -532px no-repeat; +} + +.award76x76.island_quests_good_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px 0 no-repeat; +} + +.award76x76.killed_units_agamemnon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -76px no-repeat; +} + +.award76x76.killed_units_ajax_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -152px no-repeat; +} + +.award76x76.killed_units_alexandrios_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -228px no-repeat; +} + +.award76x76.killed_units_andromeda_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -304px no-repeat; +} + +.award76x76.killed_units_anysia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -380px no-repeat; +} + +.award76x76.killed_units_apheledes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -456px no-repeat; +} + +.award76x76.killed_units_archer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -532px no-repeat; +} + +.award76x76.killed_units_argus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -608px no-repeat; +} + +.award76x76.killed_units_aristotle_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -608px no-repeat; +} + +.award76x76.killed_units_atalanta_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -608px no-repeat; +} + +.award76x76.killed_units_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -608px no-repeat; +} + +.award76x76.killed_units_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -608px no-repeat; +} + +.award76x76.killed_units_bireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -608px no-repeat; +} + +.award76x76.killed_units_calydonian_boar_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -608px no-repeat; +} + +.award76x76.killed_units_catapult_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -608px no-repeat; +} + +.award76x76.killed_units_centaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -608px no-repeat; +} + +.award76x76.killed_units_cerberus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px 0 no-repeat; +} + +.award76x76.killed_units_chariot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -76px no-repeat; +} + +.award76x76.killed_units_cheiron_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -152px no-repeat; +} + +.award76x76.killed_units_christopholus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -228px no-repeat; +} + +.award76x76.killed_units_daidalos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -304px no-repeat; +} + +.award76x76.killed_units_defending_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -380px no-repeat; +} + +.award76x76.killed_units_defending_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -456px no-repeat; +} + +.award76x76.killed_units_defending_catapult_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -532px no-repeat; +} + +.award76x76.killed_units_defending_chariot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -608px no-repeat; +} + +.award76x76.killed_units_defending_colonize_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -684px no-repeat; +} + +.award76x76.killed_units_defending_fury_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -684px no-repeat; +} + +.award76x76.killed_units_defending_godsent_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -684px no-repeat; +} + +.award76x76.killed_units_defending_griffin_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -684px no-repeat; +} + +.award76x76.killed_units_defending_harpy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -684px no-repeat; +} + +.award76x76.killed_units_defending_hoplite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -684px no-repeat; +} + +.award76x76.killed_units_defending_ladon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -684px no-repeat; +} + +.award76x76.killed_units_defending_manticore_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -684px no-repeat; +} + +.award76x76.killed_units_defending_medusa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -684px no-repeat; +} + +.award76x76.killed_units_defending_minotaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -684px no-repeat; +} + +.award76x76.killed_units_defending_rider_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px 0 no-repeat; +} + +.award76x76.killed_units_defending_satyr_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -76px no-repeat; +} + +.award76x76.killed_units_defending_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -152px no-repeat; +} + +.award76x76.killed_units_defending_siren_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -228px no-repeat; +} + +.award76x76.killed_units_defending_slinger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -304px no-repeat; +} + +.award76x76.killed_units_defending_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -380px no-repeat; +} + +.award76x76.killed_units_defending_spartoi_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -456px no-repeat; +} + +.award76x76.killed_units_defending_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -532px no-repeat; +} + +.award76x76.killed_units_defending_zyklop_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -608px no-repeat; +} + +.award76x76.killed_units_deimos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -684px no-repeat; +} + +.award76x76.killed_units_democritus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -760px no-repeat; +} + +.award76x76.killed_units_demolition_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -760px no-repeat; +} + +.award76x76.killed_units_eurybia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -760px no-repeat; +} + +.award76x76.killed_units_ferkyon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -760px no-repeat; +} + +.award76x76.killed_units_fury_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -760px no-repeat; +} + +.award76x76.killed_units_godsent_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -760px no-repeat; +} + +.award76x76.killed_units_griffin_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -760px no-repeat; +} + +.award76x76.killed_units_harpy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -760px no-repeat; +} + +.award76x76.killed_units_hector_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -760px no-repeat; +} + +.award76x76.killed_units_helen_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -760px no-repeat; +} + +.award76x76.killed_units_hercules_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -760px no-repeat; +} + +.award76x76.killed_units_hoplite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px 0 no-repeat; +} + +.award76x76.killed_units_iason_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -76px no-repeat; +} + +.award76x76.killed_units_ladon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -152px no-repeat; +} + +.award76x76.killed_units_leonidas_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -228px no-repeat; +} + +.award76x76.killed_units_lysippe_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -304px no-repeat; +} + +.award76x76.killed_units_manticore_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -380px no-repeat; +} + +.award76x76.killed_units_medea_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -456px no-repeat; +} + +.award76x76.killed_units_medusa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -532px no-repeat; +} + +.award76x76.killed_units_melousa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -608px no-repeat; +} + +.award76x76.killed_units_mihalis_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -684px no-repeat; +} + +.award76x76.killed_units_minotaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -760px no-repeat; +} + +.award76x76.killed_units_odysseus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -836px no-repeat; +} + +.award76x76.killed_units_orpheus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -836px no-repeat; +} + +.award76x76.killed_units_pariphaistes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -836px no-repeat; +} + +.award76x76.killed_units_pegasus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -836px no-repeat; +} + +.award76x76.killed_units_pelops_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -836px no-repeat; +} + +.award76x76.killed_units_perseus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -836px no-repeat; +} + +.award76x76.killed_units_philoctetes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -836px no-repeat; +} + +.award76x76.killed_units_rekonos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -836px no-repeat; +} + +.award76x76.killed_units_rider_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -836px no-repeat; +} + +.award76x76.killed_units_satyr_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -836px no-repeat; +} + +.award76x76.killed_units_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -836px no-repeat; +} + +.award76x76.killed_units_siren_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -836px no-repeat; +} + +.award76x76.killed_units_slinger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px 0 no-repeat; +} + +.award76x76.killed_units_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -76px no-repeat; +} + +.award76x76.killed_units_spartoi_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -152px no-repeat; +} + +.award76x76.killed_units_support_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -228px no-repeat; +} + +.award76x76.killed_units_support_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -304px no-repeat; +} + +.award76x76.killed_units_support_catapult_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -380px no-repeat; +} + +.award76x76.killed_units_support_chariot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -456px no-repeat; +} + +.award76x76.killed_units_support_colonize_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -532px no-repeat; +} + +.award76x76.killed_units_support_fury_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -608px no-repeat; +} + +.award76x76.killed_units_support_godsent_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -684px no-repeat; +} + +.award76x76.killed_units_support_griffin_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -760px no-repeat; +} + +.award76x76.killed_units_support_harpy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -836px no-repeat; +} + +.award76x76.killed_units_support_hoplite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -912px no-repeat; +} + +.award76x76.killed_units_support_ladon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -912px no-repeat; +} + +.award76x76.killed_units_support_manticore_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -912px no-repeat; +} + +.award76x76.killed_units_support_medusa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -912px no-repeat; +} + +.award76x76.killed_units_support_minotaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -912px no-repeat; +} + +.award76x76.killed_units_support_rider_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -912px no-repeat; +} + +.award76x76.killed_units_support_satyr_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -912px no-repeat; +} + +.award76x76.killed_units_support_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -912px no-repeat; +} + +.award76x76.killed_units_support_siren_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -912px no-repeat; +} + +.award76x76.killed_units_support_slinger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -912px no-repeat; +} + +.award76x76.killed_units_support_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -912px no-repeat; +} + +.award76x76.killed_units_support_spartoi_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -912px no-repeat; +} + +.award76x76.killed_units_support_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -912px no-repeat; +} + +.award76x76.killed_units_support_zyklop_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px 0 no-repeat; +} + +.award76x76.killed_units_sword_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -76px no-repeat; +} + +.award76x76.killed_units_telemachos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -152px no-repeat; +} + +.award76x76.killed_units_terylea_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -228px no-repeat; +} + +.award76x76.killed_units_themistokles_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -304px no-repeat; +} + +.award76x76.killed_units_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -380px no-repeat; +} + +.award76x76.killed_units_urephon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -456px no-repeat; +} + +.award76x76.killed_units_ylestres_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -532px no-repeat; +} + +.award76x76.killed_units_zuretha_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -608px no-repeat; +} + +.award76x76.killed_units_zyklop_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -684px no-repeat; +} + +.award76x76.mythological_units_built_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -760px no-repeat; +} + +.award76x76.olympus_devoted_servant_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -836px no-repeat; +} + +.award76x76.own_islands_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -912px no-repeat; +} + +.award76x76.points_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -988px no-repeat; +} + +.award76x76.powers_used_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -988px no-repeat; +} + +.award76x76.resources_loot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -988px no-repeat; +} + +.award76x76.resources_trade_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -988px no-repeat; +} + +.award76x76.sea_ranking_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -988px no-repeat; +} + +.award76x76.speed_world_finished_ally_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -988px no-repeat; +} + +.award76x76.speed_world_finished_player_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -988px no-repeat; +} + +.award76x76.towns_conquered_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -988px no-repeat; +} + +.award76x76.towns_founded_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -988px no-repeat; +} + +.award76x76.train_units_archer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -988px no-repeat; +} + +.award76x76.train_units_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -988px no-repeat; +} + +.award76x76.train_units_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -988px no-repeat; +} + +.award76x76.train_units_bireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -988px no-repeat; +} + +.award76x76.train_units_calydonian_boar_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -988px no-repeat; +} + +.award76x76.train_units_catapult_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px 0 no-repeat; +} + +.award76x76.train_units_centaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -76px no-repeat; +} + +.award76x76.train_units_cerberus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -152px no-repeat; +} + +.award76x76.train_units_chariot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -228px no-repeat; +} + +.award76x76.train_units_demolition_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -304px no-repeat; +} + +.award76x76.train_units_fury_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -380px no-repeat; +} + +.award76x76.train_units_godsent_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -456px no-repeat; +} + +.award76x76.train_units_griffin_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -532px no-repeat; +} + +.award76x76.train_units_harpy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -608px no-repeat; +} + +.award76x76.train_units_hoplite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -684px no-repeat; +} + +.award76x76.train_units_ladon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -760px no-repeat; +} + +.award76x76.train_units_manticore_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -836px no-repeat; +} + +.award76x76.train_units_medusa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -912px no-repeat; +} + +.award76x76.train_units_minotaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -988px no-repeat; +} + +.award76x76.train_units_pegasus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) 0 -1064px no-repeat; +} + +.award76x76.train_units_rider_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -76px -1064px no-repeat; +} + +.award76x76.train_units_satyr_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -152px -1064px no-repeat; +} + +.award76x76.train_units_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -228px -1064px no-repeat; +} + +.award76x76.train_units_siren_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -304px -1064px no-repeat; +} + +.award76x76.train_units_slinger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -380px -1064px no-repeat; +} + +.award76x76.train_units_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -456px -1064px no-repeat; +} + +.award76x76.train_units_spartoi_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -532px -1064px no-repeat; +} + +.award76x76.train_units_sword_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -608px -1064px no-repeat; +} + +.award76x76.train_units_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -684px -1064px no-repeat; +} + +.award76x76.train_units_zyklop_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -760px -1064px no-repeat; +} + +.award76x76.units_claimed_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -836px -1064px no-repeat; +} + +.award76x76.units_killed_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -912px -1064px no-repeat; +} + +.award76x76.units_lost_during_farm_attack_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -988px -1064px no-repeat; +} + +.award76x76.units_lost_during_support_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1064px -1064px no-repeat; +} + +.award76x76.units_lost_without_fight_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1140px 0 no-repeat; +} + +.award76x76.various_earth_shaker_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1140px -76px no-repeat; +} + +.award76x76.various_great_fleet_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1140px -152px no-repeat; +} + +.award76x76.various_great_mobilization_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1140px -228px no-repeat; +} + +.award76x76.various_guptas_god_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1140px -304px no-repeat; +} + +.award76x76.world_ranking_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_4_76x76_a21b5ca.png) -1140px -380px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.artifact_hunter_ambrosia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 0 no-repeat; +} + +.award31x31.artifact_hunter_ambrosia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px 0 no-repeat; +} + +.award31x31.artifact_hunter_ambrosia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -31px no-repeat; +} + +.award31x31.artifact_hunter_ambrosia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -31px no-repeat; +} + +.award31x31.artifact_hunter_athenas_cornucopia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px 0 no-repeat; +} + +.award31x31.artifact_hunter_athenas_cornucopia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -31px no-repeat; +} + +.award31x31.artifact_hunter_athenas_cornucopia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -62px no-repeat; +} + +.award31x31.artifact_hunter_athenas_cornucopia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -62px no-repeat; +} + +.award31x31.artifact_hunter_golden_fleece_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -62px no-repeat; +} + +.award31x31.artifact_hunter_golden_fleece_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px 0 no-repeat; +} + +.award31x31.artifact_hunter_golden_fleece_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -31px no-repeat; +} + +.award31x31.artifact_hunter_golden_fleece_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -62px no-repeat; +} + +.award31x31.artifact_hunter_palladion_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -93px no-repeat; +} + +.award31x31.artifact_hunter_palladion_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -93px no-repeat; +} + +.award31x31.artifact_hunter_palladion_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -93px no-repeat; +} + +.award31x31.artifact_hunter_palladion_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -93px no-repeat; +} + +.award31x31.artifact_hunter_silver_kantharos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px 0 no-repeat; +} + +.award31x31.artifact_hunter_silver_kantharos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -31px no-repeat; +} + +.award31x31.artifact_hunter_silver_kantharos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -62px no-repeat; +} + +.award31x31.artifact_hunter_silver_kantharos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -93px no-repeat; +} + +.award31x31.artifact_hunter_zeus_spark_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -124px no-repeat; +} + +.award31x31.artifact_hunter_zeus_spark_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -124px no-repeat; +} + +.award31x31.artifact_hunter_zeus_spark_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -124px no-repeat; +} + +.award31x31.artifact_hunter_zeus_spark_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -124px no-repeat; +} + +.award31x31.build_buildings_library_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -124px no-repeat; +} + +.award31x31.build_buildings_library_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px 0 no-repeat; +} + +.award31x31.build_buildings_library_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -31px no-repeat; +} + +.award31x31.build_buildings_library_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -62px no-repeat; +} + +.award31x31.build_buildings_lighthouse_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -93px no-repeat; +} + +.award31x31.build_buildings_lighthouse_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -124px no-repeat; +} + +.award31x31.build_buildings_lighthouse_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -155px no-repeat; +} + +.award31x31.build_buildings_lighthouse_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -155px no-repeat; +} + +.award31x31.build_buildings_oracle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -155px no-repeat; +} + +.award31x31.build_buildings_oracle_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -155px no-repeat; +} + +.award31x31.build_buildings_oracle_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -155px no-repeat; +} + +.award31x31.build_buildings_oracle_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -155px no-repeat; +} + +.award31x31.build_buildings_statue_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px 0 no-repeat; +} + +.award31x31.build_buildings_statue_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -31px no-repeat; +} + +.award31x31.build_buildings_statue_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -62px no-repeat; +} + +.award31x31.build_buildings_statue_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -93px no-repeat; +} + +.award31x31.build_buildings_theater_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -124px no-repeat; +} + +.award31x31.build_buildings_theater_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -155px no-repeat; +} + +.award31x31.build_buildings_theater_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -186px no-repeat; +} + +.award31x31.build_buildings_theater_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -186px no-repeat; +} + +.award31x31.build_buildings_thermal_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -186px no-repeat; +} + +.award31x31.build_buildings_thermal_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -186px no-repeat; +} + +.award31x31.build_buildings_thermal_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -186px no-repeat; +} + +.award31x31.build_buildings_thermal_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -186px no-repeat; +} + +.award31x31.build_buildings_tower_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -186px no-repeat; +} + +.award31x31.build_buildings_tower_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px 0 no-repeat; +} + +.award31x31.build_buildings_tower_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -31px no-repeat; +} + +.award31x31.build_buildings_tower_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -62px no-repeat; +} + +.award31x31.build_buildings_trade_office_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -93px no-repeat; +} + +.award31x31.build_buildings_trade_office_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -124px no-repeat; +} + +.award31x31.build_buildings_trade_office_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -155px no-repeat; +} + +.award31x31.build_buildings_trade_office_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -186px no-repeat; +} + +.award31x31.colonize_ships_built_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -217px no-repeat; +} + +.award31x31.colonize_ships_built_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -217px no-repeat; +} + +.award31x31.colonize_ships_built_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -217px no-repeat; +} + +.award31x31.colonize_ships_built_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -217px no-repeat; +} + +.award31x31.creator_of_legends_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -217px no-repeat; +} + +.award31x31.creator_of_legends_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -217px no-repeat; +} + +.award31x31.creator_of_legends_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -217px no-repeat; +} + +.award31x31.creator_of_legends_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -217px no-repeat; +} + +.award31x31.cultural_step_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px 0 no-repeat; +} + +.award31x31.cultural_step_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -31px no-repeat; +} + +.award31x31.cultural_step_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -62px no-repeat; +} + +.award31x31.cultural_step_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -93px no-repeat; +} + +.award31x31.domination_dominate_the_world_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -124px no-repeat; +} + +.award31x31.domination_dominate_the_world_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -155px no-repeat; +} + +.award31x31.domination_dominate_the_world_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -186px no-repeat; +} + +.award31x31.domination_dominate_the_world_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -217px no-repeat; +} + +.award31x31.domination_ocean_emperor_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -248px no-repeat; +} + +.award31x31.domination_ocean_emperor_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -248px no-repeat; +} + +.award31x31.domination_ocean_emperor_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -248px no-repeat; +} + +.award31x31.domination_ocean_emperor_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -248px no-repeat; +} + +.award31x31.domination_world_emperor_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -248px no-repeat; +} + +.award31x31.domination_world_emperor_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -248px no-repeat; +} + +.award31x31.domination_world_emperor_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -248px no-repeat; +} + +.award31x31.domination_world_emperor_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -248px no-repeat; +} + +.award31x31.espionage_failed_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -248px no-repeat; +} + +.award31x31.espionage_failed_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px 0 no-repeat; +} + +.award31x31.espionage_failed_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -31px no-repeat; +} + +.award31x31.espionage_failed_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -62px no-repeat; +} + +.award31x31.espionage_successful_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -93px no-repeat; +} + +.award31x31.espionage_successful_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -124px no-repeat; +} + +.award31x31.espionage_successful_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -155px no-repeat; +} + +.award31x31.espionage_successful_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -186px no-repeat; +} + +.award31x31.friend_of_heroes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -217px no-repeat; +} + +.award31x31.friend_of_heroes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -248px no-repeat; +} + +.award31x31.friend_of_heroes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -279px no-repeat; +} + +.award31x31.friend_of_heroes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -279px no-repeat; +} + +.award31x31.hero_level_agamemnon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -279px no-repeat; +} + +.award31x31.hero_level_agamemnon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -279px no-repeat; +} + +.award31x31.hero_level_agamemnon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -279px no-repeat; +} + +.award31x31.hero_level_agamemnon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -279px no-repeat; +} + +.award31x31.hero_level_ajax_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -279px no-repeat; +} + +.award31x31.hero_level_ajax_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -279px no-repeat; +} + +.award31x31.hero_level_ajax_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -279px no-repeat; +} + +.award31x31.hero_level_ajax_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -279px no-repeat; +} + +.award31x31.hero_level_alexandrios_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px 0 no-repeat; +} + +.award31x31.hero_level_alexandrios_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -31px no-repeat; +} + +.award31x31.hero_level_alexandrios_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -62px no-repeat; +} + +.award31x31.hero_level_alexandrios_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -93px no-repeat; +} + +.award31x31.hero_level_andromeda_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -124px no-repeat; +} + +.award31x31.hero_level_andromeda_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -155px no-repeat; +} + +.award31x31.hero_level_andromeda_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -186px no-repeat; +} + +.award31x31.hero_level_andromeda_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -217px no-repeat; +} + +.award31x31.hero_level_anysia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -248px no-repeat; +} + +.award31x31.hero_level_anysia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -279px no-repeat; +} + +.award31x31.hero_level_anysia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -310px no-repeat; +} + +.award31x31.hero_level_anysia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -310px no-repeat; +} + +.award31x31.hero_level_apheledes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -310px no-repeat; +} + +.award31x31.hero_level_apheledes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -310px no-repeat; +} + +.award31x31.hero_level_apheledes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -310px no-repeat; +} + +.award31x31.hero_level_apheledes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -310px no-repeat; +} + +.award31x31.hero_level_argus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -310px no-repeat; +} + +.award31x31.hero_level_argus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -310px no-repeat; +} + +.award31x31.hero_level_argus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -310px no-repeat; +} + +.award31x31.hero_level_argus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -310px no-repeat; +} + +.award31x31.hero_level_aristotle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -310px no-repeat; +} + +.award31x31.hero_level_aristotle_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px 0 no-repeat; +} + +.award31x31.hero_level_aristotle_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -31px no-repeat; +} + +.award31x31.hero_level_aristotle_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -62px no-repeat; +} + +.award31x31.hero_level_atalanta_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -93px no-repeat; +} + +.award31x31.hero_level_atalanta_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -124px no-repeat; +} + +.award31x31.hero_level_atalanta_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -155px no-repeat; +} + +.award31x31.hero_level_atalanta_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -186px no-repeat; +} + +.award31x31.hero_level_cheiron_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -217px no-repeat; +} + +.award31x31.hero_level_cheiron_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -248px no-repeat; +} + +.award31x31.hero_level_cheiron_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -279px no-repeat; +} + +.award31x31.hero_level_cheiron_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -310px no-repeat; +} + +.award31x31.hero_level_christopholus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -341px no-repeat; +} + +.award31x31.hero_level_christopholus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -341px no-repeat; +} + +.award31x31.hero_level_christopholus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -341px no-repeat; +} + +.award31x31.hero_level_christopholus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -341px no-repeat; +} + +.award31x31.hero_level_daidalos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -341px no-repeat; +} + +.award31x31.hero_level_daidalos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -341px no-repeat; +} + +.award31x31.hero_level_daidalos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -341px no-repeat; +} + +.award31x31.hero_level_daidalos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -341px no-repeat; +} + +.award31x31.hero_level_deimos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -341px no-repeat; +} + +.award31x31.hero_level_deimos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -341px no-repeat; +} + +.award31x31.hero_level_deimos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -341px no-repeat; +} + +.award31x31.hero_level_deimos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -341px no-repeat; +} + +.award31x31.hero_level_democritus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px 0 no-repeat; +} + +.award31x31.hero_level_democritus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -31px no-repeat; +} + +.award31x31.hero_level_democritus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -62px no-repeat; +} + +.award31x31.hero_level_democritus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -93px no-repeat; +} + +.award31x31.hero_level_eurybia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -124px no-repeat; +} + +.award31x31.hero_level_eurybia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -155px no-repeat; +} + +.award31x31.hero_level_eurybia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -186px no-repeat; +} + +.award31x31.hero_level_eurybia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -217px no-repeat; +} + +.award31x31.hero_level_ferkyon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -248px no-repeat; +} + +.award31x31.hero_level_ferkyon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -279px no-repeat; +} + +.award31x31.hero_level_ferkyon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -310px no-repeat; +} + +.award31x31.hero_level_ferkyon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -341px no-repeat; +} + +.award31x31.hero_level_hector_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -372px no-repeat; +} + +.award31x31.hero_level_hector_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -372px no-repeat; +} + +.award31x31.hero_level_hector_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -372px no-repeat; +} + +.award31x31.hero_level_hector_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -372px no-repeat; +} + +.award31x31.hero_level_helen_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -372px no-repeat; +} + +.award31x31.hero_level_helen_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -372px no-repeat; +} + +.award31x31.hero_level_helen_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -372px no-repeat; +} + +.award31x31.hero_level_helen_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -372px no-repeat; +} + +.award31x31.hero_level_hercules_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -372px no-repeat; +} + +.award31x31.hero_level_hercules_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -372px no-repeat; +} + +.award31x31.hero_level_hercules_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -372px no-repeat; +} + +.award31x31.hero_level_hercules_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -372px no-repeat; +} + +.award31x31.hero_level_iason_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -372px no-repeat; +} + +.award31x31.hero_level_iason_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px 0 no-repeat; +} + +.award31x31.hero_level_iason_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -31px no-repeat; +} + +.award31x31.hero_level_iason_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -62px no-repeat; +} + +.award31x31.hero_level_leonidas_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -93px no-repeat; +} + +.award31x31.hero_level_leonidas_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -124px no-repeat; +} + +.award31x31.hero_level_leonidas_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -155px no-repeat; +} + +.award31x31.hero_level_leonidas_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -186px no-repeat; +} + +.award31x31.hero_level_lysippe_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -217px no-repeat; +} + +.award31x31.hero_level_lysippe_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -248px no-repeat; +} + +.award31x31.hero_level_lysippe_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -279px no-repeat; +} + +.award31x31.hero_level_lysippe_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -310px no-repeat; +} + +.award31x31.hero_level_medea_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -341px no-repeat; +} + +.award31x31.hero_level_medea_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -372px no-repeat; +} + +.award31x31.hero_level_medea_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -403px no-repeat; +} + +.award31x31.hero_level_medea_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -403px no-repeat; +} + +.award31x31.hero_level_melousa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -403px no-repeat; +} + +.award31x31.hero_level_melousa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -403px no-repeat; +} + +.award31x31.hero_level_melousa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -403px no-repeat; +} + +.award31x31.hero_level_melousa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -403px no-repeat; +} + +.award31x31.hero_level_mihalis_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -403px no-repeat; +} + +.award31x31.hero_level_mihalis_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -403px no-repeat; +} + +.award31x31.hero_level_mihalis_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -403px no-repeat; +} + +.award31x31.hero_level_mihalis_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -403px no-repeat; +} + +.award31x31.hero_level_odysseus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -403px no-repeat; +} + +.award31x31.hero_level_odysseus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -403px no-repeat; +} + +.award31x31.hero_level_odysseus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -403px no-repeat; +} + +.award31x31.hero_level_odysseus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -403px no-repeat; +} + +.award31x31.hero_level_orpheus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px 0 no-repeat; +} + +.award31x31.hero_level_orpheus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -31px no-repeat; +} + +.award31x31.hero_level_orpheus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -62px no-repeat; +} + +.award31x31.hero_level_orpheus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -93px no-repeat; +} + +.award31x31.hero_level_pariphaistes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -124px no-repeat; +} + +.award31x31.hero_level_pariphaistes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -155px no-repeat; +} + +.award31x31.hero_level_pariphaistes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -186px no-repeat; +} + +.award31x31.hero_level_pariphaistes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -217px no-repeat; +} + +.award31x31.hero_level_pelops_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -248px no-repeat; +} + +.award31x31.hero_level_pelops_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -279px no-repeat; +} + +.award31x31.hero_level_pelops_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -310px no-repeat; +} + +.award31x31.hero_level_pelops_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -341px no-repeat; +} + +.award31x31.hero_level_perseus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -372px no-repeat; +} + +.award31x31.hero_level_perseus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -403px no-repeat; +} + +.award31x31.hero_level_perseus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -434px no-repeat; +} + +.award31x31.hero_level_perseus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -434px no-repeat; +} + +.award31x31.hero_level_philoctetes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -434px no-repeat; +} + +.award31x31.hero_level_philoctetes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -434px no-repeat; +} + +.award31x31.hero_level_philoctetes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -434px no-repeat; +} + +.award31x31.hero_level_philoctetes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -434px no-repeat; +} + +.award31x31.hero_level_rekonos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -434px no-repeat; +} + +.award31x31.hero_level_rekonos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -434px no-repeat; +} + +.award31x31.hero_level_rekonos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -434px no-repeat; +} + +.award31x31.hero_level_rekonos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -434px no-repeat; +} + +.award31x31.hero_level_telemachos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -434px no-repeat; +} + +.award31x31.hero_level_telemachos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -434px no-repeat; +} + +.award31x31.hero_level_telemachos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -434px no-repeat; +} + +.award31x31.hero_level_telemachos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -434px no-repeat; +} + +.award31x31.hero_level_terylea_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -434px no-repeat; +} + +.award31x31.hero_level_terylea_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px 0 no-repeat; +} + +.award31x31.hero_level_terylea_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -31px no-repeat; +} + +.award31x31.hero_level_terylea_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -62px no-repeat; +} + +.award31x31.hero_level_themistokles_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -93px no-repeat; +} + +.award31x31.hero_level_themistokles_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -124px no-repeat; +} + +.award31x31.hero_level_themistokles_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -155px no-repeat; +} + +.award31x31.hero_level_themistokles_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -186px no-repeat; +} + +.award31x31.hero_level_urephon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -217px no-repeat; +} + +.award31x31.hero_level_urephon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -248px no-repeat; +} + +.award31x31.hero_level_urephon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -279px no-repeat; +} + +.award31x31.hero_level_urephon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -310px no-repeat; +} + +.award31x31.hero_level_ylestres_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -341px no-repeat; +} + +.award31x31.hero_level_ylestres_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -372px no-repeat; +} + +.award31x31.hero_level_ylestres_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -403px no-repeat; +} + +.award31x31.hero_level_ylestres_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -434px no-repeat; +} + +.award31x31.hero_level_zuretha_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -465px no-repeat; +} + +.award31x31.hero_level_zuretha_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -465px no-repeat; +} + +.award31x31.hero_level_zuretha_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -465px no-repeat; +} + +.award31x31.hero_level_zuretha_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -465px no-repeat; +} + +.award31x31.hero_money_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -465px no-repeat; +} + +.award31x31.hero_money_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -465px no-repeat; +} + +.award31x31.hero_money_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -465px no-repeat; +} + +.award31x31.hero_money_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -465px no-repeat; +} + +.award31x31.island_quests_done_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -465px no-repeat; +} + +.award31x31.island_quests_done_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -465px no-repeat; +} + +.award31x31.island_quests_done_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -465px no-repeat; +} + +.award31x31.island_quests_done_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -465px no-repeat; +} + +.award31x31.island_quests_evil_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -465px no-repeat; +} + +.award31x31.island_quests_evil_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -465px no-repeat; +} + +.award31x31.island_quests_evil_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -465px no-repeat; +} + +.award31x31.island_quests_evil_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -465px no-repeat; +} + +.award31x31.island_quests_good_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px 0 no-repeat; +} + +.award31x31.island_quests_good_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -31px no-repeat; +} + +.award31x31.island_quests_good_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -62px no-repeat; +} + +.award31x31.island_quests_good_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -93px no-repeat; +} + +.award31x31.killed_units_agamemnon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -124px no-repeat; +} + +.award31x31.killed_units_agamemnon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -155px no-repeat; +} + +.award31x31.killed_units_agamemnon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -186px no-repeat; +} + +.award31x31.killed_units_agamemnon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -217px no-repeat; +} + +.award31x31.killed_units_ajax_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -248px no-repeat; +} + +.award31x31.killed_units_ajax_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -279px no-repeat; +} + +.award31x31.killed_units_ajax_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -310px no-repeat; +} + +.award31x31.killed_units_ajax_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -341px no-repeat; +} + +.award31x31.killed_units_alexandrios_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -372px no-repeat; +} + +.award31x31.killed_units_alexandrios_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -403px no-repeat; +} + +.award31x31.killed_units_alexandrios_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -434px no-repeat; +} + +.award31x31.killed_units_alexandrios_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -465px no-repeat; +} + +.award31x31.killed_units_andromeda_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -496px no-repeat; +} + +.award31x31.killed_units_andromeda_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -496px no-repeat; +} + +.award31x31.killed_units_andromeda_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -496px no-repeat; +} + +.award31x31.killed_units_andromeda_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -496px no-repeat; +} + +.award31x31.killed_units_anysia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -496px no-repeat; +} + +.award31x31.killed_units_anysia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -496px no-repeat; +} + +.award31x31.killed_units_anysia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -496px no-repeat; +} + +.award31x31.killed_units_anysia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -496px no-repeat; +} + +.award31x31.killed_units_apheledes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -496px no-repeat; +} + +.award31x31.killed_units_apheledes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -496px no-repeat; +} + +.award31x31.killed_units_apheledes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -496px no-repeat; +} + +.award31x31.killed_units_apheledes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -496px no-repeat; +} + +.award31x31.killed_units_archer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -496px no-repeat; +} + +.award31x31.killed_units_archer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -496px no-repeat; +} + +.award31x31.killed_units_archer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -496px no-repeat; +} + +.award31x31.killed_units_archer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -496px no-repeat; +} + +.award31x31.killed_units_argus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -496px no-repeat; +} + +.award31x31.killed_units_argus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px 0 no-repeat; +} + +.award31x31.killed_units_argus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -31px no-repeat; +} + +.award31x31.killed_units_argus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -62px no-repeat; +} + +.award31x31.killed_units_aristotle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -93px no-repeat; +} + +.award31x31.killed_units_aristotle_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -124px no-repeat; +} + +.award31x31.killed_units_aristotle_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -155px no-repeat; +} + +.award31x31.killed_units_aristotle_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -186px no-repeat; +} + +.award31x31.killed_units_atalanta_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -217px no-repeat; +} + +.award31x31.killed_units_atalanta_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -248px no-repeat; +} + +.award31x31.killed_units_atalanta_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -279px no-repeat; +} + +.award31x31.killed_units_atalanta_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -310px no-repeat; +} + +.award31x31.killed_units_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -341px no-repeat; +} + +.award31x31.killed_units_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -372px no-repeat; +} + +.award31x31.killed_units_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -403px no-repeat; +} + +.award31x31.killed_units_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -434px no-repeat; +} + +.award31x31.killed_units_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -465px no-repeat; +} + +.award31x31.killed_units_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -496px no-repeat; +} + +.award31x31.killed_units_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -527px no-repeat; +} + +.award31x31.killed_units_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -527px no-repeat; +} + +.award31x31.killed_units_bireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -527px no-repeat; +} + +.award31x31.killed_units_bireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -527px no-repeat; +} + +.award31x31.killed_units_bireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -527px no-repeat; +} + +.award31x31.killed_units_bireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -527px no-repeat; +} + +.award31x31.killed_units_calydonian_boar_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -527px no-repeat; +} + +.award31x31.killed_units_calydonian_boar_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -527px no-repeat; +} + +.award31x31.killed_units_calydonian_boar_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -527px no-repeat; +} + +.award31x31.killed_units_calydonian_boar_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -527px no-repeat; +} + +.award31x31.killed_units_catapult_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -527px no-repeat; +} + +.award31x31.killed_units_catapult_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -527px no-repeat; +} + +.award31x31.killed_units_catapult_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -527px no-repeat; +} + +.award31x31.killed_units_catapult_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -527px no-repeat; +} + +.award31x31.killed_units_centaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -527px no-repeat; +} + +.award31x31.killed_units_centaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -527px no-repeat; +} + +.award31x31.killed_units_centaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -527px no-repeat; +} + +.award31x31.killed_units_centaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -527px no-repeat; +} + +.award31x31.killed_units_cerberus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px 0 no-repeat; +} + +.award31x31.killed_units_cerberus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -31px no-repeat; +} + +.award31x31.killed_units_cerberus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -62px no-repeat; +} + +.award31x31.killed_units_cerberus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -93px no-repeat; +} + +.award31x31.killed_units_chariot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -124px no-repeat; +} + +.award31x31.killed_units_chariot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -155px no-repeat; +} + +.award31x31.killed_units_chariot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -186px no-repeat; +} + +.award31x31.killed_units_chariot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -217px no-repeat; +} + +.award31x31.killed_units_cheiron_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -248px no-repeat; +} + +.award31x31.killed_units_cheiron_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -279px no-repeat; +} + +.award31x31.killed_units_cheiron_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -310px no-repeat; +} + +.award31x31.killed_units_cheiron_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -341px no-repeat; +} + +.award31x31.killed_units_christopholus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -372px no-repeat; +} + +.award31x31.killed_units_christopholus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -403px no-repeat; +} + +.award31x31.killed_units_christopholus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -434px no-repeat; +} + +.award31x31.killed_units_christopholus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -465px no-repeat; +} + +.award31x31.killed_units_daidalos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -496px no-repeat; +} + +.award31x31.killed_units_daidalos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -527px no-repeat; +} + +.award31x31.killed_units_daidalos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -558px no-repeat; +} + +.award31x31.killed_units_daidalos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -558px no-repeat; +} + +.award31x31.killed_units_defending_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -558px no-repeat; +} + +.award31x31.killed_units_defending_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -558px no-repeat; +} + +.award31x31.killed_units_defending_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -558px no-repeat; +} + +.award31x31.killed_units_defending_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -558px no-repeat; +} + +.award31x31.killed_units_defending_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -558px no-repeat; +} + +.award31x31.killed_units_defending_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -558px no-repeat; +} + +.award31x31.killed_units_defending_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -558px no-repeat; +} + +.award31x31.killed_units_defending_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -558px no-repeat; +} + +.award31x31.killed_units_defending_catapult_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -558px no-repeat; +} + +.award31x31.killed_units_defending_catapult_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -558px no-repeat; +} + +.award31x31.killed_units_defending_catapult_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -558px no-repeat; +} + +.award31x31.killed_units_defending_catapult_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -558px no-repeat; +} + +.award31x31.killed_units_defending_chariot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -558px no-repeat; +} + +.award31x31.killed_units_defending_chariot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -558px no-repeat; +} + +.award31x31.killed_units_defending_chariot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -558px no-repeat; +} + +.award31x31.killed_units_defending_chariot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -558px no-repeat; +} + +.award31x31.killed_units_defending_colonize_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -558px no-repeat; +} + +.award31x31.killed_units_defending_colonize_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px 0 no-repeat; +} + +.award31x31.killed_units_defending_colonize_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -31px no-repeat; +} + +.award31x31.killed_units_defending_colonize_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -62px no-repeat; +} + +.award31x31.killed_units_defending_fury_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -93px no-repeat; +} + +.award31x31.killed_units_defending_fury_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -124px no-repeat; +} + +.award31x31.killed_units_defending_fury_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -155px no-repeat; +} + +.award31x31.killed_units_defending_fury_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -186px no-repeat; +} + +.award31x31.killed_units_defending_godsent_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -217px no-repeat; +} + +.award31x31.killed_units_defending_godsent_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -248px no-repeat; +} + +.award31x31.killed_units_defending_godsent_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -279px no-repeat; +} + +.award31x31.killed_units_defending_godsent_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -310px no-repeat; +} + +.award31x31.killed_units_defending_griffin_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -341px no-repeat; +} + +.award31x31.killed_units_defending_griffin_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -372px no-repeat; +} + +.award31x31.killed_units_defending_griffin_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -403px no-repeat; +} + +.award31x31.killed_units_defending_griffin_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -434px no-repeat; +} + +.award31x31.killed_units_defending_harpy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -465px no-repeat; +} + +.award31x31.killed_units_defending_harpy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -496px no-repeat; +} + +.award31x31.killed_units_defending_harpy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -527px no-repeat; +} + +.award31x31.killed_units_defending_harpy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -558px no-repeat; +} + +.award31x31.killed_units_defending_hoplite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -589px no-repeat; +} + +.award31x31.killed_units_defending_hoplite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -589px no-repeat; +} + +.award31x31.killed_units_defending_hoplite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -589px no-repeat; +} + +.award31x31.killed_units_defending_hoplite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -589px no-repeat; +} + +.award31x31.killed_units_defending_ladon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -589px no-repeat; +} + +.award31x31.killed_units_defending_ladon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -589px no-repeat; +} + +.award31x31.killed_units_defending_ladon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -589px no-repeat; +} + +.award31x31.killed_units_defending_ladon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -589px no-repeat; +} + +.award31x31.killed_units_defending_manticore_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -589px no-repeat; +} + +.award31x31.killed_units_defending_manticore_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -589px no-repeat; +} + +.award31x31.killed_units_defending_manticore_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -589px no-repeat; +} + +.award31x31.killed_units_defending_manticore_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -589px no-repeat; +} + +.award31x31.killed_units_defending_medusa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -589px no-repeat; +} + +.award31x31.killed_units_defending_medusa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -589px no-repeat; +} + +.award31x31.killed_units_defending_medusa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -589px no-repeat; +} + +.award31x31.killed_units_defending_medusa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -589px no-repeat; +} + +.award31x31.killed_units_defending_minotaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -589px no-repeat; +} + +.award31x31.killed_units_defending_minotaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -589px no-repeat; +} + +.award31x31.killed_units_defending_minotaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -589px no-repeat; +} + +.award31x31.killed_units_defending_minotaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -589px no-repeat; +} + +.award31x31.killed_units_defending_rider_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px 0 no-repeat; +} + +.award31x31.killed_units_defending_rider_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -31px no-repeat; +} + +.award31x31.killed_units_defending_rider_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -62px no-repeat; +} + +.award31x31.killed_units_defending_rider_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -93px no-repeat; +} + +.award31x31.killed_units_defending_satyr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -124px no-repeat; +} + +.award31x31.killed_units_defending_satyr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -155px no-repeat; +} + +.award31x31.killed_units_defending_satyr_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -186px no-repeat; +} + +.award31x31.killed_units_defending_satyr_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -217px no-repeat; +} + +.award31x31.killed_units_defending_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -248px no-repeat; +} + +.award31x31.killed_units_defending_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -279px no-repeat; +} + +.award31x31.killed_units_defending_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -310px no-repeat; +} + +.award31x31.killed_units_defending_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -341px no-repeat; +} + +.award31x31.killed_units_defending_siren_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -372px no-repeat; +} + +.award31x31.killed_units_defending_siren_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -403px no-repeat; +} + +.award31x31.killed_units_defending_siren_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -434px no-repeat; +} + +.award31x31.killed_units_defending_siren_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -465px no-repeat; +} + +.award31x31.killed_units_defending_slinger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -496px no-repeat; +} + +.award31x31.killed_units_defending_slinger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -527px no-repeat; +} + +.award31x31.killed_units_defending_slinger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -558px no-repeat; +} + +.award31x31.killed_units_defending_slinger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -589px no-repeat; +} + +.award31x31.killed_units_defending_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -620px no-repeat; +} + +.award31x31.killed_units_defending_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -620px no-repeat; +} + +.award31x31.killed_units_defending_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -620px no-repeat; +} + +.award31x31.killed_units_defending_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -620px no-repeat; +} + +.award31x31.killed_units_defending_spartoi_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -620px no-repeat; +} + +.award31x31.killed_units_defending_spartoi_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -620px no-repeat; +} + +.award31x31.killed_units_defending_spartoi_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -620px no-repeat; +} + +.award31x31.killed_units_defending_spartoi_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -620px no-repeat; +} + +.award31x31.killed_units_defending_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -620px no-repeat; +} + +.award31x31.killed_units_defending_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -620px no-repeat; +} + +.award31x31.killed_units_defending_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -620px no-repeat; +} + +.award31x31.killed_units_defending_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -620px no-repeat; +} + +.award31x31.killed_units_defending_zyklop_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -620px no-repeat; +} + +.award31x31.killed_units_defending_zyklop_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -620px no-repeat; +} + +.award31x31.killed_units_defending_zyklop_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -620px no-repeat; +} + +.award31x31.killed_units_defending_zyklop_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -620px no-repeat; +} + +.award31x31.killed_units_deimos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -620px no-repeat; +} + +.award31x31.killed_units_deimos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -620px no-repeat; +} + +.award31x31.killed_units_deimos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -620px no-repeat; +} + +.award31x31.killed_units_deimos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -620px no-repeat; +} + +.award31x31.killed_units_democritus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -620px no-repeat; +} + +.award31x31.killed_units_democritus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px 0 no-repeat; +} + +.award31x31.killed_units_democritus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -31px no-repeat; +} + +.award31x31.killed_units_democritus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -62px no-repeat; +} + +.award31x31.killed_units_demolition_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -93px no-repeat; +} + +.award31x31.killed_units_demolition_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -124px no-repeat; +} + +.award31x31.killed_units_demolition_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -155px no-repeat; +} + +.award31x31.killed_units_demolition_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -186px no-repeat; +} + +.award31x31.killed_units_eurybia_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -217px no-repeat; +} + +.award31x31.killed_units_eurybia_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -248px no-repeat; +} + +.award31x31.killed_units_eurybia_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -279px no-repeat; +} + +.award31x31.killed_units_eurybia_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -310px no-repeat; +} + +.award31x31.killed_units_ferkyon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -341px no-repeat; +} + +.award31x31.killed_units_ferkyon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -372px no-repeat; +} + +.award31x31.killed_units_ferkyon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -403px no-repeat; +} + +.award31x31.killed_units_ferkyon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -434px no-repeat; +} + +.award31x31.killed_units_fury_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -465px no-repeat; +} + +.award31x31.killed_units_fury_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -496px no-repeat; +} + +.award31x31.killed_units_fury_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -527px no-repeat; +} + +.award31x31.killed_units_fury_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -558px no-repeat; +} + +.award31x31.killed_units_godsent_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -589px no-repeat; +} + +.award31x31.killed_units_godsent_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -620px no-repeat; +} + +.award31x31.killed_units_godsent_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -651px no-repeat; +} + +.award31x31.killed_units_godsent_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -651px no-repeat; +} + +.award31x31.killed_units_griffin_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -651px no-repeat; +} + +.award31x31.killed_units_griffin_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -651px no-repeat; +} + +.award31x31.killed_units_griffin_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -651px no-repeat; +} + +.award31x31.killed_units_griffin_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -651px no-repeat; +} + +.award31x31.killed_units_harpy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -651px no-repeat; +} + +.award31x31.killed_units_harpy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -651px no-repeat; +} + +.award31x31.killed_units_harpy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -651px no-repeat; +} + +.award31x31.killed_units_harpy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -651px no-repeat; +} + +.award31x31.killed_units_hector_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -651px no-repeat; +} + +.award31x31.killed_units_hector_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -651px no-repeat; +} + +.award31x31.killed_units_hector_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -651px no-repeat; +} + +.award31x31.killed_units_hector_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -651px no-repeat; +} + +.award31x31.killed_units_helen_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -651px no-repeat; +} + +.award31x31.killed_units_helen_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -651px no-repeat; +} + +.award31x31.killed_units_helen_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -651px no-repeat; +} + +.award31x31.killed_units_helen_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -651px no-repeat; +} + +.award31x31.killed_units_hercules_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -651px no-repeat; +} + +.award31x31.killed_units_hercules_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -651px no-repeat; +} + +.award31x31.killed_units_hercules_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -651px no-repeat; +} + +.award31x31.killed_units_hercules_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -651px no-repeat; +} + +.award31x31.killed_units_hoplite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px 0 no-repeat; +} + +.award31x31.killed_units_hoplite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -31px no-repeat; +} + +.award31x31.killed_units_hoplite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -62px no-repeat; +} + +.award31x31.killed_units_hoplite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -93px no-repeat; +} + +.award31x31.killed_units_iason_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -124px no-repeat; +} + +.award31x31.killed_units_iason_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -155px no-repeat; +} + +.award31x31.killed_units_iason_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -186px no-repeat; +} + +.award31x31.killed_units_iason_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -217px no-repeat; +} + +.award31x31.killed_units_ladon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -248px no-repeat; +} + +.award31x31.killed_units_ladon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -279px no-repeat; +} + +.award31x31.killed_units_ladon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -310px no-repeat; +} + +.award31x31.killed_units_ladon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -341px no-repeat; +} + +.award31x31.killed_units_leonidas_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -372px no-repeat; +} + +.award31x31.killed_units_leonidas_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -403px no-repeat; +} + +.award31x31.killed_units_leonidas_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -434px no-repeat; +} + +.award31x31.killed_units_leonidas_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -465px no-repeat; +} + +.award31x31.killed_units_lysippe_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -496px no-repeat; +} + +.award31x31.killed_units_lysippe_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -527px no-repeat; +} + +.award31x31.killed_units_lysippe_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -558px no-repeat; +} + +.award31x31.killed_units_lysippe_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -589px no-repeat; +} + +.award31x31.killed_units_manticore_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -620px no-repeat; +} + +.award31x31.killed_units_manticore_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -651px no-repeat; +} + +.award31x31.killed_units_manticore_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -682px no-repeat; +} + +.award31x31.killed_units_manticore_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -682px no-repeat; +} + +.award31x31.killed_units_medea_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -682px no-repeat; +} + +.award31x31.killed_units_medea_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -682px no-repeat; +} + +.award31x31.killed_units_medea_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -682px no-repeat; +} + +.award31x31.killed_units_medea_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -682px no-repeat; +} + +.award31x31.killed_units_medusa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -682px no-repeat; +} + +.award31x31.killed_units_medusa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -682px no-repeat; +} + +.award31x31.killed_units_medusa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -682px no-repeat; +} + +.award31x31.killed_units_medusa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -682px no-repeat; +} + +.award31x31.killed_units_melousa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -682px no-repeat; +} + +.award31x31.killed_units_melousa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -682px no-repeat; +} + +.award31x31.killed_units_melousa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -682px no-repeat; +} + +.award31x31.killed_units_melousa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -682px no-repeat; +} + +.award31x31.killed_units_mihalis_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -682px no-repeat; +} + +.award31x31.killed_units_mihalis_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -682px no-repeat; +} + +.award31x31.killed_units_mihalis_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -682px no-repeat; +} + +.award31x31.killed_units_mihalis_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -682px no-repeat; +} + +.award31x31.killed_units_minotaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -682px no-repeat; +} + +.award31x31.killed_units_minotaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -682px no-repeat; +} + +.award31x31.killed_units_minotaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -682px no-repeat; +} + +.award31x31.killed_units_minotaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -682px no-repeat; +} + +.award31x31.killed_units_odysseus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -682px no-repeat; +} + +.award31x31.killed_units_odysseus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px 0 no-repeat; +} + +.award31x31.killed_units_odysseus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -31px no-repeat; +} + +.award31x31.killed_units_odysseus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -62px no-repeat; +} + +.award31x31.killed_units_orpheus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -93px no-repeat; +} + +.award31x31.killed_units_orpheus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -124px no-repeat; +} + +.award31x31.killed_units_orpheus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -155px no-repeat; +} + +.award31x31.killed_units_orpheus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -186px no-repeat; +} + +.award31x31.killed_units_pariphaistes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -217px no-repeat; +} + +.award31x31.killed_units_pariphaistes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -248px no-repeat; +} + +.award31x31.killed_units_pariphaistes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -279px no-repeat; +} + +.award31x31.killed_units_pariphaistes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -310px no-repeat; +} + +.award31x31.killed_units_pegasus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -341px no-repeat; +} + +.award31x31.killed_units_pegasus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -372px no-repeat; +} + +.award31x31.killed_units_pegasus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -403px no-repeat; +} + +.award31x31.killed_units_pegasus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -434px no-repeat; +} + +.award31x31.killed_units_pelops_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -465px no-repeat; +} + +.award31x31.killed_units_pelops_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -496px no-repeat; +} + +.award31x31.killed_units_pelops_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -527px no-repeat; +} + +.award31x31.killed_units_pelops_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -558px no-repeat; +} + +.award31x31.killed_units_perseus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -589px no-repeat; +} + +.award31x31.killed_units_perseus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -620px no-repeat; +} + +.award31x31.killed_units_perseus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -651px no-repeat; +} + +.award31x31.killed_units_perseus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -682px no-repeat; +} + +.award31x31.killed_units_philoctetes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -713px no-repeat; +} + +.award31x31.killed_units_philoctetes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -713px no-repeat; +} + +.award31x31.killed_units_philoctetes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -713px no-repeat; +} + +.award31x31.killed_units_philoctetes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -713px no-repeat; +} + +.award31x31.killed_units_rekonos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -713px no-repeat; +} + +.award31x31.killed_units_rekonos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -713px no-repeat; +} + +.award31x31.killed_units_rekonos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -713px no-repeat; +} + +.award31x31.killed_units_rekonos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -713px no-repeat; +} + +.award31x31.killed_units_rider_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -713px no-repeat; +} + +.award31x31.killed_units_rider_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -713px no-repeat; +} + +.award31x31.killed_units_rider_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -713px no-repeat; +} + +.award31x31.killed_units_rider_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -713px no-repeat; +} + +.award31x31.killed_units_satyr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -713px no-repeat; +} + +.award31x31.killed_units_satyr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -713px no-repeat; +} + +.award31x31.killed_units_satyr_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -713px no-repeat; +} + +.award31x31.killed_units_satyr_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -713px no-repeat; +} + +.award31x31.killed_units_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -713px no-repeat; +} + +.award31x31.killed_units_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -713px no-repeat; +} + +.award31x31.killed_units_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -713px no-repeat; +} + +.award31x31.killed_units_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -713px no-repeat; +} + +.award31x31.killed_units_siren_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -713px no-repeat; +} + +.award31x31.killed_units_siren_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -713px no-repeat; +} + +.award31x31.killed_units_siren_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -713px no-repeat; +} + +.award31x31.killed_units_siren_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -713px no-repeat; +} + +.award31x31.killed_units_slinger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px 0 no-repeat; +} + +.award31x31.killed_units_slinger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -31px no-repeat; +} + +.award31x31.killed_units_slinger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -62px no-repeat; +} + +.award31x31.killed_units_slinger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -93px no-repeat; +} + +.award31x31.killed_units_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -124px no-repeat; +} + +.award31x31.killed_units_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -155px no-repeat; +} + +.award31x31.killed_units_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -186px no-repeat; +} + +.award31x31.killed_units_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -217px no-repeat; +} + +.award31x31.killed_units_spartoi_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -248px no-repeat; +} + +.award31x31.killed_units_spartoi_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -279px no-repeat; +} + +.award31x31.killed_units_spartoi_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -310px no-repeat; +} + +.award31x31.killed_units_spartoi_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -341px no-repeat; +} + +.award31x31.killed_units_support_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -372px no-repeat; +} + +.award31x31.killed_units_support_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -403px no-repeat; +} + +.award31x31.killed_units_support_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -434px no-repeat; +} + +.award31x31.killed_units_support_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -465px no-repeat; +} + +.award31x31.killed_units_support_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -496px no-repeat; +} + +.award31x31.killed_units_support_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -527px no-repeat; +} + +.award31x31.killed_units_support_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -558px no-repeat; +} + +.award31x31.killed_units_support_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -589px no-repeat; +} + +.award31x31.killed_units_support_catapult_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -620px no-repeat; +} + +.award31x31.killed_units_support_catapult_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -651px no-repeat; +} + +.award31x31.killed_units_support_catapult_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -682px no-repeat; +} + +.award31x31.killed_units_support_catapult_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -713px no-repeat; +} + +.award31x31.killed_units_support_chariot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -744px no-repeat; +} + +.award31x31.killed_units_support_chariot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -744px no-repeat; +} + +.award31x31.killed_units_support_chariot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -744px no-repeat; +} + +.award31x31.killed_units_support_chariot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -744px no-repeat; +} + +.award31x31.killed_units_support_colonize_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -744px no-repeat; +} + +.award31x31.killed_units_support_colonize_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -744px no-repeat; +} + +.award31x31.killed_units_support_colonize_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -744px no-repeat; +} + +.award31x31.killed_units_support_colonize_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -744px no-repeat; +} + +.award31x31.killed_units_support_fury_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -744px no-repeat; +} + +.award31x31.killed_units_support_fury_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -744px no-repeat; +} + +.award31x31.killed_units_support_fury_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -744px no-repeat; +} + +.award31x31.killed_units_support_fury_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -744px no-repeat; +} + +.award31x31.killed_units_support_godsent_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -744px no-repeat; +} + +.award31x31.killed_units_support_godsent_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -744px no-repeat; +} + +.award31x31.killed_units_support_godsent_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -744px no-repeat; +} + +.award31x31.killed_units_support_godsent_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -744px no-repeat; +} + +.award31x31.killed_units_support_griffin_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -744px no-repeat; +} + +.award31x31.killed_units_support_griffin_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -744px no-repeat; +} + +.award31x31.killed_units_support_griffin_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -744px no-repeat; +} + +.award31x31.killed_units_support_griffin_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -744px no-repeat; +} + +.award31x31.killed_units_support_harpy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -744px no-repeat; +} + +.award31x31.killed_units_support_harpy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -744px no-repeat; +} + +.award31x31.killed_units_support_harpy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -744px no-repeat; +} + +.award31x31.killed_units_support_harpy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -744px no-repeat; +} + +.award31x31.killed_units_support_hoplite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -744px no-repeat; +} + +.award31x31.killed_units_support_hoplite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px 0 no-repeat; +} + +.award31x31.killed_units_support_hoplite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -31px no-repeat; +} + +.award31x31.killed_units_support_hoplite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -62px no-repeat; +} + +.award31x31.killed_units_support_ladon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -93px no-repeat; +} + +.award31x31.killed_units_support_ladon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -124px no-repeat; +} + +.award31x31.killed_units_support_ladon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -155px no-repeat; +} + +.award31x31.killed_units_support_ladon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -186px no-repeat; +} + +.award31x31.killed_units_support_manticore_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -217px no-repeat; +} + +.award31x31.killed_units_support_manticore_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -248px no-repeat; +} + +.award31x31.killed_units_support_manticore_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -279px no-repeat; +} + +.award31x31.killed_units_support_manticore_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -310px no-repeat; +} + +.award31x31.killed_units_support_medusa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -341px no-repeat; +} + +.award31x31.killed_units_support_medusa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -372px no-repeat; +} + +.award31x31.killed_units_support_medusa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -403px no-repeat; +} + +.award31x31.killed_units_support_medusa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -434px no-repeat; +} + +.award31x31.killed_units_support_minotaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -465px no-repeat; +} + +.award31x31.killed_units_support_minotaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -496px no-repeat; +} + +.award31x31.killed_units_support_minotaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -527px no-repeat; +} + +.award31x31.killed_units_support_minotaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -558px no-repeat; +} + +.award31x31.killed_units_support_rider_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -589px no-repeat; +} + +.award31x31.killed_units_support_rider_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -620px no-repeat; +} + +.award31x31.killed_units_support_rider_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -651px no-repeat; +} + +.award31x31.killed_units_support_rider_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -682px no-repeat; +} + +.award31x31.killed_units_support_satyr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -713px no-repeat; +} + +.award31x31.killed_units_support_satyr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -744px no-repeat; +} + +.award31x31.killed_units_support_satyr_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -775px no-repeat; +} + +.award31x31.killed_units_support_satyr_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -775px no-repeat; +} + +.award31x31.killed_units_support_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -775px no-repeat; +} + +.award31x31.killed_units_support_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -775px no-repeat; +} + +.award31x31.killed_units_support_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -775px no-repeat; +} + +.award31x31.killed_units_support_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -775px no-repeat; +} + +.award31x31.killed_units_support_siren_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -775px no-repeat; +} + +.award31x31.killed_units_support_siren_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -775px no-repeat; +} + +.award31x31.killed_units_support_siren_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -775px no-repeat; +} + +.award31x31.killed_units_support_siren_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -775px no-repeat; +} + +.award31x31.killed_units_support_slinger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -775px no-repeat; +} + +.award31x31.killed_units_support_slinger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -775px no-repeat; +} + +.award31x31.killed_units_support_slinger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -775px no-repeat; +} + +.award31x31.killed_units_support_slinger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -775px no-repeat; +} + +.award31x31.killed_units_support_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -775px no-repeat; +} + +.award31x31.killed_units_support_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -775px no-repeat; +} + +.award31x31.killed_units_support_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -775px no-repeat; +} + +.award31x31.killed_units_support_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -775px no-repeat; +} + +.award31x31.killed_units_support_spartoi_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -775px no-repeat; +} + +.award31x31.killed_units_support_spartoi_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -775px no-repeat; +} + +.award31x31.killed_units_support_spartoi_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -775px no-repeat; +} + +.award31x31.killed_units_support_spartoi_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -775px no-repeat; +} + +.award31x31.killed_units_support_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -775px no-repeat; +} + +.award31x31.killed_units_support_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -775px no-repeat; +} + +.award31x31.killed_units_support_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -775px no-repeat; +} + +.award31x31.killed_units_support_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -775px no-repeat; +} + +.award31x31.killed_units_support_zyklop_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px 0 no-repeat; +} + +.award31x31.killed_units_support_zyklop_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -31px no-repeat; +} + +.award31x31.killed_units_support_zyklop_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -62px no-repeat; +} + +.award31x31.killed_units_support_zyklop_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -93px no-repeat; +} + +.award31x31.killed_units_sword_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -124px no-repeat; +} + +.award31x31.killed_units_sword_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -155px no-repeat; +} + +.award31x31.killed_units_sword_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -186px no-repeat; +} + +.award31x31.killed_units_sword_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -217px no-repeat; +} + +.award31x31.killed_units_telemachos_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -248px no-repeat; +} + +.award31x31.killed_units_telemachos_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -279px no-repeat; +} + +.award31x31.killed_units_telemachos_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -310px no-repeat; +} + +.award31x31.killed_units_telemachos_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -341px no-repeat; +} + +.award31x31.killed_units_terylea_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -372px no-repeat; +} + +.award31x31.killed_units_terylea_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -403px no-repeat; +} + +.award31x31.killed_units_terylea_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -434px no-repeat; +} + +.award31x31.killed_units_terylea_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -465px no-repeat; +} + +.award31x31.killed_units_themistokles_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -496px no-repeat; +} + +.award31x31.killed_units_themistokles_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -527px no-repeat; +} + +.award31x31.killed_units_themistokles_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -558px no-repeat; +} + +.award31x31.killed_units_themistokles_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -589px no-repeat; +} + +.award31x31.killed_units_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -620px no-repeat; +} + +.award31x31.killed_units_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -651px no-repeat; +} + +.award31x31.killed_units_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -682px no-repeat; +} + +.award31x31.killed_units_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -713px no-repeat; +} + +.award31x31.killed_units_urephon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -744px no-repeat; +} + +.award31x31.killed_units_urephon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -775px no-repeat; +} + +.award31x31.killed_units_urephon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -806px no-repeat; +} + +.award31x31.killed_units_urephon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -806px no-repeat; +} + +.award31x31.killed_units_ylestres_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -806px no-repeat; +} + +.award31x31.killed_units_ylestres_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -806px no-repeat; +} + +.award31x31.killed_units_ylestres_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -806px no-repeat; +} + +.award31x31.killed_units_ylestres_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -806px no-repeat; +} + +.award31x31.killed_units_zuretha_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -806px no-repeat; +} + +.award31x31.killed_units_zuretha_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -806px no-repeat; +} + +.award31x31.killed_units_zuretha_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -806px no-repeat; +} + +.award31x31.killed_units_zuretha_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -806px no-repeat; +} + +.award31x31.killed_units_zyklop_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -806px no-repeat; +} + +.award31x31.killed_units_zyklop_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -806px no-repeat; +} + +.award31x31.killed_units_zyklop_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -806px no-repeat; +} + +.award31x31.killed_units_zyklop_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -806px no-repeat; +} + +.award31x31.mythological_units_built_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -806px no-repeat; +} + +.award31x31.mythological_units_built_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -806px no-repeat; +} + +.award31x31.mythological_units_built_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -806px no-repeat; +} + +.award31x31.mythological_units_built_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -806px no-repeat; +} + +.award31x31.olympus_devoted_servant_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -806px no-repeat; +} + +.award31x31.olympus_devoted_servant_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -806px no-repeat; +} + +.award31x31.olympus_devoted_servant_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -806px no-repeat; +} + +.award31x31.olympus_devoted_servant_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -806px no-repeat; +} + +.award31x31.own_islands_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -806px no-repeat; +} + +.award31x31.own_islands_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -806px no-repeat; +} + +.award31x31.own_islands_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -806px no-repeat; +} + +.award31x31.own_islands_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -806px no-repeat; +} + +.award31x31.points_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -806px no-repeat; +} + +.award31x31.points_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px 0 no-repeat; +} + +.award31x31.points_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -31px no-repeat; +} + +.award31x31.points_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -62px no-repeat; +} + +.award31x31.powers_used_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -93px no-repeat; +} + +.award31x31.powers_used_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -124px no-repeat; +} + +.award31x31.powers_used_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -155px no-repeat; +} + +.award31x31.powers_used_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -186px no-repeat; +} + +.award31x31.resources_loot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -217px no-repeat; +} + +.award31x31.resources_loot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -248px no-repeat; +} + +.award31x31.resources_loot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -279px no-repeat; +} + +.award31x31.resources_loot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -310px no-repeat; +} + +.award31x31.resources_trade_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -341px no-repeat; +} + +.award31x31.resources_trade_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -372px no-repeat; +} + +.award31x31.resources_trade_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -403px no-repeat; +} + +.award31x31.resources_trade_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -434px no-repeat; +} + +.award31x31.sea_ranking_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -465px no-repeat; +} + +.award31x31.sea_ranking_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -496px no-repeat; +} + +.award31x31.sea_ranking_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -527px no-repeat; +} + +.award31x31.sea_ranking_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -558px no-repeat; +} + +.award31x31.speed_world_finished_ally_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -589px no-repeat; +} + +.award31x31.speed_world_finished_ally_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -620px no-repeat; +} + +.award31x31.speed_world_finished_ally_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -651px no-repeat; +} + +.award31x31.speed_world_finished_ally_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -682px no-repeat; +} + +.award31x31.speed_world_finished_player_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -713px no-repeat; +} + +.award31x31.speed_world_finished_player_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -744px no-repeat; +} + +.award31x31.speed_world_finished_player_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -775px no-repeat; +} + +.award31x31.speed_world_finished_player_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -806px no-repeat; +} + +.award31x31.towns_conquered_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -837px no-repeat; +} + +.award31x31.towns_conquered_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -837px no-repeat; +} + +.award31x31.towns_conquered_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -837px no-repeat; +} + +.award31x31.towns_conquered_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -837px no-repeat; +} + +.award31x31.towns_founded_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -837px no-repeat; +} + +.award31x31.towns_founded_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -837px no-repeat; +} + +.award31x31.towns_founded_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -837px no-repeat; +} + +.award31x31.towns_founded_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -837px no-repeat; +} + +.award31x31.train_units_archer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -837px no-repeat; +} + +.award31x31.train_units_archer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -837px no-repeat; +} + +.award31x31.train_units_archer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -837px no-repeat; +} + +.award31x31.train_units_archer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -837px no-repeat; +} + +.award31x31.train_units_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -837px no-repeat; +} + +.award31x31.train_units_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -837px no-repeat; +} + +.award31x31.train_units_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -837px no-repeat; +} + +.award31x31.train_units_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -837px no-repeat; +} + +.award31x31.train_units_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -837px no-repeat; +} + +.award31x31.train_units_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -837px no-repeat; +} + +.award31x31.train_units_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -837px no-repeat; +} + +.award31x31.train_units_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -837px no-repeat; +} + +.award31x31.train_units_bireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -837px no-repeat; +} + +.award31x31.train_units_bireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -837px no-repeat; +} + +.award31x31.train_units_bireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -837px no-repeat; +} + +.award31x31.train_units_bireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -837px no-repeat; +} + +.award31x31.train_units_calydonian_boar_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -837px no-repeat; +} + +.award31x31.train_units_calydonian_boar_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -837px no-repeat; +} + +.award31x31.train_units_calydonian_boar_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -837px no-repeat; +} + +.award31x31.train_units_calydonian_boar_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -837px no-repeat; +} + +.award31x31.train_units_catapult_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px 0 no-repeat; +} + +.award31x31.train_units_catapult_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -31px no-repeat; +} + +.award31x31.train_units_catapult_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -62px no-repeat; +} + +.award31x31.train_units_catapult_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -93px no-repeat; +} + +.award31x31.train_units_centaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -124px no-repeat; +} + +.award31x31.train_units_centaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -155px no-repeat; +} + +.award31x31.train_units_centaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -186px no-repeat; +} + +.award31x31.train_units_centaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -217px no-repeat; +} + +.award31x31.train_units_cerberus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -248px no-repeat; +} + +.award31x31.train_units_cerberus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -279px no-repeat; +} + +.award31x31.train_units_cerberus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -310px no-repeat; +} + +.award31x31.train_units_cerberus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -341px no-repeat; +} + +.award31x31.train_units_chariot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -372px no-repeat; +} + +.award31x31.train_units_chariot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -403px no-repeat; +} + +.award31x31.train_units_chariot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -434px no-repeat; +} + +.award31x31.train_units_chariot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -465px no-repeat; +} + +.award31x31.train_units_demolition_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -496px no-repeat; +} + +.award31x31.train_units_demolition_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -527px no-repeat; +} + +.award31x31.train_units_demolition_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -558px no-repeat; +} + +.award31x31.train_units_demolition_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -589px no-repeat; +} + +.award31x31.train_units_fury_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -620px no-repeat; +} + +.award31x31.train_units_fury_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -651px no-repeat; +} + +.award31x31.train_units_fury_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -682px no-repeat; +} + +.award31x31.train_units_fury_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -713px no-repeat; +} + +.award31x31.train_units_godsent_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -744px no-repeat; +} + +.award31x31.train_units_godsent_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -775px no-repeat; +} + +.award31x31.train_units_godsent_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -806px no-repeat; +} + +.award31x31.train_units_godsent_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -837px no-repeat; +} + +.award31x31.train_units_griffin_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -868px no-repeat; +} + +.award31x31.train_units_griffin_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -868px no-repeat; +} + +.award31x31.train_units_griffin_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -868px no-repeat; +} + +.award31x31.train_units_griffin_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -868px no-repeat; +} + +.award31x31.train_units_harpy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -868px no-repeat; +} + +.award31x31.train_units_harpy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -868px no-repeat; +} + +.award31x31.train_units_harpy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -868px no-repeat; +} + +.award31x31.train_units_harpy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -868px no-repeat; +} + +.award31x31.train_units_hoplite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -868px no-repeat; +} + +.award31x31.train_units_hoplite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -868px no-repeat; +} + +.award31x31.train_units_hoplite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -868px no-repeat; +} + +.award31x31.train_units_hoplite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -868px no-repeat; +} + +.award31x31.train_units_ladon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -868px no-repeat; +} + +.award31x31.train_units_ladon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -868px no-repeat; +} + +.award31x31.train_units_ladon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -868px no-repeat; +} + +.award31x31.train_units_ladon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -868px no-repeat; +} + +.award31x31.train_units_manticore_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -868px no-repeat; +} + +.award31x31.train_units_manticore_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -868px no-repeat; +} + +.award31x31.train_units_manticore_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -868px no-repeat; +} + +.award31x31.train_units_manticore_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -868px no-repeat; +} + +.award31x31.train_units_medusa_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -868px no-repeat; +} + +.award31x31.train_units_medusa_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -868px no-repeat; +} + +.award31x31.train_units_medusa_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -868px no-repeat; +} + +.award31x31.train_units_medusa_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -868px no-repeat; +} + +.award31x31.train_units_minotaur_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -868px no-repeat; +} + +.award31x31.train_units_minotaur_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -868px no-repeat; +} + +.award31x31.train_units_minotaur_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -868px no-repeat; +} + +.award31x31.train_units_minotaur_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -868px no-repeat; +} + +.award31x31.train_units_pegasus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -868px no-repeat; +} + +.award31x31.train_units_pegasus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px 0 no-repeat; +} + +.award31x31.train_units_pegasus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -31px no-repeat; +} + +.award31x31.train_units_pegasus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -62px no-repeat; +} + +.award31x31.train_units_rider_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -93px no-repeat; +} + +.award31x31.train_units_rider_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -124px no-repeat; +} + +.award31x31.train_units_rider_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -155px no-repeat; +} + +.award31x31.train_units_rider_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -186px no-repeat; +} + +.award31x31.train_units_satyr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -217px no-repeat; +} + +.award31x31.train_units_satyr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -248px no-repeat; +} + +.award31x31.train_units_satyr_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -279px no-repeat; +} + +.award31x31.train_units_satyr_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -310px no-repeat; +} + +.award31x31.train_units_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -341px no-repeat; +} + +.award31x31.train_units_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -372px no-repeat; +} + +.award31x31.train_units_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -403px no-repeat; +} + +.award31x31.train_units_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -434px no-repeat; +} + +.award31x31.train_units_siren_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -465px no-repeat; +} + +.award31x31.train_units_siren_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -496px no-repeat; +} + +.award31x31.train_units_siren_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -527px no-repeat; +} + +.award31x31.train_units_siren_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -558px no-repeat; +} + +.award31x31.train_units_slinger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -589px no-repeat; +} + +.award31x31.train_units_slinger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -620px no-repeat; +} + +.award31x31.train_units_slinger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -651px no-repeat; +} + +.award31x31.train_units_slinger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -682px no-repeat; +} + +.award31x31.train_units_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -713px no-repeat; +} + +.award31x31.train_units_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -744px no-repeat; +} + +.award31x31.train_units_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -775px no-repeat; +} + +.award31x31.train_units_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -806px no-repeat; +} + +.award31x31.train_units_spartoi_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -837px no-repeat; +} + +.award31x31.train_units_spartoi_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -868px no-repeat; +} + +.award31x31.train_units_spartoi_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) 0 -899px no-repeat; +} + +.award31x31.train_units_spartoi_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -31px -899px no-repeat; +} + +.award31x31.train_units_sword_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -62px -899px no-repeat; +} + +.award31x31.train_units_sword_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -93px -899px no-repeat; +} + +.award31x31.train_units_sword_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -124px -899px no-repeat; +} + +.award31x31.train_units_sword_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -155px -899px no-repeat; +} + +.award31x31.train_units_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -186px -899px no-repeat; +} + +.award31x31.train_units_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -217px -899px no-repeat; +} + +.award31x31.train_units_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -248px -899px no-repeat; +} + +.award31x31.train_units_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -279px -899px no-repeat; +} + +.award31x31.train_units_zyklop_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -310px -899px no-repeat; +} + +.award31x31.train_units_zyklop_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -341px -899px no-repeat; +} + +.award31x31.train_units_zyklop_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -372px -899px no-repeat; +} + +.award31x31.train_units_zyklop_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -403px -899px no-repeat; +} + +.award31x31.units_claimed_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -434px -899px no-repeat; +} + +.award31x31.units_claimed_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -465px -899px no-repeat; +} + +.award31x31.units_claimed_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -496px -899px no-repeat; +} + +.award31x31.units_claimed_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -527px -899px no-repeat; +} + +.award31x31.units_killed_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -558px -899px no-repeat; +} + +.award31x31.units_killed_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -589px -899px no-repeat; +} + +.award31x31.units_killed_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -620px -899px no-repeat; +} + +.award31x31.units_killed_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -651px -899px no-repeat; +} + +.award31x31.units_lost_during_farm_attack_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -682px -899px no-repeat; +} + +.award31x31.units_lost_during_farm_attack_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -713px -899px no-repeat; +} + +.award31x31.units_lost_during_farm_attack_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -744px -899px no-repeat; +} + +.award31x31.units_lost_during_farm_attack_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -775px -899px no-repeat; +} + +.award31x31.units_lost_during_support_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -806px -899px no-repeat; +} + +.award31x31.units_lost_during_support_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -837px -899px no-repeat; +} + +.award31x31.units_lost_during_support_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -868px -899px no-repeat; +} + +.award31x31.units_lost_during_support_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -899px -899px no-repeat; +} + +.award31x31.units_lost_without_fight_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px 0 no-repeat; +} + +.award31x31.units_lost_without_fight_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -31px no-repeat; +} + +.award31x31.units_lost_without_fight_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -62px no-repeat; +} + +.award31x31.units_lost_without_fight_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -93px no-repeat; +} + +.award31x31.various_earth_shaker_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -124px no-repeat; +} + +.award31x31.various_earth_shaker_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -155px no-repeat; +} + +.award31x31.various_earth_shaker_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -186px no-repeat; +} + +.award31x31.various_earth_shaker_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -217px no-repeat; +} + +.award31x31.various_great_fleet_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -248px no-repeat; +} + +.award31x31.various_great_fleet_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -279px no-repeat; +} + +.award31x31.various_great_fleet_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -310px no-repeat; +} + +.award31x31.various_great_fleet_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -341px no-repeat; +} + +.award31x31.various_great_mobilization_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -372px no-repeat; +} + +.award31x31.various_great_mobilization_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -403px no-repeat; +} + +.award31x31.various_great_mobilization_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -434px no-repeat; +} + +.award31x31.various_great_mobilization_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -465px no-repeat; +} + +.award31x31.various_guptas_god_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -496px no-repeat; +} + +.award31x31.various_guptas_god_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -527px no-repeat; +} + +.award31x31.various_guptas_god_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -558px no-repeat; +} + +.award31x31.various_guptas_god_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -589px no-repeat; +} + +.award31x31.world_ranking_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -620px no-repeat; +} + +.award31x31.world_ranking_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -651px no-repeat; +} + +.award31x31.world_ranking_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -682px no-repeat; +} + +.award31x31.world_ranking_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_with_levels_31x31_818e7ca.png) -930px -713px no-repeat; +} + +.award76x76.advent_calendar_complete { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat 0 0; +} + +.award76x76.all_the_crystals { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -76px 0; +} + +.award76x76.fortunate_ruler_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -152px 0; +} + +.award76x76.fortunate_ruler_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -228px 0; +} + +.award76x76.fortunate_ruler_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -304px 0; +} + +.award76x76.fortunate_ruler_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -380px 0; +} + +.award76x76.lucky_winter_fun_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -456px 0; +} + +.award76x76.lucky_winter_fun_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -532px 0; +} + +.award76x76.lucky_winter_fun_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -608px 0; +} + +.award76x76.lucky_winter_fun_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -684px 0; +} + +.award76x76.tyches_favourite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -760px 0; +} + +.award76x76.tyches_favourite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -836px 0; +} + +.award76x76.tyches_favourite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -912px 0; +} + +.award76x76.tyches_favourite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_76x76_2.100.png) no-repeat -988px 0; +} + +.award31x31.advent_calendar_complete { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat 0 0; +} + +.award31x31.all_the_crystals { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -31px 0; +} + +.award31x31.fortunate_ruler_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -62px 0; +} + +.award31x31.fortunate_ruler_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -93px 0; +} + +.award31x31.fortunate_ruler_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -124px 0; +} + +.award31x31.fortunate_ruler_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -155px 0; +} + +.award31x31.lucky_winter_fun_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -186px 0; +} + +.award31x31.lucky_winter_fun_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -217px 0; +} + +.award31x31.lucky_winter_fun_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -248px 0; +} + +.award31x31.lucky_winter_fun_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -279px 0; +} + +.award31x31.tyches_favourite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -310px 0; +} + +.award31x31.tyches_favourite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -341px 0; +} + +.award31x31.tyches_favourite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -372px 0; +} + +.award31x31.tyches_favourite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_31x31_2.100.png) no-repeat -403px 0; +} + +.award76x76.christmas_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_christmas_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.christmas_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_christmas_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.christmas_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_christmas_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.christmas_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_christmas_76x76_2.72.png) no-repeat -228px 0; +} + +.award31x31.christmas_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_christmas_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.christmas_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_christmas_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.christmas_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_christmas_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.christmas_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_christmas_31x31_2.72.png) no-repeat -93px 0; +} + +.award76x76.colourful_easter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat 0 0; +} + +.award76x76.colourful_easter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -76px 0; +} + +.award76x76.colourful_easter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -152px 0; +} + +.award76x76.colourful_easter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -228px 0; +} + +.award76x76.easter2015_created_eggs_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -304px 0; +} + +.award76x76.easter2015_created_eggs_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -380px 0; +} + +.award76x76.easter2015_created_eggs_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -456px 0; +} + +.award76x76.easter2015_created_eggs_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -532px 0; +} + +.award76x76.easter2015_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -608px 0; +} + +.award76x76.easter2015_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -684px 0; +} + +.award76x76.easter2015_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -760px 0; +} + +.award76x76.easter2015_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -836px 0; +} + +.award76x76.easter2015_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -912px 0; +} + +.award76x76.easter2015_revealed_recipes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -988px 0; +} + +.award76x76.easter2015_revealed_recipes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1064px 0; +} + +.award76x76.easter2015_revealed_recipes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1140px 0; +} + +.award76x76.easter2015_revealed_recipes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1216px 0; +} + +.award76x76.easter_eggs_collected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1292px 0; +} + +.award76x76.friend_of_the_hen_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1368px 0; +} + +.award76x76.friend_of_the_hen_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1444px 0; +} + +.award76x76.friend_of_the_hen_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1520px 0; +} + +.award76x76.friend_of_the_hen_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1596px 0; +} + +.award76x76.hen_feeded_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1672px 0; +} + +.award76x76.hen_feeded_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1748px 0; +} + +.award76x76.hen_feeded_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1824px 0; +} + +.award76x76.hen_feeded_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_76x76_2.83.png) no-repeat -1900px 0; +} + +.award31x31.colourful_easter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat 0 0; +} + +.award31x31.colourful_easter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -31px 0; +} + +.award31x31.colourful_easter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -62px 0; +} + +.award31x31.colourful_easter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -93px 0; +} + +.award31x31.easter2015_created_eggs_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -124px 0; +} + +.award31x31.easter2015_created_eggs_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -155px 0; +} + +.award31x31.easter2015_created_eggs_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -186px 0; +} + +.award31x31.easter2015_created_eggs_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -217px 0; +} + +.award31x31.easter2015_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -248px 0; +} + +.award31x31.easter2015_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -279px 0; +} + +.award31x31.easter2015_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -310px 0; +} + +.award31x31.easter2015_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -341px 0; +} + +.award31x31.easter2015_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -372px 0; +} + +.award31x31.easter2015_revealed_recipes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -403px 0; +} + +.award31x31.easter2015_revealed_recipes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -434px 0; +} + +.award31x31.easter2015_revealed_recipes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -465px 0; +} + +.award31x31.easter2015_revealed_recipes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -496px 0; +} + +.award31x31.easter_eggs_collected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -527px 0; +} + +.award31x31.friend_of_the_hen_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -558px 0; +} + +.award31x31.friend_of_the_hen_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -589px 0; +} + +.award31x31.friend_of_the_hen_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -620px 0; +} + +.award31x31.friend_of_the_hen_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -651px 0; +} + +.award31x31.hen_feeded_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -682px 0; +} + +.award31x31.hen_feeded_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -713px 0; +} + +.award31x31.hen_feeded_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -744px 0; +} + +.award31x31.hen_feeded_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_31x31_2.83.png) no-repeat -775px 0; +} + +.award76x76.grepolympia_skilled_archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.grepolympia_skilled_archer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1520px 0; +} + +.award76x76.grepolympia_skilled_archer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.grepolympia_skilled_archer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -228px 0; +} + +.award76x76.grepolympia_skilled_archer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -304px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -380px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -456px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -532px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -608px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -684px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -760px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -836px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -912px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -988px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1064px 0; +} + +.award76x76.grepolympia_skilled_javeliner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1140px 0; +} + +.award76x76.grepolympia_skilled_javeliner_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1216px 0; +} + +.award76x76.grepolympia_skilled_javeliner_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1292px 0; +} + +.award76x76.grepolympia_skilled_javeliner_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1368px 0; +} + +.award76x76.grepolympia_skilled_javeliner_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1444px 0; +} + +.award76x76.grepolympia_top_archery { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.grepolympia_top_archery_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1596px 0; +} + +.award76x76.grepolympia_top_archery_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1672px 0; +} + +.award76x76.grepolympia_top_archery_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1748px 0; +} + +.award76x76.grepolympia_top_archery_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1824px 0; +} + +.award76x76.grepolympia_top_chariot_race { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1900px 0; +} + +.award76x76.grepolympia_top_chariot_race_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -1976px 0; +} + +.award76x76.grepolympia_top_chariot_race_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2052px 0; +} + +.award76x76.grepolympia_top_chariot_race_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2128px 0; +} + +.award76x76.grepolympia_top_chariot_race_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2204px 0; +} + +.award76x76.grepolympia_top_hoplite_race { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2280px 0; +} + +.award76x76.grepolympia_top_hoplite_race_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2356px 0; +} + +.award76x76.grepolympia_top_hoplite_race_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2432px 0; +} + +.award76x76.grepolympia_top_hoplite_race_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2508px 0; +} + +.award76x76.grepolympia_top_hoplite_race_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2584px 0; +} + +.award76x76.grepolympia_top_javelin_throwing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2660px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2736px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2812px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2888px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_76x76_2.72.png) no-repeat -2964px 0; +} + +.award31x31.grepolympia_skilled_archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.grepolympia_skilled_archer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -620px 0; +} + +.award31x31.grepolympia_skilled_archer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.grepolympia_skilled_archer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -93px 0; +} + +.award31x31.grepolympia_skilled_archer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -124px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -155px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -186px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -217px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -248px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -279px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -310px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -341px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -372px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -403px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -434px 0; +} + +.award31x31.grepolympia_skilled_javeliner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -465px 0; +} + +.award31x31.grepolympia_skilled_javeliner_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -496px 0; +} + +.award31x31.grepolympia_skilled_javeliner_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -527px 0; +} + +.award31x31.grepolympia_skilled_javeliner_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -558px 0; +} + +.award31x31.grepolympia_skilled_javeliner_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -589px 0; +} + +.award31x31.grepolympia_top_archery { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.grepolympia_top_archery_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -651px 0; +} + +.award31x31.grepolympia_top_archery_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -682px 0; +} + +.award31x31.grepolympia_top_archery_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -713px 0; +} + +.award31x31.grepolympia_top_archery_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -744px 0; +} + +.award31x31.grepolympia_top_chariot_race { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -775px 0; +} + +.award31x31.grepolympia_top_chariot_race_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -806px 0; +} + +.award31x31.grepolympia_top_chariot_race_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -837px 0; +} + +.award31x31.grepolympia_top_chariot_race_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -868px 0; +} + +.award31x31.grepolympia_top_chariot_race_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -899px 0; +} + +.award31x31.grepolympia_top_hoplite_race { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -930px 0; +} + +.award31x31.grepolympia_top_hoplite_race_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -961px 0; +} + +.award31x31.grepolympia_top_hoplite_race_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -992px 0; +} + +.award31x31.grepolympia_top_hoplite_race_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -1023px 0; +} + +.award31x31.grepolympia_top_hoplite_race_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -1054px 0; +} + +.award31x31.grepolympia_top_javelin_throwing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -1085px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -1116px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -1147px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -1178px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2012_31x31_2.72.png) no-repeat -1209px 0; +} + +.award76x76.grepolympia_skilled_archer_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.grepolympia_skilled_archer_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1520px 0; +} + +.award76x76.grepolympia_skilled_archer_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.grepolympia_skilled_archer_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -228px 0; +} + +.award76x76.grepolympia_skilled_archer_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -304px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -380px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -456px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -532px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -608px 0; +} + +.award76x76.grepolympia_skilled_chariot_racer_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -684px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -760px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -836px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -912px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -988px 0; +} + +.award76x76.grepolympia_skilled_hoplite_racer_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1064px 0; +} + +.award76x76.grepolympia_skilled_javeliner_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1140px 0; +} + +.award76x76.grepolympia_skilled_javeliner_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1216px 0; +} + +.award76x76.grepolympia_skilled_javeliner_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1292px 0; +} + +.award76x76.grepolympia_skilled_javeliner_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1368px 0; +} + +.award76x76.grepolympia_skilled_javeliner_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1444px 0; +} + +.award76x76.grepolympia_top_archery_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.grepolympia_top_archery_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1596px 0; +} + +.award76x76.grepolympia_top_archery_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1672px 0; +} + +.award76x76.grepolympia_top_archery_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1748px 0; +} + +.award76x76.grepolympia_top_archery_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1824px 0; +} + +.award76x76.grepolympia_top_chariot_race_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1900px 0; +} + +.award76x76.grepolympia_top_chariot_race_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -1976px 0; +} + +.award76x76.grepolympia_top_chariot_race_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2052px 0; +} + +.award76x76.grepolympia_top_chariot_race_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2128px 0; +} + +.award76x76.grepolympia_top_chariot_race_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2204px 0; +} + +.award76x76.grepolympia_top_hoplite_race_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2280px 0; +} + +.award76x76.grepolympia_top_hoplite_race_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2356px 0; +} + +.award76x76.grepolympia_top_hoplite_race_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2432px 0; +} + +.award76x76.grepolympia_top_hoplite_race_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2508px 0; +} + +.award76x76.grepolympia_top_hoplite_race_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2584px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2660px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2736px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2812px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2888px 0; +} + +.award76x76.grepolympia_top_javelin_throwing_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_76x76_2.72.png) no-repeat -2964px 0; +} + +.award31x31.grepolympia_skilled_archer_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.grepolympia_skilled_archer_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -620px 0; +} + +.award31x31.grepolympia_skilled_archer_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.grepolympia_skilled_archer_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -93px 0; +} + +.award31x31.grepolympia_skilled_archer_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -124px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -155px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -186px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -217px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -248px 0; +} + +.award31x31.grepolympia_skilled_chariot_racer_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -279px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -310px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -341px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -372px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -403px 0; +} + +.award31x31.grepolympia_skilled_hoplite_racer_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -434px 0; +} + +.award31x31.grepolympia_skilled_javeliner_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -465px 0; +} + +.award31x31.grepolympia_skilled_javeliner_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -496px 0; +} + +.award31x31.grepolympia_skilled_javeliner_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -527px 0; +} + +.award31x31.grepolympia_skilled_javeliner_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -558px 0; +} + +.award31x31.grepolympia_skilled_javeliner_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -589px 0; +} + +.award31x31.grepolympia_top_archery_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.grepolympia_top_archery_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -651px 0; +} + +.award31x31.grepolympia_top_archery_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -682px 0; +} + +.award31x31.grepolympia_top_archery_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -713px 0; +} + +.award31x31.grepolympia_top_archery_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -744px 0; +} + +.award31x31.grepolympia_top_chariot_race_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -775px 0; +} + +.award31x31.grepolympia_top_chariot_race_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -806px 0; +} + +.award31x31.grepolympia_top_chariot_race_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -837px 0; +} + +.award31x31.grepolympia_top_chariot_race_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -868px 0; +} + +.award31x31.grepolympia_top_chariot_race_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -899px 0; +} + +.award31x31.grepolympia_top_hoplite_race_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -930px 0; +} + +.award31x31.grepolympia_top_hoplite_race_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -961px 0; +} + +.award31x31.grepolympia_top_hoplite_race_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -992px 0; +} + +.award31x31.grepolympia_top_hoplite_race_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -1023px 0; +} + +.award31x31.grepolympia_top_hoplite_race_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -1054px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_2013 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -1085px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_2013_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -1116px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_2013_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -1147px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_2013_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -1178px 0; +} + +.award31x31.grepolympia_top_javelin_throwing_2013_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympia2013_31x31_2.72.png) no-repeat -1209px 0; +} + +.award76x76.helloween_login { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.helloween_login_2012 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.helloween_pumpkin_collected_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.helloween_pumpkin_collected_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_76x76_2.72.png) no-repeat -228px 0; +} + +.award76x76.helloween_pumpkin_collected_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_76x76_2.72.png) no-repeat -304px 0; +} + +.award76x76.helloween_pumpkin_collected_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_76x76_2.72.png) no-repeat -380px 0; +} + +.award76x76.helloween_pumpkin_speedy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_76x76_2.72.png) no-repeat -456px 0; +} + +.award31x31.helloween_login { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.helloween_login_2012 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.helloween_pumpkin_collected_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.helloween_pumpkin_collected_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_31x31_2.72.png) no-repeat -93px 0; +} + +.award31x31.helloween_pumpkin_collected_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_31x31_2.72.png) no-repeat -124px 0; +} + +.award31x31.helloween_pumpkin_collected_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_31x31_2.72.png) no-repeat -155px 0; +} + +.award31x31.helloween_pumpkin_speedy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2012_31x31_2.72.png) no-repeat -186px 0; +} + +.award76x76.alchemist_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.alchemist_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.alchemist_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.alchemist_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_76x76_2.72.png) no-repeat -228px 0; +} + +.award76x76.philosopher_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_76x76_2.72.png) no-repeat -304px 0; +} + +.award76x76.philosopher_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_76x76_2.72.png) no-repeat -380px 0; +} + +.award76x76.philosopher_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_76x76_2.72.png) no-repeat -456px 0; +} + +.award76x76.philosopher_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_76x76_2.72.png) no-repeat -532px 0; +} + +.award31x31.alchemist_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.alchemist_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.alchemist_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.alchemist_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_31x31_2.72.png) no-repeat -93px 0; +} + +.award31x31.philosopher_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_31x31_2.72.png) no-repeat -124px 0; +} + +.award31x31.philosopher_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_31x31_2.72.png) no-repeat -155px 0; +} + +.award31x31.philosopher_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_31x31_2.72.png) no-repeat -186px 0; +} + +.award31x31.philosopher_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_helloween2013_31x31_2.72.png) no-repeat -217px 0; +} + +.award76x76.master_of_elements_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.master_of_elements_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.master_of_elements_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.master_of_elements_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_76x76_2.72.png) no-repeat -228px 0; +} + +.award76x76.master_of_experiments_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_76x76_2.72.png) no-repeat -304px 0; +} + +.award76x76.master_of_experiments_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_76x76_2.72.png) no-repeat -380px 0; +} + +.award76x76.master_of_experiments_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_76x76_2.72.png) no-repeat -456px 0; +} + +.award76x76.master_of_experiments_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_76x76_2.72.png) no-repeat -532px 0; +} + +.award31x31.master_of_elements_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.master_of_elements_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.master_of_elements_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.master_of_elements_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_31x31_2.72.png) no-repeat -93px 0; +} + +.award31x31.master_of_experiments_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_31x31_2.72.png) no-repeat -124px 0; +} + +.award31x31.master_of_experiments_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_31x31_2.72.png) no-repeat -155px 0; +} + +.award31x31.master_of_experiments_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_31x31_2.72.png) no-repeat -186px 0; +} + +.award31x31.master_of_experiments_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2014_31x31_2.72.png) no-repeat -217px 0; +} + +.award76x76.hercules_leader_of_mercs_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.hercules_leader_of_mercs_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -608px 0; +} + +.award76x76.hercules_leader_of_mercs_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.hercules_leader_of_mercs_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -228px 0; +} + +.award76x76.hercules_thracian_extinction_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -304px 0; +} + +.award76x76.hercules_thracian_extinction_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -380px 0; +} + +.award76x76.hercules_thracian_extinction_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -456px 0; +} + +.award76x76.hercules_thracian_extinction_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -532px 0; +} + +.award76x76.hercules_thracian_oppression_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.hercules_thracian_oppression_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -684px 0; +} + +.award76x76.hercules_thracian_oppression_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -760px 0; +} + +.award76x76.hercules_thracian_oppression_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -836px 0; +} + +.award76x76.hercules_thracian_unity_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -912px 0; +} + +.award76x76.hercules_thracian_unity_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -988px 0; +} + +.award76x76.hercules_thracian_unity_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -1064px 0; +} + +.award76x76.hercules_thracian_unity_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_76x76_2.72.png) no-repeat -1140px 0; +} + +.award31x31.hercules_leader_of_mercs_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.hercules_leader_of_mercs_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -248px 0; +} + +.award31x31.hercules_leader_of_mercs_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.hercules_leader_of_mercs_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -93px 0; +} + +.award31x31.hercules_thracian_extinction_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -124px 0; +} + +.award31x31.hercules_thracian_extinction_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -155px 0; +} + +.award31x31.hercules_thracian_extinction_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -186px 0; +} + +.award31x31.hercules_thracian_extinction_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -217px 0; +} + +.award31x31.hercules_thracian_oppression_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.hercules_thracian_oppression_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -279px 0; +} + +.award31x31.hercules_thracian_oppression_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -310px 0; +} + +.award31x31.hercules_thracian_oppression_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -341px 0; +} + +.award31x31.hercules_thracian_unity_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -372px 0; +} + +.award31x31.hercules_thracian_unity_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -403px 0; +} + +.award31x31.hercules_thracian_unity_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -434px 0; +} + +.award31x31.hercules_thracian_unity_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hercules_31x31_2.72.png) no-repeat -465px 0; +} + +.award76x76.oktoberfest_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_oktoberfest_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.oktoberfest_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_oktoberfest_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.oktoberfest_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_oktoberfest_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.oktoberfest_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_oktoberfest_76x76_2.72.png) no-repeat -228px 0; +} + +.award31x31.oktoberfest_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_oktoberfest_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.oktoberfest_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_oktoberfest_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.oktoberfest_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_oktoberfest_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.oktoberfest_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_oktoberfest_31x31_2.72.png) no-repeat -93px 0; +} + +.award76x76.divine_forge_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_summer2014_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.divine_forge_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_summer2014_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.divine_forge_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_summer2014_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.divine_forge_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_summer2014_76x76_2.72.png) no-repeat -228px 0; +} + +.award31x31.divine_forge_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_summer2014_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.divine_forge_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_summer2014_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.divine_forge_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_summer2014_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.divine_forge_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_summer2014_31x31_2.72.png) no-repeat -93px 0; +} + +.award76x76.foe_of_artemisi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_76x76_2.72.png) no-repeat 0 0; +} + +.award76x76.persian_conqueror_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_76x76_2.72.png) no-repeat -76px 0; +} + +.award76x76.persian_conqueror_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_76x76_2.72.png) no-repeat -152px 0; +} + +.award76x76.persian_conqueror_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_76x76_2.72.png) no-repeat -228px 0; +} + +.award76x76.persian_conqueror_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_76x76_2.72.png) no-repeat -304px 0; +} + +.award31x31.foe_of_artemisi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_31x31_2.72.png) no-repeat 0 0; +} + +.award31x31.persian_conqueror_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_31x31_2.72.png) no-repeat -31px 0; +} + +.award31x31.persian_conqueror_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_31x31_2.72.png) no-repeat -62px 0; +} + +.award31x31.persian_conqueror_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_31x31_2.72.png) no-repeat -93px 0; +} + +.award31x31.persian_conqueror_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_fifthbirthday_31x31_2.72.png) no-repeat -124px 0; +} + +.award31x31.troy_conqueror_of_troy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat 0 0; +} + +.award31x31.troy_conqueror_of_troy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -31px 0; +} + +.award31x31.troy_conqueror_of_troy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -62px 0; +} + +.award31x31.troy_conqueror_of_troy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -93px 0; +} + +.award31x31.troy_leader_of_trojan_mercenaries_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -124px 0; +} + +.award31x31.troy_leader_of_trojan_mercenaries_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -155px 0; +} + +.award31x31.troy_leader_of_trojan_mercenaries_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -186px 0; +} + +.award31x31.troy_leader_of_trojan_mercenaries_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -217px 0; +} + +.award31x31.troy_trojan_massacre_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -248px 0; +} + +.award31x31.troy_trojan_massacre_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -279px 0; +} + +.award31x31.troy_trojan_massacre_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -310px 0; +} + +.award31x31.troy_trojan_massacre_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_31x31_2.79.png) no-repeat -341px 0; +} + +.award76x76.troy_conqueror_of_troy_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat 0 0; +} + +.award76x76.troy_conqueror_of_troy_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -76px 0; +} + +.award76x76.troy_conqueror_of_troy_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -152px 0; +} + +.award76x76.troy_conqueror_of_troy_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -228px 0; +} + +.award76x76.troy_leader_of_trojan_mercenaries_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -304px 0; +} + +.award76x76.troy_leader_of_trojan_mercenaries_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -380px 0; +} + +.award76x76.troy_leader_of_trojan_mercenaries_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -456px 0; +} + +.award76x76.troy_leader_of_trojan_mercenaries_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -532px 0; +} + +.award76x76.troy_trojan_massacre_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -608px 0; +} + +.award76x76.troy_trojan_massacre_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -684px 0; +} + +.award76x76.troy_trojan_massacre_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -760px 0; +} + +.award76x76.troy_trojan_massacre_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_troy_76x76_2.79.png) no-repeat -836px 0; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.rome2015_captured_banners_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -31px 0 no-repeat; +} + +.award31x31.rome2015_captured_banners_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -62px -62px no-repeat; +} + +.award31x31.rome2015_captured_banners_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) 0 -31px no-repeat; +} + +.award31x31.rome2015_captured_banners_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -31px -31px no-repeat; +} + +.award31x31.rome2015_commander_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -62px 0 no-repeat; +} + +.award31x31.rome2015_commander_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -62px -31px no-repeat; +} + +.award31x31.rome2015_commander_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) 0 -62px no-repeat; +} + +.award31x31.rome2015_commander_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -31px -62px no-repeat; +} + +.award31x31.rome2015_crusher_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) 0 0 no-repeat; +} + +.award31x31.rome2015_crusher_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -93px 0 no-repeat; +} + +.award31x31.rome2015_crusher_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -93px -31px no-repeat; +} + +.award31x31.rome2015_crusher_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -93px -62px no-repeat; +} + +.award31x31.rome2015_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) 0 -93px no-repeat; +} + +.award31x31.rome2015_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -31px -93px no-repeat; +} + +.award31x31.rome2015_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -62px -93px no-repeat; +} + +.award31x31.rome2015_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -93px -93px no-repeat; +} + +.award31x31.rome2015_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_31x31_d619aa2.png) -124px 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.rome2015_captured_banners_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -76px 0 no-repeat; +} + +.award76x76.rome2015_captured_banners_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -152px -152px no-repeat; +} + +.award76x76.rome2015_captured_banners_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) 0 -76px no-repeat; +} + +.award76x76.rome2015_captured_banners_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -76px -76px no-repeat; +} + +.award76x76.rome2015_commander_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -152px 0 no-repeat; +} + +.award76x76.rome2015_commander_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -152px -76px no-repeat; +} + +.award76x76.rome2015_commander_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) 0 -152px no-repeat; +} + +.award76x76.rome2015_commander_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -76px -152px no-repeat; +} + +.award76x76.rome2015_crusher_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) 0 0 no-repeat; +} + +.award76x76.rome2015_crusher_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -228px 0 no-repeat; +} + +.award76x76.rome2015_crusher_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -228px -76px no-repeat; +} + +.award76x76.rome2015_crusher_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -228px -152px no-repeat; +} + +.award76x76.rome2015_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) 0 -228px no-repeat; +} + +.award76x76.rome2015_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -76px -228px no-repeat; +} + +.award76x76.rome2015_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -152px -228px no-repeat; +} + +.award76x76.rome2015_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -228px -228px no-repeat; +} + +.award76x76.rome2015_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rome_76x76_fe57015.png) -304px 0 no-repeat; +} + +.award31x31.thessalonikes_sweetheart_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2015_31x31.png) no-repeat 0 0; +} + +.award31x31.thessalonikes_sweetheart_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2015_31x31.png) no-repeat -31px 0; +} + +.award31x31.thessalonikes_sweetheart_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2015_31x31.png) no-repeat -62px 0; +} + +.award31x31.thessalonikes_sweetheart_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2015_31x31.png) no-repeat -93px 0; +} + +.award76x76.thessalonikes_sweetheart_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2015_76x76.png) no-repeat 0 0; +} + +.award76x76.thessalonikes_sweetheart_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2015_76x76.png) no-repeat -76px 0; +} + +.award76x76.thessalonikes_sweetheart_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2015_76x76.png) no-repeat -152px 0; +} + +.award76x76.thessalonikes_sweetheart_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2015_76x76.png) no-repeat -228px 0; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.thessalonikes_sweetheart_2016_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2016_31x31_8706615.png) 0 0 no-repeat; +} + +.award31x31.thessalonikes_sweetheart_2016_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2016_31x31_8706615.png) -31px 0 no-repeat; +} + +.award31x31.thessalonikes_sweetheart_2016_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2016_31x31_8706615.png) 0 -31px no-repeat; +} + +.award31x31.thessalonikes_sweetheart_2016_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2016_31x31_8706615.png) -31px -31px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.thessalonikes_sweetheart_2016_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2016_76x76_c5f5131.png) 0 0 no-repeat; +} + +.award76x76.thessalonikes_sweetheart_2016_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2016_76x76_c5f5131.png) -76px 0 no-repeat; +} + +.award76x76.thessalonikes_sweetheart_2016_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2016_76x76_c5f5131.png) 0 -76px no-repeat; +} + +.award76x76.thessalonikes_sweetheart_2016_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2016_76x76_c5f5131.png) -76px -76px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.thessalonikes_sweetheart_2017_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2017_31x31_5af5752.png) 0 0 no-repeat; +} + +.award31x31.thessalonikes_sweetheart_2017_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2017_31x31_5af5752.png) -31px 0 no-repeat; +} + +.award31x31.thessalonikes_sweetheart_2017_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2017_31x31_5af5752.png) 0 -31px no-repeat; +} + +.award31x31.thessalonikes_sweetheart_2017_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2017_31x31_5af5752.png) -31px -31px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.thessalonikes_sweetheart_2017_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2017_76x76_52506a0.png) 0 0 no-repeat; +} + +.award76x76.thessalonikes_sweetheart_2017_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2017_76x76_52506a0.png) -76px 0 no-repeat; +} + +.award76x76.thessalonikes_sweetheart_2017_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2017_76x76_52506a0.png) 0 -76px no-repeat; +} + +.award76x76.thessalonikes_sweetheart_2017_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday2017_76x76_52506a0.png) -76px -76px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.thessalonikes_sweetheart_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday_reoccurring_31x31_8ab451d.png) 0 0 no-repeat; +} + +.award31x31.thessalonikes_sweetheart_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday_reoccurring_31x31_8ab451d.png) -31px 0 no-repeat; +} + +.award31x31.thessalonikes_sweetheart_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday_reoccurring_31x31_8ab451d.png) 0 -31px no-repeat; +} + +.award31x31.thessalonikes_sweetheart_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday_reoccurring_31x31_8ab451d.png) -31px -31px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.thessalonikes_sweetheart_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday_reoccurring_76x76_5beab20.png) 0 0 no-repeat; +} + +.award76x76.thessalonikes_sweetheart_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday_reoccurring_76x76_5beab20.png) -76px 0 no-repeat; +} + +.award76x76.thessalonikes_sweetheart_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday_reoccurring_76x76_5beab20.png) 0 -76px no-repeat; +} + +.award76x76.thessalonikes_sweetheart_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_valentinesday_reoccurring_76x76_5beab20.png) -76px -76px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.assassin_cavalry_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -31px 0; +} + +.award31x31.assassin_cavalry_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -248px 0; +} + +.award31x31.assassin_cavalry_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -62px 0; +} + +.award31x31.assassin_cavalry_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -93px 0; +} + +.award31x31.assassin_complete_cavalry_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -124px 0; +} + +.award31x31.assassin_complete_legionary_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -155px 0; +} + +.award31x31.assassin_complete_sapper_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -186px 0; +} + +.award31x31.assassin_first_completed_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -217px 0; +} + +.award31x31.assassin_legionary_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: 0 0; +} + +.award31x31.assassin_legionary_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -279px 0; +} + +.award31x31.assassin_legionary_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -310px 0; +} + +.award31x31.assassin_legionary_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -341px 0; +} + +.award31x31.assassin_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -372px 0; +} + +.award31x31.assassin_sapper_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -403px 0; +} + +.award31x31.assassin_sapper_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -434px 0; +} + +.award31x31.assassin_sapper_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -465px 0; +} + +.award31x31.assassin_sapper_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_31x31_2.91.png); + background-position: -496px 0; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.assassin_cavalry_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -76px 0; +} + +.award76x76.assassin_cavalry_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -608px 0; +} + +.award76x76.assassin_cavalry_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -152px 0; +} + +.award76x76.assassin_cavalry_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -228px 0; +} + +.award76x76.assassin_complete_cavalry_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -304px 0; +} + +.award76x76.assassin_complete_legionary_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -380px 0; +} + +.award76x76.assassin_complete_sapper_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -456px 0; +} + +.award76x76.assassin_first_completed_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -532px 0; +} + +.award76x76.assassin_legionary_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: 0 0; +} + +.award76x76.assassin_legionary_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -684px 0; +} + +.award76x76.assassin_legionary_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -760px 0; +} + +.award76x76.assassin_legionary_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -836px 0; +} + +.award76x76.assassin_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -912px 0; +} + +.award76x76.assassin_sapper_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -988px 0; +} + +.award76x76.assassin_sapper_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -1064px 0; +} + +.award76x76.assassin_sapper_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -1140px 0; +} + +.award76x76.assassin_sapper_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_76x76_2.91.png); + background-position: -1216px 0; +} + +.award31x31.dark_conjurer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat 0 0; +} + +.award31x31.dark_conjurer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -31px 0; +} + +.award31x31.dark_conjurer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -62px 0; +} + +.award31x31.dark_conjurer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -93px 0; +} + +.award31x31.dark_scribe_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -124px 0; +} + +.award31x31.dark_scribe_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -155px 0; +} + +.award31x31.dark_scribe_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -186px 0; +} + +.award31x31.dark_scribe_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -217px 0; +} + +.award31x31.halloween2015_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -248px 0; +} + +.award31x31.halloween2015_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -279px 0; +} + +.award31x31.halloween2015_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -310px 0; +} + +.award31x31.halloween2015_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -341px 0; +} + +.award31x31.halloween2015_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_31x31_2.98.png) no-repeat -372px 0; +} + +.award76x76.dark_conjurer_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat 0 0; +} + +.award76x76.dark_conjurer_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -76px 0; +} + +.award76x76.dark_conjurer_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -152px 0; +} + +.award76x76.dark_conjurer_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -228px 0; +} + +.award76x76.dark_scribe_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -304px 0; +} + +.award76x76.dark_scribe_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -380px 0; +} + +.award76x76.dark_scribe_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -456px 0; +} + +.award76x76.dark_scribe_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -532px 0; +} + +.award76x76.halloween2015_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -608px 0; +} + +.award76x76.halloween2015_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -684px 0; +} + +.award76x76.halloween2015_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -760px 0; +} + +.award76x76.halloween2015_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -836px 0; +} + +.award76x76.halloween2015_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2015_76x76_2.98.png) no-repeat -912px 0; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.demeter2017_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -31px 0 no-repeat; +} + +.award31x31.demeter2017_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -93px -62px no-repeat; +} + +.award31x31.demeter2017_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) 0 -31px no-repeat; +} + +.award31x31.demeter2017_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -31px -31px no-repeat; +} + +.award31x31.demeter2017_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -62px 0 no-repeat; +} + +.award31x31.demeter_cheers_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -62px -31px no-repeat; +} + +.award31x31.demeter_feeding_them_all_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) 0 -62px no-repeat; +} + +.award31x31.demeter_fresh_meat_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -31px -62px no-repeat; +} + +.award31x31.demeter_land_of_milk_and_honey_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -62px -62px no-repeat; +} + +.award31x31.demeter_ranking_daily_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -93px 0 no-repeat; +} + +.award31x31.demeter_ranking_overall_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -93px -31px no-repeat; +} + +.award31x31.demeter_ranking_overall_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) 0 0 no-repeat; +} + +.award31x31.demeter_ranking_overall_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) 0 -93px no-repeat; +} + +.award31x31.demeter_ranking_overall_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -31px -93px no-repeat; +} + +.award31x31.feeding_the_poor_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -62px -93px no-repeat; +} + +.award31x31.feeding_the_poor_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -93px -93px no-repeat; +} + +.award31x31.feeding_the_poor_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -124px 0 no-repeat; +} + +.award31x31.feeding_the_poor_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -124px -31px no-repeat; +} + +.award31x31.most_creative_cook_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -124px -62px no-repeat; +} + +.award31x31.most_creative_cook_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -124px -93px no-repeat; +} + +.award31x31.most_creative_cook_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) 0 -124px no-repeat; +} + +.award31x31.most_creative_cook_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_31x31_087aefc.png) -31px -124px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.demeter2017_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -76px 0 no-repeat; +} + +.award76x76.demeter2017_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -228px -152px no-repeat; +} + +.award76x76.demeter2017_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) 0 -76px no-repeat; +} + +.award76x76.demeter2017_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -76px -76px no-repeat; +} + +.award76x76.demeter2017_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -152px 0 no-repeat; +} + +.award76x76.demeter_cheers_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -152px -76px no-repeat; +} + +.award76x76.demeter_feeding_them_all_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) 0 -152px no-repeat; +} + +.award76x76.demeter_fresh_meat_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -76px -152px no-repeat; +} + +.award76x76.demeter_land_of_milk_and_honey_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -152px -152px no-repeat; +} + +.award76x76.demeter_ranking_daily_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -228px 0 no-repeat; +} + +.award76x76.demeter_ranking_overall_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -228px -76px no-repeat; +} + +.award76x76.demeter_ranking_overall_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) 0 0 no-repeat; +} + +.award76x76.demeter_ranking_overall_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) 0 -228px no-repeat; +} + +.award76x76.demeter_ranking_overall_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -76px -228px no-repeat; +} + +.award76x76.feeding_the_poor_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -152px -228px no-repeat; +} + +.award76x76.feeding_the_poor_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -228px -228px no-repeat; +} + +.award76x76.feeding_the_poor_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -304px 0 no-repeat; +} + +.award76x76.feeding_the_poor_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -304px -76px no-repeat; +} + +.award76x76.most_creative_cook_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -304px -152px no-repeat; +} + +.award76x76.most_creative_cook_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -304px -228px no-repeat; +} + +.award76x76.most_creative_cook_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) 0 -304px no-repeat; +} + +.award76x76.most_creative_cook_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter_76x76_f240de6.png) -76px -304px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.demeter2016_cheers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -31px 0 no-repeat; +} + +.award31x31.demeter2016_feeding_them_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -62px -62px no-repeat; +} + +.award31x31.demeter2016_fresh_meat { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) 0 -31px no-repeat; +} + +.award31x31.demeter2016_land_of_milk_and_honey { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -31px -31px no-repeat; +} + +.award31x31.demeter2016_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -62px 0 no-repeat; +} + +.award31x31.demeter2016_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -62px -31px no-repeat; +} + +.award31x31.demeter2016_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) 0 -62px no-repeat; +} + +.award31x31.demeter2016_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -31px -62px no-repeat; +} + +.award31x31.demeter2016_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) 0 0 no-repeat; +} + +.award31x31.feeding_the_poor4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -93px 0 no-repeat; +} + +.award31x31.feeding_the_poor_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -93px -31px no-repeat; +} + +.award31x31.feeding_the_poor_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -93px -62px no-repeat; +} + +.award31x31.feeding_the_poor_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) 0 -93px no-repeat; +} + +.award31x31.most_creative_cook_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -31px -93px no-repeat; +} + +.award31x31.most_creative_cook_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -62px -93px no-repeat; +} + +.award31x31.most_creative_cook_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -93px -93px no-repeat; +} + +.award31x31.most_creative_cook_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_31x31_505754f.png) -124px 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.demeter2016_cheers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -76px 0 no-repeat; +} + +.award76x76.demeter2016_feeding_them_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -152px -152px no-repeat; +} + +.award76x76.demeter2016_fresh_meat { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) 0 -76px no-repeat; +} + +.award76x76.demeter2016_land_of_milk_and_honey { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -76px -76px no-repeat; +} + +.award76x76.demeter2016_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -152px 0 no-repeat; +} + +.award76x76.demeter2016_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -152px -76px no-repeat; +} + +.award76x76.demeter2016_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) 0 -152px no-repeat; +} + +.award76x76.demeter2016_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -76px -152px no-repeat; +} + +.award76x76.demeter2016_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) 0 0 no-repeat; +} + +.award76x76.feeding_the_poor_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -228px 0 no-repeat; +} + +.award76x76.feeding_the_poor_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -228px -76px no-repeat; +} + +.award76x76.feeding_the_poor_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -228px -152px no-repeat; +} + +.award76x76.feeding_the_poor_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) 0 -228px no-repeat; +} + +.award76x76.most_creative_cook_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -76px -228px no-repeat; +} + +.award76x76.most_creative_cook_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -152px -228px no-repeat; +} + +.award76x76.most_creative_cook_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -228px -228px no-repeat; +} + +.award76x76.most_creative_cook_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_demeter2016_76x76_2df6942.png) -304px 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.complete_orange_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -31px 0 no-repeat; +} + +.award31x31.complete_white_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -124px -31px no-repeat; +} + +.award31x31.complete_yellow_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) 0 -31px no-repeat; +} + +.award31x31.easter2016_complete_orange_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -31px -31px no-repeat; +} + +.award31x31.easter2016_complete_white_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -62px 0 no-repeat; +} + +.award31x31.easter2016_complete_yellow_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -62px -31px no-repeat; +} + +.award31x31.easter2016_first_completed_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) 0 -62px no-repeat; +} + +.award31x31.easter2016_orange_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -31px -62px no-repeat; +} + +.award31x31.easter2016_orange_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -62px -62px no-repeat; +} + +.award31x31.easter2016_orange_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -93px 0 no-repeat; +} + +.award31x31.easter2016_orange_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -93px -31px no-repeat; +} + +.award31x31.easter2016_white_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -93px -62px no-repeat; +} + +.award31x31.easter2016_white_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) 0 -93px no-repeat; +} + +.award31x31.easter2016_white_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -31px -93px no-repeat; +} + +.award31x31.easter2016_white_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -62px -93px no-repeat; +} + +.award31x31.easter2016_yellow_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -93px -93px no-repeat; +} + +.award31x31.easter2016_yellow_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -124px 0 no-repeat; +} + +.award31x31.easter2016_yellow_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) 0 0 no-repeat; +} + +.award31x31.easter2016_yellow_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -124px -62px no-repeat; +} + +.award31x31.first_completed_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -124px -93px no-repeat; +} + +.award31x31.orange_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) 0 -124px no-repeat; +} + +.award31x31.orange_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -31px -124px no-repeat; +} + +.award31x31.orange_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -62px -124px no-repeat; +} + +.award31x31.orange_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -93px -124px no-repeat; +} + +.award31x31.slinger_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -124px -124px no-repeat; +} + +.award31x31.trial_slinger_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -155px 0 no-repeat; +} + +.award31x31.white_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -155px -31px no-repeat; +} + +.award31x31.white_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -155px -62px no-repeat; +} + +.award31x31.white_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -155px -93px no-repeat; +} + +.award31x31.white_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -155px -124px no-repeat; +} + +.award31x31.yellow_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) 0 -155px no-repeat; +} + +.award31x31.yellow_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -31px -155px no-repeat; +} + +.award31x31.yellow_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -62px -155px no-repeat; +} + +.award31x31.yellow_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_31x31_04f0451.png) -93px -155px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.complete_orange_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -76px 0 no-repeat; +} + +.award76x76.complete_white_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -304px -76px no-repeat; +} + +.award76x76.complete_yellow_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) 0 -76px no-repeat; +} + +.award76x76.easter2016_complete_orange_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -76px -76px no-repeat; +} + +.award76x76.easter2016_complete_white_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -152px 0 no-repeat; +} + +.award76x76.easter2016_complete_yellow_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -152px -76px no-repeat; +} + +.award76x76.easter2016_first_completed_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) 0 -152px no-repeat; +} + +.award76x76.easter2016_orange_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -76px -152px no-repeat; +} + +.award76x76.easter2016_orange_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -152px -152px no-repeat; +} + +.award76x76.easter2016_orange_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -228px 0 no-repeat; +} + +.award76x76.easter2016_orange_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -228px -76px no-repeat; +} + +.award76x76.easter2016_white_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -228px -152px no-repeat; +} + +.award76x76.easter2016_white_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) 0 -228px no-repeat; +} + +.award76x76.easter2016_white_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -76px -228px no-repeat; +} + +.award76x76.easter2016_white_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -152px -228px no-repeat; +} + +.award76x76.easter2016_yellow_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -228px -228px no-repeat; +} + +.award76x76.easter2016_yellow_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -304px 0 no-repeat; +} + +.award76x76.easter2016_yellow_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) 0 0 no-repeat; +} + +.award76x76.easter2016_yellow_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -304px -152px no-repeat; +} + +.award76x76.first_completed_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -304px -228px no-repeat; +} + +.award76x76.orange_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) 0 -304px no-repeat; +} + +.award76x76.orange_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -76px -304px no-repeat; +} + +.award76x76.orange_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -152px -304px no-repeat; +} + +.award76x76.orange_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -228px -304px no-repeat; +} + +.award76x76.slinger_of_the_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -304px -304px no-repeat; +} + +.award76x76.trial_slinger_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -380px 0 no-repeat; +} + +.award76x76.white_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -380px -76px no-repeat; +} + +.award76x76.white_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -380px -152px no-repeat; +} + +.award76x76.white_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -380px -228px no-repeat; +} + +.award76x76.white_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -380px -304px no-repeat; +} + +.award76x76.yellow_eliminated_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) 0 -380px no-repeat; +} + +.award76x76.yellow_eliminated_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -76px -380px no-repeat; +} + +.award76x76.yellow_eliminated_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -152px -380px no-repeat; +} + +.award76x76.yellow_eliminated_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_trial_slinger_76x76_64f612b.png) -228px -380px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.assassin_cavalry_eliminated_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -31px 0 no-repeat; +} + +.award31x31.assassin_cavalry_eliminated_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -62px -62px no-repeat; +} + +.award31x31.assassin_cavalry_eliminated_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) 0 -31px no-repeat; +} + +.award31x31.assassin_cavalry_eliminated_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -31px -31px no-repeat; +} + +.award31x31.assassin_complete_cavalry_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -62px 0 no-repeat; +} + +.award31x31.assassin_complete_legionary_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -62px -31px no-repeat; +} + +.award31x31.assassin_complete_sapper_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) 0 -62px no-repeat; +} + +.award31x31.assassin_first_completed_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -31px -62px no-repeat; +} + +.award31x31.assassin_legionary_eliminated_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) 0 0 no-repeat; +} + +.award31x31.assassin_legionary_eliminated_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -93px 0 no-repeat; +} + +.award31x31.assassin_legionary_eliminated_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -93px -31px no-repeat; +} + +.award31x31.assassin_legionary_eliminated_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -93px -62px no-repeat; +} + +.award31x31.assassin_of_the_day_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) 0 -93px no-repeat; +} + +.award31x31.assassin_sapper_eliminated_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -31px -93px no-repeat; +} + +.award31x31.assassin_sapper_eliminated_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -62px -93px no-repeat; +} + +.award31x31.assassin_sapper_eliminated_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -93px -93px no-repeat; +} + +.award31x31.assassin_sapper_eliminated_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_31x31_b68b64a.png) -124px 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.assassin_cavalry_eliminated_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -76px 0 no-repeat; +} + +.award76x76.assassin_cavalry_eliminated_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -152px -152px no-repeat; +} + +.award76x76.assassin_cavalry_eliminated_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) 0 -76px no-repeat; +} + +.award76x76.assassin_cavalry_eliminated_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -76px -76px no-repeat; +} + +.award76x76.assassin_complete_cavalry_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -152px 0 no-repeat; +} + +.award76x76.assassin_complete_legionary_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -152px -76px no-repeat; +} + +.award76x76.assassin_complete_sapper_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) 0 -152px no-repeat; +} + +.award76x76.assassin_first_completed_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -76px -152px no-repeat; +} + +.award76x76.assassin_legionary_eliminated_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) 0 0 no-repeat; +} + +.award76x76.assassin_legionary_eliminated_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -228px 0 no-repeat; +} + +.award76x76.assassin_legionary_eliminated_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -228px -76px no-repeat; +} + +.award76x76.assassin_legionary_eliminated_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -228px -152px no-repeat; +} + +.award76x76.assassin_of_the_day_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) 0 -228px no-repeat; +} + +.award76x76.assassin_sapper_eliminated_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -76px -228px no-repeat; +} + +.award76x76.assassin_sapper_eliminated_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -152px -228px no-repeat; +} + +.award76x76.assassin_sapper_eliminated_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -228px -228px no-repeat; +} + +.award76x76.assassin_sapper_eliminated_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_assassins_reoccurring_76x76_60f4836.png) -304px 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.hades_destroy_portals { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hades2016_31x31_ffad153.png) 0 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.hades_destroy_portals { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hades2016_76x76_c2c28ca.png) 0 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_31x31_7a677bd.png) 0 0 no-repeat; +} + +.award31x31.turn_back_time_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_31x31_7a677bd.png) -31px 0 no-repeat; +} + +.award31x31.turn_back_time_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_31x31_7a677bd.png) 0 -31px no-repeat; +} + +.award31x31.turn_back_time_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_31x31_7a677bd.png) -31px -31px no-repeat; +} + +.award31x31.turn_back_time_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_31x31_7a677bd.png) -62px 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_76x76_c5da40e.png) 0 0 no-repeat; +} + +.award76x76.turn_back_time_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_76x76_c5da40e.png) -76px 0 no-repeat; +} + +.award76x76.turn_back_time_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_76x76_c5da40e.png) 0 -76px no-repeat; +} + +.award76x76.turn_back_time_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_76x76_c5da40e.png) -76px -76px no-repeat; +} + +.award76x76.turn_back_time_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_76x76_c5da40e.png) -152px 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.spartahades2016_captured_banners_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -31px 0 no-repeat; +} + +.award31x31.spartahades2016_captured_banners_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -62px -62px no-repeat; +} + +.award31x31.spartahades2016_captured_banners_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) 0 -31px no-repeat; +} + +.award31x31.spartahades2016_captured_banners_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -31px -31px no-repeat; +} + +.award31x31.spartahades2016_commander_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -62px 0 no-repeat; +} + +.award31x31.spartahades2016_commander_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -62px -31px no-repeat; +} + +.award31x31.spartahades2016_commander_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) 0 -62px no-repeat; +} + +.award31x31.spartahades2016_commander_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -31px -62px no-repeat; +} + +.award31x31.spartahades2016_crusher_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) 0 0 no-repeat; +} + +.award31x31.spartahades2016_crusher_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -93px 0 no-repeat; +} + +.award31x31.spartahades2016_crusher_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -93px -31px no-repeat; +} + +.award31x31.spartahades2016_crusher_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -93px -62px no-repeat; +} + +.award31x31.spartahades2016_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) 0 -93px no-repeat; +} + +.award31x31.spartahades2016_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -31px -93px no-repeat; +} + +.award31x31.spartahades2016_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -62px -93px no-repeat; +} + +.award31x31.spartahades2016_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -93px -93px no-repeat; +} + +.award31x31.spartahades2016_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_31x31_dd04777.png) -124px 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.spartahades2016_captured_banners_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -76px 0 no-repeat; +} + +.award76x76.spartahades2016_captured_banners_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -152px -152px no-repeat; +} + +.award76x76.spartahades2016_captured_banners_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) 0 -76px no-repeat; +} + +.award76x76.spartahades2016_captured_banners_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -76px -76px no-repeat; +} + +.award76x76.spartahades2016_commander_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -152px 0 no-repeat; +} + +.award76x76.spartahades2016_commander_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -152px -76px no-repeat; +} + +.award76x76.spartahades2016_commander_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) 0 -152px no-repeat; +} + +.award76x76.spartahades2016_commander_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -76px -152px no-repeat; +} + +.award76x76.spartahades2016_crusher_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) 0 0 no-repeat; +} + +.award76x76.spartahades2016_crusher_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -228px 0 no-repeat; +} + +.award76x76.spartahades2016_crusher_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -228px -76px no-repeat; +} + +.award76x76.spartahades2016_crusher_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -228px -152px no-repeat; +} + +.award76x76.spartahades2016_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) 0 -228px no-repeat; +} + +.award76x76.spartahades2016_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -76px -228px no-repeat; +} + +.award76x76.spartahades2016_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -152px -228px no-repeat; +} + +.award76x76.spartahades2016_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -228px -228px no-repeat; +} + +.award76x76.spartahades2016_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_76x76_e40671e.png) -304px 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.spartahades_reoccurring_captured_banners_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -31px 0 no-repeat; +} + +.award31x31.spartahades_reoccurring_captured_banners_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -62px -62px no-repeat; +} + +.award31x31.spartahades_reoccurring_captured_banners_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) 0 -31px no-repeat; +} + +.award31x31.spartahades_reoccurring_captured_banners_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -31px -31px no-repeat; +} + +.award31x31.spartahades_reoccurring_commander_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -62px 0 no-repeat; +} + +.award31x31.spartahades_reoccurring_commander_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -62px -31px no-repeat; +} + +.award31x31.spartahades_reoccurring_commander_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) 0 -62px no-repeat; +} + +.award31x31.spartahades_reoccurring_commander_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -31px -62px no-repeat; +} + +.award31x31.spartahades_reoccurring_crusher_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) 0 0 no-repeat; +} + +.award31x31.spartahades_reoccurring_crusher_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -93px 0 no-repeat; +} + +.award31x31.spartahades_reoccurring_crusher_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -93px -31px no-repeat; +} + +.award31x31.spartahades_reoccurring_crusher_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -93px -62px no-repeat; +} + +.award31x31.spartahades_reoccurring_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) 0 -93px no-repeat; +} + +.award31x31.spartahades_reoccurring_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -31px -93px no-repeat; +} + +.award31x31.spartahades_reoccurring_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -62px -93px no-repeat; +} + +.award31x31.spartahades_reoccurring_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -93px -93px no-repeat; +} + +.award31x31.spartahades_reoccurring_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_31x31_50ce4fc.png) -124px 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.spartahades_reoccurring_captured_banners_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -76px 0 no-repeat; +} + +.award76x76.spartahades_reoccurring_captured_banners_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -152px -152px no-repeat; +} + +.award76x76.spartahades_reoccurring_captured_banners_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) 0 -76px no-repeat; +} + +.award76x76.spartahades_reoccurring_captured_banners_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -76px -76px no-repeat; +} + +.award76x76.spartahades_reoccurring_commander_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -152px 0 no-repeat; +} + +.award76x76.spartahades_reoccurring_commander_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -152px -76px no-repeat; +} + +.award76x76.spartahades_reoccurring_commander_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) 0 -152px no-repeat; +} + +.award76x76.spartahades_reoccurring_commander_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -76px -152px no-repeat; +} + +.award76x76.spartahades_reoccurring_crusher_of_legions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) 0 0 no-repeat; +} + +.award76x76.spartahades_reoccurring_crusher_of_legions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -228px 0 no-repeat; +} + +.award76x76.spartahades_reoccurring_crusher_of_legions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -228px -76px no-repeat; +} + +.award76x76.spartahades_reoccurring_crusher_of_legions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -228px -152px no-repeat; +} + +.award76x76.spartahades_reoccurring_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) 0 -228px no-repeat; +} + +.award76x76.spartahades_reoccurring_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -76px -228px no-repeat; +} + +.award76x76.spartahades_reoccurring_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -152px -228px no-repeat; +} + +.award76x76.spartahades_reoccurring_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -228px -228px no-repeat; +} + +.award76x76.spartahades_reoccurring_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_sparta_vs_hades_reoccurring_76x76_95905df.png) -304px 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.grepolympia_skilled_archer_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -31px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_archer_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) 0 -124px no-repeat; +} + +.award31x31.grepolympia_skilled_archer_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) 0 -31px no-repeat; +} + +.award31x31.grepolympia_skilled_archer_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -31px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_archer_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -62px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_chariot_racer_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -62px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_chariot_racer_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) 0 -62px no-repeat; +} + +.award31x31.grepolympia_skilled_chariot_racer_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -31px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_chariot_racer_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -62px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_chariot_racer_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -93px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_hoplite_racer_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -93px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_hoplite_racer_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -93px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_hoplite_racer_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) 0 -93px no-repeat; +} + +.award31x31.grepolympia_skilled_hoplite_racer_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -31px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_hoplite_racer_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -62px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_javeliner_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -93px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_javeliner_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -124px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_javeliner_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -124px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_javeliner_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -124px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_javeliner_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -124px -93px no-repeat; +} + +.award31x31.grepolympia_top_archery_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) 0 0 no-repeat; +} + +.award31x31.grepolympia_top_archery_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -31px -124px no-repeat; +} + +.award31x31.grepolympia_top_archery_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -62px -124px no-repeat; +} + +.award31x31.grepolympia_top_archery_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -93px -124px no-repeat; +} + +.award31x31.grepolympia_top_archery_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -124px -124px no-repeat; +} + +.award31x31.grepolympia_top_chariot_race_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -155px 0 no-repeat; +} + +.award31x31.grepolympia_top_chariot_race_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -155px -31px no-repeat; +} + +.award31x31.grepolympia_top_chariot_race_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -155px -62px no-repeat; +} + +.award31x31.grepolympia_top_chariot_race_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -155px -93px no-repeat; +} + +.award31x31.grepolympia_top_chariot_race_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -155px -124px no-repeat; +} + +.award31x31.grepolympia_top_hoplite_race_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) 0 -155px no-repeat; +} + +.award31x31.grepolympia_top_hoplite_race_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -31px -155px no-repeat; +} + +.award31x31.grepolympia_top_hoplite_race_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -62px -155px no-repeat; +} + +.award31x31.grepolympia_top_hoplite_race_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -93px -155px no-repeat; +} + +.award31x31.grepolympia_top_hoplite_race_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -124px -155px no-repeat; +} + +.award31x31.grepolympia_top_javelin_throwing_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -155px -155px no-repeat; +} + +.award31x31.grepolympia_top_javelin_throwing_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -186px 0 no-repeat; +} + +.award31x31.grepolympia_top_javelin_throwing_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -186px -31px no-repeat; +} + +.award31x31.grepolympia_top_javelin_throwing_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -186px -62px no-repeat; +} + +.award31x31.grepolympia_top_javelin_throwing_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_31x31_363949f.png) -186px -93px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.grepolympia_skilled_archer_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -76px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_archer_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) 0 -304px no-repeat; +} + +.award76x76.grepolympia_skilled_archer_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) 0 -76px no-repeat; +} + +.award76x76.grepolympia_skilled_archer_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -76px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_archer_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -152px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_chariot_racer_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -152px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_chariot_racer_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) 0 -152px no-repeat; +} + +.award76x76.grepolympia_skilled_chariot_racer_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -76px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_chariot_racer_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -152px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_chariot_racer_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -228px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_hoplite_racer_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -228px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_hoplite_racer_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -228px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_hoplite_racer_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) 0 -228px no-repeat; +} + +.award76x76.grepolympia_skilled_hoplite_racer_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -76px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_hoplite_racer_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -152px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_javeliner_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -228px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_javeliner_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -304px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_javeliner_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -304px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_javeliner_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -304px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_javeliner_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -304px -228px no-repeat; +} + +.award76x76.grepolympia_top_archery_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) 0 0 no-repeat; +} + +.award76x76.grepolympia_top_archery_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -76px -304px no-repeat; +} + +.award76x76.grepolympia_top_archery_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -152px -304px no-repeat; +} + +.award76x76.grepolympia_top_archery_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -228px -304px no-repeat; +} + +.award76x76.grepolympia_top_archery_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -304px -304px no-repeat; +} + +.award76x76.grepolympia_top_chariot_race_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -380px 0 no-repeat; +} + +.award76x76.grepolympia_top_chariot_race_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -380px -76px no-repeat; +} + +.award76x76.grepolympia_top_chariot_race_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -380px -152px no-repeat; +} + +.award76x76.grepolympia_top_chariot_race_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -380px -228px no-repeat; +} + +.award76x76.grepolympia_top_chariot_race_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -380px -304px no-repeat; +} + +.award76x76.grepolympia_top_hoplite_race_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) 0 -380px no-repeat; +} + +.award76x76.grepolympia_top_hoplite_race_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -76px -380px no-repeat; +} + +.award76x76.grepolympia_top_hoplite_race_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -152px -380px no-repeat; +} + +.award76x76.grepolympia_top_hoplite_race_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -228px -380px no-repeat; +} + +.award76x76.grepolympia_top_hoplite_race_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -304px -380px no-repeat; +} + +.award76x76.grepolympia_top_javelin_throwing_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -380px -380px no-repeat; +} + +.award76x76.grepolympia_top_javelin_throwing_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -456px 0 no-repeat; +} + +.award76x76.grepolympia_top_javelin_throwing_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -456px -76px no-repeat; +} + +.award76x76.grepolympia_top_javelin_throwing_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -456px -152px no-repeat; +} + +.award76x76.grepolympia_top_javelin_throwing_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccuring_76x76_ffee944.png) -456px -228px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.grepolympia_skilled_biathlet_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -31px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_biathlet_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) 0 -124px no-repeat; +} + +.award31x31.grepolympia_skilled_biathlet_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) 0 -31px no-repeat; +} + +.award31x31.grepolympia_skilled_biathlet_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -31px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_biathlet_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -62px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_figure_skater_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -62px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_figure_skater_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) 0 -62px no-repeat; +} + +.award31x31.grepolympia_skilled_figure_skater_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -31px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_figure_skater_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -62px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_figure_skater_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -93px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_shield_luger_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -93px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_shield_luger_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -93px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_shield_luger_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) 0 -93px no-repeat; +} + +.award31x31.grepolympia_skilled_shield_luger_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -31px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_shield_luger_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -62px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_ski_jumper_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -93px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_ski_jumper_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -124px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_ski_jumper_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -124px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_ski_jumper_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -124px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_ski_jumper_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -124px -93px no-repeat; +} + +.award31x31.grepolympia_top_biathlet_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) 0 0 no-repeat; +} + +.award31x31.grepolympia_top_biathlet_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -31px -124px no-repeat; +} + +.award31x31.grepolympia_top_biathlet_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -62px -124px no-repeat; +} + +.award31x31.grepolympia_top_biathlet_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -93px -124px no-repeat; +} + +.award31x31.grepolympia_top_biathlet_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -124px -124px no-repeat; +} + +.award31x31.grepolympia_top_figure_skater_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -155px 0 no-repeat; +} + +.award31x31.grepolympia_top_figure_skater_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -155px -31px no-repeat; +} + +.award31x31.grepolympia_top_figure_skater_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -155px -62px no-repeat; +} + +.award31x31.grepolympia_top_figure_skater_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -155px -93px no-repeat; +} + +.award31x31.grepolympia_top_figure_skater_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -155px -124px no-repeat; +} + +.award31x31.grepolympia_top_shield_luger_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) 0 -155px no-repeat; +} + +.award31x31.grepolympia_top_shield_luger_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -31px -155px no-repeat; +} + +.award31x31.grepolympia_top_shield_luger_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -62px -155px no-repeat; +} + +.award31x31.grepolympia_top_shield_luger_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -93px -155px no-repeat; +} + +.award31x31.grepolympia_top_shield_luger_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -124px -155px no-repeat; +} + +.award31x31.grepolympia_top_ski_jumper_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -155px -155px no-repeat; +} + +.award31x31.grepolympia_top_ski_jumper_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -186px 0 no-repeat; +} + +.award31x31.grepolympia_top_ski_jumper_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -186px -31px no-repeat; +} + +.award31x31.grepolympia_top_ski_jumper_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -186px -62px no-repeat; +} + +.award31x31.grepolympia_top_ski_jumper_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_31x31_1e32669.png) -186px -93px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.grepolympia_skilled_biathlet_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -76px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_biathlet_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) 0 -304px no-repeat; +} + +.award76x76.grepolympia_skilled_biathlet_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) 0 -76px no-repeat; +} + +.award76x76.grepolympia_skilled_biathlet_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -76px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_biathlet_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -152px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_figure_skater_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -152px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_figure_skater_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) 0 -152px no-repeat; +} + +.award76x76.grepolympia_skilled_figure_skater_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -76px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_figure_skater_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -152px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_figure_skater_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -228px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_shield_luger_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -228px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_shield_luger_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -228px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_shield_luger_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) 0 -228px no-repeat; +} + +.award76x76.grepolympia_skilled_shield_luger_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -76px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_shield_luger_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -152px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_ski_jumper_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -228px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_ski_jumper_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -304px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_ski_jumper_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -304px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_ski_jumper_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -304px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_ski_jumper_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -304px -228px no-repeat; +} + +.award76x76.grepolympia_top_biathlet_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) 0 0 no-repeat; +} + +.award76x76.grepolympia_top_biathlet_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -76px -304px no-repeat; +} + +.award76x76.grepolympia_top_biathlet_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -152px -304px no-repeat; +} + +.award76x76.grepolympia_top_biathlet_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -228px -304px no-repeat; +} + +.award76x76.grepolympia_top_biathlet_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -304px -304px no-repeat; +} + +.award76x76.grepolympia_top_figure_skater_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -380px 0 no-repeat; +} + +.award76x76.grepolympia_top_figure_skater_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -380px -76px no-repeat; +} + +.award76x76.grepolympia_top_figure_skater_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -380px -152px no-repeat; +} + +.award76x76.grepolympia_top_figure_skater_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -380px -228px no-repeat; +} + +.award76x76.grepolympia_top_figure_skater_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -380px -304px no-repeat; +} + +.award76x76.grepolympia_top_shield_luger_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) 0 -380px no-repeat; +} + +.award76x76.grepolympia_top_shield_luger_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -76px -380px no-repeat; +} + +.award76x76.grepolympia_top_shield_luger_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -152px -380px no-repeat; +} + +.award76x76.grepolympia_top_shield_luger_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -228px -380px no-repeat; +} + +.award76x76.grepolympia_top_shield_luger_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -304px -380px no-repeat; +} + +.award76x76.grepolympia_top_ski_jumper_dynamic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -380px -380px no-repeat; +} + +.award76x76.grepolympia_top_ski_jumper_dynamic_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -456px 0 no-repeat; +} + +.award76x76.grepolympia_top_ski_jumper_dynamic_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -456px -76px no-repeat; +} + +.award76x76.grepolympia_top_ski_jumper_dynamic_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -456px -152px no-repeat; +} + +.award76x76.grepolympia_top_ski_jumper_dynamic_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_winter_76x76_fef1a05.png) -456px -228px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.grepolympia_championship_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -31px 0 no-repeat; +} + +.award31x31.grepolympia_championship_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -62px -124px no-repeat; +} + +.award31x31.grepolympia_championship_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) 0 -31px no-repeat; +} + +.award31x31.grepolympia_championship_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -31px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -62px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_athens_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -62px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_athens_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) 0 -62px no-repeat; +} + +.award31x31.grepolympia_skilled_athens_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -31px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_athens_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -62px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -93px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_corinth_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -93px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_corinth_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -93px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_corinth_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) 0 -93px no-repeat; +} + +.award31x31.grepolympia_skilled_corinth_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -31px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -62px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_olympus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -93px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_olympus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -124px 0 no-repeat; +} + +.award31x31.grepolympia_skilled_olympus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -124px -31px no-repeat; +} + +.award31x31.grepolympia_skilled_olympus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -124px -62px no-repeat; +} + +.award31x31.grepolympia_skilled_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -124px -93px no-repeat; +} + +.award31x31.grepolympia_skilled_sparta_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) 0 -124px no-repeat; +} + +.award31x31.grepolympia_skilled_sparta_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -31px -124px no-repeat; +} + +.award31x31.grepolympia_skilled_sparta_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) 0 0 no-repeat; +} + +.award31x31.grepolympia_skilled_sparta_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -93px -124px no-repeat; +} + +.award31x31.grepolympia_top_athens_match { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -124px -124px no-repeat; +} + +.award31x31.grepolympia_top_athens_match_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -155px 0 no-repeat; +} + +.award31x31.grepolympia_top_athens_match_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -155px -31px no-repeat; +} + +.award31x31.grepolympia_top_athens_match_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -155px -62px no-repeat; +} + +.award31x31.grepolympia_top_athens_match_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -155px -93px no-repeat; +} + +.award31x31.grepolympia_top_corinth_match { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -155px -124px no-repeat; +} + +.award31x31.grepolympia_top_corinth_match_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) 0 -155px no-repeat; +} + +.award31x31.grepolympia_top_corinth_match_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -31px -155px no-repeat; +} + +.award31x31.grepolympia_top_corinth_match_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -62px -155px no-repeat; +} + +.award31x31.grepolympia_top_corinth_match_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -93px -155px no-repeat; +} + +.award31x31.grepolympia_top_olympus_match { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -124px -155px no-repeat; +} + +.award31x31.grepolympia_top_olympus_match_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -155px -155px no-repeat; +} + +.award31x31.grepolympia_top_olympus_match_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -186px 0 no-repeat; +} + +.award31x31.grepolympia_top_olympus_match_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -186px -31px no-repeat; +} + +.award31x31.grepolympia_top_olympus_match_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -186px -62px no-repeat; +} + +.award31x31.grepolympia_top_sparta_match { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -186px -93px no-repeat; +} + +.award31x31.grepolympia_top_sparta_match_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -186px -124px no-repeat; +} + +.award31x31.grepolympia_top_sparta_match_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -186px -155px no-repeat; +} + +.award31x31.grepolympia_top_sparta_match_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) 0 -186px no-repeat; +} + +.award31x31.grepolympia_top_sparta_match_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_31x31_cbb8dd9.png) -31px -186px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.grepolympia_championship_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -76px 0 no-repeat; +} + +.award76x76.grepolympia_championship_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -152px -304px no-repeat; +} + +.award76x76.grepolympia_championship_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) 0 -76px no-repeat; +} + +.award76x76.grepolympia_championship_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -76px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -152px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_athens_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -152px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_athens_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) 0 -152px no-repeat; +} + +.award76x76.grepolympia_skilled_athens_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -76px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_athens_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -152px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -228px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_corinth_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -228px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_corinth_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -228px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_corinth_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) 0 -228px no-repeat; +} + +.award76x76.grepolympia_skilled_corinth_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -76px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -152px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_olympus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -228px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_olympus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -304px 0 no-repeat; +} + +.award76x76.grepolympia_skilled_olympus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -304px -76px no-repeat; +} + +.award76x76.grepolympia_skilled_olympus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -304px -152px no-repeat; +} + +.award76x76.grepolympia_skilled_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -304px -228px no-repeat; +} + +.award76x76.grepolympia_skilled_sparta_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) 0 -304px no-repeat; +} + +.award76x76.grepolympia_skilled_sparta_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -76px -304px no-repeat; +} + +.award76x76.grepolympia_skilled_sparta_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) 0 0 no-repeat; +} + +.award76x76.grepolympia_skilled_sparta_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -228px -304px no-repeat; +} + +.award76x76.grepolympia_top_athens_match { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -304px -304px no-repeat; +} + +.award76x76.grepolympia_top_athens_match_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -380px 0 no-repeat; +} + +.award76x76.grepolympia_top_athens_match_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -380px -76px no-repeat; +} + +.award76x76.grepolympia_top_athens_match_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -380px -152px no-repeat; +} + +.award76x76.grepolympia_top_athens_match_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -380px -228px no-repeat; +} + +.award76x76.grepolympia_top_corinth_match { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -380px -304px no-repeat; +} + +.award76x76.grepolympia_top_corinth_match_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) 0 -380px no-repeat; +} + +.award76x76.grepolympia_top_corinth_match_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -76px -380px no-repeat; +} + +.award76x76.grepolympia_top_corinth_match_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -152px -380px no-repeat; +} + +.award76x76.grepolympia_top_corinth_match_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -228px -380px no-repeat; +} + +.award76x76.grepolympia_top_olympus_match { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -304px -380px no-repeat; +} + +.award76x76.grepolympia_top_olympus_match_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -380px -380px no-repeat; +} + +.award76x76.grepolympia_top_olympus_match_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -456px 0 no-repeat; +} + +.award76x76.grepolympia_top_olympus_match_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -456px -76px no-repeat; +} + +.award76x76.grepolympia_top_olympus_match_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -456px -152px no-repeat; +} + +.award76x76.grepolympia_top_sparta_match { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -456px -228px no-repeat; +} + +.award76x76.grepolympia_top_sparta_match_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -456px -304px no-repeat; +} + +.award76x76.grepolympia_top_sparta_match_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -456px -380px no-repeat; +} + +.award76x76.grepolympia_top_sparta_match_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) 0 -456px no-repeat; +} + +.award76x76.grepolympia_top_sparta_match_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_grepolympiareoccurring_worldcup_76x76_dd6067f.png) -76px -456px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.bloody_glance_2016 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -31px 0 no-repeat; +} + +.award31x31.dark_conjurer_2016_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -62px -62px no-repeat; +} + +.award31x31.dark_conjurer_2016_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) 0 -31px no-repeat; +} + +.award31x31.dark_conjurer_2016_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -31px -31px no-repeat; +} + +.award31x31.dark_conjurer_2016_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -62px 0 no-repeat; +} + +.award31x31.dark_scribe_2016_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -62px -31px no-repeat; +} + +.award31x31.dark_scribe_2016_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) 0 -62px no-repeat; +} + +.award31x31.dark_scribe_2016_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -31px -62px no-repeat; +} + +.award31x31.dark_scribe_2016_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) 0 0 no-repeat; +} + +.award31x31.grand_master_2016_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -93px 0 no-repeat; +} + +.award31x31.grand_master_2016_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -93px -31px no-repeat; +} + +.award31x31.grand_master_2016_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -93px -62px no-repeat; +} + +.award31x31.grand_master_2016_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) 0 -93px no-repeat; +} + +.award31x31.master_conjurer_2016 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -31px -93px no-repeat; +} + +.award31x31.occult_knowledge_2016 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -62px -93px no-repeat; +} + +.award31x31.present_of_the_dead_2016 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_31x31_274e2ea.png) -93px -93px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.bloody_glance_2016 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -76px 0 no-repeat; +} + +.award76x76.dark_conjurer_2016_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -152px -152px no-repeat; +} + +.award76x76.dark_conjurer_2016_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) 0 -76px no-repeat; +} + +.award76x76.dark_conjurer_2016_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -76px -76px no-repeat; +} + +.award76x76.dark_conjurer_2016_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -152px 0 no-repeat; +} + +.award76x76.dark_scribe_2016_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -152px -76px no-repeat; +} + +.award76x76.dark_scribe_2016_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) 0 -152px no-repeat; +} + +.award76x76.dark_scribe_2016_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -76px -152px no-repeat; +} + +.award76x76.dark_scribe_2016_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) 0 0 no-repeat; +} + +.award76x76.grand_master_2016_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -228px 0 no-repeat; +} + +.award76x76.grand_master_2016_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -228px -76px no-repeat; +} + +.award76x76.grand_master_2016_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -228px -152px no-repeat; +} + +.award76x76.grand_master_2016_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) 0 -228px no-repeat; +} + +.award76x76.master_conjurer_2016 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -76px -228px no-repeat; +} + +.award76x76.occult_knowledge_2016 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -152px -228px no-repeat; +} + +.award76x76.present_of_the_dead_2016 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_halloween2016_76x76_ffa592b.png) -228px -228px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.natures_gift_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_31x31_001640b.png) 0 0 no-repeat; +} + +.award31x31.turn_back_time_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_31x31_001640b.png) -31px 0 no-repeat; +} + +.award31x31.turn_back_time_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_31x31_001640b.png) 0 -31px no-repeat; +} + +.award31x31.turn_back_time_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_31x31_001640b.png) -31px -31px no-repeat; +} + +.award31x31.turn_back_time_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_31x31_001640b.png) -62px 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.natures_gift_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_76x76_9529f06.png) 0 0 no-repeat; +} + +.award76x76.turn_back_time_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_76x76_9529f06.png) -76px 0 no-repeat; +} + +.award76x76.turn_back_time_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_76x76_9529f06.png) 0 -76px no-repeat; +} + +.award76x76.turn_back_time_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_76x76_9529f06.png) -76px -76px no-repeat; +} + +.award76x76.turn_back_time_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_nwot_reoccurring_76x76_9529f06.png) -152px 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.all_the_crystals_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_31x31_89b0387.png) 0 0 no-repeat; +} + +.award31x31.lucky_winter_fun_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_31x31_89b0387.png) -31px 0 no-repeat; +} + +.award31x31.lucky_winter_fun_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_31x31_89b0387.png) 0 -31px no-repeat; +} + +.award31x31.lucky_winter_fun_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_31x31_89b0387.png) -31px -31px no-repeat; +} + +.award31x31.lucky_winter_fun_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_31x31_89b0387.png) -62px 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.all_the_crystals_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_76x76_1c49b17.png) 0 0 no-repeat; +} + +.award76x76.lucky_winter_fun_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_76x76_1c49b17.png) -76px 0 no-repeat; +} + +.award76x76.lucky_winter_fun_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_76x76_1c49b17.png) 0 -76px no-repeat; +} + +.award76x76.lucky_winter_fun_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_76x76_1c49b17.png) -76px -76px no-repeat; +} + +.award76x76.lucky_winter_fun_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_advent_calendar_reoccurring_76x76_1c49b17.png) -152px 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.missions_pandora_champion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -31px 0 no-repeat; +} + +.award31x31.missions_pandora_champion_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -93px -62px no-repeat; +} + +.award31x31.missions_pandora_closing_box_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) 0 -31px no-repeat; +} + +.award31x31.missions_pandora_closing_box_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -31px -31px no-repeat; +} + +.award31x31.missions_pandora_closing_box_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -62px 0 no-repeat; +} + +.award31x31.missions_pandora_closing_box_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -62px -31px no-repeat; +} + +.award31x31.missions_pandora_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) 0 -62px no-repeat; +} + +.award31x31.missions_pandora_hero_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -31px -62px no-repeat; +} + +.award31x31.missions_pandora_servant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -62px -62px no-repeat; +} + +.award31x31.missions_pandora_servant_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -93px 0 no-repeat; +} + +.award31x31.missions_pandora_spirit_finder_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -93px -31px no-repeat; +} + +.award31x31.missions_pandora_spirit_finder_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) 0 0 no-repeat; +} + +.award31x31.missions_pandora_spirit_finder_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) 0 -93px no-repeat; +} + +.award31x31.missions_pandora_spirit_finder_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -31px -93px no-repeat; +} + +.award31x31.missions_pandora_spirit_hunter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -62px -93px no-repeat; +} + +.award31x31.missions_pandora_spirit_hunter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -93px -93px no-repeat; +} + +.award31x31.missions_pandora_spirit_hunter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -124px 0 no-repeat; +} + +.award31x31.missions_pandora_spirit_hunter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -124px -31px no-repeat; +} + +.award31x31.missions_pandora_spirit_trapper_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -124px -62px no-repeat; +} + +.award31x31.missions_pandora_spirit_trapper_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -124px -93px no-repeat; +} + +.award31x31.missions_pandora_spirit_trapper_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) 0 -124px no-repeat; +} + +.award31x31.missions_pandora_spirit_trapper_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_31x31_5dd7aa3.png) -31px -124px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.missions_pandora_champion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -76px 0 no-repeat; +} + +.award76x76.missions_pandora_champion_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -228px -152px no-repeat; +} + +.award76x76.missions_pandora_closing_box_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) 0 -76px no-repeat; +} + +.award76x76.missions_pandora_closing_box_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -76px -76px no-repeat; +} + +.award76x76.missions_pandora_closing_box_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -152px 0 no-repeat; +} + +.award76x76.missions_pandora_closing_box_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -152px -76px no-repeat; +} + +.award76x76.missions_pandora_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) 0 -152px no-repeat; +} + +.award76x76.missions_pandora_hero_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -76px -152px no-repeat; +} + +.award76x76.missions_pandora_servant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -152px -152px no-repeat; +} + +.award76x76.missions_pandora_servant_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -228px 0 no-repeat; +} + +.award76x76.missions_pandora_spirit_finder_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -228px -76px no-repeat; +} + +.award76x76.missions_pandora_spirit_finder_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) 0 0 no-repeat; +} + +.award76x76.missions_pandora_spirit_finder_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) 0 -228px no-repeat; +} + +.award76x76.missions_pandora_spirit_finder_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -76px -228px no-repeat; +} + +.award76x76.missions_pandora_spirit_hunter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -152px -228px no-repeat; +} + +.award76x76.missions_pandora_spirit_hunter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -228px -228px no-repeat; +} + +.award76x76.missions_pandora_spirit_hunter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -304px 0 no-repeat; +} + +.award76x76.missions_pandora_spirit_hunter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -304px -76px no-repeat; +} + +.award76x76.missions_pandora_spirit_trapper_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -304px -152px no-repeat; +} + +.award76x76.missions_pandora_spirit_trapper_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -304px -228px no-repeat; +} + +.award76x76.missions_pandora_spirit_trapper_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) 0 -304px no-repeat; +} + +.award76x76.missions_pandora_spirit_trapper_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_pandora_76x76_dac95b9.png) -76px -304px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.bloody_glance_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -31px 0 no-repeat; +} + +.award31x31.dark_conjurer_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -62px -62px no-repeat; +} + +.award31x31.dark_conjurer_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) 0 -31px no-repeat; +} + +.award31x31.dark_conjurer_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -31px -31px no-repeat; +} + +.award31x31.dark_conjurer_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -62px 0 no-repeat; +} + +.award31x31.dark_scribe_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -62px -31px no-repeat; +} + +.award31x31.dark_scribe_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) 0 -62px no-repeat; +} + +.award31x31.dark_scribe_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -31px -62px no-repeat; +} + +.award31x31.dark_scribe_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) 0 0 no-repeat; +} + +.award31x31.grand_master_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -93px 0 no-repeat; +} + +.award31x31.grand_master_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -93px -31px no-repeat; +} + +.award31x31.grand_master_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -93px -62px no-repeat; +} + +.award31x31.grand_master_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) 0 -93px no-repeat; +} + +.award31x31.master_conjurer_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -31px -93px no-repeat; +} + +.award31x31.occult_knowledge_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -62px -93px no-repeat; +} + +.award31x31.present_of_the_dead_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_31x31_a2789ae.png) -93px -93px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.bloody_glance_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -76px 0 no-repeat; +}.award76x76.dark_conjurer_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -152px -152px no-repeat; +} + +.award76x76.dark_conjurer_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) 0 -76px no-repeat; +} + +.award76x76.dark_conjurer_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -76px -76px no-repeat; +} + +.award76x76.dark_conjurer_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -152px 0 no-repeat; +} + +.award76x76.dark_scribe_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -152px -76px no-repeat; +} + +.award76x76.dark_scribe_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) 0 -152px no-repeat; +} + +.award76x76.dark_scribe_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -76px -152px no-repeat; +} + +.award76x76.dark_scribe_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) 0 0 no-repeat; +} + +.award76x76.grand_master_reoccurring_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -228px 0 no-repeat; +} + +.award76x76.grand_master_reoccurring_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -228px -76px no-repeat; +} + +.award76x76.grand_master_reoccurring_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -228px -152px no-repeat; +} + +.award76x76.grand_master_reoccurring_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) 0 -228px no-repeat; +} + +.award76x76.master_conjurer_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -76px -228px no-repeat; +} + +.award76x76.occult_knowledge_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -152px -228px no-repeat; +} + +.award76x76.present_of_the_dead_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_incantation_76x76_adea578.png) -228px -228px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.hydra_defeated { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hydra_31x31_fd29256.png) 0 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.hydra_defeated { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_hydra_76x76_7835082.png) 0 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.easter_created_eggs_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -76px 0 no-repeat; +} + +.award76x76.easter_created_eggs_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -152px -152px no-repeat; +} + +.award76x76.easter_created_eggs_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) 0 -76px no-repeat; +} + +.award76x76.easter_created_eggs_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -76px -76px no-repeat; +} + +.award76x76.easter_flower_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -152px 0 no-repeat; +} + +.award76x76.easter_golden_hen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -152px -76px no-repeat; +} + +.award76x76.easter_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) 0 -152px no-repeat; +} + +.award76x76.easter_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -76px -152px no-repeat; +} + +.award76x76.easter_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) 0 0 no-repeat; +} + +.award76x76.easter_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -228px 0 no-repeat; +} + +.award76x76.easter_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -228px -76px no-repeat; +} + +.award76x76.easter_revealed_recipes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -228px -152px no-repeat; +} + +.award76x76.easter_revealed_recipes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) 0 -228px no-repeat; +} + +.award76x76.easter_revealed_recipes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -76px -228px no-repeat; +} + +.award76x76.easter_revealed_recipes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -152px -228px no-repeat; +} + +.award76x76.easter_sweet_beak { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_76x76_10e5285.png) -228px -228px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.easter_created_eggs_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -31px 0 no-repeat; +} + +.award31x31.easter_created_eggs_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -62px -62px no-repeat; +} + +.award31x31.easter_created_eggs_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) 0 -31px no-repeat; +} + +.award31x31.easter_created_eggs_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -31px -31px no-repeat; +} + +.award31x31.easter_flower_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -62px 0 no-repeat; +} + +.award31x31.easter_golden_hen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -62px -31px no-repeat; +} + +.award31x31.easter_ranking_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) 0 -62px no-repeat; +} + +.award31x31.easter_ranking_overall_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -31px -62px no-repeat; +} + +.award31x31.easter_ranking_overall_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) 0 0 no-repeat; +} + +.award31x31.easter_ranking_overall_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -93px 0 no-repeat; +} + +.award31x31.easter_ranking_overall_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -93px -31px no-repeat; +} + +.award31x31.easter_revealed_recipes_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -93px -62px no-repeat; +} + +.award31x31.easter_revealed_recipes_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) 0 -93px no-repeat; +} + +.award31x31.easter_revealed_recipes_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -31px -93px no-repeat; +} + +.award31x31.easter_revealed_recipes_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -62px -93px no-repeat; +} + +.award31x31.easter_sweet_beak { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_easter_reoccurring_31x31_0fed8d0.png) -93px -93px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.gridevent_all_figures_in_grid_battleships { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) 0 0 no-repeat; +} + +.award31x31.gridevent_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -31px 0 no-repeat; +} + +.award31x31.gridevent_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) 0 -31px no-repeat; +} + +.award31x31.gridevent_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -31px -31px no-repeat; +} + +.award31x31.gridevent_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -62px 0 no-repeat; +} + +.award31x31.gridevent_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -62px -31px no-repeat; +} + +.award31x31.gridevent_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) 0 -62px no-repeat; +} + +.award31x31.gridevent_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -31px -62px no-repeat; +} + +.award31x31.gridevent_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -62px -62px no-repeat; +} + +.award31x31.gridevent_bireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -93px 0 no-repeat; +} + +.award31x31.gridevent_bireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -93px -31px no-repeat; +} + +.award31x31.gridevent_bireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -93px -62px no-repeat; +} + +.award31x31.gridevent_bireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) 0 -93px no-repeat; +} + +.award31x31.gridevent_demolition_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -31px -93px no-repeat; +} + +.award31x31.gridevent_demolition_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -62px -93px no-repeat; +} + +.award31x31.gridevent_demolition_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -93px -93px no-repeat; +} + +.award31x31.gridevent_demolition_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -124px 0 no-repeat; +} + +.award31x31.gridevent_grand_prize_battleships_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -124px -31px no-repeat; +} + +.award31x31.gridevent_grand_prize_battleships_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -124px -62px no-repeat; +} + +.award31x31.gridevent_grand_prize_battleships_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -124px -93px no-repeat; +} + +.award31x31.gridevent_grand_prize_battleships_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) 0 -124px no-repeat; +} + +.award31x31.gridevent_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -31px -124px no-repeat; +} + +.award31x31.gridevent_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -62px -124px no-repeat; +} + +.award31x31.gridevent_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -93px -124px no-repeat; +} + +.award31x31.gridevent_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -124px -124px no-repeat; +} + +.award31x31.gridevent_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -155px 0 no-repeat; +} + +.award31x31.gridevent_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -155px -31px no-repeat; +} + +.award31x31.gridevent_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -155px -62px no-repeat; +} + +.award31x31.gridevent_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -155px -93px no-repeat; +} + +.award31x31.gridevent_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -155px -124px no-repeat; +} + +.award31x31.gridevent_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) 0 -155px no-repeat; +} + +.award31x31.gridevent_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -31px -155px no-repeat; +} + +.award31x31.gridevent_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_31x31_a5bee1c.png) -62px -155px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.gridevent_all_figures_in_grid_battleships { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) 0 0 no-repeat; +} + +.award76x76.gridevent_attack_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -76px 0 no-repeat; +} + +.award76x76.gridevent_attack_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) 0 -76px no-repeat; +} + +.award76x76.gridevent_attack_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -76px -76px no-repeat; +} + +.award76x76.gridevent_attack_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -152px 0 no-repeat; +} + +.award76x76.gridevent_big_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -152px -76px no-repeat; +} + +.award76x76.gridevent_big_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) 0 -152px no-repeat; +} + +.award76x76.gridevent_big_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -76px -152px no-repeat; +} + +.award76x76.gridevent_big_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -152px -152px no-repeat; +} + +.award76x76.gridevent_bireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -228px 0 no-repeat; +} + +.award76x76.gridevent_bireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -228px -76px no-repeat; +} + +.award76x76.gridevent_bireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -228px -152px no-repeat; +} + +.award76x76.gridevent_bireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) 0 -228px no-repeat; +} + +.award76x76.gridevent_demolition_ship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -76px -228px no-repeat; +} + +.award76x76.gridevent_demolition_ship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -152px -228px no-repeat; +} + +.award76x76.gridevent_demolition_ship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -228px -228px no-repeat; +} + +.award76x76.gridevent_demolition_ship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -304px 0 no-repeat; +} + +.award76x76.gridevent_grand_prize_battleships_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -304px -76px no-repeat; +} + +.award76x76.gridevent_grand_prize_battleships_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -304px -152px no-repeat; +} + +.award76x76.gridevent_grand_prize_battleships_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -304px -228px no-repeat; +} + +.award76x76.gridevent_grand_prize_battleships_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) 0 -304px no-repeat; +} + +.award76x76.gridevent_sea_monster_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -76px -304px no-repeat; +} + +.award76x76.gridevent_sea_monster_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -152px -304px no-repeat; +} + +.award76x76.gridevent_sea_monster_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -228px -304px no-repeat; +} + +.award76x76.gridevent_sea_monster_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -304px -304px no-repeat; +} + +.award76x76.gridevent_small_transporter_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -380px 0 no-repeat; +} + +.award76x76.gridevent_small_transporter_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -380px -76px no-repeat; +} + +.award76x76.gridevent_small_transporter_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -380px -152px no-repeat; +} + +.award76x76.gridevent_small_transporter_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -380px -228px no-repeat; +} + +.award76x76.gridevent_trireme_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -380px -304px no-repeat; +} + +.award76x76.gridevent_trireme_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) 0 -380px no-repeat; +} + +.award76x76.gridevent_trireme_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -76px -380px no-repeat; +} + +.award76x76.gridevent_trireme_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_battleships_76x76_b5a9193.png) -152px -380px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.festive_muse_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) 0 0 no-repeat; +} + +.award31x31.festive_muse_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -31px 0 no-repeat; +} + +.award31x31.festive_muse_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) 0 -31px no-repeat; +} + +.award31x31.festive_muse_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -31px -31px no-repeat; +} + +.award31x31.fortune_control { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -62px 0 no-repeat; +} + +.award31x31.fortune_of_immortals_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -62px -31px no-repeat; +} + +.award31x31.fortune_of_immortals_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) 0 -62px no-repeat; +} + +.award31x31.fortune_of_immortals_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -31px -62px no-repeat; +} + +.award31x31.fortune_of_immortals_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -62px -62px no-repeat; +} + +.award31x31.leave_no_chance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -93px 0 no-repeat; +} + +.award31x31.tyches_challenger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -93px -31px no-repeat; +} + +.award31x31.tyches_challenger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -93px -62px no-repeat; +} + +.award31x31.tyches_challenger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) 0 -93px no-repeat; +} + +.award31x31.tyches_challenger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_31x31_d358646.png) -31px -93px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.festive_muse_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) 0 0 no-repeat; +} + +.award76x76.festive_muse_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -76px 0 no-repeat; +} + +.award76x76.festive_muse_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) 0 -76px no-repeat; +} + +.award76x76.festive_muse_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -76px -76px no-repeat; +} + +.award76x76.fortune_control { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -152px 0 no-repeat; +} + +.award76x76.fortune_of_immortals_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -152px -76px no-repeat; +} + +.award76x76.fortune_of_immortals_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) 0 -152px no-repeat; +} + +.award76x76.fortune_of_immortals_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -76px -152px no-repeat; +} + +.award76x76.fortune_of_immortals_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -152px -152px no-repeat; +} + +.award76x76.leave_no_chance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -228px 0 no-repeat; +} + +.award76x76.tyches_challenger_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -228px -76px no-repeat; +} + +.award76x76.tyches_challenger_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -228px -152px no-repeat; +} + +.award76x76.tyches_challenger_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) 0 -228px no-repeat; +} + +.award76x76.tyches_challenger_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_rota_76x76_f7d540b.png) -76px -228px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.all_opportunities { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -31px 0 no-repeat; +} + +.award31x31.divine_reward_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -31px -62px no-repeat; +} + +.award31x31.divine_reward_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) 0 -31px no-repeat; +} + +.award31x31.divine_reward_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -31px -31px no-repeat; +} + +.award31x31.divine_reward_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -62px 0 no-repeat; +} + +.award31x31.epic_challenge_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -62px -31px no-repeat; +} + +.award31x31.epic_challenge_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) 0 -62px no-repeat; +} + +.award31x31.epic_challenge_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) 0 0 no-repeat; +} + +.award31x31.epic_challenge_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -62px -62px no-repeat; +} + +.award31x31.epic_inspiration_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -93px 0 no-repeat; +} + +.award31x31.epic_inspiration_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -93px -31px no-repeat; +} + +.award31x31.epic_inspiration_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -93px -62px no-repeat; +} + +.award31x31.epic_inspiration_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) 0 -93px no-repeat; +} + +.award31x31.true_devotion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_31x31_9168b9a.png) -31px -93px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.all_opportunities { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -76px 0 no-repeat; +} + +.award76x76.divine_reward_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -76px -152px no-repeat; +} + +.award76x76.divine_reward_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) 0 -76px no-repeat; +} + +.award76x76.divine_reward_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -76px -76px no-repeat; +} + +.award76x76.divine_reward_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -152px 0 no-repeat; +} + +.award76x76.epic_challenge_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -152px -76px no-repeat; +} + +.award76x76.epic_challenge_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) 0 -152px no-repeat; +} + +.award76x76.epic_challenge_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) 0 0 no-repeat; +} + +.award76x76.epic_challenge_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -152px -152px no-repeat; +} + +.award76x76.epic_inspiration_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -228px 0 no-repeat; +} + +.award76x76.epic_inspiration_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -228px -76px no-repeat; +} + +.award76x76.epic_inspiration_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -228px -152px no-repeat; +} + +.award76x76.epic_inspiration_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) 0 -228px no-repeat; +} + +.award76x76.true_devotion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_epic_battle_76x76_f9f5491.png) -76px -228px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.divine_blessings { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_tasks_event_31x31_f10d557.png) 0 0 no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.divine_blessings { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_tasks_event_76x76_519ed1c.png) 0 0 no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.missions_dionysia_dignified_processions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -31px 0 no-repeat; +} + +.award31x31.missions_dionysia_dignified_processions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -93px 0 no-repeat; +} + +.award31x31.missions_dionysia_dignified_processions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) 0 -31px no-repeat; +} + +.award31x31.missions_dionysia_dignified_processions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -31px -31px no-repeat; +} + +.award31x31.missions_dionysia_dionysus_champion_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -62px 0 no-repeat; +} + +.award31x31.missions_dionysia_dionysus_hero_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -62px -31px no-repeat; +} + +.award31x31.missions_dionysia_dionysus_servant_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) 0 -62px no-repeat; +} + +.award31x31.missions_dionysia_divine_guidance_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -31px -62px no-repeat; +} + +.award31x31.missions_dionysia_divine_guidance_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -62px -62px no-repeat; +} + +.award31x31.missions_dionysia_divine_guidance_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) 0 0 no-repeat; +} + +.award31x31.missions_dionysia_divine_guidance_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -93px -31px no-repeat; +} + +.award31x31.missions_dionysia_holy_festivals_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -93px -62px no-repeat; +} + +.award31x31.missions_dionysia_holy_festivals_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) 0 -93px no-repeat; +} + +.award31x31.missions_dionysia_holy_festivals_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -31px -93px no-repeat; +} + +.award31x31.missions_dionysia_holy_festivals_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -62px -93px no-repeat; +} + +.award31x31.missions_dionysia_tranquil_times_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -93px -93px no-repeat; +} + +.award31x31.missions_dionysia_tranquil_times_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -124px 0 no-repeat; +} + +.award31x31.missions_dionysia_tranquil_times_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -124px -31px no-repeat; +} + +.award31x31.missions_dionysia_tranquil_times_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_31x31_4de286d.png) -124px -62px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.missions_dionysia_dignified_processions_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -76px 0 no-repeat; +} + +.award76x76.missions_dionysia_dignified_processions_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -228px 0 no-repeat; +} + +.award76x76.missions_dionysia_dignified_processions_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) 0 -76px no-repeat; +} + +.award76x76.missions_dionysia_dignified_processions_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -76px -76px no-repeat; +} + +.award76x76.missions_dionysia_dionysus_champion_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -152px 0 no-repeat; +} + +.award76x76.missions_dionysia_dionysus_hero_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -152px -76px no-repeat; +} + +.award76x76.missions_dionysia_dionysus_servant_overall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) 0 -152px no-repeat; +} + +.award76x76.missions_dionysia_divine_guidance_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -76px -152px no-repeat; +} + +.award76x76.missions_dionysia_divine_guidance_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -152px -152px no-repeat; +} + +.award76x76.missions_dionysia_divine_guidance_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) 0 0 no-repeat; +} + +.award76x76.missions_dionysia_divine_guidance_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -228px -76px no-repeat; +} + +.award76x76.missions_dionysia_holy_festivals_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -228px -152px no-repeat; +} + +.award76x76.missions_dionysia_holy_festivals_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) 0 -228px no-repeat; +} + +.award76x76.missions_dionysia_holy_festivals_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -76px -228px no-repeat; +} + +.award76x76.missions_dionysia_holy_festivals_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -152px -228px no-repeat; +} + +.award76x76.missions_dionysia_tranquil_times_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -228px -228px no-repeat; +} + +.award76x76.missions_dionysia_tranquil_times_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -304px 0 no-repeat; +} + +.award76x76.missions_dionysia_tranquil_times_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -304px -76px no-repeat; +} + +.award76x76.missions_dionysia_tranquil_times_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_dionysia_76x76_5021e2e.png) -304px -152px no-repeat; +} + +.award31x31 { + width: 31px; + height: 31px; +} + +.award31x31.gridevent_blessed_explorer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) 0 0 no-repeat; +} + +.award31x31.gridevent_desires_embrace_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -31px 0 no-repeat; +} + +.award31x31.gridevent_desires_embrace_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) 0 -31px no-repeat; +} + +.award31x31.gridevent_desires_embrace_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -31px -31px no-repeat; +} + +.award31x31.gridevent_desires_embrace_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -62px 0 no-repeat; +} + +.award31x31.gridevent_matrons_honor_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -62px -31px no-repeat; +} + +.award31x31.gridevent_matrons_honor_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) 0 -62px no-repeat; +} + +.award31x31.gridevent_matrons_honor_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -31px -62px no-repeat; +} + +.award31x31.gridevent_matrons_honor_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -62px -62px no-repeat; +} + +.award31x31.gridevent_natures_blessings_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -93px 0 no-repeat; +} + +.award31x31.gridevent_natures_blessings_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -93px -31px no-repeat; +} + +.award31x31.gridevent_natures_blessings_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -93px -62px no-repeat; +} + +.award31x31.gridevent_natures_blessings_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) 0 -93px no-repeat; +} + +.award31x31.gridevent_oceans_treasure_trove_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -31px -93px no-repeat; +} + +.award31x31.gridevent_oceans_treasure_trove_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -62px -93px no-repeat; +} + +.award31x31.gridevent_oceans_treasure_trove_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -93px -93px no-repeat; +} + +.award31x31.gridevent_oceans_treasure_trove_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -124px 0 no-repeat; +} + +.award31x31.gridevent_shades_bounty_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -124px -31px no-repeat; +} + +.award31x31.gridevent_shades_bounty_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -124px -62px no-repeat; +} + +.award31x31.gridevent_shades_bounty_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -124px -93px no-repeat; +} + +.award31x31.gridevent_shades_bounty_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) 0 -124px no-repeat; +} + +.award31x31.gridevent_shining_star_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -31px -124px no-repeat; +} + +.award31x31.gridevent_shining_star_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -62px -124px no-repeat; +} + +.award31x31.gridevent_shining_star_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -93px -124px no-repeat; +} + +.award31x31.gridevent_shining_star_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -124px -124px no-repeat; +} + +.award31x31.gridevent_wisdoms_triumph_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -155px 0 no-repeat; +} + +.award31x31.gridevent_wisdoms_triumph_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -155px -31px no-repeat; +} + +.award31x31.gridevent_wisdoms_triumph_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -155px -62px no-repeat; +} + +.award31x31.gridevent_wisdoms_triumph_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -155px -93px no-repeat; +} + +.award31x31.gridevent_zeus_blessing_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -155px -124px no-repeat; +} + +.award31x31.gridevent_zeus_blessing_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) 0 -155px no-repeat; +} + +.award31x31.gridevent_zeus_blessing_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -31px -155px no-repeat; +} + +.award31x31.gridevent_zeus_blessing_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_31x31_7a46940.png) -62px -155px no-repeat; +} + +.award76x76 { + width: 76px; + height: 76px; +} + +.award76x76.gridevent_blessed_explorer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) 0 0 no-repeat; +} + +.award76x76.gridevent_desires_embrace_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -76px 0 no-repeat; +} + +.award76x76.gridevent_desires_embrace_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) 0 -76px no-repeat; +} + +.award76x76.gridevent_desires_embrace_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -76px -76px no-repeat; +} + +.award76x76.gridevent_desires_embrace_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -152px 0 no-repeat; +} + +.award76x76.gridevent_matrons_honor_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -152px -76px no-repeat; +} + +.award76x76.gridevent_matrons_honor_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) 0 -152px no-repeat; +} + +.award76x76.gridevent_matrons_honor_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -76px -152px no-repeat; +} + +.award76x76.gridevent_matrons_honor_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -152px -152px no-repeat; +} + +.award76x76.gridevent_natures_blessings_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -228px 0 no-repeat; +} + +.award76x76.gridevent_natures_blessings_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -228px -76px no-repeat; +} + +.award76x76.gridevent_natures_blessings_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -228px -152px no-repeat; +} + +.award76x76.gridevent_natures_blessings_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) 0 -228px no-repeat; +} + +.award76x76.gridevent_oceans_treasure_trove_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -76px -228px no-repeat; +} + +.award76x76.gridevent_oceans_treasure_trove_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -152px -228px no-repeat; +} + +.award76x76.gridevent_oceans_treasure_trove_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -228px -228px no-repeat; +} + +.award76x76.gridevent_oceans_treasure_trove_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -304px 0 no-repeat; +} + +.award76x76.gridevent_shades_bounty_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -304px -76px no-repeat; +} + +.award76x76.gridevent_shades_bounty_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -304px -152px no-repeat; +} + +.award76x76.gridevent_shades_bounty_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -304px -228px no-repeat; +} + +.award76x76.gridevent_shades_bounty_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) 0 -304px no-repeat; +} + +.award76x76.gridevent_shining_star_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -76px -304px no-repeat; +} + +.award76x76.gridevent_shining_star_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -152px -304px no-repeat; +} + +.award76x76.gridevent_shining_star_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -228px -304px no-repeat; +} + +.award76x76.gridevent_shining_star_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -304px -304px no-repeat; +} + +.award76x76.gridevent_wisdoms_triumph_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -380px 0 no-repeat; +} + +.award76x76.gridevent_wisdoms_triumph_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -380px -76px no-repeat; +} + +.award76x76.gridevent_wisdoms_triumph_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -380px -152px no-repeat; +} + +.award76x76.gridevent_wisdoms_triumph_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -380px -228px no-repeat; +} + +.award76x76.gridevent_zeus_blessing_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -380px -304px no-repeat; +} + +.award76x76.gridevent_zeus_blessing_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) 0 -380px no-repeat; +} + +.award76x76.gridevent_zeus_blessing_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -76px -380px no-repeat; +} + +.award76x76.gridevent_zeus_blessing_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/awards/awards_gods_gifts_76x76_f37398d.png) -152px -380px no-repeat; +} + +.attack_type32x32 { + width: 32px; + height: 32px; +} + +.attack_type32x32.abort { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat 0 0; +} + +.attack_type32x32.attack_breakthrough { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -32px 0; +} + +.attack_type32x32.attack_incoming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat 0 -32px; +} + +.attack_type32x32.attack_land { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -32px -32px; +} + +.attack_type32x32.attack_pillage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -64px 0; +} + +.attack_type32x32.attack_portal_attack_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -64px -32px; +} + +.attack_type32x32.attack_portal_support_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat 0 -64px; +} + +.attack_type32x32.attack_sea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -32px -64px; +} + +.attack_type32x32.attack_spy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -64px -64px; +} + +.attack_type32x32.attack_support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -96px 0; +} + +.attack_type32x32.attack_takeover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -96px -32px; +} + +.attack_type32x32.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -96px -64px; +} + +.attack_type32x32.colonization_failed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat 0 -96px; +} + +.attack_type32x32.conquer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -32px -96px; +} + +.attack_type32x32.farm_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -64px -96px; +} + +.attack_type32x32.foundation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -96px -96px; +} + +.attack_type32x32.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -128px 0; +} + +.attack_type32x32.revolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -128px -32px; +} + +.attack_type32x32.revolt_arising { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -128px -64px; +} + +.attack_type32x32.revolt_running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -128px -96px; +} + +.attack_type32x32.siege { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat 0 -128px; +} + +.attack_type32x32.support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -32px -128px; +} + +.attack_type32x32.trade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -64px -128px; +} + +.support_filter24x24 { + width: 24px; + height: 48px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/filter_24x24_455e697.png) no-repeat; +} + +.support_filter24x24.abort { + background-position: 0 0; +} + +.support_filter24x24.abort.inactive { + background-position: 0 -24px; +} + +.support_filter24x24.attack_land { + background-position: -24px 0; +} + +.support_filter24x24.attack_land.inactive { + background-position: -24px -24px; +} + +.support_filter24x24.attack_sea { + background-position: -48px 0; +} + +.support_filter24x24.attack_sea.inactive { + background-position: -48px -24px; +} + +.support_filter24x24.attack_spy { + background-position: -72px 0; +} + +.support_filter24x24.attack_spy.inactive { + background-position: -72px -24px; +} + +.support_filter24x24.attack_takeover { + background-position: -96px 0; +} + +.support_filter24x24.attack_takeover.inactive { + background-position: -96px -24px; +} + +.support_filter24x24.breakthrough { + background-position: -120px 0; +} + +.support_filter24x24.breakthrough.inactive { + background-position: -120px -24px; +} + +.support_filter24x24.farm_attack { + background-position: -144px 0; +} + +.support_filter24x24.farm_attack.inactive { + background-position: -144px -24px; +} + +.support_filter24x24.portal_attack_olympus { + background-position: -168px 0; +} + +.support_filter24x24.portal_attack_olympus.inactive { + background-position: -168px -24px; +} + +.support_filter24x24.portal_support_olympus { + background-position: -192px 0; +} + +.support_filter24x24.portal_support_olympus.inactive { + background-position: -192px -24px; +} + +.support_filter24x24.revolt { + background-position: -216px 0; +} + +.support_filter24x24.revolt.inactive { + background-position: -216px -24px; +} + +.support_filter24x24.support { + background-position: -240px 0; +} + +.support_filter24x24.support.inactive { + background-position: -240px -24px; +} + +.advisors22x22 { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_22x22.jpg); + width: 22px; + height: 22px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.advisors22x22.captain_active { + background-position: 0 0; +} + +.advisors22x22.commander_active { + background-position: -22px 0; +} + +.advisors22x22.curator_active { + background-position: -44px 0; +} + +.advisors22x22.priest_active { + background-position: -66px 0; +} + +.advisors22x22.trader_active { + background-position: -88px 0; +} + +.advisors22x22.captain_inactive { + background-position: -110px 0; +} + +.advisors22x22.commander_inactive { + background-position: -132px 0; +} + +.advisors22x22.curator_inactive { + background-position: -154px 0; +} + +.advisors22x22.priest_inactive { + background-position: -176px 0; +} + +.advisors22x22.trader_inactive { + background-position: -198px 0; +} + +.advisors22x22.captain_sepia { + background-position: -220px 0; +} + +.advisors22x22.commander_sepia { + background-position: -242px 0; +} + +.advisors22x22.curator_sepia { + background-position: -264px 0; +} + +.advisors22x22.priest_sepia { + background-position: -286px 0; +} + +.advisors22x22.trader_sepia { + background-position: -308px 0; +} + +.advisors40x40 { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_40x40.jpg); + width: 40px; + height: 40px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.advisors40x40.captain { + background-position: 0 0; +} + +.advisors40x40.commander { + background-position: -40px 0; +} + +.advisors40x40.curator { + background-position: -80px 0; +} + +.advisors40x40.priest { + background-position: -120px 0; +} + +.advisors40x40.trader { + background-position: -160px 0; +} + +.advisors64x64 { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_64x64.jpg); + width: 64px; + height: 64px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.advisors64x64.captain { + background-position: 0 0; +} + +.advisors64x64.commander { + background-position: -64px 0; +} + +.advisors64x64.curator { + background-position: -128px 0; +} + +.advisors64x64.priest { + background-position: -192px 0; +} + +.advisors64x64.trader { + background-position: -256px 0; +} + +.advisors132x132 { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_132x132.jpg); + width: 132px; + height: 132px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.advisors132x132.captain { + background-position: 0 0; +} + +.advisors132x132.commander { + background-position: -132px 0; +} + +.advisors132x132.curator { + background-position: -264px 0; +} + +.advisors132x132.priest { + background-position: -396px 0; +} + +.advisors132x132.trader { + background-position: -528px 0; +} + +.advisors150x335 { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_150x335_2.81.jpg); + width: 150px; + height: 335px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.advisors150x335.captain_active { + background-position: 0 0; +} + +.advisors150x335.captain_inactive { + background-position: -150px 0; +} + +.advisors150x335.commander_active { + background-position: -300px 0; +} + +.advisors150x335.commander_inactive { + background-position: -450px 0; +} + +.advisors150x335.priest_active { + background-position: -600px 0; +} + +.advisors150x335.priest_inactive { + background-position: -750px 0; +} + +.advisors150x335.curator_active { + background-position: -900px 0; +} + +.advisors150x335.curator_inactive { + background-position: -1050px 0; +} + +.advisors150x335.trader_active { + background-position: -1200px 0; +} + +.advisors150x335.trader_inactive { + background-position: -1350px 0; +} + +.place_simulator .alliance_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -40px 0; + width: 40px; + height: 40px; +} + +.place_simulator .breach { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -80px -80px; + width: 40px; + height: 40px; +} + +.place_simulator .building_tower { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat 0 -40px; + width: 40px; + height: 40px; +} + +.place_simulator .combat_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -40px -40px; + width: 40px; + height: 40px; +} + +.place_simulator .ground_factor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -80px 0; + width: 40px; + height: 40px; +} + +.place_simulator .is_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -80px -40px; + width: 40px; + height: 40px; +} + +.place_simulator .luck { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat 0 -80px; + width: 40px; + height: 40px; +} + +.place_simulator .morale { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -40px -80px; + width: 40px; + height: 40px; +} + +.place_simulator .naval_factor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat 0 0; + width: 40px; + height: 40px; +} + +.place_simulator .power_desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -120px 0; + width: 40px; + height: 40px; +} + +.place_simulator .power_effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -120px -40px; + width: 40px; + height: 40px; +} + +.place_simulator .power_fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -120px -80px; + width: 40px; + height: 40px; +} + +.place_simulator .power_strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat 0 -120px; + width: 40px; + height: 40px; +} + +.place_simulator .research_divine_selection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -40px -120px; + width: 40px; + height: 40px; +} + +.place_simulator .research_phalanx { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -80px -120px; + width: 40px; + height: 40px; +} + +.place_simulator .research_ram { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -120px -120px; + width: 40px; + height: 40px; +} + +.place_simulator .wall_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -160px 0; + width: 40px; + height: 40px; +} + +.simulator_sprite_images .artifact_level_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat 0 -112px; + width: 67px; + height: 67px; +} + +.simulator_sprite_images .button_down { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -691px -112px; + width: 19px; + height: 18px; +} + +.simulator_sprite_images .button_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -280px -131px; + width: 19px; + height: 18px; +} + +.simulator_sprite_images .button_down_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -261px -131px; + width: 19px; + height: 18px; +} + +.simulator_sprite_images .button_up { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -242px -131px; + width: 19px; + height: 18px; +} + +.simulator_sprite_images .button_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -223px -131px; + width: 19px; + height: 18px; +} + +.simulator_sprite_images .button_up_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -710px -112px; + width: 19px; + height: 18px; +} + +.simulator_sprite_images .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat 0 0; + width: 738px; + height: 112px; +} + +.simulator_sprite_images .hero_sort_button_all_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -379px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_all_default_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -431px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_all_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -483px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_all_selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -171px -131px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_all_selected_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -587px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_war_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -639px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_war_default_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -67px -131px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_war_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -119px -131px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_war_selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -535px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_war_selected_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -275px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_wisdom_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -223px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_wisdom_default_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -171px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_wisdom_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -119px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_wisdom_selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -67px -112px; + width: 52px; + height: 19px; +} + +.simulator_sprite_images .hero_sort_button_wisdom_selected_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -327px -112px; + width: 52px; + height: 19px; +} + +.simulator_single_images .headerbar_green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/single_images/headerbar_green_7a10200.png) no-repeat 0 0; + width: 75px; + height: 23px; +} + +.simulator_single_images .headerbar_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/single_images/headerbar_red_baa334e.png) no-repeat 0 0; + width: 75px; + height: 23px; +} + +.grepo_box_window.simulator_configuration { + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 10px; + display: block; +} + +.grepo_box_window.simulator_configuration .grepo_box_background { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; + box-shadow: inset 0 0 10px #555; +} + +.grepo_box_window.simulator_configuration .content { + height: 445px; +} + +.grepo_box_window.simulator_configuration .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat 0 0; + width: 738px; + height: 112px; + position: absolute; +} + +.grepo_box_window.simulator_configuration .header .attacker, +.grepo_box_window.simulator_configuration .header .defender, +.grepo_box_window.simulator_configuration .header .headline { + font-weight: 600; +} + +.grepo_box_window.simulator_configuration .header .description, +.grepo_box_window.simulator_configuration .header .headline { + text-align: center; + color: #000; + margin: 0 auto; + position: relative; + max-width: 600px; + top: 20px; +} + +.grepo_box_window.simulator_configuration .header .attacker, +.grepo_box_window.simulator_configuration .header .defender { + color: #fff; + text-shadow: 1px 1px 0 #000; + position: absolute; + top: 86px; + width: 188px; + text-align: center; +} + +.grepo_box_window.simulator_configuration .header .attacker { + left: 74px; +} + +.grepo_box_window.simulator_configuration .header .defender { + right: 74px; +} + +.grepo_box_window.simulator_configuration .configuration_content { + position: absolute; + top: 117px; + height: 300px; + width: 750px; + margin-left: 15px; +} + +.grepo_box_window.simulator_configuration .configuration_content .viewport { + overflow: hidden; + height: 100%; + width: 98.5%; + position: relative; +} + +.grepo_box_window.simulator_configuration .configuration_content .categories { + min-height: 337px; + width: 720px; +} + +.grepo_box_window.simulator_configuration .configuration_content .attacker { + margin-left: 20px; + float: left; +} + +.grepo_box_window.simulator_configuration .configuration_content .attacker .configuration_section .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/single_images/headerbar_red_baa334e.png) no-repeat 0 0; + width: 75px; + height: 23px; +} + +.grepo_box_window.simulator_configuration .configuration_content .defender { + margin-right: 3px; + float: right; +} + +.grepo_box_window.simulator_configuration .configuration_content .defender .configuration_section .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/single_images/headerbar_green_7a10200.png) no-repeat 0 0; + width: 75px; + height: 23px; +} + +.grepo_box_window.simulator_configuration .configuration_content .attacker, +.grepo_box_window.simulator_configuration .configuration_content .defender { + width: 344px; + height: 100%; + display: inline-block; + position: relative; +} + +.grepo_box_window.simulator_configuration .configuration_content .attacker .configuration_section .header, +.grepo_box_window.simulator_configuration .configuration_content .defender .configuration_section .header { + background-repeat: repeat-x; + width: 100%; + position: relative; + top: 0; + left: 0; + line-height: 23px; + cursor: pointer; + margin-left: 0; +} + +.grepo_box_window.simulator_configuration .configuration_content .category { + clear: both; +} + +.grepo_box_window.simulator_configuration .configuration_content .category:not(:first-child) { + padding-top: 10px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .header .text { + display: inline-block; + margin-left: 5px; + color: #fff; + text-shadow: 1px 1px 0 #000; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section.closed table { + display: none; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section table { + border-collapse: collapse; + border: none; + width: 100%; + color: #000; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section tr { + height: 45px; + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section tr:nth-child(even) { + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/even.png); +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section td { + border: 1px solid #d0be97; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section td:first-of-type { + width: 70px; + height: 70px; + text-align: center; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section td.description { + padding-left: 5px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section td.description .text { + display: inline-block; + vertical-align: middle; + max-width: 210px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .level { + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .arrow_buttons { + display: inline-block; + vertical-align: middle; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .btn_up { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -242px -131px; + width: 19px; + height: 18px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .btn_up:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -223px -131px; + width: 19px; + height: 18px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .btn_up:disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -710px -112px; + width: 19px; + height: 18px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .btn_down { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -691px -112px; + width: 19px; + height: 18px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .btn_down:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -280px -131px; + width: 19px; + height: 18px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .btn_down:disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -261px -131px; + width: 19px; + height: 18px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .spinner_horizontal { + margin: 4px; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .spinner_horizontal .border_l { + background-position: 0 0; + width: 5px; + height: 24px; + position: absolute; + top: 0; + left: 0; +} + +.grepo_box_window.simulator_configuration .configuration_content .configuration_section .spinner_horizontal .border_r { + background-position: -7px 0; + width: 11px; + height: 24px; + position: absolute; + top: 0; + right: 0; +} + +.grepo_box_window.simulator_configuration .btn_close { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -144px 0; + width: 24px; + height: 24px; + position: absolute; + right: 58px; + top: 24px; +} + +.grepo_box_window.simulator_configuration .btn_remove { + display: inline-block; + vertical-align: middle; + float: none; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup { + position: absolute; + padding: 10px; + text-align: center; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup[data-side=attacker] { + left: 67px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup[data-side=defender] { + left: 419px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .speechbubble_arrow_l { + left: -6px; + -webkit-transform: translateY(1px); + -ms-transform: translateY(1px); + -o-transform: translateY(1px); + transform: translateY(1px); +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .popup_content { + position: relative; + max-width: 270px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list { + position: relative; + display: inline-block; + color: #000; + text-align: center; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list .scrollbar { + opacity: initial; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list .js-scrollbar-content { + text-align: left; + display: inline-block; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples { + height: 260px; + width: 270px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .js-scrollbar-content { + text-align: left; + display: block; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option { + display: block; + min-height: 35px; + position: relative; + float: left; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .description { + vertical-align: middle; + display: inline-block; + margin: 5px 0 5px 5px; + width: 212px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon { + width: 30px; + height: 30px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat 0 -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat 0 -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat 0 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -30px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -30px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -30px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -60px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -60px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -60px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -90px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -90px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -90px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -120px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -120px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -120px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -150px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -150px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -150px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -180px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -180px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -180px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -210px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -210px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -210px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -240px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -240px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -240px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -270px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -270px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -270px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -300px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -300px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -300px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -330px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -330px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -330px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -360px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -360px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -360px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -390px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -390px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -390px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -420px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -420px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -420px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -450px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -450px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -450px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -480px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -480px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -480px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -510px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -510px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -510px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -540px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -540px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -540px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -570px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -570px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -570px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -600px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -600px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -600px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -630px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -630px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -630px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -660px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -660px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -660px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -690px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -690px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -690px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -720px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -720px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -720px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -750px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -750px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -750px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -780px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -780px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -780px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -810px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -810px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -810px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -840px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -840px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -840px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -870px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -870px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -870px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -900px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -900px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -900px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -930px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -930px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -930px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -960px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -960px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -960px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -990px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -990px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -990px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1020px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1020px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1020px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1050px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1050px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1050px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1080px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1080px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1080px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1110px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1110px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1110px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1140px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1140px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1140px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1170px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1170px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1170px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1200px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1200px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1200px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1230px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1230px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1230px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1260px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1260px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1260px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1290px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1290px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1290px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1320px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1320px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1320px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1350px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1350px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1350px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1380px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1380px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1380px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1410px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1410px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1410px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1440px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1440px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1440px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1470px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1470px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1470px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1500px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1500px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1500px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1530px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1530px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1530px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1560px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1560px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1560px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1590px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1590px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1590px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1620px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1620px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1620px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1650px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1650px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1650px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1680px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1680px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1680px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1710px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1710px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1710px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1740px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1740px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1740px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1770px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1770px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1770px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1800px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1800px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1800px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1830px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1830px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1830px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1860px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1860px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1860px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1890px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1890px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1890px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1920px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1920px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1920px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1950px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1950px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1950px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1980px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1980px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -1980px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2010px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2010px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2010px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2040px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2040px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2040px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2070px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2070px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2070px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2100px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2100px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2100px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2130px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2130px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2130px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2160px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2160px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2160px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2190px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2190px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2190px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2220px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2220px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2220px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2250px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2250px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2250px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2280px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2280px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2280px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2310px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2310px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2310px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2340px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2340px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2340px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2370px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2370px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2370px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2400px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2400px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2400px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2430px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2430px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2430px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2460px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2460px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2460px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2490px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2490px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2490px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2520px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2520px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2520px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2550px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2550px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2550px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2580px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2580px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2580px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2610px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2610px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2610px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2640px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2640px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2640px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2670px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2670px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2670px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2700px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2700px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2700px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2730px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2730px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2730px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2760px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2760px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2760px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2790px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2790px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2790px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2820px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2820px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2820px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2850px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2850px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2850px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2880px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2880px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2880px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2910px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2910px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2910px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2940px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2940px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2940px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2970px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2970px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -2970px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3000px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3000px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3000px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3030px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3030px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3030px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3060px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3060px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3060px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3090px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3090px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3090px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3120px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3120px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3120px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3150px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3150px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3150px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3180px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3180px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3180px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3210px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3210px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3210px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3240px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3240px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3240px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3270px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3270px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3270px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3300px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3300px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3300px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3330px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3330px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3330px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3360px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3360px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3360px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3390px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3390px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3390px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3420px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3420px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3420px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3450px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3450px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3450px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3480px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3480px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3480px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3510px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3510px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3510px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3540px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3540px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3540px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3570px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3570px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3570px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3600px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3600px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3600px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3630px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3630px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3630px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3660px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3660px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3660px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3690px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3690px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3690px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3720px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3720px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3720px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3750px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3750px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3750px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3780px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3780px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3780px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3810px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3810px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3810px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3840px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3840px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3840px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3870px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3870px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3870px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3900px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3900px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3900px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3930px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3930px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3930px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3960px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3960px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3960px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3990px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3990px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -3990px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4020px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4020px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4020px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4050px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4050px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4050px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4080px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4080px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4080px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4110px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4110px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4110px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4140px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4140px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4140px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4170px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4170px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4170px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4200px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4200px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4200px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4230px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4230px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4230px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4260px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4260px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4260px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4290px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4290px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4290px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4320px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4320px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4320px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4350px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4350px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4350px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4380px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4380px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4380px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4410px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4410px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4410px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4440px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4440px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4440px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4470px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4470px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4470px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4500px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4500px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4500px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4530px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4530px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4530px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4560px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4560px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4560px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4590px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4590px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4590px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4620px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4620px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_220d2aa.png) no-repeat -4620px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat 0 -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat 0 -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat 0 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -30px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -30px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -30px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -60px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -60px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -60px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -90px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -90px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -90px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -120px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -120px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -120px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -150px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -150px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -150px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -180px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -180px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -180px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -210px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -210px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -210px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -240px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -240px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -240px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -270px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -270px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -270px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -300px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -300px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -300px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -330px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -330px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -330px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -360px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -360px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -360px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -390px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -390px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -390px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -420px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -420px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -420px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -450px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -450px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -450px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -480px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -480px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -480px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -510px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -510px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -510px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -540px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -540px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -540px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -570px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -570px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -570px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -600px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -600px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -600px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -630px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -630px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -630px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -660px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -660px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -660px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -690px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -690px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -690px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -720px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -720px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -720px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -750px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -750px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -750px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -780px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -780px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -780px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -810px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -810px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -810px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -840px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -840px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -840px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -870px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -870px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -870px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -900px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -900px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -900px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -930px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -930px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -930px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -960px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -960px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -960px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -990px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -990px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -990px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1020px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1020px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1020px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1050px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1050px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1050px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1080px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1080px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1080px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1110px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1110px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1110px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1140px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1140px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1140px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1170px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1170px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1170px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1200px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1200px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1200px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1230px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1230px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1230px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1260px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1260px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1260px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1290px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1290px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1290px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1320px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1320px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1320px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1350px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1350px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1350px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1380px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1380px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1380px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1410px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1410px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1410px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1440px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1440px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1440px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1470px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1470px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1470px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1500px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1500px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1500px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1530px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1530px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1530px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1560px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1560px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1560px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1590px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1590px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1590px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1620px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1620px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1620px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1650px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1650px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1650px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1680px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1680px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1680px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1710px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1710px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1710px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1740px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1740px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1740px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1770px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1770px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1770px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1800px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1800px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1800px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1830px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1830px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1830px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1860px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1860px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1860px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1890px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1890px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1890px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1920px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1920px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1920px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1950px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1950px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1950px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1980px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1980px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -1980px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2010px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2010px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2010px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2040px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2040px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2040px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2070px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2070px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2070px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2100px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2100px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2100px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2130px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2130px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2130px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2160px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2160px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2160px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2190px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2190px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2190px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2220px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2220px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2220px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2250px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2250px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2250px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2280px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2280px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2280px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2310px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2310px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2310px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2340px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2340px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2340px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2370px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2370px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2370px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2400px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2400px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2400px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2430px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2430px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2430px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2460px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2460px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2460px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2490px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2490px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2490px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2520px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2520px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2520px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2550px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2550px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2550px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2580px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2580px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2580px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2610px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2610px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2610px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2640px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2640px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2640px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2670px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2670px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2670px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2700px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2700px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2700px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2730px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2730px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2730px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2760px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2760px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2760px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2790px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2790px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2790px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2820px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2820px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2820px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2850px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2850px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2850px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2880px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2880px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2880px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2910px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2910px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2910px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2940px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2940px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2940px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2970px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2970px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2970px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3000px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3000px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3000px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3030px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3030px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3030px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3060px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3060px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3060px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3090px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3090px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3090px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3120px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3120px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3120px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3150px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3150px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3150px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3180px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3180px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3180px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3210px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3210px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3210px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3240px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3240px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3240px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3270px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3270px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3270px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3300px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3300px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3300px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3330px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3330px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3330px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3360px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3360px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3360px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3390px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3390px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3390px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3420px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3420px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3420px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3450px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3450px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3450px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3480px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3480px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3480px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3510px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3510px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3510px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3540px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3540px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3540px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3570px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3570px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3570px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3600px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3600px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3600px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3630px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3630px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3630px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3660px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3660px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3660px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3690px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3690px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3690px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3720px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3720px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3720px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3750px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3750px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3750px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3780px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3780px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3780px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3810px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3810px -60px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3810px 0; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.temple_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -3330px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option .icon.temple_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_30x30_part2_b8a6ca8.png) no-repeat -2070px -30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list.temples .option:after { + height: 1px; + width: 360px; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + content: ''; + position: absolute; + bottom: 0; + left: 0; + width: 100%; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list .option { + cursor: pointer; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list .option.advisors40x40, +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list .option.building, +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list .option.place_image, +.grepo_box_window.simulator_configuration .configuration_option_popup .options_list .option.research { + margin: 2px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .headline { + color: #000; + font-weight: 600; + margin: 10px 30px; +} + +.grepo_box_window.simulator_configuration .configuration_option_popup .btn_close { + right: 0; + top: -5px; +} + +.grepo_box_window.simulator_configuration .icon { + width: 45px; + height: 45px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.grepo_box_window.simulator_configuration .icon.a_new_hope { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat 0 -45px; +} + +.grepo_box_window.simulator_configuration .icon.a_new_hope:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat 0 -90px; +} + +.grepo_box_window.simulator_configuration .icon.a_new_hope.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat 0 0; +} + +.grepo_box_window.simulator_configuration .icon.acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -45px -45px; +} + +.grepo_box_window.simulator_configuration .icon.acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -45px -90px; +} + +.grepo_box_window.simulator_configuration .icon.acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -45px 0; +} + +.grepo_box_window.simulator_configuration .icon.archer_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -90px -45px; +} + +.grepo_box_window.simulator_configuration .icon.archer_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -90px -90px; +} + +.grepo_box_window.simulator_configuration .icon.archer_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -90px 0; +} + +.grepo_box_window.simulator_configuration .icon.archer_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -135px -45px; +} + +.grepo_box_window.simulator_configuration .icon.archer_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -135px -90px; +} + +.grepo_box_window.simulator_configuration .icon.archer_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -135px 0; +} + +.grepo_box_window.simulator_configuration .icon.assassins_acumen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -180px -45px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_acumen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -180px -90px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_acumen.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -180px 0; +} + +.grepo_box_window.simulator_configuration .icon.assassins_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -225px -45px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -225px -90px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -225px 0; +} + +.grepo_box_window.simulator_configuration .icon.assassins_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -270px -45px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -270px -90px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -270px 0; +} + +.grepo_box_window.simulator_configuration .icon.assassins_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -315px -45px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -315px -90px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -315px 0; +} + +.grepo_box_window.simulator_configuration .icon.assassins_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -360px -45px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -360px -90px; +} + +.grepo_box_window.simulator_configuration .icon.assassins_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -360px 0; +} + +.grepo_box_window.simulator_configuration .icon.attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -405px -45px; +} + +.grepo_box_window.simulator_configuration .icon.attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -405px -90px; +} + +.grepo_box_window.simulator_configuration .icon.attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -405px 0; +} + +.grepo_box_window.simulator_configuration .icon.attack_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -450px -45px; +} + +.grepo_box_window.simulator_configuration .icon.attack_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -450px -90px; +} + +.grepo_box_window.simulator_configuration .icon.attack_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -450px 0; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -495px -45px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -495px -90px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -495px 0; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -540px -45px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -540px -90px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -540px 0; +} + +.grepo_box_window.simulator_configuration .icon.battle_tokens_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -585px -45px; +} + +.grepo_box_window.simulator_configuration .icon.battle_tokens_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -585px -90px; +} + +.grepo_box_window.simulator_configuration .icon.battle_tokens_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -585px 0; +} + +.grepo_box_window.simulator_configuration .icon.battleships.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -630px -45px; +} + +.grepo_box_window.simulator_configuration .icon.battleships.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -630px -90px; +} + +.grepo_box_window.simulator_configuration .icon.battleships.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -630px 0; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -675px -45px; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -675px -90px; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -675px 0; +} + +.grepo_box_window.simulator_configuration .icon.bireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -720px -45px; +} + +.grepo_box_window.simulator_configuration .icon.bireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -720px -90px; +} + +.grepo_box_window.simulator_configuration .icon.bireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -720px 0; +} + +.grepo_box_window.simulator_configuration .icon.bireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -765px -45px; +} + +.grepo_box_window.simulator_configuration .icon.bireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -765px -90px; +} + +.grepo_box_window.simulator_configuration .icon.bireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -765px 0; +} + +.grepo_box_window.simulator_configuration .icon.bolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -810px -45px; +} + +.grepo_box_window.simulator_configuration .icon.bolt:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -810px -90px; +} + +.grepo_box_window.simulator_configuration .icon.bolt.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -810px 0; +} + +.grepo_box_window.simulator_configuration .icon.building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -855px -45px; +} + +.grepo_box_window.simulator_configuration .icon.building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -855px -90px; +} + +.grepo_box_window.simulator_configuration .icon.building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -855px 0; +} + +.grepo_box_window.simulator_configuration .icon.call_of_the_ocean { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -900px -45px; +} + +.grepo_box_window.simulator_configuration .icon.call_of_the_ocean:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -900px -90px; +} + +.grepo_box_window.simulator_configuration .icon.call_of_the_ocean.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -900px 0; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -945px -45px; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -945px -90px; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -945px 0; +} + +.grepo_box_window.simulator_configuration .icon.cap_of_invisibility { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -990px -45px; +} + +.grepo_box_window.simulator_configuration .icon.cap_of_invisibility:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -990px -90px; +} + +.grepo_box_window.simulator_configuration .icon.cap_of_invisibility.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -990px 0; +} + +.grepo_box_window.simulator_configuration .icon.catapult_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1035px -45px; +} + +.grepo_box_window.simulator_configuration .icon.catapult_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1035px -90px; +} + +.grepo_box_window.simulator_configuration .icon.catapult_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1035px 0; +} + +.grepo_box_window.simulator_configuration .icon.centaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1080px -45px; +} + +.grepo_box_window.simulator_configuration .icon.centaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1080px -90px; +} + +.grepo_box_window.simulator_configuration .icon.centaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1080px 0; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1125px -45px; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1125px -90px; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1125px 0; +} + +.grepo_box_window.simulator_configuration .icon.chariot_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1170px -45px; +} + +.grepo_box_window.simulator_configuration .icon.chariot_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1170px -90px; +} + +.grepo_box_window.simulator_configuration .icon.chariot_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1170px 0; +} + +.grepo_box_window.simulator_configuration .icon.chariot_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1215px -45px; +} + +.grepo_box_window.simulator_configuration .icon.chariot_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1215px -90px; +} + +.grepo_box_window.simulator_configuration .icon.chariot_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1215px 0; +} + +.grepo_box_window.simulator_configuration .icon.city_skin_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1260px -45px; +} + +.grepo_box_window.simulator_configuration .icon.city_skin_fleet_port:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1260px -90px; +} + +.grepo_box_window.simulator_configuration .icon.city_skin_fleet_port.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1260px 0; +} + +.grepo_box_window.simulator_configuration .icon.cleanse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1305px -45px; +} + +.grepo_box_window.simulator_configuration .icon.cleanse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1305px -90px; +} + +.grepo_box_window.simulator_configuration .icon.cleanse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1305px 0; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_both_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1350px -45px; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_both_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1350px -90px; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_both_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1350px 0; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_war_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1395px -45px; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_war_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1395px -90px; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_war_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1395px 0; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_wisdom_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1440px -45px; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_wisdom_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1440px -90px; +} + +.grepo_box_window.simulator_configuration .icon.coins_of_wisdom_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1440px 0; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1485px -45px; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1485px -90px; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1485px 0; +} + +.grepo_box_window.simulator_configuration .icon.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1530px -45px; +} + +.grepo_box_window.simulator_configuration .icon.culture_level:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1530px -90px; +} + +.grepo_box_window.simulator_configuration .icon.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1530px 0; +} + +.grepo_box_window.simulator_configuration .icon.culture_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1575px -45px; +} + +.grepo_box_window.simulator_configuration .icon.culture_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1575px -90px; +} + +.grepo_box_window.simulator_configuration .icon.culture_points.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1575px 0; +} + +.grepo_box_window.simulator_configuration .icon.defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1620px -45px; +} + +.grepo_box_window.simulator_configuration .icon.defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1620px -90px; +} + +.grepo_box_window.simulator_configuration .icon.defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1620px 0; +} + +.grepo_box_window.simulator_configuration .icon.defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1665px -45px; +} + +.grepo_box_window.simulator_configuration .icon.defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1665px -90px; +} + +.grepo_box_window.simulator_configuration .icon.defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1665px 0; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1710px -45px; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1710px -90px; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1710px 0; +} + +.grepo_box_window.simulator_configuration .icon.desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1755px -45px; +} + +.grepo_box_window.simulator_configuration .icon.desire:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1755px -90px; +} + +.grepo_box_window.simulator_configuration .icon.desire.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1755px 0; +} + +.grepo_box_window.simulator_configuration .icon.divine_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1800px -45px; +} + +.grepo_box_window.simulator_configuration .icon.divine_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1800px -90px; +} + +.grepo_box_window.simulator_configuration .icon.divine_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1800px 0; +} + +.grepo_box_window.simulator_configuration .icon.divine_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1845px -45px; +} + +.grepo_box_window.simulator_configuration .icon.divine_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1845px -90px; +} + +.grepo_box_window.simulator_configuration .icon.divine_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1845px 0; +} + +.grepo_box_window.simulator_configuration .icon.divine_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1890px -45px; +} + +.grepo_box_window.simulator_configuration .icon.divine_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1890px -90px; +} + +.grepo_box_window.simulator_configuration .icon.divine_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1890px 0; +} + +.grepo_box_window.simulator_configuration .icon.divine_sign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1935px -45px; +} + +.grepo_box_window.simulator_configuration .icon.divine_sign:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1935px -90px; +} + +.grepo_box_window.simulator_configuration .icon.divine_sign.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1935px 0; +} + +.grepo_box_window.simulator_configuration .icon.earthquake { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1980px -45px; +} + +.grepo_box_window.simulator_configuration .icon.earthquake:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1980px -90px; +} + +.grepo_box_window.simulator_configuration .icon.earthquake.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -1980px 0; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_demeter.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2025px -45px; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_demeter.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2025px -90px; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_demeter.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2025px 0; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_easter_hen.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2070px -45px; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_easter_hen.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2070px -90px; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_easter_hen.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2070px 0; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_incantation.crafting_ingredients_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2115px -45px; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_incantation.crafting_ingredients_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2115px -90px; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_incantation.crafting_ingredients_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2115px 0; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_incantation.crafting_recipes_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2160px -45px; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_incantation.crafting_recipes_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2160px -90px; +} + +.grepo_box_window.simulator_configuration .icon.easter_skin_incantation.crafting_recipes_power.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2160px 0; +} + +.grepo_box_window.simulator_configuration .icon.effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2205px -45px; +} + +.grepo_box_window.simulator_configuration .icon.effort_of_the_huntress:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2205px -90px; +} + +.grepo_box_window.simulator_configuration .icon.effort_of_the_huntress.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2205px 0; +} + +.grepo_box_window.simulator_configuration .icon.enlist_militia_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2250px -45px; +} + +.grepo_box_window.simulator_configuration .icon.enlist_militia_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2250px -90px; +} + +.grepo_box_window.simulator_configuration .icon.enlist_militia_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2250px 0; +} + +.grepo_box_window.simulator_configuration .icon.event_pass_divine_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2295px -45px; +} + +.grepo_box_window.simulator_configuration .icon.event_pass_divine_prizes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2295px -90px; +} + +.grepo_box_window.simulator_configuration .icon.event_pass_divine_prizes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2295px 0; +} + +.grepo_box_window.simulator_configuration .icon.fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2340px -45px; +} + +.grepo_box_window.simulator_configuration .icon.fair_wind:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2340px -90px; +} + +.grepo_box_window.simulator_configuration .icon.fair_wind.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2340px 0; +} + +.grepo_box_window.simulator_configuration .icon.favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2385px -45px; +} + +.grepo_box_window.simulator_configuration .icon.favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2385px -90px; +} + +.grepo_box_window.simulator_configuration .icon.favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2385px 0; +} + +.grepo_box_window.simulator_configuration .icon.favor_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2430px -45px; +} + +.grepo_box_window.simulator_configuration .icon.favor_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2430px -90px; +} + +.grepo_box_window.simulator_configuration .icon.favor_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2430px 0; +} + +.grepo_box_window.simulator_configuration .icon.fertility_improvement { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2475px -45px; +} + +.grepo_box_window.simulator_configuration .icon.fertility_improvement:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2475px -90px; +} + +.grepo_box_window.simulator_configuration .icon.fertility_improvement.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2475px 0; +} + +.grepo_box_window.simulator_configuration .icon.forced_loyalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2520px -45px; +} + +.grepo_box_window.simulator_configuration .icon.forced_loyalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2520px -90px; +} + +.grepo_box_window.simulator_configuration .icon.forced_loyalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2520px 0; +} + +.grepo_box_window.simulator_configuration .icon.fury_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2565px -45px; +} + +.grepo_box_window.simulator_configuration .icon.fury_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2565px -90px; +} + +.grepo_box_window.simulator_configuration .icon.fury_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2565px 0; +} + +.grepo_box_window.simulator_configuration .icon.general_battle_points_bonus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2610px -45px; +} + +.grepo_box_window.simulator_configuration .icon.general_battle_points_bonus_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2610px -90px; +} + +.grepo_box_window.simulator_configuration .icon.general_battle_points_bonus_icon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2610px 0; +} + +.grepo_box_window.simulator_configuration .icon.gods_gifts.grid_event_advanced_scouts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2655px -45px; +} + +.grepo_box_window.simulator_configuration .icon.gods_gifts.grid_event_advanced_scouts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2655px -90px; +} + +.grepo_box_window.simulator_configuration .icon.gods_gifts.grid_event_advanced_scouts.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2655px 0; +} + +.grepo_box_window.simulator_configuration .icon.godsent_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2700px -45px; +} + +.grepo_box_window.simulator_configuration .icon.godsent_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2700px -90px; +} + +.grepo_box_window.simulator_configuration .icon.godsent_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2700px 0; +} + +.grepo_box_window.simulator_configuration .icon.great_arming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2745px -45px; +} + +.grepo_box_window.simulator_configuration .icon.great_arming:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2745px -90px; +} + +.grepo_box_window.simulator_configuration .icon.great_arming.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2745px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_athlete_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2790px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_athlete_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2790px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_athlete_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2790px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2835px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2835px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2835px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2880px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2880px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2880px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2925px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2925px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2925px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2970px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2970px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_championship_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -2970px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3015px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3015px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3015px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3060px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3060px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3060px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3105px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3105px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3105px 0; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3150px -45px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3150px -90px; +} + +.grepo_box_window.simulator_configuration .icon.grepolympia_worldcup.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3150px 0; +} + +.grepo_box_window.simulator_configuration .icon.griffin_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3195px -45px; +} + +.grepo_box_window.simulator_configuration .icon.griffin_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3195px -90px; +} + +.grepo_box_window.simulator_configuration .icon.griffin_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3195px 0; +} + +.grepo_box_window.simulator_configuration .icon.happiness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3240px -45px; +} + +.grepo_box_window.simulator_configuration .icon.happiness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3240px -90px; +} + +.grepo_box_window.simulator_configuration .icon.happiness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3240px 0; +} + +.grepo_box_window.simulator_configuration .icon.happy_folks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3285px -45px; +} + +.grepo_box_window.simulator_configuration .icon.happy_folks:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3285px -90px; +} + +.grepo_box_window.simulator_configuration .icon.happy_folks.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3285px 0; +} + +.grepo_box_window.simulator_configuration .icon.harpy_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3330px -45px; +} + +.grepo_box_window.simulator_configuration .icon.harpy_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3330px -90px; +} + +.grepo_box_window.simulator_configuration .icon.harpy_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3330px 0; +} + +.grepo_box_window.simulator_configuration .icon.hermes_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3375px -45px; +} + +.grepo_box_window.simulator_configuration .icon.hermes_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3375px -90px; +} + +.grepo_box_window.simulator_configuration .icon.hermes_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3375px 0; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3420px -45px; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3420px -90px; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3420px 0; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3465px -45px; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3465px -90px; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3465px 0; +} + +.grepo_box_window.simulator_configuration .icon.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3510px -45px; +} + +.grepo_box_window.simulator_configuration .icon.illusion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3510px -90px; +} + +.grepo_box_window.simulator_configuration .icon.illusion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3510px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3555px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3555px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_gold.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3555px 0; +} + +.grepo_box_window.simulator_configuration .icon.iron_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3600px -45px; +} + +.grepo_box_window.simulator_configuration .icon.iron_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3600px -90px; +} + +.grepo_box_window.simulator_configuration .icon.iron_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3600px 0; +} + +.grepo_box_window.simulator_configuration .icon.kingly_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3645px -45px; +} + +.grepo_box_window.simulator_configuration .icon.kingly_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3645px -90px; +} + +.grepo_box_window.simulator_configuration .icon.kingly_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3645px 0; +} + +.grepo_box_window.simulator_configuration .icon.ladon_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3690px -45px; +} + +.grepo_box_window.simulator_configuration .icon.ladon_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3690px -90px; +} + +.grepo_box_window.simulator_configuration .icon.ladon_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3690px 0; +} + +.grepo_box_window.simulator_configuration .icon.land_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3735px -45px; +} + +.grepo_box_window.simulator_configuration .icon.land_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3735px -90px; +} + +.grepo_box_window.simulator_configuration .icon.land_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3735px 0; +} + +.grepo_box_window.simulator_configuration .icon.land_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3780px -45px; +} + +.grepo_box_window.simulator_configuration .icon.land_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3780px -90px; +} + +.grepo_box_window.simulator_configuration .icon.land_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3780px 0; +} + +.grepo_box_window.simulator_configuration .icon.loyalty_loss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3825px -45px; +} + +.grepo_box_window.simulator_configuration .icon.loyalty_loss:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3825px -90px; +} + +.grepo_box_window.simulator_configuration .icon.loyalty_loss.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3825px 0; +} + +.grepo_box_window.simulator_configuration .icon.loyalty_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3870px -45px; +} + +.grepo_box_window.simulator_configuration .icon.loyalty_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3870px -90px; +} + +.grepo_box_window.simulator_configuration .icon.loyalty_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3870px 0; +} + +.grepo_box_window.simulator_configuration .icon.luxurious_residence { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3915px -45px; +} + +.grepo_box_window.simulator_configuration .icon.luxurious_residence:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3915px -90px; +} + +.grepo_box_window.simulator_configuration .icon.luxurious_residence.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3915px 0; +} + +.grepo_box_window.simulator_configuration .icon.manticore_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3960px -45px; +} + +.grepo_box_window.simulator_configuration .icon.manticore_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3960px -90px; +} + +.grepo_box_window.simulator_configuration .icon.manticore_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -3960px 0; +} + +.grepo_box_window.simulator_configuration .icon.medusa_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4005px -45px; +} + +.grepo_box_window.simulator_configuration .icon.medusa_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4005px -90px; +} + +.grepo_box_window.simulator_configuration .icon.medusa_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4005px 0; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4050px -45px; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4050px -90px; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4050px 0; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4095px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4095px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4095px 0; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4140px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4140px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4140px 0; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4185px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4185px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4185px 0; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4230px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4230px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4230px 0; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4275px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4275px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missions_dionysia.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4275px 0; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.instant_currency_crm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4320px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.instant_currency_crm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4320px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.instant_currency_crm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4320px 0; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4365px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4365px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4365px 0; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4410px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4410px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4410px 0; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4455px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_3:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4455px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4455px 0; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4500px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_4:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4500px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_power_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4500px 0; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_reduce_ritual_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4545px -45px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_reduce_ritual_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4545px -90px; +} + +.grepo_box_window.simulator_configuration .icon.missionsskinpandora.missions_reduce_ritual_cooldown.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4545px 0; +} + +.grepo_box_window.simulator_configuration .icon.myrmidion_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4590px -45px; +} + +.grepo_box_window.simulator_configuration .icon.myrmidion_attack:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4590px -90px; +} + +.grepo_box_window.simulator_configuration .icon.myrmidion_attack.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4590px 0; +} + +.grepo_box_window.simulator_configuration .icon.natures_gift { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4635px -45px; +} + +.grepo_box_window.simulator_configuration .icon.natures_gift:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4635px -90px; +} + +.grepo_box_window.simulator_configuration .icon.natures_gift.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4635px 0; +} + +.grepo_box_window.simulator_configuration .icon.naval_battle_strategy_epic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4680px -45px; +} + +.grepo_box_window.simulator_configuration .icon.naval_battle_strategy_epic:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4680px -90px; +} + +.grepo_box_window.simulator_configuration .icon.naval_battle_strategy_epic.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4680px 0; +} + +.grepo_box_window.simulator_configuration .icon.naval_battle_strategy_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4725px -45px; +} + +.grepo_box_window.simulator_configuration .icon.naval_battle_strategy_rare:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4725px -90px; +} + +.grepo_box_window.simulator_configuration .icon.naval_battle_strategy_rare.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4725px 0; +} + +.grepo_box_window.simulator_configuration .icon.nwot.wheel_free_refill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4770px -45px; +} + +.grepo_box_window.simulator_configuration .icon.nwot.wheel_free_refill:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4770px -90px; +} + +.grepo_box_window.simulator_configuration .icon.nwot.wheel_free_refill.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4770px 0; +} + +.grepo_box_window.simulator_configuration .icon.olympic_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4815px -45px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_experience:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4815px -90px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_experience.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4815px 0; +} + +.grepo_box_window.simulator_configuration .icon.olympic_merchant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4860px -45px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_merchant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4860px -90px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_merchant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4860px 0; +} + +.grepo_box_window.simulator_configuration .icon.olympic_senses { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4905px -45px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_senses:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4905px -90px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_senses.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4905px 0; +} + +.grepo_box_window.simulator_configuration .icon.olympic_sword { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4950px -45px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_sword:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4950px -90px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_sword.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4950px 0; +} + +.grepo_box_window.simulator_configuration .icon.olympic_torch { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4995px -45px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_torch:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4995px -90px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_torch.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -4995px 0; +} + +.grepo_box_window.simulator_configuration .icon.olympic_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5040px -45px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_village:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5040px -90px; +} + +.grepo_box_window.simulator_configuration .icon.olympic_village.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5040px 0; +} + +.grepo_box_window.simulator_configuration .icon.patroness { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5085px -45px; +} + +.grepo_box_window.simulator_configuration .icon.patroness:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5085px -90px; +} + +.grepo_box_window.simulator_configuration .icon.patroness.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5085px 0; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5130px -45px; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5130px -90px; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5130px 0; +} + +.grepo_box_window.simulator_configuration .icon.pest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5175px -45px; +} + +.grepo_box_window.simulator_configuration .icon.pest:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5175px -90px; +} + +.grepo_box_window.simulator_configuration .icon.pest.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5175px 0; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5220px -45px; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_big:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5220px -90px; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_big.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5220px 0; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5265px -45px; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5265px -90px; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5265px 0; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_ultra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5310px -45px; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_ultra:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5310px -90px; +} + +.grepo_box_window.simulator_configuration .icon.population_boost_ultra.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5310px 0; +} + +.grepo_box_window.simulator_configuration .icon.pumpkin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5355px -45px; +} + +.grepo_box_window.simulator_configuration .icon.pumpkin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5355px -90px; +} + +.grepo_box_window.simulator_configuration .icon.pumpkin.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5355px 0; +} + +.grepo_box_window.simulator_configuration .icon.resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5400px -45px; +} + +.grepo_box_window.simulator_configuration .icon.resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5400px -90px; +} + +.grepo_box_window.simulator_configuration .icon.resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5400px 0; +} + +.grepo_box_window.simulator_configuration .icon.resource_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5445px -45px; +} + +.grepo_box_window.simulator_configuration .icon.resource_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5445px -90px; +} + +.grepo_box_window.simulator_configuration .icon.resource_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5445px 0; +} + +.grepo_box_window.simulator_configuration .icon.resource_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5490px -45px; +} + +.grepo_box_window.simulator_configuration .icon.resource_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5490px -90px; +} + +.grepo_box_window.simulator_configuration .icon.resource_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5490px 0; +} + +.grepo_box_window.simulator_configuration .icon.resource_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5535px -45px; +} + +.grepo_box_window.simulator_configuration .icon.resource_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5535px -90px; +} + +.grepo_box_window.simulator_configuration .icon.resource_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5535px 0; +} + +.grepo_box_window.simulator_configuration .icon.resurrection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5580px -45px; +} + +.grepo_box_window.simulator_configuration .icon.resurrection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5580px -90px; +} + +.grepo_box_window.simulator_configuration .icon.resurrection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5580px 0; +} + +.grepo_box_window.simulator_configuration .icon.rider_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5625px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rider_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5625px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rider_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5625px 0; +} + +.grepo_box_window.simulator_configuration .icon.rider_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5670px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rider_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5670px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rider_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5670px 0; +} + +.grepo_box_window.simulator_configuration .icon.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5715px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5715px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5715px 0; +} + +.grepo_box_window.simulator_configuration .icon.satyr_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5760px -45px; +} + +.grepo_box_window.simulator_configuration .icon.satyr_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5760px -90px; +} + +.grepo_box_window.simulator_configuration .icon.satyr_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5760px 0; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5805px -45px; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5805px -90px; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5805px 0; +} + +.grepo_box_window.simulator_configuration .icon.sea_storm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5850px -45px; +} + +.grepo_box_window.simulator_configuration .icon.sea_storm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5850px -90px; +} + +.grepo_box_window.simulator_configuration .icon.sea_storm.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5850px 0; +} + +.grepo_box_window.simulator_configuration .icon.siren_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5895px -45px; +} + +.grepo_box_window.simulator_configuration .icon.siren_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5895px -90px; +} + +.grepo_box_window.simulator_configuration .icon.siren_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5895px 0; +} + +.grepo_box_window.simulator_configuration .icon.slinger_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5940px -45px; +} + +.grepo_box_window.simulator_configuration .icon.slinger_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5940px -90px; +} + +.grepo_box_window.simulator_configuration .icon.slinger_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5940px 0; +} + +.grepo_box_window.simulator_configuration .icon.slinger_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5985px -45px; +} + +.grepo_box_window.simulator_configuration .icon.slinger_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5985px -90px; +} + +.grepo_box_window.simulator_configuration .icon.slinger_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -5985px 0; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6030px -45px; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6030px -90px; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6030px 0; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6075px -45px; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6075px -90px; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6075px 0; +} + +.grepo_box_window.simulator_configuration .icon.starter_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6120px -45px; +} + +.grepo_box_window.simulator_configuration .icon.starter_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6120px -90px; +} + +.grepo_box_window.simulator_configuration .icon.starter_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6120px 0; +} + +.grepo_box_window.simulator_configuration .icon.stone_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6165px -45px; +} + +.grepo_box_window.simulator_configuration .icon.stone_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6165px -90px; +} + +.grepo_box_window.simulator_configuration .icon.stone_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6165px 0; +} + +.grepo_box_window.simulator_configuration .icon.strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6210px -45px; +} + +.grepo_box_window.simulator_configuration .icon.strength_of_heroes:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6210px -90px; +} + +.grepo_box_window.simulator_configuration .icon.strength_of_heroes.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6210px 0; +} + +.grepo_box_window.simulator_configuration .icon.sword_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6255px -45px; +} + +.grepo_box_window.simulator_configuration .icon.sword_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6255px -90px; +} + +.grepo_box_window.simulator_configuration .icon.sword_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6255px 0; +} + +.grepo_box_window.simulator_configuration .icon.sword_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6300px -45px; +} + +.grepo_box_window.simulator_configuration .icon.sword_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6300px -90px; +} + +.grepo_box_window.simulator_configuration .icon.sword_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6300px 0; +} + +.grepo_box_window.simulator_configuration .icon.town_protection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6345px -45px; +} + +.grepo_box_window.simulator_configuration .icon.town_protection:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6345px -90px; +} + +.grepo_box_window.simulator_configuration .icon.town_protection.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6345px 0; +} + +.grepo_box_window.simulator_configuration .icon.transformation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6390px -45px; +} + +.grepo_box_window.simulator_configuration .icon.transformation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6390px -90px; +} + +.grepo_box_window.simulator_configuration .icon.transformation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6390px 0; +} + +.grepo_box_window.simulator_configuration .icon.travelling_mentor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6435px -45px; +} + +.grepo_box_window.simulator_configuration .icon.travelling_mentor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6435px -90px; +} + +.grepo_box_window.simulator_configuration .icon.travelling_mentor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6435px 0; +} + +.grepo_box_window.simulator_configuration .icon.trireme_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6480px -45px; +} + +.grepo_box_window.simulator_configuration .icon.trireme_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6480px -90px; +} + +.grepo_box_window.simulator_configuration .icon.trireme_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6480px 0; +} + +.grepo_box_window.simulator_configuration .icon.trojan_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6525px -45px; +} + +.grepo_box_window.simulator_configuration .icon.trojan_defense:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6525px -90px; +} + +.grepo_box_window.simulator_configuration .icon.trojan_defense.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6525px 0; +} + +.grepo_box_window.simulator_configuration .icon.tyches_blessing_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6570px -45px; +} + +.grepo_box_window.simulator_configuration .icon.tyches_blessing_effect:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6570px -90px; +} + +.grepo_box_window.simulator_configuration .icon.tyches_blessing_effect.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6570px 0; +} + +.grepo_box_window.simulator_configuration .icon.underworld_treasures { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6615px -45px; +} + +.grepo_box_window.simulator_configuration .icon.underworld_treasures:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6615px -90px; +} + +.grepo_box_window.simulator_configuration .icon.underworld_treasures.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6615px 0; +} + +.grepo_box_window.simulator_configuration .icon.unit_movement_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6660px -45px; +} + +.grepo_box_window.simulator_configuration .icon.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6660px -90px; +} + +.grepo_box_window.simulator_configuration .icon.unit_movement_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6660px 0; +} + +.grepo_box_window.simulator_configuration .icon.unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6705px -45px; +} + +.grepo_box_window.simulator_configuration .icon.unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6705px -90px; +} + +.grepo_box_window.simulator_configuration .icon.unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6705px 0; +} + +.grepo_box_window.simulator_configuration .icon.unit_training_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6750px -45px; +} + +.grepo_box_window.simulator_configuration .icon.unit_training_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6750px -90px; +} + +.grepo_box_window.simulator_configuration .icon.unit_training_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6750px 0; +} + +.grepo_box_window.simulator_configuration .icon.wedding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6795px -45px; +} + +.grepo_box_window.simulator_configuration .icon.wedding:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6795px -90px; +} + +.grepo_box_window.simulator_configuration .icon.wedding.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6795px 0; +} + +.grepo_box_window.simulator_configuration .icon.wisdom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6840px -45px; +} + +.grepo_box_window.simulator_configuration .icon.wisdom:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6840px -90px; +} + +.grepo_box_window.simulator_configuration .icon.wisdom.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6840px 0; +} + +.grepo_box_window.simulator_configuration .icon.wood_production_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6885px -45px; +} + +.grepo_box_window.simulator_configuration .icon.wood_production_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6885px -90px; +} + +.grepo_box_window.simulator_configuration .icon.wood_production_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6885px 0; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_generation_non_scaling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6930px -45px; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_generation_non_scaling:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6930px -90px; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_generation_non_scaling.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6930px 0; +} + +.grepo_box_window.simulator_configuration .icon.archer_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat 0 -45px; +} + +.grepo_box_window.simulator_configuration .icon.archer_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat 0 -90px; +} + +.grepo_box_window.simulator_configuration .icon.archer_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat 0 0; +} + +.grepo_box_window.simulator_configuration .icon.ares_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -45px -45px; +} + +.grepo_box_window.simulator_configuration .icon.ares_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -45px -90px; +} + +.grepo_box_window.simulator_configuration .icon.ares_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -45px 0; +} + +.grepo_box_window.simulator_configuration .icon.ares_rage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -90px -45px; +} + +.grepo_box_window.simulator_configuration .icon.ares_rage:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -90px -90px; +} + +.grepo_box_window.simulator_configuration .icon.ares_rage.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -90px 0; +} + +.grepo_box_window.simulator_configuration .icon.ares_sacrifice { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -135px -45px; +} + +.grepo_box_window.simulator_configuration .icon.ares_sacrifice:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -135px -90px; +} + +.grepo_box_window.simulator_configuration .icon.ares_sacrifice.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -135px 0; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -180px -45px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_large:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -180px -90px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_large.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -180px 0; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -225px -45px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_medium:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -225px -90px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_medium.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -225px 0; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -270px -45px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -270px -90px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_attack_boost_small.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -270px 0; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -315px -45px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -315px -90px; +} + +.grepo_box_window.simulator_configuration .icon.attack_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -315px 0; +} + +.grepo_box_window.simulator_configuration .icon.aura_of_healing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -360px -45px; +} + +.grepo_box_window.simulator_configuration .icon.aura_of_healing:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -360px -90px; +} + +.grepo_box_window.simulator_configuration .icon.aura_of_healing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -360px 0; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -405px -45px; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -405px -90px; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -405px 0; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -450px -45px; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -450px -90px; +} + +.grepo_box_window.simulator_configuration .icon.big_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -450px 0; +} + +.grepo_box_window.simulator_configuration .icon.bireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -495px -45px; +} + +.grepo_box_window.simulator_configuration .icon.bireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -495px -90px; +} + +.grepo_box_window.simulator_configuration .icon.bireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -495px 0; +} + +.grepo_box_window.simulator_configuration .icon.bloodlust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -540px -45px; +} + +.grepo_box_window.simulator_configuration .icon.bloodlust:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -540px -90px; +} + +.grepo_box_window.simulator_configuration .icon.bloodlust.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -540px 0; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -585px -45px; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -585px -90px; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -585px 0; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -630px -45px; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -630px -90px; +} + +.grepo_box_window.simulator_configuration .icon.calydonian_boar_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -630px 0; +} + +.grepo_box_window.simulator_configuration .icon.catapult_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -675px -45px; +} + +.grepo_box_window.simulator_configuration .icon.catapult_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -675px -90px; +} + +.grepo_box_window.simulator_configuration .icon.catapult_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -675px 0; +} + +.grepo_box_window.simulator_configuration .icon.catapult_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -720px -45px; +} + +.grepo_box_window.simulator_configuration .icon.catapult_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -720px -90px; +} + +.grepo_box_window.simulator_configuration .icon.catapult_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -720px 0; +} + +.grepo_box_window.simulator_configuration .icon.centaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -765px -45px; +} + +.grepo_box_window.simulator_configuration .icon.centaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -765px -90px; +} + +.grepo_box_window.simulator_configuration .icon.centaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -765px 0; +} + +.grepo_box_window.simulator_configuration .icon.centaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -810px -45px; +} + +.grepo_box_window.simulator_configuration .icon.centaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -810px -90px; +} + +.grepo_box_window.simulator_configuration .icon.centaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -810px 0; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -855px -45px; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -855px -90px; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -855px 0; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -900px -45px; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -900px -90px; +} + +.grepo_box_window.simulator_configuration .icon.cerberus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -900px 0; +} + +.grepo_box_window.simulator_configuration .icon.chain_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -945px -45px; +} + +.grepo_box_window.simulator_configuration .icon.chain_lightning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -945px -90px; +} + +.grepo_box_window.simulator_configuration .icon.chain_lightning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -945px 0; +} + +.grepo_box_window.simulator_configuration .icon.chariot_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -990px -45px; +} + +.grepo_box_window.simulator_configuration .icon.chariot_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -990px -90px; +} + +.grepo_box_window.simulator_configuration .icon.chariot_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -990px 0; +} + +.grepo_box_window.simulator_configuration .icon.charitable_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1035px -45px; +} + +.grepo_box_window.simulator_configuration .icon.charitable_festival:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1035px -90px; +} + +.grepo_box_window.simulator_configuration .icon.charitable_festival.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1035px 0; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1080px -45px; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1080px -90px; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1080px 0; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1125px -45px; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1125px -90px; +} + +.grepo_box_window.simulator_configuration .icon.colonize_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1125px 0; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1170px -45px; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1170px -90px; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1170px 0; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1215px -45px; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1215px -90px; +} + +.grepo_box_window.simulator_configuration .icon.demolition_ship_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1215px 0; +} + +.grepo_box_window.simulator_configuration .icon.demoralized_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1260px -45px; +} + +.grepo_box_window.simulator_configuration .icon.demoralized_army:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1260px -90px; +} + +.grepo_box_window.simulator_configuration .icon.demoralized_army.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1260px 0; +} + +.grepo_box_window.simulator_configuration .icon.demoralizing_plague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1305px -45px; +} + +.grepo_box_window.simulator_configuration .icon.demoralizing_plague:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1305px -90px; +} + +.grepo_box_window.simulator_configuration .icon.demoralizing_plague.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1305px 0; +} + +.grepo_box_window.simulator_configuration .icon.divine_aura { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1350px -45px; +} + +.grepo_box_window.simulator_configuration .icon.divine_aura:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1350px -90px; +} + +.grepo_box_window.simulator_configuration .icon.divine_aura.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1350px 0; +} + +.grepo_box_window.simulator_configuration .icon.divine_intervention { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1395px -45px; +} + +.grepo_box_window.simulator_configuration .icon.divine_intervention:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1395px -90px; +} + +.grepo_box_window.simulator_configuration .icon.divine_intervention.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1395px 0; +} + +.grepo_box_window.simulator_configuration .icon.epic_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1440px -45px; +} + +.grepo_box_window.simulator_configuration .icon.epic_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1440px -90px; +} + +.grepo_box_window.simulator_configuration .icon.epic_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1440px 0; +} + +.grepo_box_window.simulator_configuration .icon.epic_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1485px -45px; +} + +.grepo_box_window.simulator_configuration .icon.epic_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1485px -90px; +} + +.grepo_box_window.simulator_configuration .icon.epic_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1485px 0; +} + +.grepo_box_window.simulator_configuration .icon.epic_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1530px -45px; +} + +.grepo_box_window.simulator_configuration .icon.epic_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1530px -90px; +} + +.grepo_box_window.simulator_configuration .icon.epic_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1530px 0; +} + +.grepo_box_window.simulator_configuration .icon.epic_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1575px -45px; +} + +.grepo_box_window.simulator_configuration .icon.epic_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1575px -90px; +} + +.grepo_box_window.simulator_configuration .icon.epic_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1575px 0; +} + +.grepo_box_window.simulator_configuration .icon.epic_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1620px -45px; +} + +.grepo_box_window.simulator_configuration .icon.epic_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1620px -90px; +} + +.grepo_box_window.simulator_configuration .icon.epic_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1620px 0; +} + +.grepo_box_window.simulator_configuration .icon.epic_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1665px -45px; +} + +.grepo_box_window.simulator_configuration .icon.epic_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1665px -90px; +} + +.grepo_box_window.simulator_configuration .icon.epic_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1665px 0; +} + +.grepo_box_window.simulator_configuration .icon.favor_of_the_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1710px -45px; +} + +.grepo_box_window.simulator_configuration .icon.favor_of_the_gods:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1710px -90px; +} + +.grepo_box_window.simulator_configuration .icon.favor_of_the_gods.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1710px 0; +} + +.grepo_box_window.simulator_configuration .icon.fury_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1755px -45px; +} + +.grepo_box_window.simulator_configuration .icon.fury_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1755px -90px; +} + +.grepo_box_window.simulator_configuration .icon.fury_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1755px 0; +} + +.grepo_box_window.simulator_configuration .icon.fury_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1800px -45px; +} + +.grepo_box_window.simulator_configuration .icon.fury_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1800px -90px; +} + +.grepo_box_window.simulator_configuration .icon.fury_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1800px 0; +} + +.grepo_box_window.simulator_configuration .icon.godsent_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1845px -45px; +} + +.grepo_box_window.simulator_configuration .icon.godsent_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1845px -90px; +} + +.grepo_box_window.simulator_configuration .icon.godsent_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1845px 0; +} + +.grepo_box_window.simulator_configuration .icon.godsent_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1890px -45px; +} + +.grepo_box_window.simulator_configuration .icon.godsent_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1890px -90px; +} + +.grepo_box_window.simulator_configuration .icon.godsent_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1890px 0; +} + +.grepo_box_window.simulator_configuration .icon.griffin_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1935px -45px; +} + +.grepo_box_window.simulator_configuration .icon.griffin_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1935px -90px; +} + +.grepo_box_window.simulator_configuration .icon.griffin_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1935px 0; +} + +.grepo_box_window.simulator_configuration .icon.griffin_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1980px -45px; +} + +.grepo_box_window.simulator_configuration .icon.griffin_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1980px -90px; +} + +.grepo_box_window.simulator_configuration .icon.griffin_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -1980px 0; +} + +.grepo_box_window.simulator_configuration .icon.harpy_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2025px -45px; +} + +.grepo_box_window.simulator_configuration .icon.harpy_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2025px -90px; +} + +.grepo_box_window.simulator_configuration .icon.harpy_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2025px 0; +} + +.grepo_box_window.simulator_configuration .icon.harpy_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2070px -45px; +} + +.grepo_box_window.simulator_configuration .icon.harpy_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2070px -90px; +} + +.grepo_box_window.simulator_configuration .icon.harpy_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2070px 0; +} + +.grepo_box_window.simulator_configuration .icon.help_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2115px -45px; +} + +.grepo_box_window.simulator_configuration .icon.help_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2115px -90px; +} + +.grepo_box_window.simulator_configuration .icon.help_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2115px 0; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2160px -45px; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2160px -90px; +} + +.grepo_box_window.simulator_configuration .icon.hoplite_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2160px 0; +} + +.grepo_box_window.simulator_configuration .icon.hymn_to_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2205px -45px; +} + +.grepo_box_window.simulator_configuration .icon.hymn_to_aphrodite:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2205px -90px; +} + +.grepo_box_window.simulator_configuration .icon.hymn_to_aphrodite.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2205px 0; +} + +.grepo_box_window.simulator_configuration .icon.illusion_defense_penalty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2250px -45px; +} + +.grepo_box_window.simulator_configuration .icon.illusion_defense_penalty:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2250px -90px; +} + +.grepo_box_window.simulator_configuration .icon.illusion_defense_penalty.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2250px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2295px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_favor:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2295px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_favor.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2295px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_favor_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2340px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_favor_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2340px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_favor_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2340px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2385px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2385px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2385px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2430px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2430px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2430px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2475px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2475px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2475px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2520px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2520px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2520px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2565px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2565px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_epic_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2565px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2610px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2610px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2610px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_mermaid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2655px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_mermaid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2655px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_mermaid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2655px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_package { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2700px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_package:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2700px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_package.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2700px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2745px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2745px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2745px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2790px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_iron:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2790px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_iron.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2790px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2835px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2835px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2835px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2880px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2880px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_rare_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2880px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2925px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_stone:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2925px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_stone.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2925px 0; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2970px -45px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_wood:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2970px -90px; +} + +.grepo_box_window.simulator_configuration .icon.instant_resources_wood.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -2970px 0; +} + +.grepo_box_window.simulator_configuration .icon.ladon_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3015px -45px; +} + +.grepo_box_window.simulator_configuration .icon.ladon_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3015px -90px; +} + +.grepo_box_window.simulator_configuration .icon.ladon_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3015px 0; +} + +.grepo_box_window.simulator_configuration .icon.ladon_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3060px -45px; +} + +.grepo_box_window.simulator_configuration .icon.ladon_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3060px -90px; +} + +.grepo_box_window.simulator_configuration .icon.ladon_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3060px 0; +} + +.grepo_box_window.simulator_configuration .icon.large_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3105px -45px; +} + +.grepo_box_window.simulator_configuration .icon.large_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3105px -90px; +} + +.grepo_box_window.simulator_configuration .icon.large_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3105px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_all_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3150px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_all_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3150px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_all_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3150px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3195px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3195px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3195px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3240px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3240px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3240px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_festival_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3285px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_festival_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3285px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_festival_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3285px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_iron_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3330px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_iron_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3330px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_iron_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3330px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_stone_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3375px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_stone_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3375px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_stone_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3375px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_trade_speed_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3420px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_trade_speed_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3420px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_trade_speed_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3420px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3465px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3465px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3465px 0; +} + +.grepo_box_window.simulator_configuration .icon.longterm_wood_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3510px -45px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_wood_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3510px -90px; +} + +.grepo_box_window.simulator_configuration .icon.longterm_wood_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3510px 0; +} + +.grepo_box_window.simulator_configuration .icon.manticore_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3555px -45px; +} + +.grepo_box_window.simulator_configuration .icon.manticore_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3555px -90px; +} + +.grepo_box_window.simulator_configuration .icon.manticore_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3555px 0; +} + +.grepo_box_window.simulator_configuration .icon.manticore_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3600px -45px; +} + +.grepo_box_window.simulator_configuration .icon.manticore_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3600px -90px; +} + +.grepo_box_window.simulator_configuration .icon.manticore_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3600px 0; +} + +.grepo_box_window.simulator_configuration .icon.medusa_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3645px -45px; +} + +.grepo_box_window.simulator_configuration .icon.medusa_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3645px -90px; +} + +.grepo_box_window.simulator_configuration .icon.medusa_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3645px 0; +} + +.grepo_box_window.simulator_configuration .icon.medusa_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3690px -45px; +} + +.grepo_box_window.simulator_configuration .icon.medusa_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3690px -90px; +} + +.grepo_box_window.simulator_configuration .icon.medusa_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3690px 0; +} + +.grepo_box_window.simulator_configuration .icon.militia_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3735px -45px; +} + +.grepo_box_window.simulator_configuration .icon.militia_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3735px -90px; +} + +.grepo_box_window.simulator_configuration .icon.militia_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3735px 0; +} + +.grepo_box_window.simulator_configuration .icon.militia_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3780px -45px; +} + +.grepo_box_window.simulator_configuration .icon.militia_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3780px -90px; +} + +.grepo_box_window.simulator_configuration .icon.militia_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3780px 0; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3825px -45px; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3825px -90px; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3825px 0; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3870px -45px; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3870px -90px; +} + +.grepo_box_window.simulator_configuration .icon.minotaur_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3870px 0; +} + +.grepo_box_window.simulator_configuration .icon.mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3915px -45px; +} + +.grepo_box_window.simulator_configuration .icon.mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3915px -90px; +} + +.grepo_box_window.simulator_configuration .icon.mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3915px 0; +} + +.grepo_box_window.simulator_configuration .icon.narcissism { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3960px -45px; +} + +.grepo_box_window.simulator_configuration .icon.narcissism:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3960px -90px; +} + +.grepo_box_window.simulator_configuration .icon.narcissism.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3960px 0; +} + +.grepo_box_window.simulator_configuration .icon.olympus_mortal_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4005px -45px; +} + +.grepo_box_window.simulator_configuration .icon.olympus_mortal_curse:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4005px -90px; +} + +.grepo_box_window.simulator_configuration .icon.olympus_mortal_curse.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4005px 0; +} + +.grepo_box_window.simulator_configuration .icon.passionate_population { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4050px -45px; +} + +.grepo_box_window.simulator_configuration .icon.passionate_population:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4050px -90px; +} + +.grepo_box_window.simulator_configuration .icon.passionate_population.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4050px 0; +} + +.grepo_box_window.simulator_configuration .icon.passionate_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4095px -45px; +} + +.grepo_box_window.simulator_configuration .icon.passionate_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4095px -90px; +} + +.grepo_box_window.simulator_configuration .icon.passionate_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4095px 0; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4140px -45px; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4140px -90px; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4140px 0; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4185px -45px; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4185px -90px; +} + +.grepo_box_window.simulator_configuration .icon.pegasus_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4185px 0; +} + +.grepo_box_window.simulator_configuration .icon.pygmalion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4230px -45px; +} + +.grepo_box_window.simulator_configuration .icon.pygmalion:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4230px -90px; +} + +.grepo_box_window.simulator_configuration .icon.pygmalion.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4230px 0; +} + +.grepo_box_window.simulator_configuration .icon.rare_attack_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4275px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rare_attack_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4275px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rare_attack_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4275px 0; +} + +.grepo_box_window.simulator_configuration .icon.rare_building_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4320px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rare_building_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4320px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rare_building_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4320px 0; +} + +.grepo_box_window.simulator_configuration .icon.rare_defense_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4365px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rare_defense_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4365px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rare_defense_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4365px 0; +} + +.grepo_box_window.simulator_configuration .icon.rare_favor_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4410px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rare_favor_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4410px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rare_favor_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4410px 0; +} + +.grepo_box_window.simulator_configuration .icon.rare_resource_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4455px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rare_resource_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4455px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rare_resource_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4455px 0; +} + +.grepo_box_window.simulator_configuration .icon.rare_unit_order_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4500px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rare_unit_order_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4500px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rare_unit_order_boost.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4500px 0; +} + +.grepo_box_window.simulator_configuration .icon.resource_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4545px -45px; +} + +.grepo_box_window.simulator_configuration .icon.resource_all:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4545px -90px; +} + +.grepo_box_window.simulator_configuration .icon.resource_all.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4545px 0; +} + +.grepo_box_window.simulator_configuration .icon.rider_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4590px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rider_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4590px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rider_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4590px 0; +} + +.grepo_box_window.simulator_configuration .icon.rota_event_tyches_wreath { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4635px -45px; +} + +.grepo_box_window.simulator_configuration .icon.rota_event_tyches_wreath:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4635px -90px; +} + +.grepo_box_window.simulator_configuration .icon.rota_event_tyches_wreath.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4635px 0; +} + +.grepo_box_window.simulator_configuration .icon.satyr_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4680px -45px; +} + +.grepo_box_window.simulator_configuration .icon.satyr_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4680px -90px; +} + +.grepo_box_window.simulator_configuration .icon.satyr_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4680px 0; +} + +.grepo_box_window.simulator_configuration .icon.satyr_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4725px -45px; +} + +.grepo_box_window.simulator_configuration .icon.satyr_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4725px -90px; +} + +.grepo_box_window.simulator_configuration .icon.satyr_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4725px 0; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4770px -45px; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4770px -90px; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4770px 0; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4815px -45px; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4815px -90px; +} + +.grepo_box_window.simulator_configuration .icon.sea_monster_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4815px 0; +} + +.grepo_box_window.simulator_configuration .icon.siren_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4860px -45px; +} + +.grepo_box_window.simulator_configuration .icon.siren_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4860px -90px; +} + +.grepo_box_window.simulator_configuration .icon.siren_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4860px 0; +} + +.grepo_box_window.simulator_configuration .icon.siren_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4905px -45px; +} + +.grepo_box_window.simulator_configuration .icon.siren_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4905px -90px; +} + +.grepo_box_window.simulator_configuration .icon.siren_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4905px 0; +} + +.grepo_box_window.simulator_configuration .icon.slinger_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4950px -45px; +} + +.grepo_box_window.simulator_configuration .icon.slinger_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4950px -90px; +} + +.grepo_box_window.simulator_configuration .icon.slinger_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4950px 0; +} + +.grepo_box_window.simulator_configuration .icon.small_temple_powers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4995px -45px; +} + +.grepo_box_window.simulator_configuration .icon.small_temple_powers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4995px -90px; +} + +.grepo_box_window.simulator_configuration .icon.small_temple_powers.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4995px 0; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5040px -45px; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5040px -90px; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5040px 0; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5085px -45px; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5085px -90px; +} + +.grepo_box_window.simulator_configuration .icon.small_transporter_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5085px 0; +} + +.grepo_box_window.simulator_configuration .icon.soterias_shrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5130px -45px; +} + +.grepo_box_window.simulator_configuration .icon.soterias_shrine:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5130px -90px; +} + +.grepo_box_window.simulator_configuration .icon.soterias_shrine.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5130px 0; +} + +.grepo_box_window.simulator_configuration .icon.spartan_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5175px -45px; +} + +.grepo_box_window.simulator_configuration .icon.spartan_training:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5175px -90px; +} + +.grepo_box_window.simulator_configuration .icon.spartan_training.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5175px 0; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5220px -45px; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5220px -90px; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5220px 0; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5265px -45px; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5265px -90px; +} + +.grepo_box_window.simulator_configuration .icon.spartoi_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5265px 0; +} + +.grepo_box_window.simulator_configuration .icon.sudden_aid { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5310px -45px; +} + +.grepo_box_window.simulator_configuration .icon.sudden_aid:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5310px -90px; +} + +.grepo_box_window.simulator_configuration .icon.sudden_aid.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5310px 0; +} + +.grepo_box_window.simulator_configuration .icon.suffering { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5355px -45px; +} + +.grepo_box_window.simulator_configuration .icon.suffering:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5355px -90px; +} + +.grepo_box_window.simulator_configuration .icon.suffering.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5355px 0; +} + +.grepo_box_window.simulator_configuration .icon.suffering_and_mourning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5400px -45px; +} + +.grepo_box_window.simulator_configuration .icon.suffering_and_mourning:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5400px -90px; +} + +.grepo_box_window.simulator_configuration .icon.suffering_and_mourning.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5400px 0; +} + +.grepo_box_window.simulator_configuration .icon.summoning_of_the_nereids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5445px -45px; +} + +.grepo_box_window.simulator_configuration .icon.summoning_of_the_nereids:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5445px -90px; +} + +.grepo_box_window.simulator_configuration .icon.summoning_of_the_nereids.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5445px 0; +} + +.grepo_box_window.simulator_configuration .icon.sword_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5490px -45px; +} + +.grepo_box_window.simulator_configuration .icon.sword_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5490px -90px; +} + +.grepo_box_window.simulator_configuration .icon.sword_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5490px 0; +} + +.grepo_box_window.simulator_configuration .icon.trireme_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5535px -45px; +} + +.grepo_box_window.simulator_configuration .icon.trireme_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5535px -90px; +} + +.grepo_box_window.simulator_configuration .icon.trireme_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5535px 0; +} + +.grepo_box_window.simulator_configuration .icon.trireme_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5580px -45px; +} + +.grepo_box_window.simulator_configuration .icon.trireme_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5580px -90px; +} + +.grepo_box_window.simulator_configuration .icon.trireme_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5580px 0; +} + +.grepo_box_window.simulator_configuration .icon.wedding_of_the_aristocrats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5625px -45px; +} + +.grepo_box_window.simulator_configuration .icon.wedding_of_the_aristocrats:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5625px -90px; +} + +.grepo_box_window.simulator_configuration .icon.wedding_of_the_aristocrats.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5625px 0; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_generation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5670px -45px; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_generation:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5670px -90px; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_generation.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5670px 0; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_instant { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5715px -45px; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_instant:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5715px -90px; +} + +.grepo_box_window.simulator_configuration .icon.zyklop_instant.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -5715px 0; +} + +.grepo_box_window.simulator_configuration .icon.temple_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -4995px -45px; +} + +.grepo_box_window.simulator_configuration .icon.temple_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_part2_3532ce8.png) no-repeat -3105px -45px; +} + +.grepo_box_window.simulator_configuration .option { + text-align: left; + display: inline-block; + vertical-align: middle; +} + +.grepo_box_window.simulator_configuration .footer { + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg) repeat 0 0; + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 40px; + margin: 0 12px; + line-height: 37px; +} + +.grepo_box_window.simulator_configuration .footer .btn_reset { + margin-left: 10px; + line-height: initial; +} + +.grepo_box_window.simulator_configuration .bottom_border { + position: absolute; + top: 0; + width: 100%; + height: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 -64px; +} + +.grepo_box_window.hero_selection { + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 10px; + display: block; +} + +.grepo_box_window.hero_selection .grepo_box_background { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; + box-shadow: inset 0 0 10px #555; +} + +.grepo_box_window.hero_selection .content { + height: 445px; +} + +.grepo_box_window.hero_selection .content .subwindow_headline_bar { + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 -36px; + position: absolute; + top: 5px; + left: 10px; + height: 28px; + width: 770px; +} + +.grepo_box_window.hero_selection .content .subwindow_title { + position: absolute; + top: 2px; + left: 10px; +} + +.grepo_box_window.hero_selection .content .subwindow_btns { + position: absolute; + right: 3px; + top: 1px; +} + +.grepo_box_window.hero_selection .content .subwindow_btns .btn_close { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; + cursor: pointer; +} + +.grepo_box_window.hero_selection .content .subwindow_btns .btn_close:active, +.grepo_box_window.hero_selection .content .subwindow_btns .btn_close:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper { + width: 770px; + height: 422px; + position: absolute; + top: 27px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .hero_selection_title { + margin: 10px; + font-size: 14px; + color: #000; + font-weight: 600; + max-width: 170px; + line-height: 23px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_section { + position: absolute; + right: 0; + top: 0; + text-align: right; + margin: 10px 15px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_section>* { + display: inline-block; + vertical-align: middle; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon { + margin-right: 5px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=all] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -379px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=all]:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -431px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=all].active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -171px -131px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=all].active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -587px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=war] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -639px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=war]:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -67px -131px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=war].active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -535px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=war].active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -275px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=wisdom] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -223px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=wisdom]:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -171px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=wisdom].active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -67px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .filter_icon[data-category=wisdom].active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/simulator/simulator_aa2aa90.png) no-repeat -327px -112px; + width: 52px; + height: 19px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .hero_list_wrapper { + width: 550px; + height: 100%; + position: absolute; + top: 0; + left: 0; + background: url(https://gpfr.innogamescdn.com/images/game/border/border_v.png) repeat-y right 0; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .hero_list { + overflow-y: auto; + width: 515px; + height: 374px; + position: absolute; + top: 45px; + left: 32px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .hero_list .heroes .hero { + float: left; + margin: 0 20px 15px; + overflow: hidden; + position: relative; + cursor: pointer; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .hero_list .heroes .hero .icon { + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .hero_list .heroes .hero .hero_name { + position: absolute; + left: 0; + right: 0; + bottom: 0; + padding: 3px 5px 0; + height: 21px; + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_40.png) repeat 0 0; + color: #fff; + font-weight: 600; + line-height: 16px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .hero_list .heroes.filter_category_war .hero[data-category=wisdom] { + display: none; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .hero_list .heroes.filter_category_wisdom .hero[data-category=war] { + display: none; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper { + width: 220px; + height: 100%; + position: absolute; + top: 2px; + right: 0; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero_info { + scale: .8; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero .hero:not(.no_hero) { + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero .hero.no_hero .no_active_hero { + display: block; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero .hero.no_hero .hero_level_type { + display: none; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero .hero .no_active_hero { + display: none; + position: absolute; + top: 50px; + width: 190px; + left: 20px; + text-align: center; + font-size: 17px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero .hero .hero_level_type { + display: block; + position: absolute; + left: 0; + right: 0; + bottom: 0; + padding: 3px 5px 0; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_40.png) repeat 0 0; + color: #fff; + font-weight: 600; + line-height: 30px; + text-align: right; + font-size: 20px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero .hero .hero_level_type .hero_type_indicator { + bottom: 0; + left: 0; + z-index: 1; + margin-left: 0; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero .hero .hero_level_type .hero_type_indicator .hero_type { + position: absolute; + left: 0; + top: 0; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero_description { + position: absolute; + top: 175px; + left: -15px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero_description .hero_card { + position: absolute; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero_description .hero_card .hero_info { + position: relative; + margin: 0; + box-shadow: none; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero_description .hero_card .description_scroller { + color: #000; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .selected_hero { + overflow: hidden; + position: absolute; + left: -9px; + top: 5px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .select_btn, +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .unselect_btn { + position: absolute; + bottom: 10px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .select_btn { + left: 8px; + width: 88px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .unselect_btn { + right: 10px; + width: 109px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_info { + position: absolute; + bottom: 40px; + left: 8px; + width: 97px; + height: 25px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_info .level_text { + color: #000; + font-weight: 600; + font-size: 14px; + position: absolute; + bottom: 0; + left: 0; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons { + position: absolute; + bottom: 40px; + right: 10px; + width: 110px; + height: 25px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper { + position: absolute; + bottom: 0; + right: 0; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper .level_up_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper .level_up_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper .level_up_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper .level_up_btn.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper .level_down_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper .level_down_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper .level_down_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +.grepo_box_window.hero_selection .content .hero_selection_wrapper .selected_hero_wrapper .level_wrapper_buttons .level_btn_wrapper .level_down_btn.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +.radiobutton { + position: relative; + overflow: hidden; +} + +.radiobutton .option { + position: relative; + display: inline-block; + padding: 0 0 0 22px; + margin: 0 5px 0 0; + cursor: pointer; + line-height: 14px; + vertical-align: middle; +} + +.radiobutton .option .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/components/radiobutton/radiobutton.png) no-repeat 0 -32px; + height: 16px; + width: 16px; + position: absolute; + top: 0; + left: 0; +} + +.radiobutton.vertical .option { + display: block; + margin-bottom: 6px; +} + +.radiobutton .option.down .pointer { + background-position: 0 -48px; +} + +.radiobutton .option.checked .pointer { + background-position: 0 -80px; +} + +.radiobutton .option.checked.down .pointer { + background-position: 0 -64px; +} + +.radiobutton .option.disabled, +.radiobutton.disabled .option { + color: #525252; +} + +.radiobutton .option.disabled .pointer, +.radiobutton.disabled .option .pointer { + background-position: 0 0; +} + +.radiobutton .option.checked.disabled .pointer, +.radiobutton.disabled .option.checked .pointer { + background-position: 0 -16px; +} + +.radiobutton.resources { + height: 31px; + width: 95px; +} + +.radiobutton.resources .option { + width: 31px; + height: 31px; + background: url(https://gpfr.innogamescdn.com/images/game/market/market_sprite.png) no-repeat 0 0; + position: relative; + float: left; + margin-right: 5px; + cursor: pointer; + padding: 0; + margin: 0; +} + +.radiobutton.disabled .option { + cursor: default; +} + +.radiobutton.resources .option.wood { + background-position: 0 0; +} + +.radiobutton.resources .option.stone { + background-position: -31px 0; +} + +.radiobutton.resources .option.iron { + background-position: -62px 0; +} + +.radiobutton.resources .option.wood.checked { + background-position: 0 -31px; +} + +.radiobutton.resources .option.stone.checked { + background-position: -31px -31px; +} + +.radiobutton.resources .option.iron.checked { + background-position: -62px -31px; +} + +.radiobutton.sort_options { + height: 31px; + position: relative; + overflow: hidden; + display: inline-block; +} + +.radiobutton.sort_options .option { + width: 31px; + height: 31px; + position: relative; + float: left; + margin: 0 0 0 3px; + padding: 0; +} + +.radiobutton.sort_options .option .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/sort_icons_2.32.png) no-repeat 0 0; + width: 31px; + height: 31px; + position: relative; +} + +.radiobutton.sort_options .option.current_town.checked .pointer { + background-position: -341px -31px; +} + +.radiobutton.sort_options .option.all_towns.checked .pointer { + background-position: -372px -31px; +} + +.radiobutton.sort_options .option.current_town .pointer { + background-position: -341px 0; +} + +.radiobutton.sort_options .option.all_towns .pointer { + background-position: -372px 0; +} + +.radiobutton.sort_options .option.arrival_at .pointer { + background-position: -279px 0; +} + +.radiobutton.sort_options .option.arrival_at.checked .pointer { + background-position: -279px -31px; +} + +.radiobutton.sort_options .option.send_at .pointer { + background-position: -310px 0; +} + +.radiobutton.sort_options .option.send_at.checked .pointer { + background-position: -310px -31px; +} + +.radiobutton.sort_options .option.town_name .pointer { + background-position: -155px 0; +} + +.radiobutton.sort_options .option.town_name.checked .pointer { + background-position: -155px -31px; +} + +.radiobutton.sort_options .option.player_name .pointer { + background-position: -403px 0; +} + +.radiobutton.sort_options .option.player_name.checked .pointer { + background-position: -403px -31px; +} + +.radiobutton.sort_options .option.population .pointer { + background-position: -248px 0; +} + +.radiobutton.sort_options .option.population.checked .pointer { + background-position: -248px -31px; +} + +.radiobutton.sort_options .option.runtime .pointer { + background-position: -217px 0; +} + +.radiobutton.sort_options .option.runtime.checked .pointer { + background-position: -217px -31px; +} + +.radiobutton.sort_options .option.alliance_name .pointer { + background-position: -186px 0; +} + +.radiobutton.sort_options .option.alliance_name.checked .pointer { + background-position: -186px -31px; +} + +.radiobutton.small_resources { + width: 120px; +} + +.radiobutton.small_resources .option { + width: 22px; + height: 16px; + position: relative; + float: left; + margin: 0; + padding: 0; + margin: 1px; +} + +.radiobutton.small_resources .option.checked { + border: 1px solid #d5bb94; + margin: 0; +} + +.radiobutton.small_resources .option.gold .pointer { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.radiobutton.small_resources .option.wood .pointer { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.radiobutton.small_resources .option.stone .pointer { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.radiobutton.small_resources .option.iron .pointer { + background-position: 0 -48px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.radiobutton.small_resources .option.all .pointer { + background-position: 0 -16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.radiobutton.small_resources .option.all_with_gold .pointer { + background-position: 0 -80px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.radiobutton.sort_messages .option { + background: url(https://gpfr.innogamescdn.com/images/game/message/message_icons_2.20.png) no-repeat 0 0; + margin: 6px 7px 0 3px; + float: left; + position: relative; + width: 20px; + height: 16px; + padding: 0; +} + +.radiobutton.sort_messages .option.checked { + background-image: url(https://gpfr.innogamescdn.com/images/game/message/status.png); + width: 26px; + height: 22px; + margin: 3px 4px 0 0; +} + +.radiobutton.sort_messages .option .pointer { + display: none; +} + +.radiobutton.sort_messages .option.all { + background-position: 0 -32px; +} + +.radiobutton.sort_messages .option.new { + background-position: 0 0; +} + +.radiobutton.sort_messages .option.read { + background-position: 0 -16px; +} + +.radiobutton.sort_messages .option.answered { + background-position: 0 -64px; +} + +.radiobutton.sort_messages .option.all.checked { + background-position: 0 -22px; +} + +.radiobutton.sort_messages .option.new.checked { + background-position: -26px -22px; +} + +.radiobutton.sort_messages .option.read.checked { + background-position: -52px -22px; +} + +.radiobutton.sort_messages .option.answered.checked { + background-position: -78px -22px; +} + +.square_radiobutton { + position: relative; + overflow: hidden; + display: inline-block; +} + +.square_radiobutton .option { + position: relative; + display: inline-block; + width: 22px; + height: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat 0 0; + cursor: pointer; +} + +.square_radiobutton .option.checked, +.square_radiobutton .option.disabled { + cursor: default; +} + +.square_radiobutton .option.count { + background-position: -220px -23px; +} + +.square_radiobutton .option.count:hover { + background-position: -220px 0; +} + +.square_radiobutton .option.count.checked { + background-position: -220px -69px; +} + +.square_radiobutton .option.count.disabled { + background-position: -220px -46px; +} + +.square_radiobutton .option.all { + background-position: -242px -23px; +} + +.square_radiobutton .option.all:hover { + background-position: -242px 0; +} + +.square_radiobutton .option.all.checked { + background-position: -242px -69px; +} + +.square_radiobutton .option.all.disabled { + background-position: -242px -46px; +} + +.square_radiobutton .option.total { + background-position: -264px -23px; +} + +.square_radiobutton .option.total:hover { + background-position: -264px 0; +} + +.square_radiobutton .option.total.checked { + background-position: -264px -69px; +} + +.square_radiobutton .option.total.disabled { + background-position: -264px -46px; +} + +.square_radiobutton .option.running_reservations { + background-position: -652px -23px; +} + +.square_radiobutton .option.running_reservations:hover { + background-position: -652px 0; +} + +.square_radiobutton .option.running_reservations.checked { + background-position: -652px -69px; +} + +.square_radiobutton .option.running_reservations.disabled { + background-position: -652px -46px; +} + +.square_radiobutton .option.expired_reservations { + background-position: -674px -23px; +} + +.square_radiobutton .option.expired_reservations:hover { + background-position: -674px 0; +} + +.square_radiobutton .option.expired_reservations.checked { + background-position: -674px -69px; +} + +.square_radiobutton .option.expired_reservations.disabled { + background-position: -674px -46px; +} + +.square_radiobutton .option .pointer { + display: none; +} + +.radiobtn .option { + display: inline-block; + margin-right: 5px; +} + +.radiobtn .pointer { + display: inline-block; + vertical-align: middle; + position: relative; + width: 34px; + height: 34px; + margin-right: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/components/radiobutton/big_bullet.png) no-repeat 0 0; +} + +.radiobtn .bullet { + position: absolute; + width: 22px; + height: 22px; + top: 50%; + left: 50%; + margin: -11px 0 0 -11px; + background: url(https://gpfr.innogamescdn.com/images/game/components/radiobutton/big_bullet.png) no-repeat 34px 0; +} + +.radiobtn .down .bullet { + background-position: 34px 0; +} + +.radiobtn .checked .bullet { + background-position: 0 -34px; +} + +.radiobtn .checked.down .bullet { + background-position: 0 -64px; +} + +.radiobtn .option.disabled, +.radiobtn.disabled { + color: #525252; +} + +.radiobtn .option.disabled .pointer, +.radiobtn.disabled .pointer { + background-position: 0 0; +} + +.radiobtn .option.disabled .checked, +.radiobtn.disabled .checked { + background-position: 0 -34px; +} + +.radiobtn .caption { + display: inline-block; + line-height: 34px; + vertical-align: middle; +} + +.radiobtn.big_bullet .pointer, +.radiobutton.big_bullet .option { + padding: 0 0 0 34px; + width: auto; + height: 34px; + margin: 0 5px 0 0; + line-height: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/components/radiobutton/big_bullet.png) no-repeat 0 0; +} + +.radiobtn.big_bullet .bullet, +.radiobutton.big_bullet .option .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/components/radiobutton/big_bullet.png) no-repeat 34px 0; + height: 22px; + width: 22px; + position: absolute; + top: 6px; + left: 6px; + margin: 0; +} + +.radiobtn.big_bullet .down .bullet, +.radiobutton.big_bullet .option.down .pointer { + background-position: 34px 0; +} + +.radiobtn.big_bullet .checked .bullet, +.radiobutton.big_bullet .option.checked .pointer { + background-position: 0 -34px; +} + +.radiobtn.big_bullet .checked.down .bullet, +.radiobutton.big_bullet .option.checked.down .pointer { + background-position: 0 -64px; +} + +.label { + position: relative; + overflow: hidden; + display: inline-block; + vertical-align: middle; + line-height: 14px; +} + +.label .text { + position: absolute; + top: 0; + left: 0; + right: 0; + text-align: center; + margin: -1px 0 0 -2px; +} + +.label .shadow { + position: relative; +} + +.label.ratio { + color: #da9d1c; + font-family: Georgia,Times,serif; + font-size: 20px; + height: auto; + text-align: center; +} + +.label.ratio .shadow { + color: #3d3d3d; +} + +.label.trade_offer { + height: auto; + text-align: center; + font-weight: 700; +} + +.label.trade_offer .shadow { + color: #000; +} + +.dropdown.blue_arrow, +.dropdown.default { + position: relative; + overflow: hidden; + cursor: pointer; + height: 23px; + display: inline-block; + vertical-align: middle; +} + +.dropdown.blue_arrow.disabled, +.dropdown.default.disabled { + cursor: default; +} + +.dropdown.blue_arrow .border-left, +.dropdown.blue_arrow .border-right, +.dropdown.blue_arrow .caption, +.dropdown.default .border-left, +.dropdown.default .border-right, +.dropdown.default .caption { + background: url(https://gpfr.innogamescdn.com/images/game/layout/input_bg_2.33.png) no-repeat 0 0; + position: absolute; + height: 23px; + width: 5px; + top: 0; +} + +.dropdown.blue_arrow .border-left, +.dropdown.default .border-left { + background-position: 0 0; + left: 0; +} + +.dropdown.blue_arrow .border-right, +.dropdown.default .border-right { + background-position: 0 -23px; + right: 0; +} + +.dropdown.blue_arrow .caption, +.dropdown.default .caption { + position: relative; + margin: 0 5px; + padding: 4px 14px 0 2px; + height: 19px; + width: auto; + background-position: 0 -46px; + background-repeat: repeat-x; + font-size: 11px; + line-height: 14px; + white-space: nowrap; + overflow: hidden; + color: #000; + font-family: Verdana,Arial,Helvetica,sans-serif; + text-align: left; +} + +.dropdown.blue_arrow .initial-message-box, +.dropdown.default .initial-message-box { + position: absolute; + top: 0; + left: 5px; + right: 5px; + bottom: 0; + padding: 4px 14px 0 2px; + height: 19px; + font-size: 11px; + line-height: 14px; + white-space: nowrap; + overflow: hidden; + color: #444; +} + +.dropdown.default .arrow { + width: 15px; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/components/dropdown_button.png) no-repeat 0 0; + position: absolute; + top: 3px; + right: 3px; +} + +.dropdown.blue_arrow .arrow { + position: absolute; + width: 18px; + height: 19px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png) no-repeat -36px 0; + top: 2px; + cursor: pointer; + right: 2px; +} + +.dropdown.blue_arrow.disabled .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png) no-repeat -36px -38px; +} + +.dropdown.blue_arrow .arrow:hover { + background-position: -36px -19px; +} + +.dropdown-list { + position: absolute; + overflow: hidden; + z-index: 2001; + display: none; +} + +.dropdown-list.default { + background-color: #ffefca; + border: 1px solid #444; + border-width: 1px 1px 1px 2px; + border-color: #afafaf #444 #444 #afafaf; +} + +.dropdown-list.default .item-list { + position: relative; + overflow: auto; + max-height: 150px; +} + +.dropdown-list.default .item-list .option { + cursor: pointer; + text-align: left; + color: #000; + padding: 0 3px; + line-height: 14px; + font-size: 11px; +} + +.dropdown-list.default .item-list .option:hover { + color: #fff; + background-color: #237bd9; +} + +.dropdown-list.default .item-list .option:hover { + cursor: pointer; +} + +.dropdown-list.default .item-list .option.disabled, +.dropdown-list.default .item-list .option.selected { + cursor: default; +} + +.dropdown-list .content { + max-height: 200px; + overflow: auto; +} + +.is_ipad .dropdown-list.default .item-list .option { + padding: 3px 6px; + line-height: 17px; + font-size: 13px; +} + +.dropdown.resources { + width: 40px; + height: 41px; + background: 0 0; + position: relative; + overflow: hidden; +} + +.dropdown.resources .caption { + width: 40px; + height: 41px; + background-position: 50% 50%; + background-repeat: no-repeat; + margin: 0; + padding: 0; + cursor: pointer; +} + +.dropdown-list.resources { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_dropdown_list_2.68.png); + width: 128px; + height: 40px; + position: absolute; + overflow: hidden; + z-index: 20000; + display: none; +} + +.dropdown-list.resources.old { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_dropdown_list_old.png); +} + +.dropdown-list.resources .item-list { + padding-left: 3px; + margin: 0; + position: relative; + overflow: hidden; +} + +.dropdown-list.resources .option { + cursor: pointer; + text-align: left; + width: 32px; + height: 30px; + background-position: 50% 50%; + background-repeat: no-repeat; + float: left; + margin: 5px 4px; + padding: 0; +} + +.dropdown-list.resources .option.selected, +.dropdown-list.resources .option:hover { + border: 1px solid #f4c579; + margin: 4px 3px; + background-color: transparent; +} + +.dropdown-list.resources .option.selected { + cursor: default; +} + +.dropdown-list.resources .option.disabled { + cursor: default; +} + +.dropdown-list.resources .option.disabled:hover { + border: 0; + margin: 5px 4px; +} + +.dropdown-list.resources .option.wood, +.dropdown.resources .caption.wood { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/wood.png); +} + +.dropdown-list.resources .option.stone, +.dropdown.resources .caption.stone { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/stone.png); +} + +.dropdown-list.resources .option.iron, +.dropdown.resources .caption.iron { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/iron.png); +} + +.dropdown-list.resources .option.gold, +.dropdown.resources .caption.gold { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/gold_2.68.png); +} + +.dropdown-list.resources .option.wood.disabled { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/wood_50tr.png); +} + +.dropdown-list.resources .option.stone.disabled { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/stone_50tr.png); +} + +.dropdown-list.resources .option.iron.disabled { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/iron_50tr.png); +} + +.dropdown-list.resources .option.gold.disabled { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/gold_50tr_2.68.png); +} + +.dropdown_square { + width: 22px; + height: 23px; + margin: 0; + padding: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat 0 0; + cursor: pointer; +} + +.dropdown_square.remove { + background-position: -66px 0; +} + +.dropdown_square.remove:hover { + background-position: -66px -23px; +} + +.dropdown_square.remove.disabled { + background-position: -66px -46px; + cursor: default; +} + +.dropdown_list_square { + position: absolute; + overflow: visible; + z-index: 20000; + display: none; + margin-top: 6px; +} + +.dropdown_list_square .bbcode_box.middle_center { + margin-left: 7px; +} + +.dropdown_list_square .content .option { + height: 18px; + padding: 2px 3px 0; + line-height: 16px; + cursor: pointer; + white-space: nowrap; +} + +.dropdown_list_square .content .option.selected, +.dropdown_list_square .content .option:hover { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +.dropdown_list_square .content .option.selected { + cursor: default; +} + +.spinner { + position: relative; + overflow: hidden; + height: 24px; + width: 55px; + display: inline-block; + vertical-align: middle; +} + +.spinner .body, +.spinner .border_l, +.spinner .border_r, +.spinner .button_down, +.spinner .button_up { + background: url(https://gpfr.innogamescdn.com/images/game/components/spinner_2.33.png) no-repeat 0 0; + height: 24px; +} + +.spinner .border_l { + background-position: 0 0; + width: 5px; + position: absolute; + top: 0; + left: 0; +} + +.spinner.disabled .border_l { + background-position: 0 -48px; +} + +.spinner .border_r { + background-position: -7px 0; + width: 11px; + position: absolute; + top: 0; + right: 0; +} + +.spinner.disabled .border_r { + background-position: -7px -48px; +} + +.spinner .button_up { + background-position: -27px -3px; + width: 9px; + height: 9px; + position: absolute; + top: 2px; + right: 2px; +} + +.spinner.disabled .button_up { + background-position: -27px -51px; +} + +.spinner .button_down { + background-position: -27px -11px; + width: 9px; + height: 9px; + position: absolute; + bottom: 4px; + right: 2px; +} + +.spinner.disabled .button_down { + background-position: -27px -59px; +} + +.spinner .body { + background-position: 0 -24px; + background-repeat: repeat-x; + margin: 0 11px 0 5px; + padding-right: 2px; + position: relative; + overflow: hidden; +} + +.spinner.disabled .body { + background-position: 0 -72px; +} + +.spinner .body input { + background-color: transparent; + width: 100%; + height: 24px; + padding: 0; + margin: 0; + border: 0; + text-align: right; + display: block; + position: relative; + line-height: 14px; + font-size: 12px; +} + +.spinner.disabled input { + color: #c2c2c2; +} + +.spinner_horizontal { + position: relative; + overflow: hidden; + height: 24px; + width: 100px; + display: inline-block; + vertical-align: middle; +} + +.spinner_horizontal .body, +.spinner_horizontal .border_l, +.spinner_horizontal .border_r { + background: url(https://gpfr.innogamescdn.com/images/game/components/spinner_2.33.png) no-repeat 0 0; + height: 24px; +} + +.spinner_horizontal .border_l { + background-position: 0 0; + width: 1px; + position: absolute; + top: 0; + left: 0; +} + +.spinner_horizontal .disabled .border_l { + background-position: 0 -48px; +} + +.spinner_horizontal .border_r { + background-position: -7px 0; + width: 1px; + position: absolute; + top: 0; + right: 0; +} + +.spinner_horizontal .disabled .border_r { + background-position: -7px -48px; +} + +.spinner_horizontal .body { + background-position: 0 -24px; + background-repeat: repeat-x; + margin: 0; + position: relative; + overflow: hidden; +} + +.spinner_horizontal .disabled .body { + background-position: 0 -72px; +} + +.spinner_horizontal .body input { + background-color: transparent; + width: 100%; + height: 24px; + padding: 0; + margin: 0; + border: 0; + text-align: center; + display: block; + position: relative; + line-height: 14px; + font-size: 12px; +} + +.spinner_horizontal .disabled input { + color: #c2c2c2; +} + +.button_decrease, +.button_increase { + border-radius: 2px; + position: absolute; + top: 1px; + cursor: pointer; +} + +.button_increase { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat -42px -21px; + width: 21px; + height: 21px; + right: 0; +} + +.button_increase:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat -42px 0; + width: 21px; + height: 21px; +} + +.disabled .button_increase { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat -21px -21px; + width: 21px; + height: 21px; + cursor: default; +} + +.button_decrease { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat 0 -21px; + width: 21px; + height: 21px; + left: 0; +} + +.button_decrease:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat -21px 0; + width: 21px; + height: 21px; +} + +.disabled .button_decrease { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat 0 0; + width: 21px; + height: 21px; + cursor: default; +} + +.tooltip_with_arrow { + margin: auto; + position: relative; + min-width: 60px; + min-height: 40px; +} + +.tooltip_with_arrow .twa_arrow { + background-position: 0 0; + background-repeat: no-repeat; + position: absolute; + z-index: 3; +} + +.tooltip_with_arrow .twa_border_bottom, +.tooltip_with_arrow .twa_border_top { + position: absolute; +} + +.tooltip_with_arrow .twa_border_top { + top: 0; + height: 7px; + left: 7px; + right: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_middle.png) repeat-x 0 0; + z-index: 2; +} + +.tooltip_with_arrow .twa_border_bottom { + bottom: 0; + height: 12px; + left: 7px; + right: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_middle.png) repeat-x 0 0; + z-index: 1; +} + +.tooltip_with_arrow .twa_border_left, +.tooltip_with_arrow .twa_border_right { + position: absolute; + z-index: 1; +} + +.tooltip_with_arrow .twa_border_left { + top: 7px; + bottom: 12px; + left: 0; + width: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_left.png) repeat-y 0 0; +} + +.tooltip_with_arrow .twa_border_right { + right: 0; + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_right.png) repeat-y 0 0; + top: 7px; + bottom: 12px; +} + +.tooltip_with_arrow .twa_corner_bl, +.tooltip_with_arrow .twa_corner_br, +.tooltip_with_arrow .twa_corner_tl, +.tooltip_with_arrow .twa_corner_tr { + position: absolute; +} + +.tooltip_with_arrow .twa_corner_tl { + top: 0; + left: 0; + height: 7px; + width: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_left.png) no-repeat 0 0; +} + +.tooltip_with_arrow .twa_corner_tr { + top: 0; + right: 0; + height: 7px; + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_right.png) no-repeat 0 0; +} + +.tooltip_with_arrow .twa_corner_bl { + bottom: 0; + left: 0; + width: 7px; + height: 12px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_left.png) no-repeat 0 0; +} + +.tooltip_with_arrow .twa_corner_br { + bottom: 0; + right: 0; + width: 11px; + height: 12px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_right.png) no-repeat; +} + +.tooltip_with_arrow .twa_background_fake { + position: absolute; + top: 7px; + left: 7px; + right: 11px; + bottom: 12px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_middle.png) repeat 0 0; + z-index: 1; +} + +.tooltip_with_arrow .twa_content { + padding: 7px 11px 12px 7px; + position: relative; + z-index: 2; + display: inline-block; +} + +.tooltip_with_arrow .twa_content .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -148px -132px; + width: 216px; + height: 1px; + position: relative; + margin: 5px auto; +} + +.tooltip_with_arrow .twa_content .divider.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.tooltip_with_arrow .twa_content .single-progressbar.instant_buy { + width: 73px; +} + +.tooltip_with_arrow.arrow-bottom-center.arrow_type_seperate .twa_arrow, +.tooltip_with_arrow.arrow-bottom-left.arrow_type_seperate .twa_arrow, +.tooltip_with_arrow.arrow-bottom-right.arrow_type_seperate .twa_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -326px -194px; + height: 24px; + bottom: 0; + width: 35px; + height: 20px; + left: 50%; + margin-left: -17px; +} + +.tooltip_with_arrow.arrow-bottom-center.arrow_type_seperate .twa_arrow.queue_advisor-banner-BG, +.tooltip_with_arrow.arrow-bottom-left.arrow_type_seperate .twa_arrow.queue_advisor-banner-BG, +.tooltip_with_arrow.arrow-bottom-right.arrow_type_seperate .twa_arrow.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.tooltip_with_arrow.arrow-bottom-center .twa_border_left, +.tooltip_with_arrow.arrow-bottom-center .twa_border_right, +.tooltip_with_arrow.arrow-bottom-left .twa_border_left, +.tooltip_with_arrow.arrow-bottom-left .twa_border_right, +.tooltip_with_arrow.arrow-bottom-right .twa_border_left, +.tooltip_with_arrow.arrow-bottom-right .twa_border_right { + bottom: 23px; +} + +.tooltip_with_arrow.arrow-bottom-center .twa_border_bottom, +.tooltip_with_arrow.arrow-bottom-center .twa_corner_bl, +.tooltip_with_arrow.arrow-bottom-center .twa_corner_br, +.tooltip_with_arrow.arrow-bottom-left .twa_border_bottom, +.tooltip_with_arrow.arrow-bottom-left .twa_corner_bl, +.tooltip_with_arrow.arrow-bottom-left .twa_corner_br, +.tooltip_with_arrow.arrow-bottom-right .twa_border_bottom, +.tooltip_with_arrow.arrow-bottom-right .twa_corner_bl, +.tooltip_with_arrow.arrow-bottom-right .twa_corner_br { + bottom: 13px; +} + +.tooltip_with_arrow.arrow-bottom-center .twa_background_fake, +.tooltip_with_arrow.arrow-bottom-left .twa_background_fake, +.tooltip_with_arrow.arrow-bottom-right .twa_background_fake { + bottom: 25px; +} + +.tooltip_with_arrow.arrow-bottom-center .twa_content, +.tooltip_with_arrow.arrow-bottom-left .twa_content, +.tooltip_with_arrow.arrow-bottom-right .twa_content { + margin-bottom: 13px; +} + +.tooltip_with_arrow.arrow-bottom-center .twa_arrow, +.tooltip_with_arrow.arrow-bottom-left .twa_arrow, +.tooltip_with_arrow.arrow-bottom-right .twa_arrow { + background-image: url(https://gpfr.innogamescdn.com/images/game/popup/tooltip_arrow_bottom.png); + width: 33px; + height: 25px; + bottom: 0; +} + +.tooltip_with_arrow.arrow-bottom-center .twa_arrow, +.tooltip_with_arrow.arrow-top-center .twa_arrow { + left: 50%; + margin-left: -16px; +} + +.tooltip_with_arrow.arrow-bottom-left .twa_arrow, +.tooltip_with_arrow.arrow-top-left .twa_arrow { + left: 20px; +} + +.tooltip_with_arrow.arrow-bottom-right .twa_arrow, +.tooltip_with_arrow.arrow-top-right .twa_arrow { + right: 20px; +} + +.tooltip_with_arrow.arrow-top-center .twa_border_top, +.tooltip_with_arrow.arrow-top-center .twa_corner_tl, +.tooltip_with_arrow.arrow-top-center .twa_corner_tr, +.tooltip_with_arrow.arrow-top-left .twa_border_top, +.tooltip_with_arrow.arrow-top-left .twa_corner_tl, +.tooltip_with_arrow.arrow-top-left .twa_corner_tr, +.tooltip_with_arrow.arrow-top-right .twa_border_top, +.tooltip_with_arrow.arrow-top-right .twa_corner_tl, +.tooltip_with_arrow.arrow-top-right .twa_corner_tr { + top: 18px; +} + +.tooltip_with_arrow.arrow-top-center .twa_border_left, +.tooltip_with_arrow.arrow-top-center .twa_border_right, +.tooltip_with_arrow.arrow-top-left .twa_border_left, +.tooltip_with_arrow.arrow-top-left .twa_border_right, +.tooltip_with_arrow.arrow-top-right .twa_border_left, +.tooltip_with_arrow.arrow-top-right .twa_border_right { + top: 25px; +} + +.tooltip_with_arrow.arrow-top-center .twa_background_fake, +.tooltip_with_arrow.arrow-top-left .twa_background_fake, +.tooltip_with_arrow.arrow-top-right .twa_background_fake { + top: 25px; +} + +.tooltip_with_arrow.arrow-top-center .twa_content, +.tooltip_with_arrow.arrow-top-left .twa_content, +.tooltip_with_arrow.arrow-top-right .twa_content { + margin-top: 21px; +} + +.tooltip_with_arrow.arrow-top-center .twa_arrow, +.tooltip_with_arrow.arrow-top-left .twa_arrow, +.tooltip_with_arrow.arrow-top-right .twa_arrow { + background-image: url(https://gpfr.innogamescdn.com/images/game/popup/tooltip_arrow_top.png); + width: 33px; + height: 25px; + top: 1px; +} + +.tooltip_with_arrow.arrow-right-bottom .twa_background_fake, +.tooltip_with_arrow.arrow-right-middle .twa_background_fake, +.tooltip_with_arrow.arrow-right-top .twa_background_fake { + right: 25px; +} + +.tooltip_with_arrow.arrow-right-bottom .twa_border_right, +.tooltip_with_arrow.arrow-right-middle .twa_border_right, +.tooltip_with_arrow.arrow-right-top .twa_border_right { + right: 14px; +} + +.tooltip_with_arrow.arrow-right-bottom .twa_border_bottom, +.tooltip_with_arrow.arrow-right-bottom .twa_border_top, +.tooltip_with_arrow.arrow-right-middle .twa_border_bottom, +.tooltip_with_arrow.arrow-right-middle .twa_border_top, +.tooltip_with_arrow.arrow-right-top .twa_border_bottom, +.tooltip_with_arrow.arrow-right-top .twa_border_top { + right: 25px; +} + +.tooltip_with_arrow.arrow-right-bottom .twa_corner_br, +.tooltip_with_arrow.arrow-right-bottom .twa_corner_tr, +.tooltip_with_arrow.arrow-right-middle .twa_corner_br, +.tooltip_with_arrow.arrow-right-middle .twa_corner_tr, +.tooltip_with_arrow.arrow-right-top .twa_corner_br, +.tooltip_with_arrow.arrow-right-top .twa_corner_tr { + right: 14px; +} + +.tooltip_with_arrow.arrow-right-bottom .twa_content, +.tooltip_with_arrow.arrow-right-middle .twa_content, +.tooltip_with_arrow.arrow-right-top .twa_content { + margin-right: 14px; +} + +.tooltip_with_arrow.arrow-right-bottom .twa_arrow, +.tooltip_with_arrow.arrow-right-middle .twa_arrow, +.tooltip_with_arrow.arrow-right-top .twa_arrow { + background-image: url(https://gpfr.innogamescdn.com/images/game/popup/tooltip_arrow_right.png); + width: 25px; + height: 33px; + right: 0; + z-index: 3; +} + +.tooltip_with_arrow.arrow-right-top .twa_arrow { + top: 20px; +} + +.tooltip_with_arrow.arrow-right-bottom .twa_arrow { + bottom: 20px; +} + +.tooltip_with_arrow.arrow-right-middle .twa_arrow { + top: 50%; + margin-top: -16px; +} + +.tooltip_with_arrow.arrow-left-bottom .twa_background_fake, +.tooltip_with_arrow.arrow-left-middle .twa_background_fake, +.tooltip_with_arrow.arrow-left-top .twa_background_fake { + left: 24px; +} + +.tooltip_with_arrow.arrow-left-bottom .twa_border_left, +.tooltip_with_arrow.arrow-left-middle .twa_border_left, +.tooltip_with_arrow.arrow-left-top .twa_border_left { + left: 17px; +} + +.tooltip_with_arrow.arrow-left-bottom .twa_border_bottom, +.tooltip_with_arrow.arrow-left-bottom .twa_border_top, +.tooltip_with_arrow.arrow-left-middle .twa_border_bottom, +.tooltip_with_arrow.arrow-left-middle .twa_border_top, +.tooltip_with_arrow.arrow-left-top .twa_border_bottom, +.tooltip_with_arrow.arrow-left-top .twa_border_top { + left: 24px; +} + +.tooltip_with_arrow.arrow-left-bottom .twa_corner_bl, +.tooltip_with_arrow.arrow-left-bottom .twa_corner_tl, +.tooltip_with_arrow.arrow-left-middle .twa_corner_bl, +.tooltip_with_arrow.arrow-left-middle .twa_corner_tl, +.tooltip_with_arrow.arrow-left-top .twa_corner_bl, +.tooltip_with_arrow.arrow-left-top .twa_corner_tl { + left: 17px; +} + +.tooltip_with_arrow.arrow-left-bottom .twa_content, +.tooltip_with_arrow.arrow-left-middle .twa_content, +.tooltip_with_arrow.arrow-left-top .twa_content { + margin-left: 14px; +} + +.tooltip_with_arrow.arrow-left-bottom .twa_arrow, +.tooltip_with_arrow.arrow-left-middle .twa_arrow, +.tooltip_with_arrow.arrow-left-top .twa_arrow { + background-image: url(https://gpfr.innogamescdn.com/images/game/popup/tooltip_arrow_left.png); + width: 25px; + height: 33px; + left: 0; + z-index: 3; +} + +.tooltip_with_arrow.arrow-left-top .twa_arrow { + top: 20px; +} + +.tooltip_with_arrow.arrow-left-bottom .twa_arrow { + bottom: 20px; +} + +.tooltip_with_arrow.arrow-left-middle .twa_arrow { + top: 50%; + margin-top: -16px; +} + +.tripple-progress-progressbar { + width: 246px; + height: 14px; + position: relative; + overflow: visible; +} + +.tripple-progress-progressbar .body, +.tripple-progress-progressbar .border_l, +.tripple-progress-progressbar .border_r, +.tripple-progress-progressbar .indicator, +.tripple-progress-progressbar .indicator2, +.tripple-progress-progressbar .indicator3 { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) no-repeat 0 0; + height: 14px; + overflow: hidden; + position: relative; +} + +.tripple-progress-progressbar .border_l { + position: absolute; + top: 0; + left: 0; + width: 6px; +} + +.tripple-progress-progressbar .border_r { + background-position: -456px -28px; + position: absolute; + top: 0; + right: 0; + width: 4px; +} + +.tripple-progress-progressbar .body { + margin: 0 4px 0 6px; + background-position: 0 -14px; +} + +.tripple-progress-progressbar .progress { + position: absolute; + top: 2px; + bottom: 2px; + left: 2px; + right: 2px; + overflow: hidden; +} + +.tripple-progress-progressbar .indicator, +.tripple-progress-progressbar .indicator2, +.tripple-progress-progressbar .indicator3 { + height: 10px; + position: absolute; + overflow: hidden; + top: 0; +} + +.tripple-progress-progressbar .indicator { + background-position: right -42px; +} + +.tripple-progress-progressbar .indicator2 { + background-position: right -62px; +} + +.tripple-progress-progressbar .indicator3 { + background-position: right -52px; +} + +.tripple-progress-progressbar .overloaded .indicator { + background-position: left -183px; +} + +.tripple-progress-progressbar .overloaded .indicator2 { + background-position: right -193px; +} + +.tripple-progress-progressbar .overloaded .indicator3 { + background-position: right -203px; +} + +.tripple-progress-progressbar .amounts { + position: absolute; + bottom: -15px; + height: 15px; + right: 0; + font-size: 10px; + line-height: 14px; +} + +.tripple-progress-progressbar .amounts .curr2 { + color: #a0968a; +} + +.single-progressbar { + position: relative; + overflow: hidden; + height: 25px; +} + +.single-progressbar .body, +.single-progressbar .border_l, +.single-progressbar .border_r, +.single-progressbar .caption, +.single-progressbar .indicator, +.single-progressbar .progress { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) no-repeat 0 0; + width: 4px; + position: absolute; + top: 0; + height: 25px; + color: #fff; +} + +.single-progressbar .body.negative, +.single-progressbar .border_l.negative, +.single-progressbar .border_r.negative, +.single-progressbar .caption.negative, +.single-progressbar .indicator.negative, +.single-progressbar .progress.negative { + color: red; +} + +.single-progressbar .progress { + overflow: hidden; +} + +.single-progressbar .border_l { + background-position: -456px -122px; + left: 0; +} + +.single-progressbar .border_r { + background-position: 0 -72px; + right: 0; +} + +.single-progressbar .body { + background-position: 0 -97px; + background-repeat: repeat-x; + margin: 0 4px; + position: relative; + width: auto; + overflow: visible; +} + +.single-progressbar .progress { + top: 3px; + height: 18px; + left: 3px; + right: 3px; + background: 0 0; + width: auto; +} + +.single-progressbar .progress .indicator { + left: 0; + width: 0; + height: 18px; + background-position: right -147px; +} + +.single-progressbar .progress .indicator.overloaded { + background-position: right -165px; +} + +.single-progressbar .caption { + text-shadow: 1px 1px 1px #000; + top: 3px; + height: 18px; + left: 3px; + right: 3px; + width: auto; + background: 0 0; + color: #fff; + font-weight: 700; + line-height: 16px; + text-align: center; +} + +.single-progressbar-placeholder .curr { + display: none; +} + +.single-progressbar.time-indicator { + height: 47px; +} + +.single-progressbar.time-indicator .body, +.single-progressbar.time-indicator .border_l, +.single-progressbar.time-indicator .border_r { + height: 47px; +} + +.single-progressbar.time-indicator .border_l { + background-position: -456px -213px; +} + +.single-progressbar.time-indicator .border_r { + background-position: 0 -307px; +} + +.single-progressbar.time-indicator .body { + background-position: 0 -260px; + margin: 0 4px; +} + +.single-progressbar.time-indicator .caption { + color: #000; + font-weight: 400; + height: 40px; +} + +.single-progressbar.time-indicator .caption .text { + display: block; + height: 20px; +} + +.single-progressbar.time-indicator .caption .curr { + display: block; + height: 18px; + margin-top: 2px; + color: #fff; +} + +.single-progressbar.time-indicator .progress { + top: auto; + bottom: 4px; +} + +.single-progressbar.time-indicator .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/storage/res.png) no-repeat 0 -54px; +} + +.simple_progressbar { + position: relative; + overflow: hidden; +} + +.simple_progressbar .progress { + height: 16px; + text-align: left; +} + +.simple_progressbar.grass .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) repeat-x 0 -354px; + height: 16px; +} + +.simple_progressbar.worms .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) repeat-x 0 -370px; + height: 16px; +} + +.simple_progressbar.corn .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) repeat-x 0 -386px; + height: 16px; +} + +.simple_progressbar.searching .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) repeat-x 0 -402px; + height: 16px; +} + +.simple_progressbar .caption { + text-shadow: 1px 1px 1px #000; + position: absolute; + top: 0; + left: 0; + right: 0; + height: 16px; + color: #fff; + text-align: center; + line-height: 13px; +} + +.single-progressbar2 { + position: relative; + overflow: hidden; + height: 22px; +} + +.single-progressbar2 .background { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_horizontal.png); + background-repeat: repeat-x; + background-position: 0 -22px; + top: 3px; + position: absolute; + left: 1px; + right: 1px; + bottom: 3px; +} + +.single-progressbar2 .body, +.single-progressbar2 .border_l, +.single-progressbar2 .border_r { + background: url(https://gpfr.innogamescdn.com/images/game/layout/timer_sprite.png) no-repeat 0 0; + width: 3px; + position: absolute; + top: 0; + height: 22px; +} + +.single-progressbar2 .border_l { + background-position: -56px -6px; + left: 0; +} + +.single-progressbar2 .border_r { + background-position: -60px -6px; + right: 0; +} + +.single-progressbar2 .body { + background-position: 0 -68px; + background-repeat: repeat-x; + margin: 0 3px; + position: relative; + width: auto; + overflow: visible; +} + +.single-progressbar2 .caption, +.single-progressbar2 .progress, +.single-progressbar2 .progress .indicator { + position: absolute; + background: 0 0; +} + +.single-progressbar2 .progress { + top: 3px; + height: 16px; + left: 2px; + right: 2px; + z-index: 1000; + width: auto; + overflow: hidden; +} + +.single-progressbar2 .progress .indicator { + top: 0; + left: 0; + width: 0; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) repeat-x 0 -402px; +} + +.single-progressbar2.bought .progress .indicator { + height: 16px; +} + +.single-progressbar2 .caption { + text-shadow: 1px 1px 1px #000; + top: 3px; + height: 18px; + left: 3px; + right: 3px; + width: auto; + z-index: 2000; + color: #fff; + line-height: 13px; + text-align: center; +} + +.single-progressbar.time_reduction { + height: 7px; +} + +.single-progressbar.time_reduction .progress { + width: 41px; + top: 0; + height: 7px; + left: 0; + right: 9; + z-index: 2000; + background: 0 0; +} + +.single-progressbar.time_reduction .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -296px -347px; + width: 120px; + height: 11px; + height: 7px; + width: auto; +} + +.single-progressbar.time_reduction .progress .indicator.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.single-progressbar.time_reduction .info, +.single-progressbar.time_reduction .progress .timer_output { + display: none; +} + +.single-progressbar.instant_buy { + height: 23px; + z-index: 1; +} + +.single-progressbar.instant_buy .body, +.single-progressbar.instant_buy .border_l, +.single-progressbar.instant_buy .border_r, +.single-progressbar.instant_buy .indicator { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png); + background-repeat: no-repeat; + height: 22px; +} + +.single-progressbar.instant_buy .border_l, +.single-progressbar.instant_buy .border_r { + width: 4px; + position: absolute; + top: 0; +} + +.single-progressbar.instant_buy .border_l { + background-position: 0 -837px; + left: 0; +} + +.single-progressbar.instant_buy .border_r { + background-position: -5px -837px; + right: 0; +} + +.single-progressbar.instant_buy .body { + margin: 0 4px; + position: relative; + background-position: 0 -859px; +} + +.single-progressbar.instant_buy .progress { + position: absolute; + width: auto; + margin: 0; + top: 2px; + left: 2px; + right: 2px; + height: 18px; +} + +.single-progressbar.instant_buy .progress .indicator { + top: 0; + height: 17px; + left: 1px; + right: 1px; + width: auto; + position: absolute; +} + +.single-progressbar.instant_buy.type_building_queue .progress .indicator, +.single-progressbar.instant_buy.type_research_queue .progress .indicator { + background-position: 0 -693px; +} + +.single-progressbar.instant_buy.type_building_queue.tearing_down .progress .indicator { + background-position: 0 -674px; +} + +.single-progressbar.instant_buy.double_border.type_healing_time .progress .indicator, +.single-progressbar.instant_buy.type_healing_time .progress .indicator { + background-position: 0 -674px; +} + +.single-progressbar.instant_buy.type_unit_queue .progress .indicator { + background-position: 0 -818px; +} + +.single-progressbar.instant_buy.type_building_queue .caption, +.single-progressbar.instant_buy.type_research_queue .caption, +.single-progressbar.instant_buy.type_unit_queue .caption { + color: #f7c763; + font-weight: 400; + text-shadow: #000 1px 1px; + font-size: 11px; +} + +.round_progressbar { + position: relative; + overflow: hidden; + width: 201px; + height: 203px; +} + +.round_progressbar .background { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 1; + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars_round_sprite.png) no-repeat 50% 100%; +} + +.round_progressbar .animate, +.round_progressbar .indicator { + position: relative; + width: 153px; + height: 179px; + top: 11px; + left: 11px; + z-index: 2; + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars_round_progress_sprite.png) no-repeat 100% 100%; +} + +.round_progressbar .animate { + display: none; + position: absolute; + top: 0; + left: 0; +} + +.round_progressbar div.s_39 { + background-position: 0 0; +} + +.round_progressbar div.s_38 { + background-position: -153px 0; +} + +.round_progressbar div.s_37 { + background-position: -306px 0; +} + +.round_progressbar div.s_36 { + background-position: -459px 0; +} + +.round_progressbar div.s_35 { + background-position: -612px 0; +} + +.round_progressbar div.s_34 { + background-position: -765px 0; +} + +.round_progressbar div.s_33 { + background-position: -918px 0; +} + +.round_progressbar div.s_32 { + background-position: -1071px 0; +} + +.round_progressbar div.s_31 { + background-position: -1224px 0; +} + +.round_progressbar div.s_30 { + background-position: -1377px 0; +} + +.round_progressbar div.s_29 { + background-position: 0 -179px; +} + +.round_progressbar div.s_28 { + background-position: -153px -179px; +} + +.round_progressbar div.s_27 { + background-position: -306px -179px; +} + +.round_progressbar div.s_26 { + background-position: -459px -179px; +} + +.round_progressbar div.s_25 { + background-position: -612px -179px; +} + +.round_progressbar div.s_24 { + background-position: -765px -179px; +} + +.round_progressbar div.s_23 { + background-position: -918px -179px; +} + +.round_progressbar div.s_22 { + background-position: -1071px -179px; +} + +.round_progressbar div.s_21 { + background-position: -1224px -179px; +} + +.round_progressbar div.s_20 { + background-position: -1377px -179px; +} + +.round_progressbar div.s_19 { + background-position: 0 -358px; +} + +.round_progressbar div.s_18 { + background-position: -153px -358px; +} + +.round_progressbar div.s_17 { + background-position: -306px -358px; +} + +.round_progressbar div.s_16 { + background-position: -459px -358px; +} + +.round_progressbar div.s_15 { + background-position: -612px -358px; +} + +.round_progressbar div.s_14 { + background-position: -765px -358px; +} + +.round_progressbar div.s_13 { + background-position: -918px -358px; +} + +.round_progressbar div.s_12 { + background-position: -1071px -358px; +} + +.round_progressbar div.s_11 { + background-position: -1224px -358px; +} + +.round_progressbar div.s_10 { + background-position: -1377px -358px; +} + +.round_progressbar div.s_9 { + background-position: 0 -537px; +} + +.round_progressbar div.s_8 { + background-position: -153px -537px; +} + +.round_progressbar div.s_7 { + background-position: -306px -537px; +} + +.round_progressbar div.s_6 { + background-position: -459px -537px; +} + +.round_progressbar div.s_5 { + background-position: -612px -537px; +} + +.round_progressbar div.s_4 { + background-position: -765px -537px; +} + +.round_progressbar div.s_3 { + background-position: -918px -537px; +} + +.round_progressbar div.s_2 { + background-position: -1071px -537px; +} + +.round_progressbar div.s_1 { + background-position: -1224px -537px; +} + +.round_progressbar div.s_0 { + background-position: -1377px -537px; +} + +.round_progressbar .face { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 3; + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars_round_sprite.png) no-repeat 50% 0; +} + +.progressbar_time_progress_only { + position: relative; + overflow: hidden; + height: 19px; + display: block; +} + +.progressbar_time_progress_only .progress, +.progressbar_time_progress_only .progress .indicator { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png); + background-repeat: repeat-x; + height: 19px; + position: relative; + overflow: hidden; +} + +.progressbar_time_progress_only .progress { + background-position: 0 -437px; +} + +.progressbar_time_progress_only .progress .indicator { + background-position: 0 -418px; +} + +.progressbar_time_progress_only .caption { + text-shadow: 1px 1px 1px #000; + position: absolute; + top: 0; + left: 0; + right: 0; + height: 19px; + line-height: 18px; + text-align: center; + font-size: 11px; +} + +.progressbar_time_progress_only .caption .curr { + color: #f7c664; +} + +.vertical-progressbar { + position: relative; + overflow: visible; +} + +.vertical-progressbar .progress { + position: relative; + overflow: visible; + width: 16px; +} + +.vertical-progressbar .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/components/progressbar/vertical_progresses.png) no-repeat 0 top; + position: absolute; + bottom: 0; + left: 0; + width: 16px; + overflow: visible; +} + +.vertical-progressbar.progress-green .indicator { + background-position: 0 top; +} + +.vertical-progressbar.progress-brown .indicator { + background-position: -17px top; +} + +.high-progressbar { + display: block; + height: 28px; + overflow: hidden; + position: relative; +} + +.high-progressbar .border_left, +.high-progressbar .border_right, +.high-progressbar .indicator, +.high-progressbar .indicator .progress_left, +.high-progressbar .indicator .progress_middle, +.high-progressbar .indicator .progress_right, +.high-progressbar .progress { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) no-repeat 0 0; + position: absolute; +} + +.high-progressbar .border_left { + width: 6px; + height: 28px; + background-position: left -475px; + top: 0; + left: 0; +} + +.high-progressbar .border_right { + width: 5px; + height: 28px; + background-position: right -533px; + top: 0; + right: 0; +} + +.high-progressbar .progress { + height: 28px; + margin: 0 5px 0 6px; + background-position: 0 -504px; + background-repeat: repeat-x; + position: relative; + overflow: hidden; +} + +.high-progressbar .progress .value { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + text-align: center; + padding-top: 5px; + line-height: 14px; + color: #fff; +} + +.high-progressbar .progress .indicator { + position: relative; + overflow: hidden; + width: 0; + height: 19px; + margin: 5px 0 0 0; + background: 0 0; +} + +.high-progressbar .progress .indicator .progress_left { + height: 19px; + width: 2px; + background-position: left -562px; + top: 0; + left: 0; + display: none; +} + +.high-progressbar .progress .indicator .progress_middle { + height: 19px; + top: 0; + left: 0; + right: 0; + background-position: 0 -562px; +} + +.high-progressbar .progress .indicator .progress_right { + height: 19px; + width: 2px; + background-position: right -600px; + right: 0; + top: 0; + display: none; +} + +.progressbar_time_and_value { + width: 280px; +} + +.progressbar_time_and_value .info { + text-align: center; + height: 18px; + line-height: 18px; + margin-bottom: 3px; +} + +.progressbar_time_and_value .progress { + text-align: center; +} + +.progressbar_time_and_value .indicator { + height: 18px; + background: url(https://gpfr.innogamescdn.com/images/game/storage/res.png) no-repeat 0 100%; +} + +.single-progressbar.double_border.blue-progressbar .progress .indicator, +.single-progressbar2.blue-progressbar .progress .indicator { + background-position: 100% -582px; +} + +.single-progressbar.turquoise-progressbar .progress .indicator { + background-position: right -732px; +} + +.single-progressbar.dark-blue-progressbar .progress .indicator { + background-position: right -582px; +} + +.single-progressbar2.blue-progressbar .caption { + line-height: 15px; +} + +.single-progressbar.red-progressbar .progress .indicator, +.single-progressbar2.red-progressbar .progress .indicator { + background-position: 0 -675px; +} + +.single-progressbar.double_border { + position: relative; + overflow: hidden; + height: 29px; +} + +.single-progressbar.double_border .body, +.single-progressbar.double_border .border_l, +.single-progressbar.double_border .border_r, +.single-progressbar.double_border .caption, +.single-progressbar.double_border .indicator, +.single-progressbar.double_border .progress { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) no-repeat 0 0; + width: 6px; + position: absolute; + top: 0; + height: 29px; +} + +.single-progressbar.double_border .progress { + overflow: hidden; +} + +.single-progressbar.double_border .border_l { + background-position: left -475px; + left: 0; +} + +.single-progressbar.double_border .border_r { + background-position: right -533px; + right: 0; + width: 5px; +} + +.single-progressbar.double_border .body { + background-position: 0 -504px; + background-repeat: repeat-x; + margin: 0 5px 0 6px; + position: relative; + width: auto; + overflow: visible; +} + +.single-progressbar.double_border .progress { + top: 4px; + height: 20px; + left: 5px; + right: 5px; + z-index: 1000; + background: 0 0; + width: auto; +} + +.single-progressbar.double_border .progress .indicator { + left: 0; + width: 0; + height: 20px; + background-position: 0 -600px; +} + +.single-progressbar.double_border .caption, +.single-progressbar.double_border.progressbar_time_and_value_with_deco .info { + top: 3px; + height: 18px; + left: 3px; + right: 3px; + width: auto; + background: 0 0; + z-index: 2000; + color: #fbce6a; + line-height: 20px; + text-align: center; + font-size: 11px; + position: absolute; +} + +.single-progressbar.double_border.progressbar_time_and_value_with_deco .info span { + vertical-align: middle; + left: auto; + right: auto; + top: auto; + bottom: auto; + position: relative; + font-weight: 700; +} + +.single-progressbar.double_border .info .hide { + display: none; + visibility: hidden; +} + +.button_new { + display: inline-block; + position: relative; + overflow: hidden; + height: 23px; + cursor: pointer; + vertical-align: middle; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + border: 0; + padding: 0; + font-size: 13px; +} + +.button_new .caption, +.button_new .left, +.button_new .right { + background-image: url(https://gpfr.innogamescdn.com/images/game/button/button_sprite_2.51.png); + background-repeat: no-repeat; + width: 4px; + position: absolute; + height: 23px; +} + +.button_new .left { + background-position: 0 -69px; + top: 0; + left: 0; +} + +.button_new .right { + background-position: -27px 0; + top: 0; + right: 0; +} + +.button_new .caption { + background-repeat: repeat-x; + background-position: 0 -138px; + width: auto; + position: relative; + margin: 0 4px; + line-height: 23px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + color: #fc6; + text-align: center; + font-weight: 700; + padding: 0 13px; + font-size: 12px; +} + +.button_new .icon { + width: 18px; + height: 16px; + display: inline-block; + position: relative; + top: 3px; +} + +.button_new.icon_type_speed .icon { + background: url(https://gpfr.innogamescdn.com/images/game/button/gold_small.png) no-repeat 0 0; +} + +.button_new .left:hover { + background-position: 0 -92px; +} + +.button_new .right:hover { + background-position: -27px -23px; +} + +.button_new .caption:hover { + background-position: 0 -161px; +} + +.button_new.disabled { + cursor: default; +} + +.button_new.disabled .left { + background-position: 0 -115px; +} + +.button_new.disabled .right { + background-position: -27px -46px; +} + +.button_new.disabled .caption { + background-position: 0 -184px; + color: #ccb; + vertical-align: middle; +} + +.button_new.gold .icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + display: inline-block; + width: 14px; + height: 16px; + vertical-align: middle; +} + +.button_new.double_border { + height: 29px; +} + +.button_new.double_border.metal_effect .effect { + background: url(https://gpfr.innogamescdn.com/images/game/components/button/button_glare.png) no-repeat 0 0; + position: absolute; + left: 0; + right: 0; + height: 19px; + z-index: 10; + top: 6px; +} + +.button_new.double_border .caption, +.button_new.double_border .left, +.button_new.double_border .right { + width: 6px; + height: 29px; +} + +.button_new.double_border .left { + background-position: left -207px; +} + +.button_new.double_border .right { + background-position: right -207px; +} + +.button_new.double_border .caption { + background-position: 0 -297px; + width: auto; + margin: 0 6px; + line-height: 30px; + padding: 0 13px; + font-size: 12px; + vertical-align: middle; +} + +.button_new.double_border .left:hover { + background-position: left -237px; +} + +.button_new.double_border .right:hover { + background-position: right -237px; +} + +.button_new.double_border .caption:hover { + background-position: 0 -327px; +} + +.button_new.double_border.disabled .left { + background-position: left -267px; +} + +.button_new.double_border.disabled .right { + background-position: right -267px; +} + +.button_new.double_border.disabled .caption { + background-position: 0 -357px; +} + +.button_new.double_border.disabled.metal_effect .effect { + display: none; +} + +.button_new.double_border .icon, +.simple_button .icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + display: inline-block; + width: 14px; + height: 16px; + vertical-align: middle; + top: 0; +} + +.icon_type_gold .icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + width: 13px; + height: 15px; + margin-left: 2px; +} + +.button_new.icon_type_coins_of_war .icon { + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -209px -94px; +} + +.button_new.icon_type_coins_of_wisdom .icon { + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -189px -94px; +} + +.button_new.double_border.disabled.metal_effect .caption { + background: url(https://gpfr.innogamescdn.com/images/game/button/button_sprite_2.51.png) repeat-x 0 -297px; + margin: 0 6px; +} + +.button_new.icon_type_battle_token .icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/battle_token_small.png) no-repeat; + width: 19px; + height: 14px; + margin-left: 2px; +} + +.button_new.icon_type_runtime.icon_only .caption { + padding: 0; +} + +.button_new.icon_type_runtime.icon_only .icon { + margin-left: -5px; +} + +.button_new.icon_type_runtime .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -410px; + width: 23px; + height: 21px; + top: 0; +} + +.button_new.icon_type_checkmark.icon_only .caption { + padding: 0; +} + +.button_new.icon_type_checkmark .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -727px -578px; + width: 14px; + height: 13px; +} + +.button_new.icon_type_cross.icon_only .caption { + padding: 0; +} + +.button_new.icon_type_cross .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -278px; + width: 14px; + height: 14px; +} + +.button_new.icon_type_grepolis_score.icon_only .caption { + padding: 0; +} + +.button_new.icon_type_grepolis_score .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -1044px -306px; + width: 14px; + height: 15px; +} + +.button_new.onehalf_border { + height: 26px; +} + +.button_new.onehalf_border .left { + width: 7px; + height: 26px; + background-position: left -388px; +} + +.button_new.onehalf_border .right { + width: 6px; + height: 26px; + background-position: right -467px; +} + +.button_new.onehalf_border .caption { + height: 26px; + background-position: 0 -547px; + width: auto; + margin: 0 6px 0 7px; + line-height: 26px; + padding: 0 13px; + font-size: 12px; + vertical-align: middle; +} + +.button_new.onehalf_border .left:hover { + background-position: left -414px; +} + +.button_new.onehalf_border .right:hover { + background-position: right -494px; +} + +.button_new.onehalf_border .caption:hover { + background-position: 0 -573px; +} + +.button_new.onehalf_border.disabled .left { + background-position: left -440px; +} + +.button_new.onehalf_border.disabled .right { + background-position: right -521px; +} + +.button_new.onehalf_border.disabled .caption { + background-position: 0 -599px; +} + +.button_unit { + float: left; + margin: 5px; + position: relative; + width: 40px; + height: 40px; + border: 1px solid #724b08; + cursor: pointer; +} + +.button_unit .shadow { + position: absolute; + right: 1px; + bottom: 1px; + color: #000; + font-weight: 700; +} + +.button_unit .caption { + position: absolute; + color: #fff; + right: 2px; + bottom: 2px; + font-weight: 700; +} + +.button_slow_ship { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -205px -150px; + position: relative; + overflow: hidden; + padding: 6px 3px 6px 35px; + height: 17px; + display: inline-block; + cursor: pointer; +} + +.button_slow_ship .left, +.button_slow_ship .right { + display: none; +} + +.button_fast_ship { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -205px -179px; + position: relative; + overflow: hidden; + padding: 6px 3px 6px 35px; + height: 17px; + display: inline-block; + cursor: pointer; +} + +.button_fast_ship .left, +.button_fast_ship .right { + display: none; +} + +.button_new.square { + width: 22px; + height: 23px; + margin: 0; + padding: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat 0 0; +} + +.button_new.square:hover { + background-position: 0 -23px; +} + +.button_new.square.disabled { + background-position: 0 -46px; +} + +.button_new.square .caption, +.button_new.square .left, +.button_new.square .right { + display: none; +} + +.button_new.square.accept { + background-position: 0 0; +} + +.button_new.square.accept:hover { + background-position: 0 -23px; +} + +.button_new.square.accept.disabled { + background-position: 0 -46px; +} + +.button_new.square.gold { + background-position: -762px 0; +} + +.button_new.square.gold:hover { + background-position: -762px -23px; +} + +.button_new.square.gold.disabled { + background-position: -762px -46px; +} + +.button_new.square.send_resources { + background-position: -44px 0; +} + +.button_new.square.send_resources:hover { + background-position: -44px -23px; +} + +.button_new.square.send_resources.disabled { + background-position: -44px -46px; +} + +.button_new.square.clear_form { + background-position: -476px -23px; +} + +.button_new.square.clear_form:hover { + background-position: -476px 0; +} + +.button_new.square.clear_form.disabled { + background-position: -476px -46px; +} + +.button_new.square.population { + background-position: -454px 0; +} + +.button_new.square.population:hover { + background-position: -454px -23px; +} + +.button_new.square.population.active { + background-position: -454px -69px; +} + +.button_new.square.population.disabled { + background-position: -454px -46px; +} + +.button_new.square.question_mark { + background-position: -22px 0; +} + +.button_new.square.question_mark:hover { + background-position: -22px -23px; +} + +.button_new.square.question_mark.disabled { + background-position: -22px -46px; +} + +.button_new.square.switch { + background-position: -784px 0; +} + +.button_new.square.switch:hover { + background-position: -784px -23px; +} + +.button_new.square.switch:active { + background-position: -784px -69px; +} + +.button_new.square.switch.disabled { + background-position: -784px -46px; +} + +.button_new.square.remove { + background-position: -66px 0; +} + +.button_new.square.remove:hover { + background-position: -66px -23px; +} + +.button_new.square.remove.disabled { + background-position: -66px -46px; +} + +.button_new.square.plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.plus .button_brown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +.button_new.square.plus .button_brown_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +.button_new.square.plus .button_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -50px; + width: 22px; + height: 23px; +} + +.button_new.square.plus .button_frame_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px -23px; + width: 12px; + height: 13px; +} + +.button_new.square.plus .minus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.plus .minus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.plus .minus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px 0; + width: 22px; + height: 23px; +} + +.button_new.square.plus .minus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.plus .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.plus .plus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.plus .plus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.plus .plus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -73px; + width: 22px; + height: 23px; +} + +.button_new.square.plus:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -73px; + width: 22px; + height: 23px; +} + +.button_new.square.plus.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.plus.disabled:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.plus:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.minus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.minus .button_brown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +.button_new.square.minus .button_brown_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +.button_new.square.minus .button_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -50px; + width: 22px; + height: 23px; +} + +.button_new.square.minus .button_frame_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px -23px; + width: 12px; + height: 13px; +} + +.button_new.square.minus .minus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.minus .minus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.minus .minus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px 0; + width: 22px; + height: 23px; +} + +.button_new.square.minus .minus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.minus .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.minus .plus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.minus .plus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.minus .plus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -73px; + width: 22px; + height: 23px; +} + +.button_new.square.minus:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -73px; + width: 22px; + height: 23px; +} + +.button_new.square.minus.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px 0; + width: 22px; + height: 23px; +} + +.button_new.square.minus.disabled:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px 0; + width: 22px; + height: 23px; +} + +.button_new.square.minus:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -50px; + width: 22px; + height: 23px; +} + +.button_new.square.reload { + background-position: -110px 0; +} + +.button_new.square.reload:hover { + background-position: -110px -23px; +} + +.button_new.square.reload.disabled { + background-position: -110px 0; + background-color: #000; +} + +.button_new.square.audio { + background-position: -719px 0; +} + +.button_new.square.audio:hover { + background-position: -719px -23px; +} + +.button_new.square.audio.active { + background-position: -719px -69px; +} + +.button_new.square.audio.disabled { + background-position: -719px -46px; + background-color: #000; +} + +.button_new.square.units_on_the_way { + background-position: -520px 0; +} + +.button_new.square.units_on_the_way:hover { + background-position: -520px -23px; +} + +.button_new.square.units_on_the_way.active, +.button_new.square.units_on_the_way:active { + background-position: -520px -69px; +} + +.button_new.square.units_on_the_way.disabled { + background-position: -520px -46px; +} + +.button_new.square.units_in_the_building_queue { + background-position: -542px 0; +} + +.button_new.square.units_in_the_building_queue:hover { + background-position: -542px -23px; +} + +.button_new.square.units_in_the_building_queue.active, +.button_new.square.units_in_the_building_queue:active { + background-position: -542px -69px; +} + +.button_new.square.units_in_the_building_queue.disabled { + background-position: -542px -46px; +} + +.button_new.square.hidden_units { + background-position: -564px 0; +} + +.button_new.square.hidden_units:hover { + background-position: -564px -23px; +} + +.button_new.square.hidden_units:active { + background-position: -564px -69px; +} + +.button_new.square.hidden_units.disabled { + background-position: -564px -46px; +} + +.button_new.square.scheduled_units { + background-position: -586px 0; +} + +.button_new.square.scheduled_units:hover { + background-position: -586px -23px; +} + +.button_new.square.scheduled_units.active, +.button_new.square.scheduled_units:active { + background-position: -586px -69px; +} + +.button_new.square.scheduled_units.disabled { + background-position: -586px -46px; +} + +.button_new.square.town_reservation_bbcode { + background-position: -608px 0; +} + +.button_new.square.town_reservation_bbcode:hover { + background-position: -608px -23px; +} + +.button_new.square.town_reservation_bbcode.active, +.button_new.square.town_reservation_bbcode:active { + background-position: -608px -69px; +} + +.button_new.square.town_reservation_bbcode.disabled { + background-position: -608px -46px; +} + +.button_new.square.town_reservation { + background-position: -630px 0; +} + +.button_new.square.town_reservation:hover { + background-position: -630px -23px; +} + +.button_new.square.town_reservation.active, +.button_new.square.town_reservation:active { + background-position: -630px -69px; +} + +.button_new.square.town_reservation.disabled { + background-position: -630px -46px; +} + +.button_new.square.eye { + background-position: -696px 0; +} + +.button_new.square.eye:hover { + background-position: -696px -23px; +} + +.button_new.square.eye.active, +.button_new.square.eye:active { + background-position: -696px -69px; +} + +.button_new.square.recruit_time_reduction { + background-position: -740px 0; +} + +.button_new.square.recruit_time_reduction:hover { + background-position: -740px -23px; +} + +.button_new.square.recruit_time_reduction.disabled { + background-position: -740px -46px; +} + +.button_new.square.close { + float: right; + padding: 0; + border: none; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +.button_new.square.close .arrow_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +.button_new.square.close .arrow_down_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +.button_new.square.close .arrow_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +} + +.button_new.square.close .arrow_down_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +.button_new.square.close .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +.button_new.square.close .arrow_left_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +.button_new.square.close .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +.button_new.square.close .arrow_right_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +.button_new.square.close .arrow_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +.button_new.square.close .arrow_up_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +.button_new.square.close .arrow_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +.button_new.square.close .arrow_up_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +.button_new.square.close .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +.button_new.square.close .close_button_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +.button_new.square.close .maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +.button_new.square.close .maximize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +.button_new.square.close .minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +.button_new.square.close .minimize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +.button_new.square.close .wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +.button_new.square.close .wiki_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +.button_new.square.close:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +.button_new.square.scroll_left { + background-position: -828px 0; +} + +.button_new.square.scroll_left:hover { + background-position: -828px -23px; +} + +.button_new.square.scroll_right { + background-position: -850px 0; +} + +.button_new.square.scroll_right:hover { + background-position: -850px -23px; +} + +.button_new.square.minimize { + background-position: -872px 0; +} + +.button_new.square.minimize:hover { + background-position: -872px -23px; +} + +.button_new.square.maximize { + background-position: -894px 0; +} + +.button_new.square.maximize:hover { + background-position: -894px -23px; +} + +.button_new.square.close_all { + background-position: -916px 0; +} + +.button_new.square.close_all:hover { + background-position: -916px -23px; +} + +.button_new.square.help { + background-position: -938px 0; +} + +.button_new.square.help:hover { + background-position: -938px -23px; +} + +.button_new.square.level_up { + background-position: -960px 0; +} + +.button_new.square.level_up:hover { + background-position: -960px -23px; +} + +.button_new.square.level_up.disabled { + background-position: -960px -46px; +} + +.button_new.square.transfer_in { + background-position: -982px 0; +} + +.button_new.square.transfer_in:hover { + background-position: -982px -23px; +} + +.button_new.square.transfer_in.disabled { + background-position: -982px -46px; +} + +.button_new.square.transfer_out { + background-position: -1004px 0; +} + +.button_new.square.transfer_out:hover { + background-position: -1004px -23px; +} + +.button_new.square.transfer_out.disabled { + background-position: -1004px -46px; +} + +.button_new.square.ally_msg_founder { + background-position: -198px 0; +} + +.button_new.square.ally_msg_founder:hover { + background-position: -198px -23px; +} + +.button_new.square.ally_msg_founder.disabled { + background-position: -198px -46px; +} + +.button_new.square.ally_msg_leader { + background-position: -176px 0; +} + +.button_new.square.ally_msg_leader:hover { + background-position: -176px -23px; +} + +.button_new.square.ally_msg_leader.disabled { + background-position: -176px -46px; +} + +.button_new.square.show_support { + background-position: -1026px 0; +} + +.button_new.square.show_support:hover { + background-position: -1026px -23px; +} + +.button_new.square.show_support.disabled { + background-position: -1026px -46px; +} + +.button_new.square.reduction { + background-position: -740px 0; +} + +.button_new.square.reduction:hover { + background-position: -740px -23px; +} + +.button_new.square.reduction.disabled { + background-position: -740px -46px; +} + +.button_new.square.small { + width: 18px; + height: 19px; + margin: 0; + padding: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png) no-repeat 0 0; +} + +.button_new.square.small.next, +.button_new.square.small.next_prev { + background-position: -18px 0; +} + +.button_new.square.small.next:hover, +.button_new.square.small.next_prev:hover { + background-position: -18px -19px; +} + +.button_new.square.small.next.disabled, +.button_new.square.small.next_prev.disabled { + background-position: -18px -38px; +} + +.button_new.square.small.next_prev.active, +.button_new.square.small.prev { + background-position: 0 0; +} + +.button_new.square.small.next_prev.active:hover, +.button_new.square.small.prev:hover { + background-position: 0 -19px; +} + +.button_new.square.small.next_prev.active.disabled, +.button_new.square.small.prev.disabled { + background-position: 0 -38px; +} + +.button_new.square.plus_minus { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/showhide.png) no-repeat 0 0; +} + +.button_new.square.plus_minus:hover { + background-position: 0 -23px; +} + +.button_new.square.plus_minus.active { + background-position: 0 -46px; +} + +.button_new.square.plus_minus.active:hover { + background-position: 0 -69px; +} + +.button_new.biggersquare, +.button_new.biggersquare .caption { + width: 25px; + height: 25px; + margin: 0; + padding: 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_biggersquare_2.52.1.png); +} + +.button_new.biggersquare .caption, +.button_new.biggersquare .left, +.button_new.biggersquare .right { + display: none; +} + +.button_new.biggersquare.level_up { + background-position: 0 0; +} + +.button_new.biggersquare.level_up:hover { + background-position: 0 -25px; +} + +.button_new.biggersquare.level_up:active { + background-position: 0 -50px; +} + +.button_new.biggersquare.level_up.disabled { + background-position: 0 -75px; +} + +.button_new.biggersquare.remove { + background-position: -25px 0; +} + +.button_new.biggersquare.remove:hover { + background-position: -25px -25px; +} + +.button_new.biggersquare.remove:active { + background-position: -25px -50px; +} + +.button_new.biggersquare.remove.disabled { + background-position: -25px -75px; +} + +.button_new.biggersquare.gold { + background-position: -50px 0; +} + +.button_new.biggersquare.gold:hover { + background-position: -50px -25px; +} + +.button_new.biggersquare.gold:active { + background-position: -50px -50px; +} + +.button_new.biggersquare.gold.disabled { + background-position: -50px -75px; +} + +.button_big { + position: relative; + overflow: hidden; + display: inline-block; + height: 65px; + cursor: pointer; +} + +.button_big.disabled { + cursor: default; +} + +.button_big .left, +.button_big .middle, +.button_big .middle .caption, +.button_big .right { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/buttons_sprite.png); + background-repeat: no-repeat; + position: absolute; + height: 65px; + overflow: hidden; +} + +.button_big .left { + background-position: right -171px; + width: 8px; + top: 0; + left: 0; +} + +.button_big .right { + background-position: left -236px; + width: 8px; + top: 0; + right: 0; +} + +.button_big .middle { + background-position: 0 -106px; + background-repeat: repeat-x; + margin: 0 8px; + position: relative; +} + +.button_big .middle .caption { + position: relative; + height: 22px; + padding: 6px 9px; + margin-top: 14px; + color: #deaf5f; + text-align: center; + background-position: 0 -35px; + background-repeat: repeat-x; + font-size: 20px; + font-weight: 700; + font-family: Arial,Verdana,sans-serif; +} + +.button_big:hover .middle .caption { + background-position: 0 0; +} + +.button_big.disabled .middle .caption { + background-position: 0 -71px; +} + +.button_big.disabled .middle .caption .icon { + display: none; +} + +.button_big .middle .caption.icon_gold .icon { + width: 30px; + height: 30px; + display: block; + position: absolute; + top: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -30px; +} + +.button_big .middle .caption.icon_gold.icon_pos_right { + padding: 6px 47px 6px 9px; +} + +.button_big .middle .caption.icon_pos_right .icon { + right: 8px; +} + +.large_button { + height: 42px; + cursor: pointer; + position: relative; + display: inline-block; + overflow: hidden; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.large_button.disabled { + cursor: default; +} + +.large_button .left, +.large_button .right { + background-image: url(https://gpfr.innogamescdn.com/images/game/button/large_button_sprite_2.54.png); + background-repeat: no-repeat; + height: 42px; + width: 6px; + position: absolute; + top: 0; + overflow: hidden; +} + +.large_button .left { + left: 0; + background-position: left -84px; +} + +.large_button.disabled .left { + background-position: -14px -84px; +} + +.large_button .right { + right: 0; + background-position: right -126px; +} + +.large_button.disabled .right { + background-position: -61px -126px; +} + +.large_button .caption, +.large_button .middle { + background: url(https://gpfr.innogamescdn.com/images/game/button/large_button_sprite_2.54.png) repeat-x 0 -42px; + height: 30px; + padding: 12px 5px 0; + margin: 0 4px; + color: #fc6; + text-align: center; + overflow: hidden; + position: relative; + font-weight: 700; + font-size: 17px; + line-height: 20px; +} + +.large_button:hover .caption, +.large_button:hover .middle { + background-position: 0 0; +} + +.large_button.disabled .caption, +.large_button.disabled .middle { + background-position: 0 -168px; + color: #ccb; +} + +.large_button .caption .icon, +.large_button .middle .icon { + display: none; +} + +.large_button.icon_left .caption, +.large_button.icon_left .middle { + padding-left: 44px; +} + +.large_button.icon_left .caption .icon, +.large_button.icon_left .middle .icon { + display: block; + height: 32px; + position: absolute; + top: 6px; + left: 3px; + width: 35px; +} + +.large_button.icon_type_envelope .caption .icon, +.large_button.icon_type_envelope .middle .icon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -133px -73px; +} + +.large_button.icon_type_url .caption .icon, +.large_button.icon_type_url .middle .icon { + background: url(https://gpfr.innogamescdn.com/images/game/friend_invite/friend_invite_icons.png) no-repeat -5px -5px; +} + +.large_button.icon_type_banner .caption .icon, +.large_button.icon_type_banner .middle .icon { + background: url(https://gpfr.innogamescdn.com/images/game/friend_invite/banner.png) no-repeat 0 3px; +} + +.large_button.icon_type_facebook .caption .icon, +.large_button.icon_type_facebook .middle .icon { + background: url(https://gpfr.innogamescdn.com/images/start/logos/facebook_24px.png) no-repeat 3px 4px; +} + +.simple_button { + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/layout/simplebutton_sprite.png) repeat-x 0 -16px; + height: 16px; + cursor: pointer; +} + +.simple_button .icon { + display: none; +} + +.simple_button.icon_left .icon, +.simple_button.icon_right .icon { + display: inline-block; +} + +.simple_button.icon_left .icon { + margin-right: 6px; +} + +.simple_button.icon_right .icon { + margin-left: 2px; +} + +.simple_button .caption { + text-align: center; + color: #fc6; + font-weight: 700; + height: 16px; + line-height: 15px; + font-size: 12px; +} + +.simple_button:hover { + background-position: 0 -32px; +} + +.simple_button.disabled { + background-position: 0 -48px; +} + +.simple_button.disabled .caption { + color: #ccb; + cursor: default; +} + +.simple_button.with_borders { + width: 168px; + height: 20px; + background: 0 0; +} + +.simple_button.with_borders .left, +.simple_button.with_borders .middle, +.simple_button.with_borders .right { + background: url(https://gpfr.innogamescdn.com/images/game/layout/simplebutton_sprite.png) no-repeat 0 0; + height: 20px; + position: absolute; + overflow: hidden; + top: 0; +} + +.simple_button.with_borders .left { + width: 2px; + background-position: left -64px; + left: 0; +} + +.simple_button.with_borders .right { + width: 2px; + background-position: right -104px; + right: 0; +} + +.simple_button.with_borders .middle { + margin: 0 1px; + position: relative; + background-position: 0 -84px; + background-repeat: repeat-x; +} + +.simple_button.with_borders .middle .caption { + margin-top: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/simplebutton_sprite.png) repeat-x 0 -16px; +} + +.simple_button.with_borders:hover .middle .caption { + background-position: 0 -32px; +} + +.simple_button.with_borders.disabled { + color: #ccb; + cursor: default; +} + +.simple_button.with_borders.disabled .middle .caption { + background-position: 0 -48px; +} + +.simple_button.with_borders.highlight .middle .caption { + background: url(https://gpfr.innogamescdn.com/images/game/layout/simplebutton_highlight3.gif) no-repeat 0 0; +} + +.simple_button.ver2 { + background: url(https://gpfr.innogamescdn.com/images/game/layout/simplebutton2_sprite.png) repeat-x 0 0; + height: 19px; + cursor: pointer; +} + +.simple_button.ver2:hover { + background-position: 0 -19px; +} + +.simple_button.ver2.disabled { + background-position: 0 -38px; +} + +.simple_button.ver2 .caption { + height: 19px; + line-height: 18px; + font-size: 12px; + display: inline-block; +} + +.simple_button.ver2 .icon_gold { + position: relative; +} + +.simple_button.ver2 .icon_pos_right .btn_icon { + float: right; +} + +.simple_button.ver2 .icon_gold .btn_icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + width: 14px; + height: 13px; + top: 3px; + display: block; + margin: 2px 0 0 2px; +} + +.button_order_by { + width: 20px; + height: 21px; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/buttons/ascending_descending.png) no-repeat -42px 0; + display: inline-block; + cursor: pointer; + vertical-align: middle; +} + +.button_order_by:hover { + background-position: -42px -22px; +} + +.button_order_by.active { + background-position: -21px 0; +} + +.button_order_by.active:hover { + background-position: -21px -22px; +} + +.button_order_by.disabled { + background-position: 0 -44px; + cursor: default; +} + +.btn_wnd { + position: relative; + display: inline-block; + width: 20px; + height: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png) no-repeat 0 0; + cursor: pointer; +} + +.btn_wnd.close_all { + background-position: 0 -688px; +} + +.btn_wnd.close_all:hover { + background-position: 0 -708px; +} + +.btn_wnd.close { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +.btn_wnd.close:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +.btn_wnd.minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +.btn_wnd.minimize:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +.btn_wnd.maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +.btn_wnd.maximize:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +.btn_wnd.help { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +.btn_wnd.help:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +.button_buret { + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -523px -79px; + width: 177px; + height: 46px; + cursor: pointer; + position: relative; +} + +.button_buret:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -523px -33px; + width: 177px; + height: 46px; +} + +.button_buret:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -129px; + width: 177px; + height: 46px; +} + +.button_buret.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -593px -129px; + width: 177px; + height: 46px; + cursor: default; +} + +.button_buret .caption { + width: 130px; + height: 19px; + position: relative; + margin: 14px 0 0 41px; + color: #fc6; + font-weight: 700; + font-size: 11px; + text-align: center; + line-height: 16px; + text-overflow: ellipsis; + overflow: hidden; +} + +.button_buret.disabled .caption { + color: #ccb; +} + +.button_buret .icon { + position: absolute; +} + +.button_buret.collect_units .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -544px -175px; + width: 50px; + height: 49px; + top: -2px; +} + +.button_buret.spend_resources .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -258px; + width: 50px; + height: 49px; + top: 1px; + left: -1px; +} + +.button_buret.attack_player .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -744px -175px; + width: 50px; + height: 49px; +} + +.button_buret.attack_npc .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -594px -175px; + width: 50px; + height: 49px; + left: -2px; + top: -1px; +} + +.button_buret.provoke_attack .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -644px -175px; + width: 50px; + height: 49px; + left: -2px; + top: -1px; +} + +.button_buret.wait_time .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -466px -258px; + width: 50px; + height: 49px; + left: -2px; + top: -2px; +} + +.button_buret.bear_effect .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -694px -175px; + width: 50px; + height: 49px; + left: -3px; + top: -2px; +} + +.button_new.large { + height: 42px; +} + +.button_new.large .caption, +.button_new.large .left, +.button_new.large .right { + height: 42px; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/button/large_button_sprite_2.54.png) no-repeat 0 0; +} + +.button_new.large .caption { + background-position: 0 -42px; + line-height: 42px; + font-size: 20px; + padding: 0 25px; + background-repeat: repeat-x; +} + +.button_new.large:hover .caption { + background-position: 0 0; +} + +.button_new.large .left { + background-position: left -84px; +} + +.button_new.large .right { + background-position: right -126px; +} + +.show_hint_button { + width: 40px; + height: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/show_hint_button.png) no-repeat 0 0; + display: inline-block; + position: relative; + overflow: hidden; + cursor: pointer; + vertical-align: middle; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + border: 0; + padding: 0; +} + +.show_hint_button:hover { + background-position: 0 -23px; +} + +.show_hint_button.active { + background-position: 0 -46px; +} + +.show_hint_button.disabled { + background-position: 0 -69px; + cursor: default; +} + +.button_with_counter { + width: 100%; + height: 100%; +} + +.button_with_counter .counter { + position: absolute; + display: none; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -141px -28px; + width: 24px; + height: 28px; +} + +.button_with_counter .counter.top { + top: -5px; +} + +.button_with_counter .counter.bottom { + bottom: -5px; +} + +.button_with_counter .counter.left { + left: -5px; +} + +.button_with_counter .counter.right { + right: -5px; +} + +.button_with_counter .counter.show { + display: block; +} + +.button_with_counter .counter .counter_number { + position: absolute; + width: 100%; + height: 100%; + color: #fff; + text-align: center; + line-height: 22px; + font-size: 10px; + font-weight: 600; +} + +.button_with_counter .caption { + position: absolute; + top: 50px; + left: -5px; + color: #fff; + width: 60px; + font-size: 10px; + background: -webkit-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -moz-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -ms-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -o-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + -moz-box-shadow: 0 0 5px 3px rgba(0,0,0,.6); + -webkit-box-shadow: 0 0 5px 3px rgba(0,0,0,.6); + box-shadow: 0 0 5px 3px rgba(0,0,0,.6); + overflow: hidden; + overflow-wrap: break-word; +} + +@media (min-aspect-ratio:21 / 10) { + #ui_box.mobile .button_with_counter .caption { + top: 70px; + left: 5px; + } + + #ui_box.mobile .button_with_counter .counter.top { + top: 0; + } + + #ui_box.mobile .button_with_counter .counter.bottom { + bottom: 0; + } + + #ui_box.mobile .button_with_counter .counter.left { + left: 0; + } + + #ui_box.mobile .button_with_counter .counter.right { + right: 0; + } +} + +.button_new.single_border { + height: 23px; +} + +.button_new.single_border .left, +.button_new.single_border .right { + position: absolute; + height: 23px; + top: 0; + width: 4px; +} + +.button_new.single_border .left { + left: 0; +} + +.button_new.single_border .right { + right: 0; +} + +.button_new.single_border .caption { + position: relative; + margin: 0 4px; + padding: 0; + font-weight: 400; + font-size: 11px; + line-height: 21px; +} + +.button_new.single_border .icon { + top: 3px; +} + +.button_new.instant_buy .caption, +.button_new.instant_buy .left, +.button_new.instant_buy .right { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/buttons_instant_buy_compressed.png); + background-repeat: no-repeat; +} + +.button_new.instant_buy .caption { + background-repeat: repeat-x; +} + +.button_new.instant_buy .left { + background-position: -20px 0; +} + +.button_new.instant_buy .right { + background-position: -25px 0; +} + +.button_new.instant_buy .caption { + background-position: 0 -72px; +} + +.button_new.instant_buy .left:hover { + background-position: 0 0; +} + +.button_new.instant_buy .right:hover { + background-position: -5px 0; +} + +.button_new.instant_buy .caption:hover { + background-position: 0 -24px; +} + +.button_new.instant_buy.disabled .left { + background-position: -10px 0; +} + +.button_new.instant_buy.disabled .right { + background-position: -15px 0; +} + +.button_new.instant_buy.disabled .caption { + background-position: 0 -48px; +} + +.color_picker_grepo .color_selector { + margin-bottom: 5px; + width: 120px; +} + +.color_picker_grepo .color_selector .color_picker_colors { + height: 18px; + padding: 4px; +} + +.color_picker_grepo .color_selector .color_picker_colors>div { + float: left; + border-top: 1px solid #000; + border-left: 1px solid #000; + border-bottom: 1px solid #000; + width: 16px; + height: 16px; + cursor: pointer; +} + +.color_picker_grepo .color_selector .color_picker_colors>div:last-child { + border-right: 1px solid #000; +} + +.color_picker_grepo .color_selector .color_picker_tones { + padding: 4px; + height: 103px; + width: 103px; +} + +.color_picker_grepo .color_selector .color_picker_tones>div { + float: left; + border-top: 1px solid #000; + border-left: 1px solid #000; + width: 16px; + height: 16px; + font-size: 7px; + cursor: pointer; +} + +.color_picker_grepo .color_selector .color_picker_tones>div:nth-child(7n+6) { + border-right: 1px solid #000; +} + +.color_picker_grepo .color_selector .color_picker_tones>div:nth-last-child(-n+7) { + border-bottom: 1px solid #000; +} + +.color_picker_grepo .hash_symbol { + display: inline-block; + width: 16px; + height: 16px; + text-align: center; + margin-left: 4px; +} + +.color_picker_grepo .color_input { + width: 83px; +} + +.checkbox_new { + position: relative; + overflow: hidden; + padding-bottom: 1px; + line-height: 16px; + display: inline-block; + cursor: pointer; + vertical-align: middle; + text-align: left; +} + +.checkbox_new.large .cbx_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/checkbox/checkbox_35117c7.png) no-repeat 0 0; + width: 22px; + height: 23px; +} + +.checkbox_new.large.disabled .cbx_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/checkbox/checkbox_35117c7.png) no-repeat 0 -23px; + width: 22px; + height: 23px; +} + +.checkbox_new.large.checked .cbx_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/checkbox/checkbox_35117c7.png) no-repeat -22px 0; + width: 22px; + height: 23px; +} + +.checkbox_new.large.checked.disabled .cbx_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/checkbox/checkbox_35117c7.png) no-repeat -44px 0; + width: 22px; + height: 23px; +} + +.checkbox_new.large .cbx_caption { + padding: 0 0 0 26px; + line-height: 23px; +} + +.checkbox_new.disabled { + cursor: default; +} + +.checkbox_new .cbx_icon { + width: 14px; + height: 15px; + position: relative; + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -367px -48px; +} + +.checkbox_new .cbx_caption { + padding: 0 0 0 17px; + line-height: 15px; +} + +.checkbox_new.disabled .cbx_icon { + background-position: -395px -48px; +} + +.checkbox_new.checked .cbx_icon { + background-position: -353px -48px; +} + +.checkbox_new.checked.disabled .cbx_icon { + background-position: -381px -48px; +} + +.checkbox_new.no_caption { + height: 15px; + width: 14px; + padding-left: 0; +} + +.image_box_slider { + position: relative; + height: 94px; + width: 326px; + margin: 0 auto; + top: auto; +} + +.image_box_slider .boxed_image { + position: absolute; + left: 1px; + top: 1px; + height: 90px; + width: 90px; +} + +.image_box_slider .boxed_image.spy { + background-image: url(https://gpfr.innogamescdn.com/images/game/hide/spy_90x90_2.67.jpg); +} + +.image_box_slider .portrait_box { + height: 94px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png); + width: 98px; + overflow: hidden; + z-index: 10; + position: absolute; + left: 0; +} + +.image_box_slider .boxed_slider { + float: left; + width: 232px; + margin-left: 92px; +} + +.image_box_slider .boxed_slider .top-border { + height: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png) 0 -92px; +} + +.image_box_slider .boxed_slider .content { + height: 84px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png) 0 -94px; +} + +.image_box_slider .boxed_slider .content .inner_slider { + top: 30px; + left: 5px; + width: 160px; +} + +.image_box_slider .boxed_slider .bottom-border { + height: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png) 0 -178px; +} + +.image_box_slider .right-border { + height: 94px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png) -99px 0 no-repeat; + width: 10px; + z-index: 10; + position: absolute; + right: 0; +} + +.image_box_slider .order_count { + position: absolute; + left: 88px; + width: 236px; + height: 94px; +} + +.image_box_slider .order_max, +.image_box_slider .order_min { + position: absolute; + top: 5px; + text-align: center; + color: #f9e09d; + text-decoration: none; + line-height: 22px; +} + +.image_box_slider .order_min { + left: 10px; +} + +.image_box_slider .order_max { + right: 10px; +} + +.image_box_slider .order_confirm { + position: absolute; + top: 56px; + right: 70px; +} + +.image_box_slider .order_input { + position: absolute; + top: 56px; + left: 70px; + width: 70px; +} + +.image_box_slider .order_input input { + text-align: center; +} + +.pager { + position: relative; + overflow: hidden; + display: inline-block; +} + +.pager .page_number { + padding: 3px; + background-color: #ffe8b8; + width: 14px; + position: relative; + float: left; + border: 1px solid #252525; + margin-left: 2px; + cursor: pointer; +} + +.pager .page_number.active { + background-color: #255788; + color: #fff; + cursor: default; +} + +.pager .page_text { + text-align: center; + line-height: 13px; +} + +.pager_grepo { + position: relative; + overflow: hidden; + display: inline-block; +} + +.pager_grepo .page_number { + background: url(https://gpfr.innogamescdn.com/images/game/layout/paginator.png) no-repeat 0 0; + width: 39px; + height: 18px; + color: #fc6; + text-align: center; + padding-top: 2px; + position: relative; + float: left; + margin-left: 2px; + cursor: pointer; +} + +.pager_grepo .page_number:hover { + background-position: 0 -20px; +} + +.pager_grepo .page_number.active { + cursor: default; + background-position: 0 -20px; +} + +.pager_grepo .page_number.first, +.pager_grepo .page_number.last, +.pager_grepo .page_number.next, +.pager_grepo .page_number.prev { + background: url(https://gpfr.innogamescdn.com/images/game/layout/paginator_navi_buttons_2.21.png) no-repeat 0 0; + width: 39px; + height: 19px; +} + +.pager_grepo .page_number.prev { + background-position: -44px 0; + margin-right: 10px; +} + +.pager_grepo .page_number.next { + background-position: 0 0; + margin-left: 10px; +} + +.pager_grepo .page_number.last { + background-position: -88px 0; +} + +.pager_grepo .page_number.first { + background-position: -132px 0; +} + +.pager_grepo .page_number.prev:hover { + background-position: -44px -20px; +} + +.pager_grepo .page_number.next:hover { + background-position: 0 -20px; +} + +.pager_grepo .page_number.last:hover { + background-position: -88px -20px; +} + +.pager_grepo .page_number.first:hover { + background-position: -132px -20px; +} + +.pager_grepo .page_number.prev.disabled { + background-position: -44px -40px; +} + +.pager_grepo .page_number.next.disabled { + background-position: 0 -40px; +} + +.pager_grepo .page_number.last.disabled { + background-position: -88px -40px; +} + +.pager_grepo .page_number.first.disabled { + background-position: -132px -40px; +} + +.pager_grepo .page_text { + text-align: center; + line-height: 13px; +} + +.pager_grepo .page_number.disabled, +.pager_grepo.disabled .page_number { + background-position: 0 -60px; + color: #ccb; + cursor: default; +} + +.pager.message_navigator { + height: 20px; + padding-top: 3px; +} + +.pager.message_navigator .pbtn { + background: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png) no-repeat 0 0; + width: 18px; + height: 19px; + display: inline-block; + overflow: hidden; + position: relative; + cursor: pointer; +} + +.pager.message_navigator .pbtn.next { + background-position: 0 0; +} + +.pager.message_navigator .pbtn.previous { + background-position: -18px 0; +} + +.pager.message_navigator .pbtn.next:hover { + background-position: 0 -19px; +} + +.pager.message_navigator .pbtn.previous:hover { + background-position: -18px -19px; +} + +.pager.message_navigator .pbtn.next.disabled { + background-position: 0 -38px; +} + +.pager.message_navigator .pbtn.previous.disabled { + background-position: -18px -38px; +} + +.pager.message_navigator .pbtn.disabled { + cursor: default; +} + +.menu_new { + position: relative; + overflow: hidden; + cursor: pointer; +} + +.menu_new.disabled { + cursor: default; +} + +.menu_new.showlist { + width: 22px; + height: 23px; + margin: 0; + padding: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat -330px 0; +} + +.menu_new.showlist:hover { + background-position: -330px -23px; +} + +.textbox { + height: 23px; + position: relative; + display: inline-block; + overflow: hidden; + vertical-align: middle; +} + +.textbox .left, +.textbox .right { + height: 23px; + width: 5px; + position: absolute; + top: 0; + background: url(https://gpfr.innogamescdn.com/images/game/components/textbox.png) no-repeat 0 0; +} + +.textbox.disabled .left { + background-position: 0 -69px; +} + +.textbox .left { + left: 0; +} + +.textbox .right { + right: 0; + background-position: -10px -23px; +} + +.textbox.disabled .right { + background-position: -10px -92px; +} + +.textbox .middle { + margin: 0 5px; + height: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/components/textbox.png) repeat 0 -46px; + position: relative; + overflow: hidden; +} + +.textbox.disabled .middle { + background-position: 0 -115px; +} + +.textbox .middle input { + background-color: transparent; + width: 100%; + height: 15px; + padding: 4px 0; + margin: 0; + border: 0; + display: block; + position: relative; + line-height: 15px; + vertical-align: middle; + color: #000; + font-size: 11px; + font-family: Verdana,Arial,Helvetica,sans-serif; + overflow: hidden; +} + +.textbox .initial-message-box { + position: absolute; + top: 3px; + left: 3px; + right: 3px; + bottom: 3px; + color: #444; + font-size: 11px; + line-height: 16px; + font-family: Verdana,Arial,Helvetica,sans-serif; + vertical-align: middle; + color: #000; +} + +.textbox .clear-button { + position: absolute; + top: 4px; + right: 4px; + width: 15px; + height: 14px; + background: url(https://gpfr.innogamescdn.com/images/game/components/textbox_clear_btn.png) no-repeat 0 0; + display: none; +} + +.textbox .clear-button:hover { + background-position: 0 -14px; +} + +.textbox .error-msg { + display: none; + margin: 0; + padding: 4px; + line-height: 15px; + color: red; + font-weight: 700; + background: rgba(255,237,197,.7); + font-size: 11px; + font-family: Verdana,Arial,Helvetica,sans-serif; +} + +.textbox.textbox_error .error-msg { + display: block; +} + +.textbox.textbox_error, +.textbox.textbox_error .middle { + overflow: visible; +} + +.textbox.dark .left, +.textbox.dark .middle, +.textbox.dark .right { + background: url(https://gpfr.innogamescdn.com/images/game/components/textbox.png) repeat 0 -138px; +} + +.textbox.dark .right { + background-position: -10px -184px; +} + +.textbox.dark .middle { + background-position: 0 -161px; +} + +.textbox.dark .initial-message-box, +.textbox.dark .middle input { + color: #fc6; + font-weight: 700; +} + +.tab { + position: relative; + overflow: hidden; +} + +.tab .js-page { + position: relative; + overflow: hidden; + display: none; +} + +.tab .js-page.active { + display: block; +} + +.gp_tab { + position: relative; + overflow: hidden; + display: block; +} + +.gp_tab .gp_captions_container { + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/windows/tab_bg.png) repeat-x 0 bottom; + display: block; + height: 22px; + padding: 0 6px; + border-bottom: 1px solid #000; +} + +.gp_tab .gp_page_caption { + position: relative; + overflow: hidden; + display: block; + float: left; + height: 19px; + margin: 3px 0 0 -6px; + cursor: pointer; +} + +.gp_tab .gp_page_caption.active { + cursor: default; +} + +.gp_tab .gp_pc_left, +.gp_tab .gp_pc_middle, +.gp_tab .gp_pc_right { + position: absolute; + top: 0; + background: url(https://gpfr.innogamescdn.com/images/game/windows/submenu_sprite_1.19.png) no-repeat 0 0; + height: 19px; + overflow: hidden; + width: 10px; +} + +.gp_tab .gp_pc_left { + left: 0; + background-position: 0 -459px; +} + +.gp_tab .gp_pc_middle { + position: relative; + background-position: 0 -573px; + background-repeat: repeat-x; + width: auto; + margin: 0 10px; + color: #fad78b; + font-weight: 700; + font-size: 12px; + line-height: 15px; + padding: 4px 0 0 0; + height: 15px; +} + +.gp_tab .gp_pc_right { + right: 0; + background-position: 0 -516px; +} + +.gp_tab .gp_page_caption:hover .gp_pc_left { + background-position: 0 -630px; +} + +.gp_tab .gp_page_caption:hover .gp_pc_middle { + background-position: 0 -744px; +} + +.gp_tab .gp_page_caption:hover .gp_pc_right { + background-position: 0 -687px; +} + +.gp_tab .gp_page_caption.active .gp_pc_left { + background-position: 0 -288px; +} + +.gp_tab .gp_page_caption.active .gp_pc_middle { + background-position: 0 -402px; + color: #804000; +} + +.gp_tab .gp_page_caption.active .gp_pc_right { + background-position: 0 -345px; +} + +.gp_tab .gp_tab_page { + position: relative; + overflow: hidden; + display: none; +} + +.gp_tab .gp_tab_page.active { + display: block; +} + +.countdown_box { + display: inline-block; + position: relative; + overflow: hidden; + height: 60px; + border: 0; + padding: 0; + font-size: 13px; +} + +.countdown_box .left, +.countdown_box .middle, +.countdown_box .right { + position: absolute; + height: 43px; + background: url(https://gpfr.innogamescdn.com/images/game/events/countdown_box.png) no-repeat 0 0; + top: 0; +} + +.countdown_box .left { + left: 0; + width: 29px; + background-position: 0 -6px; +} + +.countdown_box .right { + right: 0; + width: 34px; + background-position: -30px -6px; +} + +.countdown_box .middle { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/events/countdown_box.png) repeat-x 0 -50px; + margin: 0 34px 0 29px; + color: #fc6; + font-weight: 700; + font-size: 11px; + text-align: center; + line-height: 31px; +} + +.countdown_box .ornament { + background: url(https://gpfr.innogamescdn.com/images/game/events/countdown_box.png) no-repeat -8px -93px; + width: 96px; + position: absolute; + height: 25px; + bottom: 0; + left: 50%; + margin-left: -48px; +} + +.skinable_horizontal_scrollbar { + height: 15px; + width: 100px; +} + +.skinable_horizontal_scrollbar .scrollbar-slider-container { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + width: auto; +} + +.skinable_horizontal_scrollbar .skinable-scrollbar-background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/horizontal.png) no-repeat 0 0; + width: 481px; + height: 6px; + position: absolute; + top: 5px; + left: 0; + bottom: 0; + right: 0; +} + +.skinable_horizontal_scrollbar .scrollbar-slider { + top: 0; + position: absolute; +} + +.skinable_horizontal_scrollbar .scrollbar-slider .scrollbar-slider-left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/horizontal.png) no-repeat 0 -6px; + width: 7px; + height: 16px; + position: absolute; + top: 0; + left: 0; +} + +.skinable_horizontal_scrollbar .scrollbar-slider .scrollbar-slider-middle { + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/hor_scrollbar_slider_middle.png) repeat-x 0 0; + position: absolute; + left: 7px; + right: 8px; + top: 0; + bottom: 0; + height: 16px; +} + +.skinable_horizontal_scrollbar .scrollbar-slider .scrollbar-slider-right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/horizontal.png) no-repeat 0 -22px; + width: 8px; + height: 16px; + position: absolute; + top: 0; + right: 0; +} + +#mobile_overlay_textarea { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + z-index: 99999; + display: none; +} + +#mobile_overlay_textarea .wrapper { + position: relative; +} + +#mobile_overlay_textarea .bb_button_wrapper { + width: 100%; +} + +#mobile_overlay_textarea>.background { + background: rgba(0,0,0,.8); + width: 100%; + height: 100%; +} + +#mobile_overlay_textarea>.background>.content { + display: inline-block; + width: 820px; + margin-top: 25px; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat; +} + +#mobile_overlay_textarea>.background>.content textarea { + width: 790px; + height: 165px; + margin-top: 5px; +} + +#mobile_overlay_textarea>.background>.content .btn_save { + float: right; + margin: 5px 7px 5px 0; +} + +.bakground.inner_shadow { + box-shadow: inset 0 0 40px 5px #000; +} + +.background_marble_brown { + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg) repeat 0 0; +} + +.background_marble_blue { + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_blue.jpg) repeat 0 0; +} + +.background_light { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +.background_default { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; + box-shadow: inset 0 0 10px #555; +} + +.border_default, +.border_orange { + border: 2px ridge #a7630e; + border-top-color: #f6e1c4; + border-bottom-color: #f6e1c4; + -webkit-border-image: url(https://gpfr.innogamescdn.com/images/game/common/frames/frame_orange_2x2.png) 2 repeat; + -o-border-image: url(https://gpfr.innogamescdn.com/images/game/common/frames/frame_orange_2x2.png) 2 repeat; + border-image: url(https://gpfr.innogamescdn.com/images/game/common/frames/frame_orange_2x2.png) 2 repeat; +} + +.line.vertical.chain { + display: inline-block; + width: 18px; + background: url(https://gpfr.innogamescdn.com/images/game/common/lines_vertical.png) repeat 0 0; +} + +.deco_statue_facewithwings { + display: block; + width: 174px; + height: 45px; + background: url(https://gpfr.innogamescdn.com/images/game/common/decorations/decorations_sprite.png) no-repeat 0 0; +} + +.deco_fireplace { + display: block; + width: 225px; + height: 150px; + background: url(https://gpfr.innogamescdn.com/images/game/common/decorations/decorations_sprite.png) no-repeat -225px -54px; +} + +.deco_fireplace.burning { + background-position: 0 -54px; +} + +.feature_icons { + width: 30px; + height: 30px; +} + +.feature_icons.duration { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat 0 0; +} + +.feature_icons.price { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) 0 -30px no-repeat; +} + +.feature_icons.curator_queue { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 0; +} + +.feature_icons.overviews { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -210px; +} + +.feature_icons.resources { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -90px; +} + +.feature_icons.favor { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -150px; +} + +.feature_icons.mythical_units_strength { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/icon_myth_naval_ground.png) no-repeat 0 0; +} + +.feature_icons.ground_units_strength { + background: url(https://gpfr.innogamescdn.com/images/game/res/ground.png) 0 0 no-repeat; +} + +.feature_icons.naval_units_strength { + background: url(https://gpfr.innogamescdn.com/images/game/res/naval.png) 0 0 no-repeat; +} + +.feature_icons.trade_speed { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -150px; +} + +.feature_icons.attack_planner { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -180px; +} + +.feature_icons.farm_town_overview { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -240px; +} + +.ribbon { + width: auto; + height: 40px; + position: relative; +} + +.ribbon .ribbon_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -172px; + width: 55px; + height: 40px; + position: absolute; + left: 0; +} + +.ribbon .ribbon_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -212px; + width: 55px; + height: 40px; + position: absolute; + right: 0; +} + +.ribbon .ribbon_middle { + position: relative; + margin: 0 51px; +} + +.ribbon .ribbon_title { + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; + line-height: 28px; + text-align: center; + color: #f4c363; +} + +.ribbon.red .ribbon_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -172px; + width: 55px; + height: 40px; +} + +.ribbon.red .ribbon_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -212px; + width: 55px; + height: 40px; +} + +.ribbon.red .ribbon_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_red_middle_52b09e2.png) no-repeat 0 0; + width: 15px; + height: 40px; +} + +.ribbon.red_long { + font-size: 0; +} + +.ribbon.red_long .ribbon_left { + display: inline-block; + position: relative; + vertical-align: top; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px 0; + width: 106px; + height: 41px; +} + +.ribbon.red_long .ribbon_right { + display: inline-block; + position: relative; + vertical-align: top; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -222px -120px; + width: 106px; + height: 41px; +} + +.ribbon.red_long .ribbon_middle { + display: inline-block; + position: relative; + vertical-align: top; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_red_long_middle_98fe245.png) no-repeat 0 0; + width: 1px; + height: 34px; + margin: 0; +} + +.ribbon.red_long .ribbon_middle .ribbon_title { + font-size: 12px; + line-height: 31px; + color: #fff; + text-shadow: 1px 1px 0 #000; +} + +.ribbon.blue .ribbon_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -132px; + width: 55px; + height: 40px; +} + +.ribbon.blue .ribbon_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -92px; + width: 55px; + height: 40px; +} + +.ribbon.blue .ribbon_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_blue_middle_bd549cc.png) no-repeat 0 0; + width: 15px; + height: 40px; +} + +.ribbon.blue2 .ribbon_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -252px; + width: 52px; + height: 36px; +} + +.ribbon.blue2 .ribbon_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -384px -252px; + width: 52px; + height: 36px; +} + +.ribbon.blue2 .ribbon_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_blue_middle_bd549cc.png) no-repeat 0 0; + width: 15px; + height: 40px; +} + +.ribbon.ribbon_brown .ribbon_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -332px -41px; + width: 51px; + height: 51px; +} + +.ribbon.ribbon_brown .ribbon_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -383px -41px; + width: 51px; + height: 51px; +} + +.ribbon.ribbon_brown .ribbon_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_brown_middle_57a03a1.png) no-repeat 0 0; + width: 1px; + height: 51px; +} + +.ribbon .ribbon_middle, +.ribbon.blue .ribbon_middle, +.ribbon.blue2 .ribbon_middle, +.ribbon.red .ribbon_middle, +.ribbon.red_long .ribbon_middle, +.ribbon.ribbon_brown .ribbon_middle { + width: auto; + background-repeat: repeat-x; + background-position: 0 0; + height: 44px; +} + +.ribbon.red_long .ribbon_middle { + margin: 0; +} + +#context_menu { + position: absolute; + z-index: 5001; + width: 50px; + height: 50px; +} + +.context_icon { + background-image: url(https://gpfr.innogamescdn.com/images/game/common/context_menu/icons_50x50_2.67.png); + width: 50px; + height: 50px; + position: absolute; + cursor: pointer; +} + +.context_icon .icon_caption { + position: absolute; + overflow: hidden; + width: 118px; + display: none; + margin-left: -59px; + left: 50%; + top: 40px; + z-index: 5; +} + +.context_icon .icon_caption .top { + position: absolute; + top: 0; + left: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -406px; + width: 118px; + height: 18px; +} + +.context_icon .icon_caption .middle { + position: absolute; + top: 18px; + left: 0; + right: 0; + bottom: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/context_menu_middle.png) repeat-y 0 0; +} + +.context_icon .icon_caption .bottom { + position: absolute; + bottom: 0; + left: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -326px -240px; + width: 118px; + height: 11px; +} + +.context_icon .icon_caption .caption { + color: #fc6; + font-weight: 700; + text-align: center; + word-wrap: break-word; + line-height: 19px; + z-index: 1; + position: relative; + padding: 4px; +} + +.context_icon:hover .icon_caption { + display: block; +} + +.grepo_box_silver .border_bbl, +.grepo_box_silver .border_bbr, +.grepo_box_silver .border_bl, +.grepo_box_silver .border_br, +.grepo_box_silver .border_l, +.grepo_box_silver .border_r, +.grepo_box_silver .border_tl, +.grepo_box_silver .border_tr, +.grepo_box_silver .box_corner_bl, +.grepo_box_silver .box_corner_br, +.grepo_box_silver .box_corner_extra_tr, +.grepo_box_silver .box_corner_tl, +.grepo_box_silver .box_corner_tr { + z-index: 6; + position: absolute; +} + +.grepo_box_silver .title { + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x scroll 0 -36px transparent; + height: 24px; + top: 6px; + left: 12px; + right: 12px; + position: absolute; + color: #fc6; + font-size: 12px; + font-weight: 700; + line-height: 22px; + padding: 0 6px; + z-index: 5; +} + +.grepo_box_silver .grepo_box_content, +.grepo_box_silver>.content { + position: relative; + padding: 31px 12px 6px; + z-index: 4; +} + +.grepo_box_silver .box_corner_tl, +.grepo_box_silver>.corner_tl { + top: 0; + left: 0; +} + +.grepo_box_silver .box_corner_tr, +.grepo_box_silver>.corner_tr { + top: 0; + right: 0; +} + +.grepo_box_silver .box_corner_extra_tr { + top: -5px; + right: -15px; +} + +.grepo_box_silver .box_corner_bl, +.grepo_box_silver>.corner_bl { + bottom: 0; + left: 0; +} + +.grepo_box_silver .box_corner_br, +.grepo_box_silver>.corner_br { + bottom: 0; + right: 0; +} + +.grepo_box_silver .border_tl { + top: 3px; + left: 14px; +} + +.grepo_box_silver .border_tr { + top: 3px; + right: 14px; +} + +.grepo_box_silver .border_bl { + top: 28px; + left: 14px; +} + +.grepo_box_silver .border_br { + top: 28px; + right: 14px; +} + +.grepo_box_silver .border_r { + background: url(https://gpfr.innogamescdn.com/images/game/layout/box/silver/border_r.png) repeat -7px 0; + width: 7px; + height: 147px; + top: 41px; + right: 5px; +} + +.grepo_box_silver .border_l { + background: url(https://gpfr.innogamescdn.com/images/game/layout/box/silver/border_l.png) repeat -7px 0; + width: 7px; + height: 147px; + top: 41px; + left: 5px; +} + +.grepo_box_silver .border_bbl { + bottom: 0; + left: 11px; +} + +.grepo_box_silver .border_bbr { + bottom: 0; + right: 11px; +} + +.gp_window_curtain { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 100; +} + +.gp_window { + position: absolute; + top: 0; + z-index: 200; + min-height: 240px; +} + +.gp_window>.border, +.gp_window>.corner { + position: absolute; + top: auto; + bottom: auto; +} + +.gp_window>.corner_tl { + top: 0; + left: 0; +} + +.gp_window>.corner_tr { + top: 0; + right: 0; +} + +.gp_window>.corner_bl { + bottom: 0; + left: 0; +} + +.gp_window>.corner_br { + bottom: 0; + right: 0; +} + +.gp_window>.border_b { + bottom: 0; + left: 0; + right: 0; + background-repeat: repeat-x; +} + +.gp_window>.border_t { + top: 0; + left: 0; + right: 0; + background-repeat: repeat-x; +} + +.gp_window>.border_l { + top: 0; + bottom: 0; + left: 0; + background-repeat: repeat-y; +} + +.gp_window>.border_r { + top: 0; + bottom: 0; + right: 0; + background-repeat: repeat-y; +} + +.gp_window>.content { + z-index: 2; + position: relative; + margin: 0; +} + +.gp_window>.background { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 1; +} + +.gp_window>.title { + position: absolute; + top: 3px; + left: 1px; + right: 3px; + height: 21px; +} + +.grepo_box_window .grepo_box { + position: relative; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.grepo_box_window .grepo_box.no_title .border_tl, +.grepo_box_window .grepo_box.no_title .border_tm, +.grepo_box_window .grepo_box.no_title .border_tr, +.grepo_box_window .grepo_box.no_title .box_corner_tl, +.grepo_box_window .grepo_box.no_title .box_corner_tr { + top: 0; +} + +.grepo_box_window .grepo_box.no_title .border_l, +.grepo_box_window .grepo_box.no_title .border_r { + top: 14px; +} + +.grepo_box_window .grepo_box.no_title .grepo_box_background { + top: 6px; +} + +.minimized_windows_area { + height: 35px; + position: absolute; + top: -21px; + left: 0; + right: 0; + text-align: left; + color: #edb; + font-size: 11px; + font-weight: 700; + white-space: nowrap; + display: none; + overflow: hidden; +} + +.minimized_windows_area .button_scroll_left_box, +.minimized_windows_area .button_scroll_right_box { + position: absolute; + height: 35px; + top: 0; +} + +.minimized_windows_area .button_scroll_left_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat 0 0; + width: 24px; + height: 36px; + left: 2px; +} + +.minimized_windows_area .button_scroll_right_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat 0 -36px; + width: 24px; + height: 36px; + right: 2px; +} + +.minimized_windows_area.overloaded .button_scroll_left_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -24px 0; + width: 24px; + height: 36px; +} + +.minimized_windows_area.overloaded .button_scroll_right_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -48px 0; + width: 24px; + height: 36px; +} + +.minimized_windows_area .button_scroll_left, +.minimized_windows_area .button_scroll_right { + position: absolute; + width: 14px; + height: 22px; + top: 7px; + cursor: pointer; + z-index: 1; + display: none; +} + +.minimized_windows_area .button_scroll_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -24px -36px; + width: 14px; + height: 22px; + left: 6px; +} + +.minimized_windows_area .button_scroll_left:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -86px -22px; + width: 14px; + height: 22px; +} + +.minimized_windows_area .button_scroll_left:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -72px -22px; + width: 14px; + height: 22px; +} + +.minimized_windows_area .button_scroll_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -38px -36px; + width: 14px; + height: 22px; + right: 6px; +} + +.minimized_windows_area .button_scroll_right:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -72px 0; + width: 14px; + height: 22px; +} + +.minimized_windows_area .button_scroll_right:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/minimized_windows/minimized_windows_sprite.png) no-repeat -72px -44px; + width: 14px; + height: 22px; +} + +.minimized_windows_area.overloaded .button_scroll_left, +.minimized_windows_area.overloaded .button_scroll_right { + display: block; +} + +.minimized_windows_area .windows_box { + position: absolute; + height: 35px; + top: 0; +} + +.minimized_windows_area .windows_box { + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_20.png) repeat 0 0; + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_20.png) repeat 0 0,url(https://gpfr.innogamescdn.com/images/game/layout/minimized_windows/windows_box_back_compressed.png) no-repeat left 0,url(https://gpfr.innogamescdn.com/images/game/layout/minimized_windows/windows_box_back_compressed.png) no-repeat right -34px; + left: 25px; + right: 25px; + top: 1px; + padding: 0 1px; + overflow: hidden; +} + +.minimized_windows_area .windows_box .windows { + position: absolute; + overflow: hidden; + width: 10000px; + top: 0; + left: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/minimized_windows/windows_box_back_compressed.png) repeat-x 0 -69px; + height: 36px; +} + +.minimized_windows_area .windows_box .windows.scrolling { + -webkit-transition: left .6s ease-out; + -moz-transition: left .6s ease-out; + -ms-transition: left .6s ease-out; + -o-transition: left .6s ease-out; + transition: left .6s ease-out; +} + +.minimized_windows_area .windows_box .box { + margin: 4px 1px 0 0; + width: 152px; +} + +.btn_close_all_windows .box, +.minimized_windows_area .box { + height: 26px; + float: left; + position: relative; + overflow: hidden; +} + +.minimized_windows_area .box .btn_wnd.maximize { + margin-right: 2px; +} + +.btn_close_all_windows .box .box-left, +.btn_close_all_windows .box .box-middle, +.btn_close_all_windows .box .box-right, +.minimized_windows_area .box .box-left, +.minimized_windows_area .box .box-middle, +.minimized_windows_area .box .box-right { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png); + height: 26px; +} + +.btn_close_all_windows .box .box-left, +.minimized_windows_area .box .box-left { + top: 0; + left: 0; + width: 3px; + background-position: left -502px; + background-repeat: no-repeat; + position: absolute; +} + +.btn_close_all_windows .box .box-right, +.minimized_windows_area .box .box-right { + top: 0; + right: 0; + width: 3px; + background-position: right -528px; + background-repeat: no-repeat; + position: absolute; +} + +.btn_close_all_windows .box .box-middle, +.minimized_windows_area .box .box-middle { + position: relative; + margin: 0 3px; + background-position: 0 -554px; + background-repeat: repeat-x; + height: 23px; + padding-top: 3px; +} + +.minimized_windows_area .box .btn_wnd { + display: block; + float: right; +} + +.minimized_windows_area .box .caption { + height: 20px; + line-height: 20px; + display: block; + position: relative; + float: left; + padding: 0 13px 0 5px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + max-width: 75px; +} + +.btn_close_all_windows { + height: 36px; + z-index: 50; + position: fixed; + display: none; + top: 71px; + right: 148px; +} + +.is_ipad .btn_close_all_windows { + margin-left: -220px; +} + +.media_partner_banner .btn_close_all_windows { + bottom: 46px; +} + +.btn_close_all_windows .left, +.btn_close_all_windows .middle, +.btn_close_all_windows .right { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png); + height: 36px; + position: absolute; + top: 0; + width: 4px; +} + +.btn_close_all_windows .middle { + position: relative; + margin: 0 4px; + background-position: 0 -652px; + width: auto; + height: 32px; + padding: 4px 1px 0 1px; +} + +.btn_close_all_windows .left { + left: 0; + background-position: left -580px; +} + +.btn_close_all_windows .right { + right: 0; + background-position: right -616px; +} + +.btn_close_all_windows .close_all { + width: 20px; + height: 20px; + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png) no-repeat 0 -688px; + cursor: pointer; +} + +.btn_close_all_windows .close_all:hover { + background-position: 0 -708px; +} + +.window_curtain { + position: absolute; + top: 0; + left: 0; +} + +.window_curtain.show_curtain { + background: url(https://gpfr.innogamescdn.com/images/game/windows/classic/curtain.png) repeat 0 0; + background: rgba(0,0,0,.45); + right: 0; + bottom: 0; + overflow: hidden; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.window_curtain.is_modal_window { + z-index: 7000; +} + +.classic_window { + position: absolute; + overflow: hidden; + width: auto; + height: auto; +} + +.classic_window .wnd_border_b, +.classic_window .wnd_border_t { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_horizontal.png); + background-repeat: repeat-x; + left: 16px; + right: 16px; + overflow: hidden; +} + +.classic_window .wnd_border_t { + background-position: 0 -17px; + height: 44px; + top: 0; + overflow: visible; +} + +.classic_window .wnd_border_t .title { + color: #edb; + font-size: 11px; + font-weight: 700; + height: 20px; + padding: 9px 0 0 0; + text-align: left; + white-space: nowrap; + float: left; + position: relative; + display: block; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + text-overflow: ellipsis; +} + +.classic_window .wnd_border_t .window_move_container { + position: absolute; + height: 29px; + left: -15px; + right: -15px; + top: 0; + background: url(https://gpfr.innogamescdn.com/images/transparent.png) repeat 0 0; + cursor: move; +} + +.classic_window .wnd_border_t .buttons_container { + position: relative; + margin-right: -8px; + float: right; + z-index: 1; +} + +.classic_window .buttons_container .btn_wnd { + position: relative; + float: left; + margin-top: 7px; + cursor: pointer; + margin-left: 2px; +} + +.classic_window .btn_wnd.maximize { + display: none; +} + +.classic_window.minimized .btn_wnd.maximize { + display: block; +} + +.classic_window.minimized .btn_wnd.minimize { + display: none; +} + +.classic_window .wnd_border_t .tabs_container { + position: relative; + margin-top: 8px; + height: 22px; + text-align: right; + pointer-events: none; +} + +.classic_window .wnd_border_t .tabs_container .tab { + height: 22px; + display: inline-block; + position: relative; + float: right; + cursor: pointer; + pointer-events: all; +} + +.classic_window .wnd_border_t .tabs_container .tab.disabled { + cursor: default; +} + +.classic_window .wnd_border_t .tabs_container .tab.disabled .middle { + color: #6a6a6a; +} + +@keyframes fade-tab-glow { + from { + text-shadow: initial; + } + + 50% { + text-shadow: 0 0 10px #fff330,0 0 10px #fff330,0 0 10px #fff330,0 0 10px #fff330,0 0 10px #fff330,0 0 10px #fff330; + } + + to { + text-shadow: initial; + } +} + +.classic_window .wnd_border_t .tabs_container .tab.highlight .middle { + text-shadow: 0 0 10px #fff330,0 0 10px #fff330,0 0 10px #fff330,0 0 10px #fff330,0 0 10px #fff330,0 0 10px #fff330; + -webkit-animation: fade-tab-glow 1.5s ease infinite; + -ms-animation: fade-tab-glow 1.5s ease infinite; + animation: fade-tab-glow 1.5s ease infinite; +} + +.classic_window .wnd_border_t .tabs_container .tab div { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png); + background-repeat: no-repeat; + height: 22px; +} + +.classic_window .wnd_border_t .tabs_container .tab .left { + background-position: left -228px; + position: absolute; + width: 7px; + top: 0; + left: 0; +} + +.classic_window .wnd_border_t .tabs_container .tab .right { + background-position: right -250px; + position: absolute; + width: 9px; + top: 0; + right: 0; +} + +.classic_window .wnd_border_t .tabs_container .tab .middle { + background-position: center -272px; + background-repeat: repeat; + margin: 0 7px; + position: relative; + display: inline-block; + font-size: 11px; + font-family: Tahoma,Verdana,sans-serif; + line-height: 21px; + white-space: nowrap; + text-align: center; + font-weight: 700; + color: #000; +} + +.classic_window .wnd_border_t .tabs_container .tab.selected .left { + background-position: left -162px; + cursor: default; +} + +.classic_window .wnd_border_t .tabs_container .tab.selected .right { + background-position: right -184px; + cursor: default; +} + +.classic_window .wnd_border_t .tabs_container .tab.selected .middle { + background-position: center -206px; + color: #430; + cursor: default; +} + +.classic_window .wnd_border_b { + height: 17px; + background-position: 0 0; + bottom: 0; +} + +.classic_window .wnd_border_l, +.classic_window .wnd_border_r { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/vertical_tile.png); + background-repeat: repeat-y; + width: 16px; + bottom: 17px; + top: 44px; +} + +.classic_window .wnd_border_l { + background-position: -10px 0; + left: 0; +} + +.classic_window .wnd_border_r { + background-position: -26px 0; + right: 0; +} + +.classic_window .corner_bl, +.classic_window .corner_br, +.classic_window .corner_tl, +.classic_window .corner_tr { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png); + background-repeat: no-repeat; + overflow: hidden; +} + +.classic_window .corner_tl { + background-position: left -34px; + height: 44px; + width: 16px; + top: 0; + left: 0; +} + +.classic_window .corner_tr { + background-position: right -78px; + height: 44px; + width: 16px; + top: 0; + right: 0; +} + +.classic_window .corner_bl { + background-position: left 0; + height: 17px; + width: 16px; + bottom: 0; + left: 0; +} + +.classic_window .corner_br { + background-position: right -17px; + right: 17px; + width: 16px; + height: 17px; + bottom: 0; + right: 0; +} + +.classic_window .filler { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; + position: absolute; + top: 44px; + left: 16px; + bottom: 17px; + right: 16px; +} + +.classic_window .window_content { + position: relative; + overflow-x: hidden; + overflow-y: auto; + padding: 0 7px 8px 7px; + text-align: left; + margin-top: 35px; + -moz-user-select: element; + -khtml-user-select: text; + -webkit-user-select: text; + -ms-user-select: element; + user-select: text; + user-select: element; +} + +.classic_window.minimized .filler, +.classic_window.minimized .window_content { + visibility: hidden; +} + +.classic_window .window_content .game_border, +.new_tab_fake .game_border { + overflow: hidden; + padding: 3px; + margin: 0; + position: relative; +} + +.classic_window .window_content .game_border .game_border_top, +.new_tab_fake .game_border .game_border_top { + background: url(https://gpfr.innogamescdn.com/images/game/border/border_h.png) repeat-x top center; + top: 0; + left: 3px; + right: 3px; +} + +.classic_window .window_content .game_border .game_border_bottom, +.new_tab_fake .game_border .game_border_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/border/border_h.png) repeat-x bottom center; + bottom: 0; + left: 3px; + right: 3px; +} + +.classic_window .window_content .game_border .game_border_left, +.new_tab_fake .game_border .game_border_left { + left: 0; + top: 3px; + bottom: 3px; +} + +.classic_window .window_content .game_border .game_border_right, +.new_tab_fake .game_border .game_border_right { + right: 0; + top: 3px; + bottom: 3px; +} + +.classic_window .window_content .game_border .corner1, +.new_tab_fake .game_border .corner1 { + top: 0; + left: 0; +} + +.classic_window .window_content .game_border .corner2, +.new_tab_fake .game_border .corner2 { + top: 0; + right: 0; +} + +.classic_window .window_content .game_border .corner3, +.new_tab_fake .game_border .corner3 { + bottom: 0; + right: 0; +} + +.classic_window .window_content .game_border .corner4, +.new_tab_fake .game_border .corner4 { + bottom: 0; + left: 0; +} + +.classic_window .window_content .game_border .game_border_title, +.new_tab_fake .game_border .game_border_title { + background: url(https://gpfr.innogamescdn.com/images/game/border/header.png) repeat-x 0 -1px; + padding: 3px 6px 3px 6px; + color: #fff; + border-bottom: 1px solid #000; + font-weight: 700; + text-align: left; +} + +.classic_window .window_content .game_border .game_border_title.align_center, +.new_tab_fake .game_border .game_border_title.align_center { + text-align: center; +} + +.classic_window .window_content .game_border .game_border_line, +.new_tab_fake .game_border .game_border_line { + height: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/game_border_line.jpg) repeat-x 0 0; + position: relative; +} + +.empty_window { + position: absolute; + overflow: hidden; + z-index: 1000; + width: auto; + height: auto; +} + +.empty_window .buttons_container .btn_wnd { + position: relative; + float: left; + margin-top: 7px; + cursor: pointer; + margin-left: 2px; +} + +.empty_window .btn_wnd.maximize { + display: none; +} + +.empty_window .btn_wnd.help { + background-position: 0 -728px; +} + +.empty_window .btn_wnd.help:hover { + background-position: 0 -748px; +} + +.empty_window .btn_wnd.maximize { + display: block; +} + +.empty_window .btn_wnd.minimize { + display: none; +} + +.empty_window .filler { + position: absolute; + top: 44px; + left: 16px; + bottom: 17px; + right: 16px; +} + +.empty_window .window_content { + position: relative; + overflow-x: hidden; + overflow-y: auto; + padding: 0 7px 8px 7px; + text-align: left; + margin-top: 35px; + -moz-user-select: element; + -khtml-user-select: text; + -webkit-user-select: text; + -ms-user-select: element; + user-select: text; + user-select: element; +} + +.gp_window_curtain.classic_sub_window_curtain { + background: rgba(0,0,0,.45); + margin: 0 7px 7px 7px; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + overflow: hidden; + user-select: none; +} + +.gp_window.classic_sub_window { + position: absolute; + overflow: hidden; + z-index: 1000; + width: auto; + height: auto; + min-height: 200px; + min-width: 400px; +} + +.gp_window.classic_sub_window>.decoration { + display: none; +} + +.gp_window.classic_sub_window>.border_b, +.gp_window.classic_sub_window>.border_t { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_horizontal.png); + background-repeat: repeat-x; + left: 16px; + right: 16px; + overflow: hidden; +} + +.gp_window.classic_sub_window>.border_t { + background-position: 0 -17px; + height: 44px; + top: 0; + overflow: visible; +} + +.gp_window.classic_sub_window>.border_b { + height: 17px; + background-position: 0 0; + bottom: 0; +} + +.gp_window.classic_sub_window>.border_l, +.gp_window.classic_sub_window>.border_r { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/vertical_tile.png); + background-repeat: repeat-y; + width: 16px; + bottom: 17px; + top: 44px; +} + +.gp_window.classic_sub_window>.border_l { + background-position: -10px 0; + left: 0; +} + +.gp_window.classic_sub_window>.border_r { + background-position: -26px 0; + right: 0; +} + +.gp_window.classic_sub_window>.corner_bl, +.gp_window.classic_sub_window>.corner_br, +.gp_window.classic_sub_window>.corner_tl, +.gp_window.classic_sub_window>.corner_tr { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png); + background-repeat: no-repeat; + overflow: hidden; +} + +.gp_window.classic_sub_window>.corner_tl { + background-position: left -34px; + height: 44px; + width: 16px; + top: 0; + left: 0; +} + +.gp_window.classic_sub_window>.corner_tr { + background-position: right -78px; + height: 44px; + width: 16px; + top: 0; + right: 0; +} + +.gp_window.classic_sub_window>.corner_bl { + background-position: left 0; + height: 17px; + width: 16px; + bottom: 0; + left: 0; +} + +.gp_window.classic_sub_window>.corner_br { + background-position: right -17px; + right: 17px; + width: 16px; + height: 17px; + bottom: 0; + right: 0; +} + +.gp_window.classic_sub_window>.title { + color: #edb; + font-size: 11px; + font-weight: 700; + height: 20px; + padding: 7px 0 0 0; + text-align: left; + white-space: nowrap; + position: absolute; + left: 16px; + top: 3px; + right: auto; + width: 300px; + display: block; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + z-index: 1; +} + +.gp_window.classic_sub_window>.buttons { + position: absolute; + top: 0; + right: 7px; + width: 200px; + z-index: 1; +} + +.gp_window.classic_sub_window>.buttons .button_new { + position: relative; + float: right; + margin-top: 6px; + cursor: pointer; + margin-left: 2px; +} + +.gp_window.classic_sub_window>.content { + position: relative; + overflow-x: hidden; + overflow-y: auto; + padding: 0 7px 8px 7px; + text-align: left; + margin-top: 35px; + -moz-user-select: element; + -khtml-user-select: text; + -webkit-user-select: text; + -ms-user-select: element; + user-select: text; + user-select: element; +} + +.gp_window.classic_sub_window>.background { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; + position: absolute; + top: 44px; + left: 16px; + bottom: 17px; + right: 16px; +} + +.gp_window.classic_sub_window.minimized>.background, +.gp_window.classic_sub_window.minimized>.content { + display: none; +} + +.column_window { + position: absolute; + overflow: hidden; + z-index: 1000; + width: auto; + height: auto; +} + +.column_window .title_container { + z-index: 3; + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + white-space: nowrap; + margin-left: 5px; + cursor: move; +} + +.column_window .title_container .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column/column_dd48c22.png) no-repeat 0 0; + width: 193px; + height: 50px; + vertical-align: top; + display: inline-block; +} + +.column_window .title_container .middle { + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/header_middle.png) repeat-x 0 0; + height: 88px; + vertical-align: top; + position: relative; + display: inline-block; + min-width: 20px; +} + +.column_window .title_container .middle .title { + vertical-align: top; + display: inline-block; + left: 0; + margin: auto -170px; + width: auto; + position: relative; + max-width: 610px; + z-index: 3; + top: 0; + height: 40px; + line-height: 40px; + padding: 7px 30px 20px; + text-align: center; + color: #f4c363; + font-size: 18px; + font-weight: 700; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + cursor: move; +} + +.column_window .title_container .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column/column_dd48c22.png) no-repeat 0 -50px; + width: 193px; + height: 50px; + vertical-align: top; + display: inline-block; +} + +.column_window .wnd_border_b, +.column_window .wnd_border_t, +.column_window>.border_b, +.column_window>.border_t { + position: absolute; + left: 30px; + right: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/border_top_bottom.png) repeat-x; + height: 39px; + z-index: 1; +} + +.column_window .wnd_border_b:before, +.column_window .wnd_border_t:before, +.column_window>.border_b:before, +.column_window>.border_t:before { + content: ' '; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + background: -moz-linear-gradient(left,rgba(0,0,0,.4) 0,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,.4) 100%); + background: -webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.4)),color-stop(25%,rgba(0,0,0,0)),color-stop(75%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,.4))); + background: -webkit-linear-gradient(left,rgba(0,0,0,.4) 0,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,.4) 100%); + background: -o-linear-gradient(left,rgba(0,0,0,.4) 0,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,.4) 100%); + background: -ms-linear-gradient(left,rgba(0,0,0,.4) 0,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,.4) 100%); + background: linear-gradient(to right,rgba(0,0,0,.4) 0,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,.4) 100%); +} + +.column_window .wnd_border_t:before, +.column_window>.border_t:before { + top: 6px; +} + +.column_window .wnd_border_t, +.column_window>.border_t { + top: 38px; + cursor: move; +} + +.column_window .wnd_border_b, +.column_window>.border_b { + bottom: 0; + background-position: 0 -40px; + height: 18px; +} + +.column_window .wnd_border_l, +.column_window .wnd_border_r, +.column_window>.border_l, +.column_window>.border_r { + position: absolute; + top: 268px; + bottom: 68px; + width: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/column_sprite.png) repeat-y -142px 0; + z-index: 1; +} + +.column_window .wnd_border_l, +.column_window>.border_l { + left: 23px; +} + +.column_window .wnd_border_r, +.column_window>.border_r { + right: 23px; + background-position: -179px 0; +} + +.column_window .wnd_corner_bl, +.column_window .wnd_corner_br, +.column_window .wnd_corner_tl, +.column_window .wnd_corner_tr, +.column_window>.corner_bl, +.column_window>.corner_br, +.column_window>.corner_tl, +.column_window>.corner_tr { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/column_sprite.png) no-repeat 0 0; + z-index: 2; +} + +.column_window .wnd_corner_tl, +.column_window .wnd_corner_tr, +.column_window>.corner_tl, +.column_window>.corner_tr { + width: 83px; + height: 231px; + top: 37px; +} + +.column_window .wnd_corner_tl, +.column_window>.corner_tl { + left: 0; +} + +.column_window .wnd_corner_tr, +.column_window>.corner_tr { + right: 0; + background-position: -275px 0; +} + +.column_window .wnd_corner_bl, +.column_window .wnd_corner_br, +.column_window>.corner_bl, +.column_window>.corner_br { + width: 59px; + height: 69px; + bottom: -1px; +} + +.column_window .wnd_corner_bl, +.column_window>.corner_bl { + left: 12px; + background-position: -83px 100%; +} + +.column_window .wnd_corner_br, +.column_window>.corner_br { + right: 11px; + background-position: -217px 100%; +} + +.column_window>.background { + margin: 75px 55px 14px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/background_town_2.53.jpg) no-repeat 100% 100%; +} + +.column_window .window_content, +.column_window>.content { + position: relative; + overflow-x: hidden; + overflow-y: auto; + text-align: left; + margin: 75px 55px 14px; + background: #ffe3a3; + -webkit-box-shadow: inset 0 0 15px #000; + box-shadow: inset 0 0 15px #000; + padding: 15px; + z-index: 0; + -moz-user-select: element; + -khtml-user-select: text; + -webkit-user-select: text; + -ms-user-select: element; + user-select: text; + user-select: element; +} + +.column_window .vertical_divider { + position: relative; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/yellow_box_horizontal.png) no-repeat 50% -9px; + margin: 0 -15px; +} + +.column_window h3.header { + font-size: 13px; + font-weight: 700; + line-height: 16px; +} + +.column_window .btn_wnd.close { + margin-top: 11px; +} + +.column_window.red_curtain .title_container .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat -107px -51px; + width: 193px; + height: 88px; +} + +.column_window.red_curtain .title_container .middle { + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/header_middle_deco.png) repeat-x 0 0; +} + +.column_window.red_curtain .title_container .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat -300px -51px; + width: 193px; + height: 88px; +} + +.column_window.red_curtain .wnd_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat 0 0; + width: 714px; + height: 51px; + left: 60px; +} + +.column_window.red_curtain .wnd_border_b { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat 0 -246px; + width: 714px; + height: 23px; + left: 60px; +} + +.column_window.red_curtain .wnd_deco_l, +.column_window.red_curtain .wnd_deco_r { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/column_red_curtain/column_red_curtain_55a7a90.png) no-repeat 0 -51px; + width: 107px; + height: 195px; + position: absolute; + z-index: 2; + top: 160px; +} + +.column_window.red_curtain .wnd_deco_l { + left: -6px; +} + +.column_window.red_curtain .wnd_deco_r { + right: -19px; +} + +.column_window .timer_container { + text-align: center; + margin-top: 20px; +} + +.column_window .timer_container .timer_header { + font-weight: 700; + margin-bottom: 5px; +} + +.column_window .ribbon { + margin: 0 30px 0 30px; +} + +.column_window .clock { + float: left; +} + +.column_window .clock:before { + content: ""; + background-image: url(https://gpfr.innogamescdn.com/images/game/res/time.png); + background-repeat: no-repeat; + width: 30px; + height: 30px; + display: inline-block; + margin-bottom: -2px; +} + +.fancy_window { + position: relative; + overflow: hidden; +} + +.fancy_window .fw_border_b, +.fancy_window .fw_border_bl, +.fancy_window .fw_border_br, +.fancy_window .fw_corner_bl, +.fancy_window .fw_corner_br, +.fancy_window .fw_corner_tl, +.fancy_window .fw_corner_tr, +.fancy_window .fw_ornament_tl, +.fancy_window .fw_ornament_tr, +.fancy_window .fw_title, +.fancy_window .fw_title_left, +.fancy_window .fw_title_middle, +.fancy_window .fw_title_right { + background: url(https://gpfr.innogamescdn.com/images/game/windows/fancy/fancy_window_part1_2.56_compressed.png) no-repeat 0 0; + position: absolute; +} + +.fancy_window .fw_corner_tl { + width: 12px; + height: 32px; + background-position: 0 0; + top: 0; + left: 0; +} + +.fancy_window .fw_corner_tr { + width: 11px; + height: 32px; + background-position: -14px 0; + top: 0; + right: 0; +} + +.fancy_window .fw_title, +.fancy_window .fw_title_left, +.fancy_window .fw_title_middle, +.fancy_window .fw_title_right { + height: 32px; +} + +.fancy_window .fw_title { + position: relative; + overflow: hidden; + background: 0 0; +} + +.fancy_window .fw_title_left { + width: 183px; + background-position: 0 -35px; + left: 12px; + top: 0; +} + +.fancy_window .fw_title_right { + width: 183px; + background-position: 0 -67px; + right: 11px; + top: 0; +} + +.fancy_window .fw_title_middle { + background-position: 0 -101px; + left: 195px; + right: 194px; +} + +.fancy_window .fw_header { + position: absolute; + top: 10px; + left: 0; + right: 0; + height: 20px; + color: #e5cf9b; + font-weight: 700; +} + +.fancy_window .fw_border_l, +.fancy_window .fw_border_r { + background: url(https://gpfr.innogamescdn.com/images/game/windows/fancy/fancy_window_part2_compressed.png) repeat-y 0 0; + width: 10px; + position: absolute; + top: 42px; + bottom: 6px; +} + +.fancy_window .fw_border_l { + background-position: 0 0; + left: 4px; +} + +.fancy_window .fw_border_r { + background-position: -9px 0; + right: 5px; +} + +.fancy_window .fw_ornament_tl { + background-position: -31px -3px; + width: 13px; + height: 10px; + top: 32px; + left: 0; +} + +.fancy_window .fw_ornament_tr { + background-position: -46px -3px; + width: 13px; + height: 10px; + top: 32px; + right: 0; +} + +.fancy_window .fw_corner_bl { + background-position: -33px -18px; + width: 10px; + height: 8px; + bottom: 0; + left: 3px; +} + +.fancy_window .fw_corner_br { + background-position: -47px -18px; + width: 10px; + height: 8px; + bottom: 0; + right: 3px; +} + +.fancy_window .fw_border_b { + background-repeat: repeat-x; + background-position: 0 -137px; + height: 8px; + bottom: 0; + right: 13px; + left: 13px; +} + +.fancy_window .fw_content { + background: url(https://gpfr.innogamescdn.com/images/game/windows/fancy/fancy_window_background_compressed.jpg) repeat-y 0 0; + color: #e5cf9b; + margin: 0 10px 6px 10px; + position: relative; + overflow: hidden; +} + +.fancy_window .top_shadow { + position: absolute; + top: 0; + left: 0; + height: 57px; + width: 100%; + background: url(https://gpfr.innogamescdn.com/images/game/windows/fancy/fancy_window_part1_2.56_compressed.png) no-repeat 0 -146px; +} + +.window_inner_curtain { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/windows/1x1_black_65.png) repeat 0 0; + display: none; + overflow: hidden; + z-index: 10; +} + +.gp_window_curtain { + position: absolute; + top: 0; + bottom: 8px; + left: 7px; + right: 7px; + background: rgba(0,0,0,.45); + z-index: 100; +} + +.gp_window.details_window { + min-width: 300px; + position: absolute; + top: 0; + left: 0; +} + +.gp_window.details_window>.border, +.gp_window.details_window>.corner { + background-image: url(https://gpfr.innogamescdn.com/images/game/windows/details/details_window_sptite.png); +} + +.gp_window.details_window>.corner_tl { + width: 7px; + height: 32px; + background-position: 0 0; +} + +.gp_window.details_window>.corner_tr { + width: 7px; + height: 32px; + background-position: -9px 0; +} + +.gp_window.details_window>.corner_bl { + width: 7px; + height: 7px; + background-position: -17px -26px; +} + +.gp_window.details_window>.corner_br { + width: 7px; + height: 7px; + background-position: -18px -17px; +} + +.gp_window.details_window>.border_b { + left: 7px; + right: 7px; + height: 7px; + background-position: 0 -68px; +} + +.gp_window.details_window>.border_t { + left: 7px; + right: 7px; + height: 32px; + background-position: 0 -34px; +} + +.gp_window.details_window>.border_l, +.gp_window.details_window>.border_r { + width: 7px; + background-image: url(https://gpfr.innogamescdn.com/images/game/windows/details/details_window_sprite_ver.png); +} + +.gp_window.details_window>.border_l { + top: 32px; + bottom: 7px; + background-position: 0 0; +} + +.gp_window.details_window>.border_r { + top: 32px; + bottom: 7px; + background-position: -8px 0; +} + +.gp_window.details_window>.content { + margin: 31px 6px 0 7px; +} + +.gp_window.details_window>.background { + top: 32px; + bottom: 7px; + left: 7px; + right: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg) repeat 0 0; + box-shadow: inset 0 6px 76px 0 #000; +} + +.gp_window.details_window>.title { + top: 3px; + left: 1px; + right: 3px; + height: 21px; + font-weight: 700; + color: #fc6; + text-align: center; + font-size: 11px; + line-height: 14px; + padding-top: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_blue.jpg) repeat 0 0; +} + +.gp_window.details_window>.buttons { + position: absolute; + top: 5px; + right: 5px; + z-index: 2; +} + +.gp_window.details_window>.dw_ornament { + position: absolute; + width: 18px; + height: 18px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/details/details_window_sptite.png) no-repeat 0 0; + z-index: 2; +} + +.gp_window.details_window>.dw_ornament_tl { + background-position: 0 -76px; + top: 34px; + left: 10px; +} + +.gp_window.details_window>.dw_ornament_tr { + background-position: -18px -76px; + right: 10px; + top: 34px; +} + +.gp_window.details_window>.dw_ornament_bl { + background-position: 0 -95px; + bottom: 10px; + left: 10px; +} + +.gp_window.details_window>.dw_ornament_br { + background-position: -18px -95px; + bottom: 10px; + right: 10px; +} + +.grepo_box { + position: relative; + color: #fc6; +} + +.grepo_box.gp_window { + position: absolute; +} + +.grepo_box .box_border, +.grepo_box .box_corner, +.grepo_box .box_corner_extra, +.grepo_box>.border, +.grepo_box>.corner { + position: absolute; + z-index: 6; +} + +.grepo_box .box_border, +.grepo_box>.border { + background: url(https://gpfr.innogamescdn.com/images/game/box/corners_2.77.png) no-repeat 0 0; +} + +.grepo_box .box_corner_extra { + z-index: 7; +} + +.grepo_box .title { + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 -36px; + height: 24px; + top: 6px; + left: 12px; + right: 12px; + position: absolute; + color: #fc6; + font-size: 12px; + font-weight: 700; + line-height: 22px; + padding: 0 6px; + z-index: 7; +} + +.grepo_box.no_title .title { + display: none; +} + +.grepo_box>.buttons { + position: absolute; + top: 6px; + right: 12px; + z-index: 8; +} + +.grepo_box .box_corner_tl, +.grepo_box>.corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -43px 0; + width: 14px; + height: 41px; + top: 0; + left: 0; +} + +.grepo_box.no_title .box_corner_tl, +.grepo_box.no_title>.corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -71px 0; + width: 14px; + height: 41px; + top: 26px; + left: 0; + height: 16px; +} + +.grepo_box .box_corner_tr, +.grepo_box>.corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -57px 0; + width: 14px; + height: 41px; + top: 0; + right: 0; +} + +.grepo_box.no_title .box_corner_tr, +.grepo_box.no_title>.corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -85px 0; + width: 14px; + height: 41px; + top: 26px; + right: 0; + height: 16px; +} + +.grepo_box .box_corner_extra_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat 0 0; + width: 43px; + height: 45px; + top: -5px; + right: -15px; +} + +.grepo_box .box_corner_bl, +.grepo_box>.corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -28px -45px; + width: 14px; + height: 15px; + bottom: 0; + left: 0; +} + +.grepo_box .box_corner_br, +.grepo_box>.corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat -42px -45px; + width: 14px; + height: 15px; + bottom: 0; + right: 0; +} + +.grepo_box .border_tl { + background-position: 0 -41px; + width: 47px; + height: 35px; + top: 0; + left: 14px; +} + +.grepo_box.no_title .border_tl { + background-position: 0 -67px; + width: 47px; + height: 5px; + top: 26px; + left: 14px; +} + +.grepo_box .border_tr { + background-position: -48px -41px; + width: 47px; + height: 35px; + top: 0; + right: 14px; +} + +.grepo_box.no_title .border_tr { + background-position: -48px -67px; + width: 47px; + height: 5px; + top: 26px; + right: 14px; +} + +.grepo_box .border_tm, +.grepo_box>.border_t { + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 0; + height: 35px; + top: 0; + left: 61px; + right: 61px; +} + +.grepo_box.no_title .border_tm, +.grepo_box.no_title>.border_t { + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 -26px; + height: 5px; + top: 26px; + left: 61px; + right: 61px; +} + +.grepo_box .angel { + left: 50%; + margin-left: -90px; + position: absolute; + top: -5px; + z-index: 6; +} + +.heroes_collection .grepo_box .angel { + z-index: 7; +} + +.grepo_box .border_l { + background-position: -97px 0; + background-repeat: repeat-y; + width: 11px; + top: 41px; + bottom: 15px; + left: 5px; +} + +.grepo_box .border_r { + background-position: -108px 0; + background-repeat: repeat-y; + width: 11px; + top: 41px; + bottom: 15px; + right: 5px; +} + +.grepo_box .border_b { + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 -61px; + height: 8px; + bottom: 0; + left: 14px; + right: 14px; +} + +.grepo_box .grepo_box_content, +.grepo_box>.content { + position: relative; + padding: 31px 12px 6px 12px; + z-index: 4; +} + +.grepo_box_window .grepo_box .grepo_box_content, +.grepo_box_window .grepo_box>.content { + padding: 6px 12px; +} + +.grepo_box .grepo_box_background, +.grepo_box>.background { + position: absolute; + z-index: 2; + background: url(https://gpfr.innogamescdn.com/images/game/box/background_2.56_compressed.jpg) repeat 0 -61px; + top: 31px; + bottom: 6px; + left: 12px; + right: 12px; +} + +.grepo_box.with_footer>.box_corner_bl, +.grepo_box.with_footer>.corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat 0 -45px; + width: 14px; + height: 35px; +} + +.grepo_box.with_footer>.box_corner_br, +.grepo_box.with_footer>.corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_corner_2.77.png) no-repeat 0 -45px; + width: 14px; + height: 35px; +} + +.grepo_box.with_footer>.border_b { + background-position: 0 -73px; + height: 35px; +} + +.grepo_box.with_footer>.border_l, +.grepo_box.with_footer>.border_r { + bottom: 35px; +} + +.grepo_box.with_footer>.background, +.grepo_box.with_footer>.grepo_box_background { + bottom: 35px; +} + +.grepo_box.with_footer>.content, +.grepo_box.with_footer>.grepo_box_content { + margin-bottom: 35px; +} + +.grepo_curtain { + position: relative; + height: 440px; +} + +.grepo_curtain .left, +.grepo_curtain .middle, +.grepo_curtain .right { + position: absolute; + height: 440px; + top: 0; + width: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/box/curtain_borders.png) no-repeat 0 0; +} + +.grepo_curtain .left { + left: 0; + background-position: 0 0; +} + +.grepo_curtain .right { + right: 0; + background-position: -35px 0; +} + +.grepo_curtain .middle { + position: relative; + width: auto; + background: url(https://gpfr.innogamescdn.com/images/game/box/curtain_middle.png) repeat-x 0 0; + margin: 0 34px; +} + +.grepo_bordure { + height: 16px; + position: relative; +} + +.grepo_bordure .left, +.grepo_bordure .middle, +.grepo_bordure .right { + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) no-repeat 0 0; + height: 16px; + position: absolute; + width: 186px; +} + +.grepo_bordure .left { + background-position: left -109px; + left: 0; +} + +.grepo_bordure .right { + background-position: right -143px; + right: 0; +} + +.grepo_bordure .middle { + position: relative; + background-position: 0 -126px; + background-repeat: repeat-x; + width: auto; + margin: 0 186px; +} + +.shadow_box { + position: relative; + min-height: 0; +} + +.shadow_box .border_b, +.shadow_box .border_l, +.shadow_box .border_r, +.shadow_box .border_t, +.shadow_box .corner_bl, +.shadow_box .corner_br, +.shadow_box .corner_tl, +.shadow_box .corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/box/corners_2.77.png) no-repeat 0 0; + position: absolute; + top: auto; + left: auto; + bottom: auto; + right: auto; +} + +.shadow_box .corner_tl { + width: 3px; + height: 5px; + background-position: -154px -56px; + left: 30px; + top: 0; +} + +.shadow_box .corner_tr { + width: 3px; + height: 5px; + background-position: -158px -56px; + right: 30px; + top: 0; +} + +.shadow_box .corner_bl { + width: 33px; + height: 47px; + background-position: -124px -62px; + bottom: 0; + left: 0; +} + +.shadow_box .corner_br { + width: 33px; + height: 47px; + background-position: -158px -62px; + bottom: 0; + right: 0; +} + +.shadow_box .border_l { + background-position: -302px 0; + background-repeat: repeat-y; + left: 30px; + bottom: 47px; + top: 5px; +} + +.shadow_box .border_r { + background-position: -302px 0; + background-repeat: repeat-y; + right: 22px; + bottom: 47px; + top: 5px; +} + +.shadow_box .border_t { + height: 3px; + left: 33px; + right: 33px; + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 -160px; + top: 0; +} + +.shadow_box .border_b { + height: 3px; + left: 33px; + right: 33px; + background: url(https://gpfr.innogamescdn.com/images/game/box/borders_2.41.png) repeat-x 0 -160px; + bottom: 1px; +} + +.shadow_box .content, +.shadow_box .content_background { + position: absolute; + left: 32px; + right: 32px; + bottom: 3px; + top: 3px; +} + +.shadow_box .content_background { + background-color: #000; + opacity: .7; +} + +.sandy-box { + padding: 4px 10px 12px 3px; + min-width: 100px; +} + +.sandy-box .corner_bl, +.sandy-box .corner_br, +.sandy-box .corner_tl, +.sandy-box .corner_tr { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/box/sandy/nui_sandy_box_corners.png) no-repeat 0 0; +} + +.sandy-box .corner_tl { + width: 67px; + height: 18px; + background-position: 0 0; + top: 0; + left: 0; +} + +.sandy-box .corner_tr { + width: 38px; + height: 18px; + background-position: -49px -19px; + top: 0; + right: 0; +} + +.sandy-box .corner_bl { + width: 50px; + height: 28px; + background-position: 0 -48px; + bottom: 0; + left: 0; +} + +.sandy-box .corner_br { + width: 48px; + height: 28px; + background-position: 0 -19px; + bottom: 0; + right: 0; +} + +.sandy-box .border_b, +.sandy-box .border_t { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/box/sandy/nui_sandy_box_hor_borders.png) no-repeat 0 0; +} + +.sandy-box .border_l, +.sandy-box .border_r { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/box/sandy/nui_sandy_box_ver_borders.png) no-repeat 0 0; +} + +.sandy-box .border_l { + top: 18px; + bottom: 27px; + left: 0; + background-position: 0 0; + background-repeat: repeat-y; + width: 67px; +} + +.sandy-box .border_r { + top: 18px; + bottom: 27px; + right: 0; + background-position: -68px 0; + background-repeat: repeat-y; + width: 48px; +} + +.sandy-box .border_t { + left: 67px; + right: 38px; + top: 0; + height: 18px; + background-position: 0 0; + background-repeat: repeat-x; +} + +.sandy-box .border_b { + left: 50px; + right: 38px; + bottom: 0; + height: 28px; + background-position: 0 -19px; + background-repeat: repeat-x; +} + +.sandy-box .middle { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/box/sandy/nui_sandy_box_center.png) repeat 0 0; + left: 66px; + right: 47px; + top: 18px; + bottom: 27px; +} + +.sandy-box .content { + position: relative; +} + +.grepo-frame { + position: relative; +} + +.grepo-frame .frame-border-bottom, +.grepo-frame .frame-border-left, +.grepo-frame .frame-border-right, +.grepo-frame .frame-border-top, +.grepo-frame .frame-corner-bottom-left, +.grepo-frame .frame-corner-bottom-right, +.grepo-frame .frame-corner-top-left, +.grepo-frame .frame-corner-top-right { + position: absolute; + z-index: 1; +} + +.grepo-frame .frame-border-bottom, +.grepo-frame .frame-border-top { + height: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/border/border_h.png) repeat-x 0 0; +} + +.grepo-frame .frame-border-left, +.grepo-frame .frame-border-right { + width: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/border/border_v.png) repeat-y 0 0; +} + +.grepo-frame .frame-border-left { + left: 0; + top: 4px; + bottom: 4px; +} + +.grepo-frame .frame-border-right { + right: 0; + top: 4px; + bottom: 4px; +} + +.grepo-frame .frame-border-top { + top: 0; + left: 4px; + right: 4px; +} + +.grepo-frame .frame-border-bottom { + bottom: 0; + left: 4px; + right: 4px; +} + +.grepo-frame .frame-corner-bottom-left, +.grepo-frame .frame-corner-bottom-right, +.grepo-frame .frame-corner-top-left, +.grepo-frame .frame-corner-top-right { + background: url(https://gpfr.innogamescdn.com/images/game/border/edge.png) no-repeat; + width: 4px; + height: 4px; +} + +.grepo-frame .frame-corner-top-left { + top: 0; + left: 0; + background-position: 0 0; +} + +.grepo-frame .frame-corner-top-right { + top: 0; + right: 0; + background-position: -6px -10px; +} + +.grepo-frame .frame-corner-bottom-left { + bottom: 0; + left: 0; + background-position: 0 -36px; +} + +.grepo-frame .frame-corner-bottom-right { + bottom: 0; + right: 0; + background-position: 0 -26px; +} + +.grepo-frame .frame-content { + padding: 4px; + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat; +} + +.attack_planner { + position: relative; + overflow-x: hidden; + overflow-y: visible; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + padding-bottom: 16px; +} + +.attack_planner.show_plan .edit_icon { + top: 5px; +} + +.attack_planner.attacks .edit_icon { + bottom: 6px; +} + +.attack_planner .edit_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -292px; + width: 22px; + height: 23px; + position: absolute; + margin: 0; + cursor: pointer; + right: 29px; +} + +.attack_planner .row1, +.attack_planner .row2, +.attack_planner .row3 { + margin: 0 55px 0 66px; + line-height: 16px; + text-overflow: ellipsis; + overflow: hidden; +} + +.attack_planner .use_same_time { + top: 4px; +} + +.attack_planner .odd { + border-bottom: 0; +} + +.attack_planner ul { + overflow-y: auto; + overflow-x: hidden; + position: relative; +} + +.attack_planner li { + display: block; + position: relative; + overflow: hidden; + height: 22px; + padding-left: 13px; + text-align: left; + white-space: nowrap; + line-height: 21px; + font-size: 11px; +} + +.attack_planner li.selected { + background: #ffe09b url(https://gpfr.innogamescdn.com/images/game/unit_overview/arrow_right.png) no-repeat left; +} + +.attack_planner li.even, +.attack_planner li.odd { + border-bottom-width: 1px; +} + +.attack_planner .attacks_list_box li.no_results_found, +.attack_planner li.no_results_found { + color: #833f00; + text-align: center; + padding: 5px 0; +} + +.attack_planner .buttons_bar { + padding: 4px 2px 0; + overflow: hidden; +} + +.attack_planner .show_units { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/toggle.png) no-repeat 0 0; + width: 11px; + height: 11px; + cursor: pointer; +} + +.attack_planner .show_units:hover { + background-position: 0 -11px; +} + +.attack_planner .active_row .show_units { + background-position: -11px -11px; +} + +.attack_planner .origin_town_units { + overflow: hidden; + margin: 5px 0 5px 0; + padding: 3px 15px; + text-shadow: 1px 1px 3px #000; + color: #fff; + font-weight: 700; + display: none; +} + +.attack_planner .active_row .origin_town_units { + display: inline-block; + vertical-align: middle; +} + +.attack_planner .origin_town_units .unit_icon25x25 { + border: 1px solid #626262; + padding: 10px 0 0 0; + line-height: 13px; + height: 15px; + text-align: right; +} + +.attack_planner .attack_icon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -145px 0; + display: block; + height: 34px; + width: 29px; + position: absolute; + cursor: pointer; +} + +.attack_planner .attack_icon:hover { + background-position: -145px -34px; +} + +.attack_planner .selections { + display: inline-block; + height: 50px; +} + +.attack_planner .hero_selection, +.attack_planner .spell_selection, +.attack_planner .strategies_selection { + display: inline-block; + float: left; + width: 150px; +} + +.attack_planner .hero_selection span { + position: relative; + top: 15px; +} + +.attack_planner .spell_selection { + width: 120px; +} + +.attack_planner .strategies_selection { + width: 200px; +} + +.attack_planner .strategies_selection span { + position: relative; + top: 15px; + float: left; +} + +.attack_planner .strategies_selection .attack_strategy { + display: inline-block; + margin: 2px; + float: none; + width: 46px; + height: 47px; + cursor: pointer; +} + +.attack_planner .heroes_pickup { + position: absolute; + float: none; + left: 75px; + top: 62px; +} + +.attack_planner .heroes_pickup .icon_border { + width: 40px; + height: 40px; + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg) repeat 0 0; + margin: 5px 0 0 6px; + border-top: 1px solid #c8a05c; + border-right: 1px solid #7f653a; + border-bottom: 1px solid #514023; + border-left: 1px solid #af8b4e; + position: relative; +} + +.attack_planner .heroes_pickup .icon { + z-index: 1; + width: 40px; + height: 40px; + position: relative; +} + +.attack_planner .heroes_pickup .laurels { + position: absolute; + top: 5px; + left: 3px; + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -597px -113px; +} + +.attack_planner .heroes_pickup .cbx_include_hero { + text-align: center; + position: absolute; + left: -25px; + top: 15px; +} + +.attack_planner .spells { + margin-bottom: 5px; + cursor: pointer; +} + +.attack_planner .spells.no_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -96px -45px; + width: 45px; + height: 45px; +} + +.attack_planner .spells.no_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -48px -48px; + width: 45px; + height: 45px; +} + +.attack_planner .spells.no_power.pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat 0 -96px; + width: 45px; + height: 45px; +} + +.attack_planner .radiobutton.attack_types { + position: relative; + overflow: hidden; + height: 24px; + display: inline-block; +} + +.attack_planner .radiobutton.attack_types .option { + height: 24px; + position: relative; + float: left; + margin: 0 2px 0 0; + padding: 0; + width: 24px; + height: 48px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/filter_24x24_455e697.png) no-repeat; +} + +.attack_planner .radiobutton.attack_types .option.abort { + background-position: 0 0; +} + +.attack_planner .radiobutton.attack_types .option.abort.inactive { + background-position: 0 -24px; +} + +.attack_planner .radiobutton.attack_types .option.attack_land { + background-position: -24px 0; +} + +.attack_planner .radiobutton.attack_types .option.attack_land.inactive { + background-position: -24px -24px; +} + +.attack_planner .radiobutton.attack_types .option.attack_sea { + background-position: -48px 0; +} + +.attack_planner .radiobutton.attack_types .option.attack_sea.inactive { + background-position: -48px -24px; +} + +.attack_planner .radiobutton.attack_types .option.attack_spy { + background-position: -72px 0; +} + +.attack_planner .radiobutton.attack_types .option.attack_spy.inactive { + background-position: -72px -24px; +} + +.attack_planner .radiobutton.attack_types .option.attack_takeover { + background-position: -96px 0; +} + +.attack_planner .radiobutton.attack_types .option.attack_takeover.inactive { + background-position: -96px -24px; +} + +.attack_planner .radiobutton.attack_types .option.breakthrough { + background-position: -120px 0; +} + +.attack_planner .radiobutton.attack_types .option.breakthrough.inactive { + background-position: -120px -24px; +} + +.attack_planner .radiobutton.attack_types .option.farm_attack { + background-position: -144px 0; +} + +.attack_planner .radiobutton.attack_types .option.farm_attack.inactive { + background-position: -144px -24px; +} + +.attack_planner .radiobutton.attack_types .option.portal_attack_olympus { + background-position: -168px 0; +} + +.attack_planner .radiobutton.attack_types .option.portal_attack_olympus.inactive { + background-position: -168px -24px; +} + +.attack_planner .radiobutton.attack_types .option.portal_support_olympus { + background-position: -192px 0; +} + +.attack_planner .radiobutton.attack_types .option.portal_support_olympus.inactive { + background-position: -192px -24px; +} + +.attack_planner .radiobutton.attack_types .option.revolt { + background-position: -216px 0; +} + +.attack_planner .radiobutton.attack_types .option.revolt.inactive { + background-position: -216px -24px; +} + +.attack_planner .radiobutton.attack_types .option.support { + background-position: -240px 0; +} + +.attack_planner .radiobutton.attack_types .option.support.inactive { + background-position: -240px -24px; +} + +.attack_planner .radiobutton.attack_types .option .pointer { + display: none; +} + +.attack_planner .radiobutton.attack_types .option.attack { + background-position: -24px -24px; +} + +.attack_planner .radiobutton.attack_types .option.attack.checked { + background-position: -24px 0; +} + +.attack_planner .radiobutton.attack_types .option.support { + background-position: -240px -24px; +} + +.attack_planner .radiobutton.attack_types .option.support.checked { + background-position: -240px 0; +} + +.attack_planner .radiobutton.attack_types .option.portal_attack_olympus { + background-position: -168px -24px; +} + +.attack_planner .radiobutton.attack_types .option.portal_attack_olympus.checked { + background-position: -168px 0; +} + +.attack_planner .radiobutton.attack_types .option.portal_support_olympus { + background-position: -192px -24px; +} + +.attack_planner .radiobutton.attack_types .option.portal_support_olympus.checked { + background-position: -192px 0; +} + +.attack_planner .radiobutton.attack_types .option.revolt { + background-position: -216px -24px; +} + +.attack_planner .radiobutton.attack_types .option.revolt.checked { + background-position: -216px 0; +} + +#ally_found { + position: absolute; + left: 440px; + width: 320px; +} + +#ally_found_header { + width: 300px; +} + +#ally_announce_body { + padding: 0; + overflow: hidden; +} + +#ally_announce_textarea { + font-family: Verdana,Tahoma,sans-serif; + font-size: 13px; + height: 232px; + width: 376px; + border: 0 none; + display: none; +} + +#ally_announce_body_content .content { + padding: 0 6px; + overflow: auto; + max-height: 301px; +} + +#ally_announce_bbcodes { + display: none; + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) 0 0 repeat; + border-bottom: 1px solid #d0be97; + padding: 3px; +} + +#ally_announce_bbcodes div.content { + overflow: hidden; +} + +#ally_events .game_list { + max-height: 280px; + overflow-y: auto; +} + +#ally_events .game_list>li { + padding: 8px 2px; +} + +#ally_events .game_list>li>img { + margin-top: -5px; +} + +#ally_announce, +#ally_events, +#ally_invitations, +#ally_invitations_link, +#ally_mass_invitations, +#ally_my_invitations, +#ally_text { + width: 50%; + position: absolute; +} + +#ally_invitations_link .grepo_input input { + width: 360px; +} + +#ally_announce .game_border, +#ally_applications .game_border, +#ally_events .game_border, +#ally_finder_text .game_border, +#ally_invitations .game_border, +#ally_invitations_link .game_border, +#ally_my_applications .game_border, +#ally_my_invitations .game_border, +#ally_text .game_border { + margin: 8px; +} + +#ally_announce, +#ally_invitations_link { + left: 50%; +} + +#ally_mass_invitations { + left: 50%; + top: 50%; +} + +#ally_events tfoot { + height: 30px; +} + +.ally_event_invite { + position: relative; + width: 22px; + height: 22px; + background: url(https://gpfr.innogamescdn.com/images/game/ally/invite.png) no-repeat; +} + +#profile_info #ally_pacts, +#profile_info #ally_profile { + max-height: 350px; +} + +#ally_profile_info #ally_pacts, +#ally_profile_info #ally_profile { + max-height: 273px; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + overflow-y: auto; + overflow-x: hidden; +} + +#ally_profile_info #ally_profile #ally_image { + padding: 10px 0 14px 0; + border-bottom: 1px solid #d2bc94; +} + +#ally_profile_info #ally_profile li { + border: 0; +} + +#profile_info #ally_profile li { + border: 0; +} + +#ally_invite_members a { + float: left; + left: -50%; + position: relative; +} + +#ally_invite_members { + position: absolute; + top: 370px; + left: 0; + right: 0; +} + +#ally_members table { + text-align: center; + table-layout: fixed; +} + +#ally_members table .narrow { + width: 40px; +} + +#ally_members table .wide { + width: 60px; +} + +#ally_members table.game_table th, +#ally_members_body table.game_table td { + padding: 3px 0; + overflow: hidden; + text-overflow: ellipsis; +} + +#ally_members table.game_table th .checked, +#ally_members_body table.game_table td .checked { + position: relative; + left: 1px; +} + +#ally_members th.artifact_reward { + width: 30px; +} + +#ally_members #ally_members_body { + position: relative; + max-height: 374px; + overflow-y: auto; + overflow-x: hidden; +} + +#ally_members #ally_members_body table.game_table tr { + height: 30px; +} + +#ally_members #ally_members_body table.game_table tr .artifact_reward { + width: 30px; + text-align: center; +} + +#ally_members #ally_members_body table.game_table tr .artifact_icons20x20 { + display: inline-block; + vertical-align: middle; +} + +#ally_members table.game_table .ally_name { + text-align: left; + width: 170px; + padding: 3px 6px; +} + +#ally_members table.game_table .ally_name .member_info { + max-width: 125px; +} + +#ally_finder_text tbody { + height: 300px; + overflow-y: scroll; + overflow-x: hidden; +} + +#ally_finder_text tbody tr { + height: 30px; +} + +#ally_finder_text tbody, +#ally_finder_text thead>tr { + display: block; +} + +#ally_finder_text tr:first-child { + background-color: #fff9ef; +} + +#ally_finder_text table { + width: 100%; + text-align: center; + border-spacing: 0; +} + +#ally_finder_text thead { + background-image: url(https://gpfr.innogamescdn.com/images/game/border/header.png); + background-position: 0 -1px; + padding: 3px 6px 3px 6px; + color: #fff; + border-bottom: 1px solid #000; +} + +#ally_finder_text thead tr { + margin-right: 14px; +} + +#ally_finder_text thead, +#ally_finder_text thead th { + height: 20px; +} + +#ally_finder_text .ally_icon { + width: 20px; +} + +#ally_finder_text .ally_name { + width: 374px; + text-align: left; +} + +#ally_finder_text .ally_rank { + width: 100px; +} + +#ally_finder_text .ally_members { + width: 100px; +} + +#ally_finder_text .ally_application { + width: 180px; +} + +#ally_finder_text .ally_application .button_new { + width: 70%; +} + +#ally_finder_text ul, +#ally_text ul { + list-style-type: disc; +} + +#ally_finder_text ul li, +#ally_text ul li { + margin: 0 0 4px 15px; +} + +#ally_mass_invitations li { + height: 22px; + overflow: hidden; +} + +#ally_my_applications .game_list, +#ally_my_invitations .game_list { + max-height: 410px; +} + +#ally_invitations .game_list { + max-height: 120px; +} + +#ally_applications .game_list { + max-height: 180px; +} + +#ally_applications .game_list, +#ally_invitations .game_list, +#ally_my_applications .game_list, +#ally_my_invitations .game_list { + overflow-y: auto; +}#ally_applications li, +#ally_invitations li, +#ally_my_applications li, +#ally_my_invitations li { + height: 22px; + overflow: hidden; +} + +#ally_applications .game_list .list_item_left, +#ally_invitations .game_list .list_item_left, +#ally_my_applications .game_list .list_item_left, +#ally_my_invitations .game_list .list_item_left { + width: 210px; + white-space: nowrap; +} + +#ally_applications .game_list .list_item_right, +#ally_invitations .game_list .list_item_right, +#ally_my_applications .game_list .list_item_right, +#ally_my_invitations .game_list .list_item_right { + max-width: 150px; +} + +#ally_applications .game_list .list_item_right span.date, +#ally_invitations .game_list .list_item_right span.date, +#ally_my_applications .game_list .list_item_right span.date, +#ally_my_invitations .game_list .list_item_right span.date { + display: inline-block; + vertical-align: middle; + word-break: break-word; + max-width: 95px; +} + +#ally_applications .game_list a, +#ally_invitations .game_list a, +#ally_my_applications .game_list a, +#ally_my_invitations .game_list a { + vertical-align: top; +} + +#ally_applications .cancel, +#ally_invitations .cancel, +#ally_my_applications .cancel, +#ally_my_invitations .cancel { + float: right; + margin: 0 0 0 5px; +} + +#ally_applications .confirm, +#ally_invitations .confirm, +#ally_my_applications .confirm, +#ally_my_invitations .confirm { + float: right; + margin-right: 5px; +} + +#ally_my_applications { + position: absolute; + left: 50%; + width: 50%; +} + +#ally_applications { + position: absolute; + top: 50%; + width: 50%; +} + +#application_edit_message { + height: 320px; + width: 100%; +} + +#application_preview { + display: none; +} + +#application_preview_body { + padding: 5px; + max-height: 377px; + overflow-y: auto; +} + +#application_bbcodes { + padding: 5px; + height: 23px; +} + +#ally_mass_invitations .cancel { + float: right; + margin: 0 0 0 5px; +} + +#ally_mass_invitations .confirm { + float: right; + margin-right: 5px; +} + +#invitation_form .button, +#mass_invitation_form .button { + margin: 0 0 0 2px; +} + +#invitation_form input.ac_input, +#mass_invitation_form input.ac_input { + max-width: 138px; + width: 138px; +} + +#ally_settings_wrapper { + position: absolute; + width: 350px; +} + +#alliance_contact_buttons, +#delete_form { + padding: 3px 6px; +} + +#ally_profile_textarea { + width: 362px; + height: 140px; + resize: none; +} + +#ally_image { + text-align: center; + display: block; +} + +#ally_image_edit { + display: none; +} + +#ally_image_edit input[id=image] { + margin: -5px 0 7px; +} + +#ally_profile_body_content { + min-height: 16px; + cursor: pointer; + width: 378px; + word-break: break-all; +} + +#ally_profile_body.editable #ally_profile_body_content { + overflow: hidden auto; + max-height: 173px; +} + +#ally_profile_body:not(.editable) .ally_profile_content { + overflow: hidden; + max-height: 205px; +} + +#application_message_textarea { + width: 100%; + height: 310px; +} + +#application_message_save_form .character_counter { + float: right; +} + +#profile_bbcodes { + display: none; +} + +#ally_profile_textarea { + display: none; +} + +#ally_profile #profile_image { + text-align: center; +} + +#ally_announce_save { + display: none; +} + +#ally_announce_save, +#ally_profile_save_desc, +#ally_profile_save_image { + float: right; +} + +#ally_flags h5 { + margin: 5px; +} + +#ally_flags .game_body { + max-height: 323px; + overflow-y: auto; + background-image: url(https://gpfr.innogamescdn.com/images/game/flags/bg.png); +} + +#ally_chose_flag { + float: left; + margin-top: 20px; +} + +#ally_all_flags { + position: relative; + float: left; + width: 600px; +} + +#ally_pact_invitations { + width: 275px; + position: absolute; + max-height: 390px; + overflow: auto; +} + +.ally_pact_invitation_date { + left: 28px; + position: relative; +} + +.ally_pact_invitation_left { + width: 250px; +} + +.ally_pact_invitation_left img { + vertical-align: middle; +} + +.ally_pact_invitation_right { + float: right; + margin-top: -32px; + width: 70px; +} + +.ally_pact_invitation_right .confirm { + float: right; +} + +#ally_pact_list { + width: 308px; + position: absolute; + left: 20px; + background-color: #fee2a1; +} + +#pact_info_box { + position: absolute; + left: 360px; + width: 400px; + top: 0; +} + +#ally_pact_list .cancel { + float: right; +} + +#ally_pact_invitation_form { + display: inline-block; + float: left; +} + +a.pact_invite_ally { + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat 0 0; + height: 23px; + width: 22px; + display: inline-block; + cursor: pointer; +} + +a.pact_invite_ally { + background-position: -132px 0; +} + +a.pact_invite_ally:hover { + background-position: -132px -23px; +} + +.pact_visibility { + position: relative; +} + +#tab_ally_enemies, +#tab_ally_pact_invitations, +#tab_ally_pact_list { + padding: 1px; + width: 300px; +} + +#ally_pact_tabs { + max-height: 420px; + overflow: hidden; +} + +#tab_ally_enemies, +#tab_ally_pact_invitations, +#tab_ally_pact_list { + height: 280px; +} + +#tab_ally_enemies .game_list, +#tab_ally_pact_invitations .game_list, +#tab_ally_pact_list .game_list { + height: 253px; + overflow-y: auto; +} + +span.edit_hover { + display: block; + position: relative; + float: right; + cursor: pointer; +} + +.editable:hover span.edit_hover { + display: block; +} + +.editable span.edit_hover span.edit_hover_icon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png) -164px -40px; + position: absolute; + width: 16px; + height: 16px; + right: 0; + top: 0; + display: block; +} + +#ally_announce_edit { + float: right; +} + +#ally_profile_save_contact, +#ally_profile_save_desc, +#ally_profile_save_image { + border: none; + display: none; + margin-right: 8px; +} + +#alliance_properties_wrapper { + height: auto; + overflow-y: auto; + overflow-x: hidden; + position: relative; +} + +#alliance_properties_wrapper fieldset { + border: 2px groove #fc6; + padding: 0; + position: relative; +} + +#alliance_properties_wrapper form, +#alliance_properties_wrapper p { + margin: 3px; + padding: 3px; +} + +#alliance_properties_wrapper #ally_banner form { + margin: 0; + padding: 0; +} + +#alliance_properties_wrapper #ally_banner img { + max-height: 120px; +} + +#alliance_properties_wrapper div.settings_column { + float: left; + width: 50%; + position: relative; +} + +#ally_leave { + text-align: center; + margin: 3px; + padding: 3px; +} + +#unit_order #units { + position: relative; + height: 95px; + top: 4px; + margin: 1px; + z-index: 2; +} + +.unit_tab { + float: left; +} + +#unit_order div.unit_order_tab { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/unit_bg.png) 0 0 no-repeat; + text-align: center; + width: 58px; + height: 95px; + cursor: pointer; + padding: 2px 0 0 0; +} + +#unit_order div.unit_active { + background-position: -58px 0; + height: 101px; +} + +#unit_order .unit_order_total { + display: block; + margin-bottom: -2px; + line-height: 14px; +} + +#unit_active a, +.unit a { + margin-left: -10px; +} + +.unit_order_number { + position: absolute; + top: 5px; + width: 58px; +} + +#unit_order .unit_order_unit_image, +.unit_order_unit_image { + position: relative; + background-repeat: no-repeat; + margin: 3px 3px 0; + top: 0; + height: 50px; + width: 50px; + border: 1px solid #431; +} + +#units .max { + color: #000; + line-height: 18px; + margin-right: 6px; +} + +#unit_order_units_show { + float: left; + padding: 52px 0 0 1px; +} + +a.unit_order_show { + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/showhide.png) no-repeat; + top: 51px; + width: 22px; + height: 23px; +} + +a.unit_order_show:hover { + background-position: 0 -23px; +} + +a.unit_order_hide { + background-position: 0 -46px; +} + +a.unit_order_hide:hover { + background-position: 0 -69px; +} + +#unit_order_unit_big_image { + position: absolute; + left: 1px; + top: 1px; +} + +.unit_icon90x90.thin_frame:after { + background: url(https://gpfr.innogamescdn.com/images/game/frames/units_90x90_frame.png) no-repeat; + content: ""; + width: 90px; + height: 90px; + position: absolute; + left: 0; +} + +#unit_order_box { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/count.png) no-repeat; + position: relative; + height: 94px; + width: 234px; + margin: 7px 0 0; + float: left; +} + +#unit_order_count { + position: absolute; + left: 88px; + width: 146px; + height: 94px; +} + +#unit_order_dependencies { + display: none; + color: red; + margin-bottom: 10px; +} + +a#unit_order_max, +a#unit_order_min { + position: absolute; + top: 10px; + width: 52px; + height: 23px; + text-align: center; + color: #f9e09d; + text-decoration: none; + line-height: 20px; +} + +a#unit_order_min { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_passive.png) no-repeat; + left: 10px; +} + +a#unit_order_max { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_passive.png) no-repeat; + right: 10px; +} + +a#unit_order_max:hover, +a#unit_order_min:hover { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_active.png) no-repeat; +} + +a#unit_order_confirm { + position: absolute; + top: 60px; + right: 10px; +} + +#unit_order_input { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/input.png) no-repeat; + border: 0; + top: 60px; + left: 45px; + height: 17px; + width: 52px; + text-align: center; + padding: 3px; +} + +#unit_order_count a.left { + position: absolute; + left: 10px; + top: 35px; +} + +#unit_order_count .windowmgr_slider { + display: inline-block; + vertical-align: middle; +} + +#unit_order_count a.right { + position: absolute; + right: 10px; + top: 35px; +} + +#unit_order_slider { + position: absolute; + height: 18px; + left: 5px; + width: 72px; + top: 25px; +} + +#unit_order_slider .js-slider-handle-container { + top: 6px; +} + +#costs { + float: left; + margin: -22px 0 0 15px; +} + +#unit_order_values { + border: 1px solid #e1af55; + border-collapse: collapse; + padding: 2px; + height: 90px; + position: relative; + width: 300px; + white-space: nowrap; + margin: 7px 0 0; +} + +#unit_order_values td { + background: #ffe2a1; + border-color: #e1af55; + text-align: center; + min-width: 100px; + line-height: 24px; +} + +.unit_order_res { + vertical-align: middle; + float: left; +} + +#unit_order_show_values { + position: absolute; + top: 8px; + left: 538px; +} + +#unit_order_unit_name { + width: 185px; +} + +#fight_values_box { + float: left; + margin: -22px 0 0 15px; +} + +#tasks { + position: relative; + height: 140px; + left: 20px; + clear: both; + width: 700px; +} + +#unit_order_0 { + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/current.png) no-repeat; + width: 82px; + height: 102px; +} + +.unit_order_task { + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/task.png) no-repeat; + width: 79px; + height: 102px; +} + +#unit_order_task_right { + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/task_right.png) no-repeat; + width: 4px; + height: 102px; +} + +a.unit_order_cancel { + position: absolute; + top: 73px; + right: 2px; + cursor: pointer; +} + +div.unit_order_spendable>a.unit_order_cancel { + top: 50px; + right: 1px; +} + +.unit_order_task_value { + position: absolute; + top: 75px; + width: 80px; + text-align: center; +} + +.unit_order_task_time { + position: absolute; + top: 4px; + width: 80px; + text-align: center; +} + +.unit_order_task_unit { + position: absolute; + top: 22px; + left: 21px; +} + +div.unit_order_spendable>.unit_order_task_unit { + left: 6px; +} + +a.unit_order_tasks_finish { + display: none; +} + +div.unit_order_spendable>a.unit_order_tasks_finish { + display: inline; + right: 1px; + top: 20px; + left: auto; +} + +#unit_order_info { + position: relative; + padding: 10px; +} + +#unit_order_unit_info { + margin: 7px 0 0; + border: 1px solid #deb25a; + border-collapse: collapse; +} + +#unit_order_unit_info td { + background: #f7dca2; + border-color: #deb25a; + text-align: center; + padding: 2px; + width: 82px; + line-height: 24px; + white-space: nowrap; +} + +#unit_order_unit_info td div { + float: left; +} + +#unit_order_def_hack { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background-position: 0 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_def_hack.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_def_hack.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_def_hack.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_def_hack.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_def_hack.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_def_hack.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_def_hack.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_def_hack.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_def_hack.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_def_hack.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_def_hack.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_def_hack.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_def_hack.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_def_hack.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_def_hack.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_def_hack.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_def_hack.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_def_hack.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_def_hack.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_def_hack.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_def_hack.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_def_hack.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_def_hack.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_def_hack.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_def_pierce { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background-position: 0 -30px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_def_pierce.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_def_pierce.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_def_pierce.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_def_pierce.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_def_pierce.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_def_pierce.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_def_pierce.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_def_pierce.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_def_pierce.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_def_pierce.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_def_pierce.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_def_pierce.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_def_pierce.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_def_pierce.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_def_pierce.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_def_pierce.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_def_pierce.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_def_pierce.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_def_pierce.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_def_pierce.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_def_pierce.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_def_pierce.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_def_pierce.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_def_pierce.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_def_distance { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background-position: 0 -60px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_def_distance.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_def_distance.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_def_distance.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_def_distance.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_def_distance.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_def_distance.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_def_distance.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_def_distance.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_def_distance.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_def_distance.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_def_distance.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_def_distance.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_def_distance.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_def_distance.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_def_distance.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_def_distance.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_def_distance.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_def_distance.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_def_distance.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_def_distance.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_def_distance.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_def_distance.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_def_distance.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_def_distance.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_att_hack, +.unit_order_att_hack { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background-position: 0 -120px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_att_hack.all, +.unit_order_att_hack.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_att_hack.att_distance, +.unit_order_att_hack.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_att_hack.att_hack, +.unit_order_att_hack.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_att_hack.att_pierce, +.unit_order_att_hack.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_att_hack.booty, +.unit_order_att_hack.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_att_hack.colonization, +.unit_order_att_hack.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_att_hack.def_distance, +.unit_order_att_hack.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_att_hack.def_hack, +.unit_order_att_hack.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_att_hack.def_pierce, +.unit_order_att_hack.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_att_hack.flying, +.unit_order_att_hack.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_att_hack.function_def, +.unit_order_att_hack.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_att_hack.function_off, +.unit_order_att_hack.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_att_hack.hero_icon, +.unit_order_att_hack.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_att_hack.mythological_ground, +.unit_order_att_hack.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_att_hack.mythological_naval, +.unit_order_att_hack.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_att_hack.passive, +.unit_order_att_hack.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_att_hack.regular_ground, +.unit_order_att_hack.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_att_hack.regular_naval, +.unit_order_att_hack.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_att_hack.self_destruct, +.unit_order_att_hack.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_att_hack.ship_attack, +.unit_order_att_hack.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_att_hack.ship_capacity, +.unit_order_att_hack.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_att_hack.ship_defense, +.unit_order_att_hack.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_att_hack.speed, +.unit_order_att_hack.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_att_hack.wall_destruct, +.unit_order_att_hack.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_att_pierce, +.unit_order_att_pierce { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background-position: 0 -90px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_att_pierce.all, +.unit_order_att_pierce.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_att_pierce.att_distance, +.unit_order_att_pierce.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_att_pierce.att_hack, +.unit_order_att_pierce.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_att_pierce.att_pierce, +.unit_order_att_pierce.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_att_pierce.booty, +.unit_order_att_pierce.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_att_pierce.colonization, +.unit_order_att_pierce.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_att_pierce.def_distance, +.unit_order_att_pierce.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_att_pierce.def_hack, +.unit_order_att_pierce.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_att_pierce.def_pierce, +.unit_order_att_pierce.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_att_pierce.flying, +.unit_order_att_pierce.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_att_pierce.function_def, +.unit_order_att_pierce.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_att_pierce.function_off, +.unit_order_att_pierce.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_att_pierce.hero_icon, +.unit_order_att_pierce.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_att_pierce.mythological_ground, +.unit_order_att_pierce.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_att_pierce.mythological_naval, +.unit_order_att_pierce.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_att_pierce.passive, +.unit_order_att_pierce.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_att_pierce.regular_ground, +.unit_order_att_pierce.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_att_pierce.regular_naval, +.unit_order_att_pierce.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_att_pierce.self_destruct, +.unit_order_att_pierce.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_att_pierce.ship_attack, +.unit_order_att_pierce.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_att_pierce.ship_capacity, +.unit_order_att_pierce.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_att_pierce.ship_defense, +.unit_order_att_pierce.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_att_pierce.speed, +.unit_order_att_pierce.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_att_pierce.wall_destruct, +.unit_order_att_pierce.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_att_distance, +.unit_order_att_distance { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background-position: 0 -150px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_att_distance.all, +.unit_order_att_distance.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_att_distance.att_distance, +.unit_order_att_distance.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_att_distance.att_hack, +.unit_order_att_distance.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_att_distance.att_pierce, +.unit_order_att_distance.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_att_distance.booty, +.unit_order_att_distance.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_att_distance.colonization, +.unit_order_att_distance.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_att_distance.def_distance, +.unit_order_att_distance.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_att_distance.def_hack, +.unit_order_att_distance.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_att_distance.def_pierce, +.unit_order_att_distance.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_att_distance.flying, +.unit_order_att_distance.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_att_distance.function_def, +.unit_order_att_distance.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_att_distance.function_off, +.unit_order_att_distance.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_att_distance.hero_icon, +.unit_order_att_distance.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_att_distance.mythological_ground, +.unit_order_att_distance.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_att_distance.mythological_naval, +.unit_order_att_distance.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_att_distance.passive, +.unit_order_att_distance.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_att_distance.regular_ground, +.unit_order_att_distance.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_att_distance.regular_naval, +.unit_order_att_distance.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_att_distance.self_destruct, +.unit_order_att_distance.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_att_distance.ship_attack, +.unit_order_att_distance.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_att_distance.ship_capacity, +.unit_order_att_distance.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_att_distance.ship_defense, +.unit_order_att_distance.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_att_distance.speed, +.unit_order_att_distance.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_att_distance.wall_destruct, +.unit_order_att_distance.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_speed { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background-position: 0 -210px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_speed.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_speed.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_speed.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_speed.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_speed.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_speed.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_speed.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_speed.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_speed.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_speed.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_speed.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_speed.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_speed.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_speed.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_speed.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_speed.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_speed.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_speed.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_speed.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_speed.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_speed.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_speed.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_speed.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_speed.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_booty { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background-position: 0 -180px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_booty.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_booty.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_booty.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_booty.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_booty.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_booty.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_booty.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_booty.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_booty.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_booty.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_booty.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_booty.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_booty.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_booty.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_booty.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_booty.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_booty.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_booty.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_booty.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_booty.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_booty.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_booty.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_booty.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_booty.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_attack { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_attack.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_attack.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_attack.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_attack.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_attack.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_attack.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_attack.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_attack.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_attack.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_attack.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_attack.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_attack.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_attack.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_attack.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_attack.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_attack.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_attack.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_attack.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_attack.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_attack.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_attack.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_attack.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_attack.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_attack.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_defense { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_defense.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_defense.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_defense.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_defense.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_defense.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_defense.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_defense.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_defense.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_defense.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_defense.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_defense.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_defense.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_defense.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_defense.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_defense.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_defense.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_defense.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_defense.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_defense.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_defense.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_defense.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_defense.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_defense.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_defense.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_transport { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_transport.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +#unit_order_transport.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +#unit_order_transport.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +#unit_order_transport.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +#unit_order_transport.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +#unit_order_transport.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +#unit_order_transport.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +#unit_order_transport.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +#unit_order_transport.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +#unit_order_transport.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +#unit_order_transport.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +#unit_order_transport.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +#unit_order_transport.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +#unit_order_transport.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +#unit_order_transport.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +#unit_order_transport.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +#unit_order_transport.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +#unit_order_transport.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +#unit_order_transport.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +#unit_order_transport.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +#unit_order_transport.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +#unit_order_transport.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +#unit_order_transport.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +#unit_order_transport.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +#unit_order_ph_background { + position: absolute; + width: 446px; + height: 92px; + left: 0; + bottom: 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/barracks/ph_background-2.66.jpg); +} + +#unit_order_ph_text { + position: absolute; + left: 91px; + top: 3px; + width: 340px; + height: 85px; + padding-left: 8px; +} + +#request_ph_button { + margin-left: 0; + bottom: 5px; + position: absolute; + left: 8px; +} + +#request_ph_button .middle .inner { + overflow: hidden; +} + +.gold_ph_button { + background: url(https://gpfr.innogamescdn.com/images/game/button/gold_small.png) no-repeat; + width: 18px; + height: 16px; + top: 3px; + float: left; + position: relative; +} + +#barracks_commander_hint { + float: left; + margin-bottom: 10px; +} + +#barracks_commander_hint a.advisor_icon { + left: 0; + cursor: pointer; +} + +#barracks_commander_hint .advisor_hint { + padding-left: 72px; + text-align: center; +} + +#unit_orders_queue { + margin: 10px 0; +} + +#unit_orders_queue h4 { + margin: 5px 0; + display: inline-block; +} + +#unit_orders_queue #unit_queue_notification { + display: inline-block; + line-height: 22px; + padding-left: 55px; + vertical-align: middle; + position: relative; +} + +#unit_orders_queue #unit_queue_notification label { + font-weight: 700; +} + +#unit_orders_queue #unit_queue_notification input[type=checkbox] { + position: relative; + top: 2px; +} + +#unit_orders_queue .various_orders_queue { + display: inline-block; +} + +.unit_info_icons { + position: absolute; + height: 30px; + right: 570px; + max-width: 150px; + display: inline-block; +} + +.unit_info_icons>span { + display: inline-block; +} + +.btn_required_building, +.btn_required_research { + width: 23px; +} + +.btn_required_building .caption, +.btn_required_research .caption { + padding: 0; +} + +.btn_required_building.icon_type_required_building .icon, +.btn_required_research.icon_type_required_building .icon { + background-image: url(https://gpfr.innogamescdn.com/images/game/premium_features/overviews_sprite_16x16.png); + background-position: 0 -80px; +} + +.btn_required_building.icon_type_required_research .icon, +.btn_required_research.icon_type_required_research .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -161px -671px; + width: 13px; + height: 16px; +} + +.human_message { + font-size: 20px; + line-height: 44px; + position: fixed; + top: 130px; + left: 25%; + width: 50%; + color: #fff; + text-align: center; + display: none; + opacity: 0; + z-index: 100000; +} + +.human_message_error { + background-color: #bf1717; + border: 3px solid #3b0505; +} + +.human_message_success { + background-color: #074610; + border: 3px solid #053b05; +} + +a.button:link, +a.button:visited { + color: #fc6; +} + +a.button.inactive:link, +a.button.inactive:visited { + color: #ccb; + cursor: default; +} + +a.button { + text-align: center; + font-weight: 700; + text-decoration: none; + margin: 2px 2px 2px 2px; + display: inline-block; + position: relative; + z-index: 5; + cursor: pointer; +} + +a.button .left, +a.button .middle, +a.button .right { + height: 23px; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/button/button_sprite_2.51.png) 0 0 no-repeat; + position: relative; + z-index: -1; +} + +a.button .middle { + padding: 0 4px; + margin: 0 4px; + background-position: 0 -138px; + background-repeat: repeat-x; + line-height: 22px; + min-width: 100px; + white-space: nowrap; + cursor: pointer; +} + +a.button .left { + background-position: left -69px; +} + +a.button .right { + background-position: right 0; +} + +a.button:hover .middle { + background-position: 0 -161px; +} + +a.button:hover .left { + background-position: left -92px; +} + +a.button:hover .right { + background-position: right -23px; +} + +a.button.inactive .middle { + background-position: 0 -184px; + cursor: default; +} + +a.button.inactive .left { + background-position: left -115px; + cursor: default; +} + +a.button.inactive .right { + background-position: right -46px; + cursor: default; +} + +a.button.large .left, +a.button.large .middle, +a.button.large .right { + height: 42px; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/button/large_button_sprite_2.54.png) 0 0 no-repeat; +} + +a.button.large .middle { + background-position: 0 -42px; + line-height: 42px; + font-size: 20px; + padding: 0 25px; + background-repeat: repeat-x; +} + +a.button img { + vertical-align: text-top; + margin: 2px; +} + +a.button.large:hover .middle { + background-position: 0 0; +} + +a.button.large .left { + background-position: left -84px; +} + +a.button.large .right { + background-position: right -126px; +} + +a.button.friend_invite .left, +a.button.friend_invite .middle, +a.button.friend_invite .right { + height: 65px; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/friend_invite/friend_invite_button.png) 0 0 no-repeat; +} + +a.button.friend_invite .middle { + background-position: 0 0; + background-repeat: repeat-x; + height: 41px; + font-size: 20px; + padding: 12px 10px; + margin: 0 75px 0 9px; + line-height: 41px; +} + +a.button.friend_invite:hover .middle { + background-position: 0 -65px; +} + +a.button.friend_invite .right { + background-position: right -130px; +} + +a.button.friend_invite:hover .right { + background-position: right -195px; +} + +a.button.friend_invite .left { + background-position: left -260px; +} + +.center_outer_wrap { + overflow: hidden; + position: relative; +} + +.center_inner_wrap { + float: left; + left: 50%; + position: relative; +} + +div.game_border { + position: relative; + margin: 4px; +} + +div.game_border_corner { + background: url(https://gpfr.innogamescdn.com/images/game/border/edge.png) no-repeat; + width: 4px; + height: 4px; + position: absolute; +} + +div.game_border_corner.corner1 { + top: -3px; + left: -3px; +} + +div.game_border_corner.corner2 { + background-position: -6px -10px; + top: -3px; + right: -3px; +} + +div.game_border_corner.corner3 { + background-position: -6px -26px; + bottom: -3px; + right: -3px; +} + +div.game_border_corner.corner4 { + background-position: 0 -36px; + bottom: -3px; + left: -3px; +} + +div.game_border_bottom, +div.game_border_top { + position: absolute; + height: 4px; + left: 0; + right: 0; + z-index: 1; +} + +div.game_border_top { + background: url(https://gpfr.innogamescdn.com/images/game/border/border_h.png) repeat-x top center; + top: -3px; +} + +div.game_border_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/border/border_h.png) repeat-x bottom center; + bottom: -3px; +} + +div.game_border_left, +div.game_border_right { + position: absolute; + top: 0; + bottom: 0; + width: 4px; + z-index: 1; +} + +div.game_border_left { + background: url(https://gpfr.innogamescdn.com/images/game/border/border_v.png) repeat-y left center; + left: -3px; +} + +div.game_border_right { + background: url(https://gpfr.innogamescdn.com/images/game/border/border_v.png) repeat-y right center; + right: -3px; +} + +table.present_data { + border-spacing: 0; +} + +table.present_data th { + background: url(https://gpfr.innogamescdn.com/images/game/border/header.png) repeat-x 0 0; + height: 28px; + border-bottom: 1px solid #000; + color: #fff; + padding: 0 2px; + text-align: center; +} + +table.present_data tr.even { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +table.present_data tr.odd { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +table.present_data tr.even td, +table.present_data tr.odd td { + border-bottom: 1px solid #d3bc95; +} + +table.present_data td { + padding: 4px; + text-align: center; +} + +.sort_options_container { + position: relative; + overflow: hidden; +} + +.paginator_bg { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/paginator.png); + background-repeat: no-repeat; + width: 39px; + height: 19px; + float: left; + color: #fc6!important; + text-align: center; + padding-top: 1px; + margin-right: 2px; +} + +a.paginator_bg:hover { + background-position: 0 -20px; +} + +#paginator_selected { + background-position: 0 -20px; +} + +#paginator_inactive { + background-position: 0 -60px; +} + +.single_line_box { + position: relative; + overflow: hidden; + height: 32px; + display: inline-block; + cursor: default; +} + +.single_line_box .left, +.single_line_box .middle, +.single_line_box .right { + position: absolute; + width: 5px; + top: 0; + height: 32px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/timer_sprite.png) no-repeat -1px -1px; +} + +.single_line_box .left { + left: 0; +} + +.single_line_box .right { + right: 0; + background-position: -7px -1px; +} + +.single_line_box .middle { + position: relative; + background-repeat: repeat-x; + background-position: 0 -35px; + width: auto; + margin: 0 5px; + color: #fc6; + padding: 5px 8px 0 8px; + height: 27px; +} + +.single_line_box .middle span { + font-size: 9px; +} + +.single_line_box2 { + position: relative; + overflow: hidden; + height: 23px; + display: inline-block; +} + +.single_line_box2 .left, +.single_line_box2 .middle, +.single_line_box2 .right { + position: absolute; + width: 2px; + top: 0; + height: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/timer_sprite.png) no-repeat -4px -4px; +} + +.single_line_box2 .left { + left: 0; +} + +.single_line_box2 .right { + right: 0; + background-position: -7px -4px; +} + +.single_line_box2 .middle { + position: relative; + background-repeat: repeat-x; + background-position: 0 -38px; + width: auto; + margin: 0 2px; + color: #fc6; + padding: 2px 8px 0 8px; + height: 23px; +} + +.single_line_box2 .middle span { + font-size: 9px; +} + +.cover_parent { + position: absolute; + left: 0; + top: 0; + bottom: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/empty.gif); +} + +.clearfix:after, +.clearfix:before { + content: " "; + display: block; + height: 0; + overflow: hidden; +} + +.clearfix:after { + clear: both; +} + +.angel { + width: 180px; + height: 50px; + background: url(https://gpfr.innogamescdn.com/images/game/box/corners_2.77.png) no-repeat -120px 0; +} + +.no-transitions { + -webkit-transition: all 0s!important; + -moz-transition: all 0s!important; + -ms-transition: all 0s!important; + transition: all 0s!important; +} + +.population_icon { + background: url(https://gpfr.innogamescdn.com/images/game/res/pop.png) no-repeat; + width: 30px; + height: 30px; +} + +#buildings { + position: absolute; + top: 50px; +} + +#buildings.build_cost_reduction_enabled { + top: 6px; +} + +#buildings .building { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 0; + width: 176px; + height: 48px; +} + +#buildings.build_cost_reduction_enabled .building { + background-position: 0 -204px; + height: 62px; +} + +#buildings.build_cost_reduction_enabled .building .image { + cursor: default; +} + +.main_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/main_d300616.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +#buildings .building_special { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -330px; + width: 176px; + height: 47px; +} + +#buildings.build_cost_reduction_enabled .building_special { + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -267px; + height: 62px; +} + +#buildings .build, +#buildings .build_grey, +#buildings .tear_down { + position: absolute; + height: 18px; + width: 128px; + top: 25px; + left: 45px; + text-align: center; + line-height: 19px; + white-space: nowrap; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -48px; +} + +#buildings.build_cost_reduction_enabled .build, +#buildings.build_cost_reduction_enabled .build_grey, +#buildings.build_cost_reduction_enabled .tear_down { + top: 40px; +} + +#buildings .build, +#buildings .tear_down { + background-position: 0 -48px; + color: #fc6; +} + +#buildings .build_grey { + background-position: 0 -84px; + color: #ccb; +} + +#buildings .build:hover, +#buildings .tear_down:hover { + background-position: 0 -66px; +} + +#buildings .build_grey:hover { + background-position: 0 -84px; +} + +#buildings .build_cost_reduction { + position: absolute; + height: 18px; + width: 38px; + padding: 0 2px 0 0; + color: #fc6; + top: 40px; + left: 3px; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat -129px -48px; + text-align: right; + font-size: 9px; + text-shadow: #000 1px 1px; + white-space: nowrap; + line-height: 19px; +} + +#buildings .build_cost_reduction.tear_down { + display: none; +} + +#buildings .build_cost_reduction.theater, +#buildings .build_cost_reduction.tower { + left: 3px; +} + +#buildings .build_cost_reduction.statue, +#buildings .build_cost_reduction.thermal { + left: 45px; +} + +#buildings .build_cost_reduction.library, +#buildings .build_cost_reduction.oracle { + left: 87px; +} + +#buildings .build_cost_reduction.lighthouse, +#buildings .build_cost_reduction.trade_office { + left: 129px; +} + +#buildings .build_cost_reduction:hover { + background-position: -129px -66px; +} + +#buildings .build_cost_reduction.disabled { + background-position: -129px -84px; + color: #ccb; + cursor: default; +} + +#buildings .build_cost_reduction.disabled:hover { + background-position: -129px -84px; +} + +#buildings .image { + position: relative; + height: 40px; + width: 40px; + left: 3px; + top: 3px; + text-align: right; + vertical-align: bottom; + float: left; + margin-right: 2px; +} + +#buildings.build_cost_reduction_enabled .image { + height: 34px; +} + +#buildings .image .level { + position: absolute; + right: 2px; + bottom: 1px; +} + +#buildings .image .white { + color: #fff; + right: 3px; + bottom: 2px; +} + +#buildings .name { + position: absolute; + height: 18px; + width: 122px; + padding-top: 0; + top: 4px; + left: 48px; + text-align: center; + line-height: 18px; +} + +#buildings.build_cost_reduction_enabled .name { + padding-top: 0; + height: 40px; + display: table-cell; + vertical-align: middle; + position: relative; + top: 0; + left: 6px; + padding-top: 0; + line-height: 120%; +} + +#buildings .tear_down { + display: none; +} + +div.special_tear_down { + display: none; +} + +#buildings #building_main_main { + position: absolute; + top: 9px; + left: 302px; + width: 176px; +} + +#buildings.build_cost_reduction_enabled #building_main_main { + top: 0; +} + +#buildings #building_main_lumber { + position: absolute; + top: 65px; + left: 20px; +} + +#buildings.build_cost_reduction_enabled #building_main_lumber { + top: 67px; +} + +#buildings #building_main_ironer { + position: absolute; + top: 126px; + left: 20px; +} + +#buildings.build_cost_reduction_enabled #building_main_ironer { + top: 145px; +} + +#buildings #building_main_docks { + position: absolute; + top: 187px; + left: 20px; +} + +#buildings.build_cost_reduction_enabled #building_main_docks { + top: 223px; +} + +#buildings #building_main_farm { + position: absolute; + top: 65px; + left: 208px; +} + +#buildings.build_cost_reduction_enabled #building_main_farm { + top: 67px; +} + +#buildings #building_main_barracks { + position: absolute; + top: 126px; + left: 208px; +} + +#buildings.build_cost_reduction_enabled #building_main_barracks { + top: 145px; +} + +#buildings #building_main_academy { + position: absolute; + top: 187px; + left: 208px; +} + +#buildings.build_cost_reduction_enabled #building_main_academy { + top: 223px; +} + +#buildings #building_main_stoner { + position: absolute; + top: 65px; + left: 396px; +} + +#buildings.build_cost_reduction_enabled #building_main_stoner { + top: 67px; +} + +#buildings #building_main_temple { + position: absolute; + top: 126px; + left: 396px; +} + +#buildings.build_cost_reduction_enabled #building_main_temple { + top: 145px; +} + +#buildings #building_main_wall { + position: absolute; + top: 187px; + left: 396px; +} + +#buildings.build_cost_reduction_enabled #building_main_wall { + top: 223px; +} + +#buildings #building_main_storage { + position: absolute; + top: 65px; + left: 584px; +} + +#buildings.build_cost_reduction_enabled #building_main_storage { + top: 67px; +} + +#buildings #building_main_market { + position: absolute; + top: 126px; + left: 584px; +} + +#buildings.build_cost_reduction_enabled #building_main_market { + top: 145px; +} + +#buildings #building_main_hide { + position: absolute; + top: 187px; + left: 584px; +} + +#buildings.build_cost_reduction_enabled #building_main_hide { + top: 223px; +} + +#building_main_library, +#building_main_lighthouse, +#building_main_theater, +#buildings #building_main_thermal, +#special_group_1 { + position: absolute; + top: 248px; + left: 116px; +} + +#buildings.build_cost_reduction_enabled #building_main_thermal, +.build_cost_reduction_enabled #building_main_library, +.build_cost_reduction_enabled #building_main_lighthouse, +.build_cost_reduction_enabled #building_main_theater, +.build_cost_reduction_enabled #special_group_1 { + top: 301px; +} + +#building_main_oracle, +#building_main_statue, +#building_main_trade_office, +#buildings #building_main_tower, +#special_group_2 { + position: absolute; + top: 248px; + left: 492px; +} + +#buildings.build_cost_reduction_enabled #building_main_tower, +.build_cost_reduction_enabled #building_main_oracle, +.build_cost_reduction_enabled #building_main_statue, +.build_cost_reduction_enabled #building_main_trade_office, +.build_cost_reduction_enabled #special_group_2 { + top: 301px; +} + +#buildings #building_main_place { + visibility: hidden; +} + +#main_arrow_left { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -103px; + left: 145px; + top: 74px; + width: 154px; + height: 41px; +} + +.build_cost_reduction_enabled #main_arrow_left { + top: 21px; +} + +#main_arrow_right { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -144px; + left: 481px; + top: 74px; + width: 154px; + height: 41px; +} + +.build_cost_reduction_enabled #main_arrow_right { + top: 21px; +} + +#building_main_academy .building_arrow, +#building_main_barracks .building_arrow, +#building_main_hide .building_arrow, +#building_main_market .building_arrow { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -185px; + width: 22px; + height: 13px; + left: 29px; + top: -13px; +} + +.build_cost_reduction_enabled #building_main_academy .building_arrow, +.build_cost_reduction_enabled #building_main_barracks .building_arrow, +.build_cost_reduction_enabled #building_main_hide .building_arrow, +.build_cost_reduction_enabled #building_main_market .building_arrow { + top: -14px; +} + +#building_main_docks .building_arrow, +#building_main_ironer .building_arrow, +#building_main_temple .building_arrow, +#building_main_wall .building_arrow { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -185px; + width: 22px; + height: 13px; + left: 125px; + top: -13px; +} + +.build_cost_reduction_enabled #building_main_docks .building_arrow, +.build_cost_reduction_enabled #building_main_ironer .building_arrow, +.build_cost_reduction_enabled #building_main_temple .building_arrow, +.build_cost_reduction_enabled #building_main_wall .building_arrow { + top: -14px; +} + +#building_main_library .building_arrow, +#building_main_lighthouse .building_arrow, +#building_main_oracle .building_arrow, +#building_main_statue .building_arrow, +#building_main_theater .building_arrow, +#building_main_thermal .building_arrow, +#building_main_tower .building_arrow, +#building_main_trade_office .building_arrow, +#special_group_1 .building_arrow, +#special_group_2 .building_arrow { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -185px; + width: 114px; + height: 13px; + left: 29px; + top: -13px; +} + +.build_cost_reduction_enabled #building_main_library .building_arrow, +.build_cost_reduction_enabled #building_main_lighthouse .building_arrow, +.build_cost_reduction_enabled #building_main_oracle .building_arrow, +.build_cost_reduction_enabled #building_main_statue .building_arrow, +.build_cost_reduction_enabled #building_main_theater .building_arrow, +.build_cost_reduction_enabled #building_main_thermal .building_arrow, +.build_cost_reduction_enabled #building_main_tower .building_arrow, +.build_cost_reduction_enabled #building_main_trade_office .building_arrow, +.build_cost_reduction_enabled #special_group_1 .building_arrow, +.build_cost_reduction_enabled #special_group_2 .building_arrow { + top: -14px; +} + +#main_tasks { + position: absolute; + top: 385px; + left: 20px; +} + +#main_tasks .image { + position: absolute; + height: 40px; + width: 40px; +} + +div.game_border.no_margin_right { + margin-right: 0!important; + margin: 3px 0 3px 3px; +} + +div.no_margin_left { + margin-left: 0!important; +} + +div.game_border.no_margin_left { + float: left; + margin: 3px 3px 3px 0; +} + +.main_tasks_image { + position: absolute; + width: 40px; + height: 40px; + top: 24px; + left: 10px; +} + +a.main_tasks_finish { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/button/button_gold.png) no-repeat; + width: 22px; + height: 23px; + left: 55px; + top: 18px; +} + +a.main_tasks_finish:hover { + background-position: 0 -23px; +} + +a.main_tasks_finish.disabled, +a.main_tasks_finish.disabled:hover { + background-position: 0 -46px; +} + +#techtree .main_hide_not_possible { + background-image: url(https://gpfr.innogamescdn.com/images/game/barracks/showhide.png); + background-position: 0 -46px; +} + +.building_queue_icon { + display: inline-block; + height: 30px; + line-height: 30px; + padding: 0 0 0 30px; + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 0; +} + +.hide_window_wrapper { + position: relative; + height: 508px; + padding: 10px; +} + +.hide_window_wrapper .hide_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/hide_94cfd20.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +#hide_espionage, +#hide_reports, +#hide_resources { + position: absolute; + width: 370px; + z-index: 1; +} + +#hide_espionage, +#hide_resources { + left: 20px; +} + +#hide_reports { + right: 20px; +} + +#hide_order_unit_big_image { + position: absolute; + left: 1px; + top: 1px; +} + +#hide_espionage #hide_order_box { + position: relative; + height: 94px; + width: 326px; + margin: 0 auto; + top: auto; +} + +#hide_order_box .portrait_box, +.espionage_order_box .portrait_box { + height: 94px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png); + width: 98px; + overflow: hidden; + z-index: 10; + position: absolute; + left: 0; +} + +#hide_order_box .spend-iron-box, +.espionage_order_box .spend-iron-box { + float: left; + width: 232px; + margin-left: 92px; +} + +#hide_order_box .spend-iron-box .top-border, +.espionage_order_box .spend-iron-box .top-border { + height: 4px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png) 0 -92px; +} + +#hide_order_box .spend-iron-box .content, +.espionage_order_box .spend-iron-box .content { + height: 84px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png) 0 -94px; +} + +#hide_order_box .spend-iron-box .content #building_hide_slider, +.espionage_order_box .spend-iron-box .content #building_hide_slider { + top: 30px; + left: 5px; + width: 160px; +} + +#hide_order_box .spend-iron-box .bottom-border, +.espionage_order_box .spend-iron-box .bottom-border { + height: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png) 0 -178px; +} + +#hide_order_box .right-border, +.espionage_order_box .right-border { + height: 94px; + background: url(https://gpfr.innogamescdn.com/images/game/border/expandable_portrait_box.png) -99px 0 no-repeat; + width: 10px; + z-index: 10; + position: absolute; + right: 0; +} + +#hide_espionage .storage_resbar { + margin: 15px auto 0; +} + +#hide_reports .game_list { + max-height: 322px; + overflow: auto; +} + +#hide_reports .game_list li img { + vertical-align: middle; +} + +#hide_reports .game_list li a.view_report { + display: block; + line-height: 12px; +} + +#hide_reports .game_list_footer { + height: 20px; +} + +#hide_order_count { + position: absolute; + left: 88px; + width: 236px; + height: 94px; +} + +#hide_order_dependencies { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/dependencies.png) no-repeat; + position: absolute; + left: 96px; + top: 9px; + width: 118px; + height: 65px; + display: none; + z-index: 2; + padding: 5px; +} + +#hide_order_max, +#hide_order_min { + position: absolute; + top: 5px; + text-align: center; + color: #f9e09d; + text-decoration: none; + line-height: 22px; +} + +#hide_order_min { + left: 10px; +} + +#hide_order_max { + right: 10px; +} + +#hide_order_confirm { + position: absolute; + top: 56px; + right: 70px; +} + +#hide_order_input { + position: absolute; + top: 56px; + left: 70px; + width: 70px; +} + +#hide_order_input input { + text-align: center; +} + +#hide_coins { + font-size: 18px; +} + +#hide_espionage { + text-align: left; +} + +#storage_ironicon { + position: absolute; + top: 0; + left: 0; + width: 30px; + height: 30px; + margin: 8px 0 0 8px; +} + +#storage_ironicon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -60px; +} + +#storage_iron { + background-position: 0 -36px; +} + +#farm_container .list_item_right { + text-align: right; +} + +#farm_container .game_list li { + clear: both; + height: 18px; +} + +#farm_container>div { + float: left; + width: 375px; +} + +#farm_container #farm_militia { + margin-left: 14px; +} + +#farm_container #farm_militia ul { + list-style-type: disc; + margin-left: 15px; +} + +.farm_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/farm_14de42b.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +#farm_town_wrapper { + float: right; + width: 525px; +} + +#fto_town_wrapper { + width: 272px; + float: left; +} + +#farm_town_options { + overflow-y: hidden; + overflow-x: hidden; + display: none; +} + +#fto_town_list { + min-height: 473px; + max-height: 473px; + overflow-y: auto; + overflow-x: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) 0 0 repeat; + cursor: pointer; +} + +#farm_town_list, +#farm_town_options { + float: right; + width: 100%; +} + +#farm_town_list a.checkbox, +#farm_town_options a.checkbox { + float: none; + display: inline-block; + margin: 0 4px 0 1px; + position: relative; + top: 2px; +} + +#fto_empty_wrapper { + min-height: 238px; + max-height: 238px; + overflow-y: auto; + overflow-x: hidden; +} + +#fto_empty_entry { + min-height: 227px; + max-height: 227px; +} + +#time_options_wrapper { + margin: auto; + width: 435px; + height: 45px; + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat 0 0; + padding: 2px 0 2px 30px; +} + +#farm_town_options a.checkbox { + margin: 0 2px 0 0; + top: 0; +} + +#time_options_wrapper .fp_loot_text { + margin-top: 2px; +} + +.fto_time_checkbox { + float: left; + width: 100px; + border: 1px solid #d0be97; + padding: 2px; + margin: 1px; +} + +#fto_town_list li.fto_island { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat; +} + +#fto_town_list li.fto_town { + background: 0 0; +} + +#fto_town_list li.fto_town.hidden { + display: list-item; +} + +#fto_town_list li.fto_town.active, +div.fto_time_checkbox.active { + background: #ffe09b; +} + +#fto_town_list .fto_resource_count .res_plenty, +#fto_town_list .fto_resource_count .res_rare { + float: left; +} + +#fto_town_list .fto_resource_count .res_plenty, +#fto_town_list .fto_resource_count .res_rare { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/resources_deposit.png); + width: 10px; + height: 10px; + position: absolute; + left: 12px; +} + +#fto_town_list .fto_resource_count .res_rare { + background-position: 0 -10px; +} + +.farm_list_empty, +.game_list.fto_farm_list { + min-height: 346px; + max-height: 346px; + overflow-y: hidden; + overflow-x: hidden; +} + +.fto_resource_count { + min-width: 50px; + width: 50px; + display: block; + float: left; + margin: 0 2px 0 0; + height: 16px; + text-align: right; + letter-spacing: -1px; + position: relative; +} + +.small.fto_resource_count { + line-height: 18px; +} + +.small.town_population { + line-height: 18px; +} + +.not_owned, +.owned.disabled { + opacity: .3; + background: #ccc; +} + +.fto_list_entry { + float: left; + height: 60px; + width: 253px; + border-right: 1px solid #d0be97; + padding: 0; + margin: 0; + display: block; + cursor: pointer; +} + +#fto_farm_claim_new_res { + display: inline-block; + font-weight: 700; + margin: 8px 5px; + float: left; +} + +#fto_farm_claim_new_res span.fto_resource_count { + margin: 0 6px; + letter-spacing: 0; + min-width: 60px; + width: 60px; +} + +.fto_farm_claim_pill, +.fto_farm_claim_res, +.fto_farm_claim_time { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_claim_icons.png); + background-repeat: no-repeat; + background-position: 3px 0; + height: 16px; + margin: 0 5px; + padding: 6px 0 6px 36px; + text-align: right; + width: 27px; + font-weight: 700; + display: inline-block; +} + +.fto_island_icon { + background-image: url(https://gpfr.innogamescdn.com/images/game/icons/island.png); + background-repeat: no-repeat; + height: 16px; + display: block; + float: left; + text-indent: 20px; + color: #804000; +} + +.fto_farm_claim_res { + background-position: 3px 0; +} + +.fto_farm_claim_time { + background-position: 0 -28px; +} + +.fto_farm_claim_pill { + background-position: 0 -56px; + padding: 6px 0 6px 18px; +} + +.fp_property .you_pay { + position: relative; +} + +.fp_property .you_pay:after { + content: ""; + position: absolute; + left: -3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 0; + width: 12px; + height: 15px; +} + +.fp_property .you_get { + position: relative; +} + +.fp_property .you_get:after { + content: ""; + position: absolute; + right: -3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -15px; + width: 12px; + height: 15px; +} + +.popup .fp_property .you_pay { + margin-left: 3px; +} + +#farm_town_wrapper.bpv .ribbon_locked { + bottom: 15px; +} + +.ribbon_wrapper { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + text-align: center; + pointer-events: none; +} + +.ribbon_wrapper .ribbon_locked { + position: absolute; + display: block; + left: 5px; + bottom: 55px; +} + +.ribbon_wrapper .ribbon_locked .ribbon_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 -114px; + width: 139px; + height: 50px; + float: left; +} + +.ribbon_wrapper .ribbon_locked .ribbon_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 -64px; + width: 139px; + height: 50px; + float: left; +} + +.ribbon_wrapper .ribbon_locked .ribbon_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_green_middle_814ed33.png) no-repeat 0 0; + width: 1px; + background-repeat: repeat-x; + width: 230px; + float: left; + height: 50px; + line-height: 50px; +} + +.ribbon_wrapper .unlock_text { + text-align: center; + color: #fff; + top: 4px; + position: absolute; + width: 100%; + line-height: 30px; +} + +.ribbon_wrapper .unlock_text .unlock_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; + display: inline-block; + vertical-align: top; +} + +.ribbon_wrapper .unlock_text .text, +.ribbon_wrapper .unlock_text .unlock_time { + display: inline-block; + vertical-align: top; +} + +.ribbon_wrapper.hidden { + display: none; +} + +.checkbox_wrapper { + float: right; +} + +.checkbox_wrapper .checkbox { + margin: 0; +} + +.checkbox_wrapper span { + max-width: 100px; + word-break: normal; + display: inline-block; + vertical-align: middle; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.town_checkbox { + float: right; + margin: 0 2px; +} + +.farm_list_empty { + line-height: 278px; + text-align: center; + font-size: 18px; + font-weight: 600; +} + +#farm_town_options li.even { + min-height: 30px; + line-height: 30px; +} + +#farm_town_options li.even>* { + line-height: normal; +} + +#fto_claim_button { + position: absolute; + right: 70px; + top: 7px; +} + +.bpv_villages.fto_farm_claim_res { + right: 160px; + position: absolute; +} + +#total_resources_claimed { + font-weight: 700; + width: 210px; + vertical-align: middle; + display: inline-block; + margin-left: 10px; +} + +.empty { + position: absolute; + z-index: 5; + left: 0; + top: 0; + width: 770px; + height: 545px; +} + +.empty[usemap] { + outline: 0; +} + +.units { + position: relative; + width: 180px; + left: 600px; + top: 10px; +} + +#casted_powers, +#conqueror_units, +#units_land, +#units_sea { + float: left; + width: 140px; + margin-left: 10px; +} + +.tab_content .index_unit { + float: left; +} + +.index_unit { + position: relative; + width: 40px; + height: 40px; + border-top: 1px solid #c8a05c; + border-right: 1px solid #7f653a; + border-bottom: 1px solid #514023; + border-left: 1px solid #af8b4e; + margin: 2px; + background-repeat: no-repeat; +} + +.index_unit.world_wonders { + width: 215px; + height: 170px; +} + +.index_unit_small { + width: 25px; + height: 25px; +} + +#ajax_loader_anim { + position: relative; + z-index: 11; + background-image: url(https://gpfr.innogamescdn.com/images/game/ajax-loader_2.76.gif); + width: 58px; + height: 58px; + left: 50%; + top: 50%; + margin: -29px 0 0 -29px; +} + +#ajax_loader { + position: absolute; + left: 550px; + top: 200px; + z-index: 10; + background-image: url(https://gpfr.innogamescdn.com/images/game/ajax-loader_shadow.png); + width: 108px; + height: 108px; + margin-left: -54px; + margin-top: -54px; +} + +#window_ajax_loader { + z-index: 1000; +} + +.loading_icon_wrapper { + position: absolute; + width: 108px; + height: 108px; + left: 50%; + top: 50%; + z-index: 10; + background-image: url(https://gpfr.innogamescdn.com/images/game/ajax-loader_shadow.png); + margin-left: -54px; + margin-top: -54px; +} + +.loading_icon_wrapper .loading_icon { + position: absolute; + width: 58px; + height: 58px; + background: url(https://gpfr.innogamescdn.com/images/game/ajax-loader_2.76.gif) no-repeat; + left: 50%; + top: 50%; + margin-left: -29px; + margin-top: -29px; +} + +#town_link_clicked_menu { + position: absolute; + z-index: 14; +} + +#town_index_controls { + border: 1px solid red; + width: 200px; + height: 20px; + position: absolute; + z-index: 15; + bottom: 40px; + right: 0; +} + +#town_index_controls a { + width: 40px; + background: #ccc; + float: left; +} + +#info_tab_content ul#last_attacks li { + line-height: 15px; +} + +#info_tab_content ul#last_attacks li img { + vertical-align: middle; +} + +#info_tab_content a.color_table, +#info_tab_content a.write_message { + float: right; +} + +.info_tab_flag { + padding: 4px; +} + +.sea_coords, +.uninhabited_icon { + width: 16px; + height: 16px; + display: inline-block; + vertical-align: middle; + margin: 0 1px; +} + +.sea_coords { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -417px 0 no-repeat; +} + +.uninhabited_icon { + background: url(https://gpfr.innogamescdn.com/images/game/map/towns_sprite_2.19.png) -384px -190px no-repeat; +} + +div.powers_for_god { + position: relative; + left: 70px; + top: 10px; + width: 200px; +} + +div.powers_for_god a { + background-position: 0 -45px; + background-repeat: no-repeat; + display: inline-block; + width: 45px; + height: 45px; +} + +div.powers_for_god a.disabled { + cursor: default; +} + +#towninfo_description { + position: absolute; + width: 180px; + left: 270px; + top: 0; + text-align: center; + min-height: 100%; + background: #ffe39f; +} + +#towninfo_description .power_icon86x86 { + display: block; +} + +#towninfo_description div.power_info { + display: none; +} + +#towninfo_description div.power_info.first { + display: block; +} + +.towninfo_power_image { + left: 47px; + width: 86px; + height: 86px; + position: relative; + background-position: 0 -172px; +} + +#farmtowninfo_towninfo { + float: left; + width: 320px; + margin-left: 20px; +} + +#towninfo_towninfo { + margin: 0 0 0 135px; + position: relative; + top: -17px; +} + +a.farm_tut_button { + margin: 0 0 0 5px; +} + +#towninfo_towninfo div.jmp_2_town { + float: right; +} + +#towninfo_towninfo .game_list .list_item_right { + width: 48px; +} + +#towninfo_towninfo .game_list .list_item_right.town { + width: 170px; +} + +#casting_power { + display: none; +} + +.towninfo_gods .god_mini { + position: relative; +} + +#power_casted { + display: none; + line-height: 24px; + position: absolute; + left: 285px; + width: 250px; + top: 15px; +} + +a.invite_to_ally { + float: right; +} + +a.write_message { + float: right; +} + +.capacity { + color: #fff; + z-index: 2; + text-align: center; + width: 100%; + display: block; +} + +.town_info_input { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/unit_input.png) no-repeat; + border: 0; + right: 3px; + height: 18px; + width: 33px; + text-align: center; + padding: 3px 10px 3px 3px; +} + +#res_container .spinner_horizontal { + position: relative; + border: 0; + width: 80px; + text-align: center; +} + +.attack_support_window .town_info_input { + padding-right: 3px; + width: 40px; +} + +.attack_support_window .fight_bonus.morale { + float: left; + margin-top: 6px; +} + +.unit_input { + bottom: 0; + position: absolute; +} + +.farmtown_border { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_border.png); + width: 90px; + height: 110px; +} + +.farmtown_border_level { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_border_level.jpg); +} + +#farmtown_trade { + left: 200px; +} + +#farm_village_trade { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_trade.png) no-repeat; + margin: 3px; + height: 84px; + width: 84px; +} + +#farm_village_trade #demand { + left: 6px; + position: absolute; + top: 20px; +} + +#farm_village_trade #offer { + bottom: 33px; + position: absolute; + right: 6px; +} + +#farmtown_loot { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_border_loot.png); + left: 0; + top: 254px; + position: absolute; + width: 90px; + height: 24px; +} + +.farm_village_mood { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_mood.png); + height: 84px; + width: 84px; + margin: 3px; +} + +.farm_village_strength { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_strength.png); + height: 84px; + width: 84px; + margin: 3px; +} + +.farm_village_strength.size1 { + background-position: 0 0; +} + +.farm_village_strength.size2 { + background-position: 0 -84px; +} + +.farm_village_strength.size3 { + background-position: 0 -168px; +} + +.farm_village_strength.size4 { + background-position: 0 -252px; +} + +.farm_bar_container { + position: absolute; + left: 3px; + top: 89px; + text-align: center; + color: #fff; +} + +.farm_bar { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_bar.png); + height: 18px; + position: absolute; +} + +.farm_bar_level { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_bar_level.png); + height: 18px; + left: 4px; +} + +.farm_bar_loot { + top: 3px; + line-height: 18px; +} + +#farmtown_container { + position: absolute; + left: 175px; +} + +#farm_popup { + list-style-type: disc; + margin-left: 15px; +} + +#found_tab p { + margin: 0; +} + +#found_tab #found_alert { + color: #900; +} + +#units p#found_alert { + color: #900; + margin: 0; + padding-left: 5px; +} + +.farm_claim_bg { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/claim_bg.jpg); + width: 442px; + height: 278px; + top: 16px; + left: 110px; +} + +.farm_claim_pillage_bg { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/claim_pillage_bg.jpg); +} + +.farm_claim_box { + position: absolute; + width: 420px; + height: 110px; + top: 150px; + left: 19px; +} + +.farm_claim_box_booty { + top: 34px; +} + +.farm_claim { + position: relative; + float: left; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_claim.png); + width: 92px; + height: 120px; + margin-right: 13px; + cursor: pointer; +} + +.farm_claim_troops { + position: relative; + float: left; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_troops.png); + width: 92px; + height: 120px; + margin-right: 13px; +} + +.farm_claim_pillage { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_claim_pillage.png); +} + +.farm_claim_cell { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_claim_icons.png); + height: 16px; + width: 62px; + left: 3px; + color: #fff; + font-weight: 700; + background-repeat: no-repeat; + background-position: 3px 0; + padding: 6px 3px 6px 21px; + text-align: center; +} + +.farm_claim_res { + background-position: 3px 0; + top: 6px; +} + +.bpv_villages.fto_farm_claim_res { + margin-right: 70px; +} + +.farm_claim_time { + background-position: 0 -28px; + top: 37px; +} + +.farm_claim_troops .farm_claim_time { + background-position: 0 -28px; + top: 46px; +} + +.farm_claim_pill { + background-position: 0 -56px; + padding-left: 24px; + width: 59px; + top: 68px; +} + +.farm_claim_troops .farm_claim_pill { + top: 70px; +} + +.farm_claim_unit { + position: absolute; + left: 4px; + top: 4px; + width: 40px; + height: 28px; + background-repeat: no-repeat; + padding: 6px 0 6px 44px; + font-size: 20px; + text-align: center; + color: #fff; +} + +.farm_claim_unit .unit_icon40x40 { + top: 0; + left: 0; + position: absolute; +} + +.farm_claim_button { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/claim_button.png); + left: 3px; + top: 99px; + width: 86px; + height: 18px; + color: #fc6!important; + text-align: center; +} + +.farm_claim_button:hover { + background-position: 0 -18px; +} + +.farm_claim_button_inactive, +.farm_claim_button_inactive:hover { + background-position: 0 -36px; + color: #ccb!important; +} + +.farm_next_claim { + position: absolute; + width: 442px; + height: 30px; + top: 10px; + left: 0; + text-align: center; +} + +.farm_attack_troops { + position: absolute; + width: 590px; + height: 134px; + top: 16px; + left: 10px; +} + +.farm_attack_troops div.duration_container { + float: none; +} + +.farm_attack_bg { + width: 595px; + height: 278px; + top: 16px; + left: 6px; +} + +.farm_attack_flag { + position: absolute; + width: 40px; + height: 50px; + top: 0; + left: 0; +} + +.farm_attack_flag_layer { + position: absolute; + width: 40px; + height: 50px; + background-image: url(https://gpfr.innogamescdn.com/images/game/flags/small/layer_top.png); +} + +.farm_attack_flag_color { + position: absolute; + top: 8px; + left: 4px; + width: 32px; + height: 34px; + background-color: #fb0; +} + +.farm_attack_title { + position: absolute; + height: 24px; + left: 50px; +} + +.farm_attack_bar_bg { + position: absolute; + width: 206px; + height: 24px; + left: 205px; + top: 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_attack_bar_bg.jpg); +} + +.farm_attack_bar { + position: absolute; + height: 18px; + left: 3px; + top: 3px; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_attack_bar.png); + color: #fec; + font-weight: 700; + text-align: center; +} + +.farm_attack_bar_number { + position: absolute; + height: 18px; + width: 200px; + left: 3px; + top: 3px; + color: #fec; + font-weight: 700; + text-align: center; +} + +.farm_attack_troops_troops { + position: absolute; + width: 525px; + height: 86px; + top: 24px; + left: 50px; +} + +.farm_attack_farm { + position: absolute; + width: 520px; + height: 134px; + top: 150px; + left: 10px; +} + +.farm_attack_farm_flag { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_banner_small.png); + width: 40px; + height: 50px; + top: 0; + left: 0; +} + +.farm_attack_farm_troops { + position: absolute; + width: 360px; + height: 44px; + top: 34px; + left: 50px; +} + +.farm_attack_hint { + position: absolute; + width: 470px; + height: 36px; + left: 50px; + top: 85px; +} + +.farm_standard_bg { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/build_bg.jpg); + width: 442px; + height: 278px; + top: 16px; + left: 110px; +} + +.farm_build_banner { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_banner.png); + width: 89px; + height: 110px; + top: 16px; + left: 10px; +} + +.farm_build_text { + position: absolute; + width: 320px; + height: 110px; + top: 16px; + left: 110px; +} + +.farm_build_bar_text { + position: absolute; + height: 24px; + width: 410px; + top: 130px; + left: 16px; +} + +.farm_build_bar_container { + position: absolute; + top: 150px; + left: 16px; + width: 410px; +} + +.farm_build_bar { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_build_bar.jpg); + width: 410px; + height: 32px; +} + +.farm_build_bar_progress { + position: absolute; + height: 26px; + top: 3px; + left: 3px; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_build_bar_progress.jpg); +} + +.farm_build_bar_amount { + position: absolute; + width: 410px; + height: 26px; + top: 3px; + left: 3px; + color: #fec; + font-weight: 700; + text-align: center; + line-height: 24px; +} + +.farm_build_res { + position: absolute; + width: 410px; + height: 64px; + top: 185px; + left: 16px; +} + +.farm_build_res .spinner_horizontal { + width: 80px; +} + +.farm_build_res .unit_container.trade_resource { + width: 75px; +} + +.farm_build_res_button { + position: absolute; + right: 5px; + top: 34px; +} + +.farm_trade_capacity { + position: absolute; + text-align: center; + font-weight: 700; + width: 438px; + height: 24px; + top: 16px; +} + +div.farm_trade_slider { + position: absolute; + width: 438px; + top: 30px; +} + +div.farm_trade_slider .you_pay_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -245px; + width: 29px; + height: 39px; + position: absolute; + left: -10px; + top: 2px; +} + +div.farm_trade_slider .you_get_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -284px; + width: 29px; + height: 39px; + position: absolute; + right: -15px; + top: 2px; +} + +.unit_container.trade_resource { + float: left; + margin: 5px 4px 20px 5px; + height: 56px; + text-align: center; +} + +.trade_resource img { + clear: both; + display: block; + margin: 0 auto; + position: relative; +} + +div.trade_slider_box { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/trade_slide_2.94.jpg) no-repeat; + position: relative; + height: 200px; + width: 374px; + top: 8px; + margin: 0 auto; +} + +div.trade_slider_box a.button { + bottom: 9px; + left: 129px; + position: absolute; +} + +div.trade_slider_box .btn_trade { + bottom: 9px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + position: absolute; + min-width: 120px; +} + +div.trade_slider_dependencies { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/dependencies.png) no-repeat; + position: absolute; + left: 96px; + top: 9px; + width: 118px; + height: 65px; + display: none; + z-index: 2; + padding: 5px; +} + +a.trade_slider_max, +a.trade_slider_min { + top: 10px; + width: 52px; + height: 23px; + text-align: center; + color: #f9e09d; + text-decoration: none; + line-height: 22px; + display: block; + position: absolute; + cursor: pointer; +} + +a.trade_slider_max:active, +a.trade_slider_max:link, +a.trade_slider_max:visited, +a.trade_slider_min:active, +a.trade_slider_min:link, +a.trade_slider_min:visited { + color: #f9e09d; +} + +.trade_ratio { + color: #ffcc5e; + font-family: Georgia,Times,serif; + font-size: 20px; + position: absolute; + top: 5px; + left: 75px; +} + +.trade_ratio.trade_ratio_back { + color: #000; + top: 7px; +} + +a.trade_slider_min { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_passive.png) no-repeat; + right: 5px; +} + +a.trade_slider_max { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_passive.png) no-repeat; + left: 5px; +} + +a.trade_slider_max:hover, +a.trade_slider_min:hover { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_active.png) no-repeat; +} + +input.trade_slider_input, +input.trade_slider_output { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/input.png) no-repeat; + border: 0; + height: 17px; + width: 52px; + text-align: center; + padding: 3px; + position: absolute; + top: 105px; +} + +input.trade_slider_input { + left: 96px; +} + +input.trade_slider_output { + right: 93px; +} + +div.center_container, +div.left_container, +div.right_container { + height: 60px; + position: absolute; +} + +div.left_container, +div.right_container { + top: 115px; + width: 85px; + float: left; +} + +div.left_container { + left: 0; +} + +div.right_container { + right: 0; +} + +div.center_container { + left: 85px; + top: 52px; + width: 200px; +} + +.demand_header, +.offer_header { + position: absolute; + top: 21px; + text-shadow: 3px 3px 5px rgba(0,0,0,.75); + font-weight: 700; + color: #ffcc5e; +} + +.demand_header { + right: 228px; +} + +.offer_header { + left: 228px; +} + +form.trade_slider_count a.left { + position: absolute; + right: 5px; + top: 34px; +} + +form.trade_slider_count a.right { + position: absolute; + left: 5px; + top: 34px; +} + +div.trade_slider_slider { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/trade_slider_bar.png) no-repeat scroll 50% 50%; + width: 200px; + top: 90px; + left: 2px; + position: absolute; +} + +div.trade_slider_slider .ui-slider-handle { + margin-left: -8px; + margin-top: 1px; + width: 18px; + height: 18px; + background: transparent url(https://gpfr.innogamescdn.com/images/game/barracks/slider_point.png) repeat-x scroll 50% 50%; +} + +div.center_container .demand, +div.center_container .offer { + position: absolute; + top: 5px; +} + +div.center_container .offer { + left: 151px; +} + +div.center_container .demand { + left: 24px; +} + +a.slide_ffwd { + background: transparent url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png) no-repeat; + height: 19px; + position: absolute; + width: 18px; + cursor: pointer; +} + +a.trade_slider_ffwd_up { + background-position: -108px 0; + left: 26px; + top: 34px; + position: absolute; +} + +a.trade_slider_ffwd_down { + background-position: -90px 0; + right: 26px; + top: 34px; + position: absolute; +} + +a.trade_slider_ffwd_down:hover { + background-position: -90px -19px; +} + +a.trade_slider_ffwd_up:hover { + background-position: -108px -19px; +} + +#arrival_time, +#duration_error, +#nightbonus, +#way_duration, +.arrival_time, +.duration_error, +.fast_boats_needed, +.map_duration, +.nightbonus, +.slow_boats_needed, +.way_duration { + background: transparent url(https://gpfr.innogamescdn.com/images/game/towninfo/arrival.png) no-repeat 0 0; + display: block; + padding: 6px 3px 6px 35px; + float: left; + max-width: 260px; + position: relative; + overflow: visible; +} + +.portal_duration { + display: none; + float: left; + max-width: 260px; + position: relative; + padding: 6px 3px 6px; +} + +.portal_duration .text { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/portal.png) no-repeat 0 0; + width: 30px; + height: 30px; + color: #0048e1; + font-weight: 600; + padding: 6px 3px 6px 30px; +} + +.farm_attack_troops_troops .fast_boats_needed, +.farm_attack_troops_troops .slow_boats_needed { + display: none; +} + +.slow_boats_needed { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -205px -150px no-repeat; + clear: left; +} + +.fast_boats_needed { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -205px -179px no-repeat; +} + +#nightbonus, +span.nightbonus { + background: transparent url(https://gpfr.innogamescdn.com/images/game/report/fight_report_icons.png) no-repeat -60px 0; + padding: 3px 0 3px 21px; + margin-left: 11px; + display: none; +} + +span.max_booty { + display: block; + padding: 0 0 0 26px; + margin: 8px 0 4px 12px; + float: left; + max-width: 260px; +} + +.attack_support_window span.max_booty { + width: auto; +} + +#info_tab_content .span.morale { + float: left; + margin-left: 11px; + line-height: 20px; +} + +#way_duration, +span.way_duration { + background: transparent url(https://gpfr.innogamescdn.com/images/game/towninfo/traveltime.png) no-repeat 0 0; + padding-left: 25px; +} + +#duration_error, +div.duration_error, +span.map_duration { + background: transparent url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -205px -150px; +} + +#duration_container, +div.duration_container { + float: left; +} + +#trade_duration_container { + position: absolute; + top: 240px; + left: 80px; +} + +#trade_duration_container #arrival_time, +#trade_duration_container #way_duration { + float: left; +} + +#trade_duration_container #duration_container { + width: auto; +} + +form#trade { + float: left; +} + +div.duration_error_container { + display: none; + width: 300px; +} + +div.duration_error { + width: 32px; + height: 32px; + padding: 0 0; +} + +div.duration_error_text { + width: 200px; + float: left; +} + +.progressbar { + margin: 0 0 0 54px; + height: 25px; + width: 466px; + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/progressbar_bg.png) repeat-x; +} + +.progressbar .left { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/progressbar_corners.png) no-repeat bottom left; +} + +.progressbar .right { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/progressbar_corners.png) no-repeat top right; + height: 25px; +} + +div.progressbar div.progress { + height: 18px; + margin: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/progressbar.jpg) no-repeat; + position: relative; + top: 3px; +} + +div.progressbar div.overloaded_capacity { + height: 18px; + margin: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/progressbar_red.jpg) no-repeat; + position: relative; + top: 3px; +} + +#town_info_tab_attack a { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack.png); + height: 50px; + width: 50px; + margin: 4px; + text-align: left; +} + +#town_info_tab_support a { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/support.png); + height: 50px; + width: 50px; + margin: 4px; + text-align: left; +} + +#town_info_tabs #town_info_tab_attack a, +#town_info_tabs #town_info_tab_support a { + height: 46px; + width: 46px; + padding-top: 0; + padding-left: 0; + text-align: left; +} + +.command_info_container { + height: 360px; + overflow: auto; + position: relative; +} + +div.command_info .report_town_bg { + margin: 0; +} + +div.command_info .report_town_bg .island_bg .flag.flag_colonization { + background-image: url(https://gpfr.innogamescdn.com/images/game/flags/map/flag_colonization.png); +} + +div.command_info .button { + position: absolute; + right: 0; + bottom: 0; +} + +div.command_info fieldset { + border-style: groove none none; + border-color: #fc6; + border-width: 2px; + padding: 3px 6px; +} + +div.command_info .attacker { + position: relative; + z-index: 2; + float: left; +} + +div.command_info .defender { + position: relative; + z-index: 2; + float: right; +} + +div.command_info .attacker ul, +div.command_info .defender ul { + width: 110px; + word-wrap: break-word; +} + +div.command_info .attacker .report_town_bg, +div.command_info .attacker ul { + float: left; + text-align: left; + margin: 5px; +} + +div.command_info .defender .report_town_bg, +div.command_info .defender ul { + float: right; + text-align: right; + margin: 5px; +} + +div.command_arrow { + text-align: center; + position: absolute; + z-index: 1; + left: 0; + right: 0; + padding: 15px 0 0; +} + +.command_info_time legend { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) center left no-repeat; + line-height: 30px; + padding: 0 0 0 30px; +} + +.command_info_res legend { + background: url(https://gpfr.innogamescdn.com/images/game/res/storage.png) center left no-repeat; + line-height: 30px; + padding: 0 0 0 30px; +} + +.command_info_casted_powers legend { + background: url(https://gpfr.innogamescdn.com/images/game/res/favor.png) center left no-repeat; + line-height: 30px; + padding: 0 0 0 30px; +} + +.command_info_casted_powers div.index_town_powers { + float: left; + margin-right: 5px; +} + +.command_info_units legend { + background: url(https://gpfr.innogamescdn.com/images/game/res/unit.png) center left no-repeat; + line-height: 30px; + padding: 0 0 0 30px; +} + +.index_town_powers { + width: 45px; + height: 45px; + background-position: 0 -90px; +} + +#command_booty { + height: 74px; +} + +#command_booty .res_background { + float: left; + margin-right: 10px; +} + +#farm_trade_bg { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/market_bg.jpg); + width: 442px; + height: 278px; + top: 16px; + left: 110px; +} + +.farm_requirement_box { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_requirement.png); + width: 280px; + height: 56px; + left: 71px; + top: 180px; + padding: 10px; +} + +div.island_info_towns { + float: left; +} + +div.island_info_left { + width: 395px; +} + +div.island_info_right { + width: 285px; +} + +div.island_info_towns+div.island_info_towns { + float: right; +} + +div.island_info_towns ul { + height: 300px; + overflow-x: hidden; + overflow-y: auto; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat; +} + +div.island_info_towns ul#island_info_towns_left_sorted_by_name, +div.island_info_towns ul#island_info_towns_left_sorted_by_player, +div.island_info_towns ul#island_info_towns_left_sorted_by_score { + height: 270px; +} + +div.island_info_towns .player_name { + text-align: right; +} + +.island_info { + margin: 0 0 10px; +} + +.island_info .islandinfo { + position: relative; + float: left; +} + +.islandinfo_coords, +.islandinfo_free { + margin: 0 0 0 60px; + line-height: 20px; +} + +.farm_town_status_0, +.farm_town_status_1, +.farm_town_status_2 { + display: inline-block; + width: 16px; + height: 16px; + margin: 0 1px 3px; + vertical-align: middle; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png); + background-repeat: no-repeat; +} + +.farm_town_status_0 { + background-position: -401px -32px; +} + +.farm_town_status_1 { + background-position: -417px -32px; +} + +.farm_town_status_2 { + background-position: -417px -16px; +} + +.bpv_villages.farm_town_status_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -913px -484px; + width: 16px; + height: 16px; +} + +.bpv_villages.farm_town_status_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -484px; + width: 16px; + height: 16px; +} + +#island_bbcode_link { + display: block; + margin: 0 5px 0 5px; + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -405px -5px; + width: 22px; + height: 23px; +} + +#island_bbcode_id { + display: none; +} + +#town_bbcode_link { + display: block; + margin: -2px 0 0 5px; + float: right; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -295px -5px; + width: 22px; + height: 23px; +} + +#town_bbcode_id { + display: none; + width: 130px; + margin-top: -2px; +} + +div.island_info h4 { + float: left; +} + +#island_towns_controls { + height: 26px; + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat 0 0; + border: 2px ridge #e8a52b; +} + +#island_towns_controls .grepo_input { + top: 2px; + left: 3px; + position: relative; +} + +.worlds_wonders_on_island { + width: 350px; + height: 150px; + position: absolute; + top: 0; + right: 0; + overflow: visible; +} + +.worlds_wonders_on_island .info { + float: right; + word-spacing: nowrap; + background-repeat: no-repeat; + background-position: 0 5px; + overflow: visible; +} + +.worlds_wonders_on_island .icon { + float: left; + width: 92px; + height: 92px; + margin-left: -92px; + margin-top: -10px; +} + +#link_to_alliance_profile { + background: url(https://gpfr.innogamescdn.com/images/game/icons/ally.png) no-repeat 0 0; + height: 16px; + padding-left: 16px; + cursor: pointer; +} + +div.island_info_wrapper .captain_commercial { + float: left; + left: -50%; +} + +div.island_info_wrapper div.center1 { + position: absolute; + top: 420px; + left: 0; + right: 0; + overflow: hidden; +} + +div.island_info_wrapper div.center2 { + position: relative; + left: 50%; + float: left; +} + +.ac_results { + padding: 0; + border: 1px solid #000; + box-shadow: 2px 2px 5px rgba(0,0,0,.7); + border-top: none; + margin-top: -2px; + background-color: #fff; + overflow: hidden; + z-index: 99999; +} + +.ac_results ul { + width: 100%; + list-style-position: outside; + list-style: none; + padding: 0; + margin: 0; +} + +.ac_results li { + margin: 0; + padding: 2px 5px; + cursor: default; + display: block; + font: menu; + font-size: 12px; + line-height: 16px; + overflow: hidden; +} + +.ac_loading { + background: #fff url(https://gpfr.innogamescdn.com/images/game/indicator.gif) right center no-repeat; +} + +.ac_odd { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat; +} + +.ac_even { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat; +} + +.ac_even, +.ac_odd { + border-bottom: 1px solid #d0be97; +} + +.ac_over { + background-color: #f5d590; + background-image: none; +} + +#map_wrapper { + position: relative; + width: 100%; + height: 100%; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/common/water_base_bright.png) repeat #123d70; + min-height: 502px; +} + +#map { + width: 100%; + height: 100%; + overflow: hidden; + cursor: move; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} + +#map .res_available { + position: absolute; + bottom: 0; + left: 25px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -274px -70px; + width: 25px; + height: 13px; +} + +#map .res_available.not { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -278px -57px; + width: 25px; + height: 12px; + bottom: -11px; + left: 0; +} + +#map span.res_bar { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -70px; + width: 26px; + height: 16px; + bottom: -1px; + left: 13px; + z-index: 1; +} + +#map span.res_bar_inner { + position: absolute; + left: 0; + top: 17px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -86px; + width: 32px; + height: 2px; +} + +#toggle_ship_selection { + position: absolute; + right: 18px; + bottom: 10px; +} + +#jump_to_position { + padding: 8px; +} + +#map_color_table { + position: absolute; + left: 130px; + top: 30px; + width: 520px; + height: 404px; + z-index: 10; +} + +#map_color_table_main { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/new_window/bg.png) repeat; + height: 360px; + width: 476px; + margin: 12px; + padding: 10px; + left: 0; +} + +#custom_map_color_background { + margin: 5px; + padding: 5px; + left: 0; + background: transparent url(https://gpfr.innogamescdn.com/images/game/towninfo/content_bg.jpg) no-repeat; + background-position: 0; +} + +#custom_map_color_wrapper { + height: 281px; + margin-top: 4px; + width: 462px; + overflow-y: auto; + overflow-x: hidden; + padding: 5px; +} + +#custom_map_color_wrapper .highlight_color_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px -23px; + width: 12px; + height: 13px; + display: inline-block; + float: left; + cursor: pointer; + margin-top: 1px; +} + +#custom_map_color_wrapper .highlight_color_btn.not_changeable { + cursor: default; + background: 0 0; +} + +#custom_map_color_wrapper .highlight_color_btn .button_brown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +#custom_map_color_wrapper .highlight_color_btn .button_brown_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +#custom_map_color_wrapper .highlight_color_btn .button_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -50px; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .button_frame_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px -23px; + width: 12px; + height: 13px; +} + +#custom_map_color_wrapper .highlight_color_btn .minus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -50px; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .minus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -50px; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .minus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px 0; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .minus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -73px; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -73px; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .plus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -73px; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .plus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .plus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -73px; + width: 22px; + height: 23px; +} + +#custom_map_color_wrapper .highlight_color_btn .btn_color { + width: 8px; + height: 9px; + position: relative; + top: 2px; + left: 2px; +} + +#alliance_box, +#pact_box, +#player_box { + float: left; + width: 230px; + overflow: hidden; +} + +#others_box { + float: left; + width: 462px; +} + +#others_box li { + float: left; + margin-right: 10px; +} + +.color_boxes h4 { + margin-bottom: 10px; +} + +.color_boxes li { + margin-bottom: 5px; +} + +.custom_color_element { + max-width: 115px; + display: inline-block; + padding-left: 5px; +} + +.custom_color_flag { + position: relative!important; + z-index: 0!important; + float: left; + margin: 3px; +} + +#map_color_table_main .cancel { + float: right; +} + +.compass_circle { + position: absolute; + z-index: 2; + top: 0; + left: 0; + width: 100px; + height: 100px; + background: url(https://gpfr.innogamescdn.com/images/game/map/circle.png) no-repeat center; + opacity: .5; + pointer-events: none; +} + +.compass_circle.ie { + width: 140px; + height: 140px; +} + +.compass_point { + position: absolute; + height: 24px; + width: 32px; + background: url(https://gpfr.innogamescdn.com/images/game/map/direction.png) no-repeat right; + z-index: 1; +} + +.compass_point_wrapper { + position: relative; +} + +#map_duration_calculator_units { + height: 25px; + position: absolute; +} + +#map_duration_calculator_units .unit { + width: 25px; + height: 25px; + margin: 0; + padding: 0; +} + +#map_duration_calculator_units .unit_container { + width: 27px; + height: 27px; +} + +#map_duration_calculator_units .unit.selected { + border: 1px solid red; +} + +#map_mover { + position: absolute; + top: 0; + left: 0; + z-index: 3; + width: 100%; + height: 100%; + cursor: move; +} + +.map_move_container { + position: absolute; + top: 0; + left: 0; + z-index: 1; + -webkit-backface-visibility: hidden; + -webkit-perspective: 1000; +} + +#map_container { + position: relative; +} + +#activetown { + position: absolute; + z-index: -1; + width: 77px; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -112px -150px; +} + +#focussedtown { + position: absolute; + z-index: 10000; + width: 36px; + height: 33px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -285px 0; +} + +#focussed_island_quest { + position: absolute; + z-index: 10000; + width: 36px; + height: 33px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -285px 0; +} + +.tile { + width: 256px; + height: 128px; + position: absolute; + background: center no-repeat; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} + +.tile.islandtile, +.tile.templetile { + background-position: 0 0; + background-repeat: no-repeat; +} + +.tile.islandtile { + z-index: 50; +} + +.tile.templetile { + z-index: 60; +} + +#map_towns .tile, +.town_icon { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_default_391c30b.png); + background-repeat: no-repeat; + width: 69px; + height: 46px; +} + +#map_towns .tile.ten_anniversary, +.town_icon.ten_anniversary { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_10th_anniversary_649f083.png); + background-repeat: no-repeat; +} + +#map_towns .tile.world_wonders, +.town_icon.world_wonders { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_world_wonder_a1b8d99.png); + background-repeat: no-repeat; +} + +#map_towns .tile.domination, +.town_icon.domination { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_domination_8371008.png); + background-repeat: no-repeat; +} + +#map_towns .tile.olympus, +.town_icon.olympus { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_olympus_2e6ed65.png); + background-repeat: no-repeat; +} + +#map_towns .tile.fleet_port, +.town_icon.fleet_port { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_fleet_port_b7c9775.png); + background-repeat: no-repeat; +} + +#map_towns .tile.found, +.town_icon.found { + -webkit-transform: translateX(10px); + -ms-transform: translateX(10px); + -o-transform: translateX(10px); + transform: translateX(10px); + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat 0 0; + width: 33px; + height: 24px; +} + +.flagpole { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -66px -28px; + width: 14px; + height: 23px; + position: absolute; + z-index: -1; +} + +.flagpole.ghost_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -20px -24px; + width: 19px; + height: 28px; + top: -3px; + left: -2px; +} + +.flagpole.farm_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -66px -28px; + width: 14px; + height: 23px; + top: -3px; + left: -2px; +} + +#map.night #map_towns .tile, +#map.night .town_icon { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_default_night_943074e.png); + background-repeat: no-repeat; +} + +#map.night #map_towns .tile.ten_anniversary, +#map.night .town_icon.ten_anniversary { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_10th_anniversary_night_566e190.png); + background-repeat: no-repeat; +} + +#map.night #map_towns .tile.world_wonders, +#map.night .town_icon.world_wonders { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_world_wonder_night_817865a.png); + background-repeat: no-repeat; +} + +#map.night #map_towns .tile.domination, +#map.night .town_icon.domination { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_domination_night_56cf1e0.png); + background-repeat: no-repeat; +} + +#map.night #map_towns .tile.olympus, +#map.night .town_icon.olympus { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_olympus_night_e2d4fe2.png); + background-repeat: no-repeat; +} + +#map.night #map_towns .tile.found, +#map.night .town_icon.found { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -33px 0; + width: 33px; + height: 24px; +} + +#map.night #map_towns .tile.flag.farm_town, +#map.night .town_icon.flag.farm_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -66px 0; + width: 19px; + height: 28px; +} + +#map.night .flagpole { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat 0 -52px; + width: 14px; + height: 23px; +} + +#map.night .flagpole.ghost_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat 0 -24px; + width: 20px; + height: 28px; +} + +#map.night .flagpole.farm_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat 0 -52px; + width: 14px; + height: 23px; +} + +#map.night .free.flag { + -webkit-transform: translateX(10px); + -ms-transform: translateX(10px); + -o-transform: translateX(10px); + transform: translateX(10px); + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -33px 0; + width: 33px; + height: 24px; +} + +#map .free.flag { + -webkit-transform: translateX(10px); + -ms-transform: translateX(10px); + -o-transform: translateX(10px); + transform: translateX(10px); + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat 0 0; + width: 33px; + height: 24px; +} + +#map.night #map_towns .tile.coloship_map_icon, +#map_towns .tile.coloship_map_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/colo_map_icon_163ec86.png) no-repeat 0 0; + width: 55px; + height: 60px; +} + +#map_towns .tile.foundation_map_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/colo_map_icon_city_day_f16df6c.png) no-repeat 0 0; + width: 55px; + height: 60px; +} + +#map.night #map_towns .tile.foundation_map_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/colo_map_icon_city_night_c37c29b.png) no-repeat 0 0; + width: 55px; + height: 60px; +} + +#map #map_towns .island_quest, +#map.night #map_towns .island_quest { + background-image: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quest_towns_2.60.png); + width: 48px; + height: 48px; + background-position: 0 0; + z-index: 3; +} + +#map #map_towns .island_quest:hover:after, +#map.night #map_towns .island_quest:hover:after { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quests_sprite_2.58_compressed.png) -908px -2px; + width: 48px; + height: 48px; + position: absolute; + left: 0; + top: 0; + content: " "; +} + +#map #map_towns .island_quest.TheLonePilgrim { + background-position: 0 0; +} + +#map #map_towns .island_quest.TheDestroyedShrine { + background-position: -48px 0; +} + +#map #map_towns .island_quest.TheStrandedCaptain { + background-position: -96px 0; +} + +#map #map_towns .island_quest.TearOffThePast { + background-position: -144px 0; +} + +#map #map_towns .island_quest.TheBrothel { + background-position: -192px 0; +} + +#map #map_towns .island_quest.CampOfTheDesperate { + background-position: -240px 0; +} + +#map #map_towns .island_quest.RefugeesOrPrey { + background-position: -288px 0; +} + +#map #map_towns .island_quest.CaravanWithoutProtection { + background-position: -336px 0; +} + +#map #map_towns .island_quest.CelebrationsOfARuler { + background-position: -384px 0; +} + +#map #map_towns .island_quest.TheTournamentOfTheChariots { + background-position: -432px 0; +} + +#map #map_towns .island_quest.IntrigueOfMerchants { + background-position: 0 -48px; +} + +#map #map_towns .island_quest.TheEpidemicPlague { + background-position: -48px -48px; +} + +#map #map_towns .island_quest.ChildOfTheGods { + background-position: -96px -48px; +} + +#map #map_towns .island_quest.TheDesperateVillage { + background-position: -144px -48px; +} + +#map #map_towns .island_quest.AllJustAnExploit { + background-position: -192px -48px; +} + +#map #map_towns .island_quest.QuestionOfMathematics { + background-position: -240px -48px; +} + +#map #map_towns .island_quest.RiddanceOfThePoor { + background-position: -288px -48px; +} + +#map #map_towns .island_quest.HolyHauntedForest { + background-position: -336px -48px; +} + +#map #map_towns .island_quest.Crusade { + background-position: -384px -48px; +} + +#map #map_towns .island_quest.HeroOfThePopulace { + background-position: -432px -48px; +} + +#map #map_towns .island_quest.ThreatFromOutside { + background-position: 0 -96px; +} + +#map #map_towns .island_quest.LeonidasPlea { + background-position: -48px -96px; +} + +#map #map_towns .island_quest.ReinforcementOfSparta { + background-position: -96px -96px; +} + +#map #map_towns .island_quest.BuildingTheDefenseLine { + background-position: -144px -96px; +} + +#map #map_towns .island_quest.FirstWave { + background-position: -192px -96px; +} + +#map #map_towns .island_quest.Distraction { + background-position: -240px -96px; +} + +#map #map_towns .island_quest.DefeatThePersians { + background-position: -288px -96px; +} + +#map #map_towns .island_quest.CareForTheWounded { + background-position: -336px -96px; +} + +#map #map_towns .island_quest.PromisingMessage { + background-position: -384px -96px; +} + +#map #map_towns .island_quest.LastPreparations { + background-position: -432px -96px; +} + +#map #map_towns .island_quest.LetTheCelebrationBegin { + background-position: 0 -144px; +} + +#map #map_towns .island_quest.Avowals { + background-position: -48px -144px; +} + +#map #map_towns .island_quest.OwingGratitude { + background-position: -96px -144px; +} + +#map #map_towns .island_quest.MurderInTheSenate { + background-position: -144px -144px; +} + +#map_wonders .tile.empty, +#map_wonders .tile.lvl0, +.world_wonder.stage_0 { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_building_spot_2.16.png); +} + +#map_wonders .tile.empty, +#map_wonders .tile.lvl0 { + background-position: 0 0; +} + +.world_wonder.stage_0 { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_building_spot_2.16.png); + background-position: left center; +} + +#map.night #map_wonders .tile.empty, +#map.night #map_wonders .tile.lvl0 { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_building_spot_night.png); + background-position: 0 0; +} + +#map.night #map_move_container::before { + content: ''; + position: fixed; + left: 0; + top: 0; + min-width: inherit; + min-height: inherit; + z-index: 2; + background: #02000f; + opacity: .7; +} + +#minimap_canvas.night.expanded #minimap_click_layer { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + background: #02000f; + opacity: .3; + z-index: 10; +} + +#map_towns .tile .tile { + width: 69px; + height: 46px; + left: 0; + top: 0; + z-index: 1; + background-image: none!important; +} + +.tile.se.lvl0 { + background-position: -345px 0; +} + +.tile.se.lvl1 { + background-position: -276px 0; +} + +.tile.se.lvl2 { + background-position: -207px 0; +} + +.tile.se.lvl3 { + background-position: -138px 0; +} + +.tile.se.lvl4 { + background-position: -69px 0; +} + +.tile.se.lvl5 { + background-position: 0 0; +} + +.tile.sw.lvl0 { + background-position: -345px -46px; +} + +.tile.sw.lvl1 { + background-position: -276px -46px; +} + +.tile.sw.lvl2 { + background-position: -207px -46px; +} + +.tile.sw.lvl3 { + background-position: -138px -46px; +} + +.tile.sw.lvl4 { + background-position: -69px -46px; +} + +.tile.sw.lvl5 { + background-position: 0 -46px; +} + +.tile.nw.lvl0 { + background-position: -345px -92px; +} + +.tile.nw.lvl1 { + background-position: -276px -92px; +} + +.tile.nw.lvl2 { + background-position: -207px -92px; +} + +.tile.nw.lvl3 { + background-position: -138px -92px; +} + +.tile.nw.lvl4 { + background-position: -69px -92px; +} + +.tile.nw.lvl5 { + background-position: 0 -92px; +} + +.tile.ne.lvl0 { + background-position: -345px -138px; +} + +.tile.ne.lvl1 { + background-position: -276px -138px; +} + +.tile.ne.lvl2 { + background-position: -207px -138px; +} + +.tile.ne.lvl3 { + background-position: -138px -138px; +} + +.tile.ne.lvl4 { + background-position: -69px -138px; +} + +.tile.ne.lvl5 { + background-position: 0 -138px; +} + +#map_wonders .tile { + height: 94px; + width: 99px; +} + +#map_wonders .colossus_of_rhodes { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_colossus_of_rhodes.png); +} + +#map_wonders .great_pyramid_of_giza { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_great_pyramid_of_giza.png); +} + +#map_wonders .hanging_gardens_of_babylon { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_hanging_gardens_of_babylon.png); +} + +#map_wonders .lighthouse_of_alexandria { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_lighthouse_of_alexandria.png); +} + +#map_wonders .mausoleum_of_halicarnassus { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_mausoleum_of_halicarnassus.png); +} + +#map_wonders .statue_of_zeus_at_olympia { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_statue_of_zeus_at_olympia.png); +} + +#map_wonders .temple_of_artemis_at_ephesus { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_temple_of_artemis_at_ephesus.png); +} + +#map.night #map_wonders .colossus_of_rhodes { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_colossus_of_rhodes_night.png); +} + +#map.night #map_wonders .great_pyramid_of_giza { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_great_pyramid_of_giza_night.png); +} + +#map.night #map_wonders .hanging_gardens_of_babylon { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_hanging_gardens_of_babylon_night.png); +} + +#map.night #map_wonders .lighthouse_of_alexandria { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_lighthouse_of_alexandria_night.png); +} + +#map.night #map_wonders .mausoleum_of_halicarnassus { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_mausoleum_of_halicarnassus_night.png); +} + +#map.night #map_wonders .statue_of_zeus_at_olympia { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_statue_of_zeus_at_olympia_night.png); +} + +#map.night #map_wonders .temple_of_artemis_at_ephesus { + background-image: url(https://gpfr.innogamescdn.com/images/game/map/wonder_temple_of_artemis_at_ephesus_night.png); +} + +#map_wonders .tile.empty { + background-position: -94px 0; +} + +.flag { + position: absolute; + z-index: 2; + width: 10px; + height: 13px; + background-position: bottom center; + background-repeat: no-repeat; +} + +.flag.farm_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -57px; + width: 10px; + height: 13px; +} + +.flag.farm_town.ftr_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -258px -57px; + width: 10px; + height: 13px; +} + +.flag.farm_town.ftr_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -268px -57px; + width: 10px; + height: 12px; +} + +.flag.free .flagpole.town { + display: none; +} + +.flag .flagpole.town { + top: -2px; + left: -2px; +} + +.islandinfo, +.islandinfo * { + position: absolute; + width: 58px; + height: 49px; +} + +.islandinfo, +.islandinfo div { + background-color: transparent; + background-image: url(https://gpfr.innogamescdn.com/images/game/map/res_bonus_malus_2.png); + background-repeat: no-repeat; +} + +.islandinfo div { + top: 13px; + right: 0; + width: 29px; + height: 29px; +} + +.islandinfo a { + left: 0; + top: 0; + z-index: 2; +} + +.islandinfo-2 { + margin: -80px 0 0 60px; +} + +.islandinfo-5 { + margin: 60px 0 0 0; +} + +.islandinfo-11 { + margin: 10px 0 0 -50px; +} + +.islandinfo-12 { + margin: 0 0 0 50px; +} + +.islandinfo-13 { + margin: -100px 0 0 0; +} + +.islandinfo-16 { + margin: -60px 0 0 0; +} + +.islandinfo-38 { + margin: -65px 0 0 0; +} + +.islandinfo-39 { + margin: -75px 0 0 0; +} + +.islandinfo-44 { + margin: -40px 0 0 -15px; +} + +.islandinfo-47 { + margin: 0 0 0 30px; +} + +.islandinfo-48 { + margin: -20px 0 0 0; +} + +.islandinfo-51 { + margin: 0 0 0 60px; +} + +.islandinfo-53 { + margin: -50px 0 0 0; +} + +.islandinfo-54 { + margin: -80px 0 0 0; +} + +.islandinfo-55 { + margin: -30px 0 0 30px; +} + +.islandinfo-59 { + margin: -30px 20px 0 0; +} + +.islandinfo-60 { + margin: -90px 20px 0 0; +} + +.islandinfo-Wi, +.islandinfo-Ws { + background-position: 0 -98px; +} + +.islandinfo-Si, +.islandinfo-Sw { + background-position: 0 -49px; +} + +.islandinfo-Is, +.islandinfo-Iw { + background-position: 0 0; +} + +#map_islands .islandinfo:hover { + background-position: 0 -147px; +} + +.islandinfo-Iw div, +.islandinfo-Sw div { + background-position: 0 -253px; +} + +.islandinfo-Si div, +.islandinfo-Wi div { + background-position: 0 -196px; +} + +.islandinfo-Is div, +.islandinfo-Ws div { + background-position: 0 -224px; +} + +#minimap { + position: absolute; + top: 0; + left: 0; + z-index: 10; + display: none; + -moz-user-select: none; +} + +#minimap .domination_area_marker { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -538px -170px; + width: 12px; + height: 14px; + z-index: 3; +} + +#minimap .domination_area_marker a.tile { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: 0 0; + cursor: move; +} + +#minimap .large_temple_marker, +#minimap .olympus_temple_marker, +#minimap .small_temple_marker { + position: absolute; + z-index: 3; + top: 0; + left: 0; +} + +#minimap .small_temple_marker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat -108px -51px; + width: 20px; + height: 21px; +} + +#minimap .large_temple_marker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat -108px -30px; + width: 20px; + height: 21px; +} + +#minimap .olympus_temple_marker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat -108px 0; + width: 30px; + height: 30px; +} + +#minimap .wonder_marker { + position: absolute; + display: block; + z-index: 2; +} + +#minimap .wonder_marker.colossus_of_rhodes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat 0 0; + width: 30px; + height: 30px; +} + +#minimap .wonder_marker.great_pyramid_of_giza { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -60px 0; + width: 30px; + height: 30px; +} + +#minimap .wonder_marker.hanging_gardens_of_babylon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -30px 0; + width: 30px; + height: 30px; +} + +#minimap .wonder_marker.lighthouse_of_alexandria { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat 0 -30px; + width: 30px; + height: 30px; +} + +#minimap .wonder_marker.mausoleum_of_halicarnassus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +#minimap .wonder_marker.statue_of_zeus_at_olympia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat 0 -60px; + width: 30px; + height: 30px; +} + +#minimap .wonder_marker.temple_of_artemis_at_ephesus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -60px -30px; + width: 30px; + height: 30px; +} + +#minimap_canvas { + overflow: hidden; + width: 105px; + height: 80px; + position: absolute; + top: 0; + cursor: move; +} + +#minimap_canvas.collapsed { + display: none; +} + +#minimap_canvas.expanded { + width: auto; + height: auto; + display: block; + left: 0; + top: 0; + right: 0; + bottom: 0; + z-index: 2; + background: #12457c; +} + +#minimap_canvas.collapsed #minimap_info_bar { + display: none; +} + +#minimap_canvas.expanded #minimap_info_bar { + display: block; + width: 156px; + height: 465px; + position: absolute; + right: 0; + z-index: 20; +} + +#islands_layer { + position: absolute; + z-index: 5; +} + +.town_population { + background: url(https://gpfr.innogamescdn.com/images/game/res/population_16x16.png) no-repeat 4px 0; + display: block; + float: left; + height: 16px; +} + +.build_time { + background: url(https://gpfr.innogamescdn.com/images/game/icons/time.png) no-repeat 4px 0; + display: block; + float: left; + height: 16px; +} + +.small.resource_favor_icon, +.small.resource_iron_icon, +.small.resource_stone_icon, +.small.resource_wood_icon { + background: transparent url(https://gpfr.innogamescdn.com/images/game/res/res_smallest_2.45.png) no-repeat 0 0; + width: 11px; + height: 11px; +} + +.resource_wood_icon.small { + background-position: 0 -11px; +} + +.resource_stone_icon.small { + background-position: 0 -22px; +} + +.resource_iron_icon.small { + background-position: 0 -33px; +} + +.resource_favor_icon.small { + background-position: 0 -44px; +} + +.resource_wood_icon { + background-position: 0 0; +} + +.resource_stone_icon { + background-position: 0 -16px; +} + +.resource_iron_icon { + background-position: 0 -32px; +} + +.popup_ratio { + font-size: 10px; + float: left; +} + +a.m_town { + position: absolute; + font-size: 15px; + line-height: 10px; + width: 15px; + height: 1px; + text-align: center; + z-index: 3; + cursor: pointer; + opacity: .8; +} + +a.m_town:hover { + font-size: 28px; + opacity: 1; +} + +a.m_town.big_dots { + font-size: 28px; +} + +div.m_border { + border-color: #fff; + border-width: 1px; + border-style: solid; + position: absolute; + text-align: left; + color: #fff; + z-index: 5; + opacity: .2; + pointer-events: none; +} + +#picomap div.m_town { + font-size: 10px; + height: 10px; + text-shadow: #000 1px 1px 1px; + filter: glow(color=#000000, strength=1); +} + +div.m_chunk { + position: absolute; +} + +div.m_island { + position: absolute; + width: 200px; + height: 150px; + background-position: 0 0; + background-repeat: no-repeat; +} + +#picomap { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +#picomap_islands_layer { + position: absolute; + left: 0; + top: 0; +} + +#minimap_viewport { + border: 1px solid #fff; + position: absolute; + z-index: 50; +} + +#map div.cell { + width: 64px; + height: 32px; + opacity: .1; +} + +.town_tooltip_table.popup_table_inside { + max-width: 320px; +} + +.map .map_towns .city_fire1, +.map .map_towns .city_fire2, +.map .map_towns .city_shield, +.map .map_towns .city_shield_blessing, +.map .map_towns .city_smoke { + background-repeat: no-repeat; + pointer-events: none; + cursor: pointer; +} + +.map .map_towns .city_fire1.lvl0, +.map .map_towns .city_fire2.lvl0, +.map .map_towns .city_shield.lvl0, +.map .map_towns .city_shield_blessing.lvl0, +.map .map_towns .city_smoke.lvl0 { + background-size: 70%; +} + +.map .map_towns .city_fire1.lvl1, +.map .map_towns .city_fire2.lvl1, +.map .map_towns .city_shield.lvl1, +.map .map_towns .city_shield_blessing.lvl1, +.map .map_towns .city_smoke.lvl1 { + background-size: 71.5%; +} + +.map .map_towns .city_fire1.lvl2, +.map .map_towns .city_fire2.lvl2, +.map .map_towns .city_shield.lvl2, +.map .map_towns .city_shield_blessing.lvl2, +.map .map_towns .city_smoke.lvl2 { + background-size: 85%; +} + +.map .map_towns .city_fire1.lvl3, +.map .map_towns .city_fire2.lvl3, +.map .map_towns .city_shield.lvl3, +.map .map_towns .city_shield_blessing.lvl3, +.map .map_towns .city_smoke.lvl3 { + background-size: 92.5%; +} + +.map .map_towns .city_fire1.lvl4, +.map .map_towns .city_fire2.lvl4, +.map .map_towns .city_shield.lvl4, +.map .map_towns .city_shield_blessing.lvl4, +.map .map_towns .city_smoke.lvl4 { + background-size: 100%; +} + +.map .map_towns .city_fire1.lvl5, +.map .map_towns .city_fire2.lvl5, +.map .map_towns .city_shield.lvl5, +.map .map_towns .city_shield_blessing.lvl5, +.map .map_towns .city_smoke.lvl5 { + background-size: 107.5%; +} + +.map .map_towns .city_shield.lvl0, +.map .map_towns .city_shield_blessing.lvl0 { + -webkit-transform: translate(20px,15px); + -ms-transform: translate(20px,15px); + -o-transform: translate(20px,15px); + transform: translate(20px,15px); +} + +.map .map_towns .city_shield.lvl1.ne, +.map .map_towns .city_shield_blessing.lvl1.ne { + -webkit-transform: translate(14px,13px); + -ms-transform: translate(14px,13px); + -o-transform: translate(14px,13px); + transform: translate(14px,13px); +} + +.map .map_towns .city_shield.lvl1.nw, +.map .map_towns .city_shield_blessing.lvl1.nw { + -webkit-transform: translate(14px,17px); + -ms-transform: translate(14px,17px); + -o-transform: translate(14px,17px); + transform: translate(14px,17px); +} + +.map .map_towns .city_shield.lvl1.se, +.map .map_towns .city_shield_blessing.lvl1.se { + -webkit-transform: translate(20px,13px); + -ms-transform: translate(20px,13px); + -o-transform: translate(20px,13px); + transform: translate(20px,13px); +} + +.map .map_towns .city_shield.lvl1.sw, +.map .map_towns .city_shield_blessing.lvl1.sw { + -webkit-transform: translate(18px,16px); + -ms-transform: translate(18px,16px); + -o-transform: translate(18px,16px); + transform: translate(18px,16px); +} + +.map .map_towns .city_shield.lvl2, +.map .map_towns .city_shield_blessing.lvl2 { + -webkit-transform: translate(10px,10px); + -ms-transform: translate(10px,10px); + -o-transform: translate(10px,10px); + transform: translate(10px,10px); +} + +.map .map_towns .city_shield.lvl3, +.map .map_towns .city_shield_blessing.lvl3 { + -webkit-transform: translate(2px,5px); + -ms-transform: translate(2px,5px); + -o-transform: translate(2px,5px); + transform: translate(2px,5px); +} + +.map .map_towns .city_shield.lvl4, +.map .map_towns .city_shield_blessing.lvl4 { + -webkit-transform: translate(-3px,0); + -ms-transform: translate(-3px,0); + -o-transform: translate(-3px,0); + transform: translate(-3px,0); +} + +.map .map_towns .city_shield.lvl5, +.map .map_towns .city_shield_blessing.lvl5 { + -webkit-transform: translate(-5px,0); + -ms-transform: translate(-5px,0); + -o-transform: translate(-5px,0); + transform: translate(-5px,0); +} + +.map .map_towns .city_fire1.lvl0.ne, +.map .map_towns .city_fire1.lvl0.se, +.map .map_towns .city_fire1.lvl0.sw, +.map .map_towns .city_fire2.lvl0.ne, +.map .map_towns .city_fire2.lvl0.se, +.map .map_towns .city_fire2.lvl0.sw, +.map .map_towns .city_smoke.lvl0.ne, +.map .map_towns .city_smoke.lvl0.se, +.map .map_towns .city_smoke.lvl0.sw { + -webkit-transform: translate(7px,11px); + -ms-transform: translate(7px,11px); + -o-transform: translate(7px,11px); + transform: translate(7px,11px); +} + +.map .map_towns .city_fire1.lvl0.nw, +.map .map_towns .city_fire2.lvl0.nw, +.map .map_towns .city_smoke.lvl0.nw { + -webkit-transform: translate(7px,11px); + -ms-transform: translate(7px,11px); + -o-transform: translate(7px,11px); + transform: translate(7px,11px); +} + +.map .map_towns .city_fire1.lvl1.ne, +.map .map_towns .city_fire1.lvl1.se, +.map .map_towns .city_fire1.lvl1.sw, +.map .map_towns .city_fire2.lvl1.ne, +.map .map_towns .city_fire2.lvl1.se, +.map .map_towns .city_fire2.lvl1.sw, +.map .map_towns .city_smoke.lvl1.ne, +.map .map_towns .city_smoke.lvl1.se, +.map .map_towns .city_smoke.lvl1.sw { + -webkit-transform: translate(7px,11px); + -ms-transform: translate(7px,11px); + -o-transform: translate(7px,11px); + transform: translate(7px,11px); +} + +.map .map_towns .city_fire1.lvl1.nw, +.map .map_towns .city_fire2.lvl1.nw, +.map .map_towns .city_smoke.lvl1.nw { + -webkit-transform: translate(12px,12px); + -ms-transform: translate(12px,12px); + -o-transform: translate(12px,12px); + transform: translate(12px,12px); +} + +.map .map_towns .city_fire1.lvl2.ne, +.map .map_towns .city_fire1.lvl2.se, +.map .map_towns .city_fire1.lvl2.sw, +.map .map_towns .city_fire2.lvl2.ne, +.map .map_towns .city_fire2.lvl2.se, +.map .map_towns .city_fire2.lvl2.sw, +.map .map_towns .city_smoke.lvl2.ne, +.map .map_towns .city_smoke.lvl2.se, +.map .map_towns .city_smoke.lvl2.sw { + -webkit-transform: translate(8px,5px); + -ms-transform: translate(8px,5px); + -o-transform: translate(8px,5px); + transform: translate(8px,5px); +} + +.map .map_towns .city_fire1.lvl2.nw, +.map .map_towns .city_fire2.lvl2.nw, +.map .map_towns .city_smoke.lvl2.nw { + -webkit-transform: translate(4px,8px); + -ms-transform: translate(4px,8px); + -o-transform: translate(4px,8px); + transform: translate(4px,8px); +} + +.map .map_towns .city_fire1.lvl3.ne, +.map .map_towns .city_fire1.lvl3.se, +.map .map_towns .city_fire1.lvl3.sw, +.map .map_towns .city_fire2.lvl3.ne, +.map .map_towns .city_fire2.lvl3.se, +.map .map_towns .city_fire2.lvl3.sw, +.map .map_towns .city_smoke.lvl3.ne, +.map .map_towns .city_smoke.lvl3.se, +.map .map_towns .city_smoke.lvl3.sw { + -webkit-transform: translate(6px,0); + -ms-transform: translate(6px,0); + -o-transform: translate(6px,0); + transform: translate(6px,0); +} + +.map .map_towns .city_fire1.lvl3.nw, +.map .map_towns .city_fire2.lvl3.nw, +.map .map_towns .city_smoke.lvl3.nw { + -webkit-transform: translate(4px,3px); + -ms-transform: translate(4px,3px); + -o-transform: translate(4px,3px); + transform: translate(4px,3px); +} + +.map .map_towns .city_fire1.lvl4.ne, +.map .map_towns .city_fire1.lvl4.se, +.map .map_towns .city_fire1.lvl4.sw, +.map .map_towns .city_fire2.lvl4.ne, +.map .map_towns .city_fire2.lvl4.se, +.map .map_towns .city_fire2.lvl4.sw, +.map .map_towns .city_smoke.lvl4.ne, +.map .map_towns .city_smoke.lvl4.se, +.map .map_towns .city_smoke.lvl4.sw { + -webkit-transform: translate(3px,-2px); + -ms-transform: translate(3px,-2px); + -o-transform: translate(3px,-2px); + transform: translate(3px,-2px); +} + +.map .map_towns .city_fire1.lvl4.nw, +.map .map_towns .city_fire2.lvl4.nw, +.map .map_towns .city_smoke.lvl4.nw { + -webkit-transform: translate(0,-2px); + -ms-transform: translate(0,-2px); + -o-transform: translate(0,-2px); + transform: translate(0,-2px); +} + +.map .map_towns .city_fire1.lvl5.ne, +.map .map_towns .city_fire1.lvl5.se, +.map .map_towns .city_fire1.lvl5.sw, +.map .map_towns .city_fire2.lvl5.ne, +.map .map_towns .city_fire2.lvl5.se, +.map .map_towns .city_fire2.lvl5.sw, +.map .map_towns .city_smoke.lvl5.ne, +.map .map_towns .city_smoke.lvl5.se, +.map .map_towns .city_smoke.lvl5.sw { + -webkit-transform: translate(1px,-5px); + -ms-transform: translate(1px,-5px); + -o-transform: translate(1px,-5px); + transform: translate(1px,-5px); +} + +.map .map_towns .city_fire1.lvl5.nw, +.map .map_towns .city_fire2.lvl5.nw, +.map .map_towns .city_smoke.lvl5.nw { + -webkit-transform: translate(-3px,-3px); + -ms-transform: translate(-3px,-3px); + -o-transform: translate(-3px,-3px); + transform: translate(-3px,-3px); +} + +.map .map_towns .city_fire1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_fire_1_12235c1.png) no-repeat 0 0; + width: 89px; + height: 80px; +} + +.map .map_towns .city_fire2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_fire_2_d5f22a5.png) no-repeat 0 0; + width: 88px; + height: 80px; +} + +.map .map_towns .city_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_shield_cd2b0df.png) no-repeat 0 0; + width: 120px; + height: 72px; +} + +.map .map_towns .city_shield_blessing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_shield_blessing_a222cce.png) no-repeat 0 0; + width: 120px; + height: 72px; +} + +.map .map_towns .city_smoke { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_smoke_6e4f258.png) no-repeat 0 0; + width: 83px; + height: 74px; +} + +#message_bbcodes { + padding: 5px; + height: 23px; +} + +.message_item .message_subject { + float: left; + width: 500px; + overflow: hidden; + vertical-align: top; +} + +.message_item .message_date { + position: relative; + margin-left: 485px; + text-align: right; +} + +#message_messages .game_list { + height: 400px; + overflow-y: auto; + position: relative; +} + +#message_messages .game_list.with_menu { + height: 306px; +} + +#message_messages .game_border { + height: 477px; +} + +#message_messages .button_area { + position: absolute; + right: 0; +} + +#message_messages .button_area .button { + float: right; +} + +#message_list li.message_item.draggable { + z-index: 20000; + list-style-type: none; +} + +#message_list .message_date { + position: static; + margin-left: auto; +} + +.message_item.ui-draggable-dragging { + z-index: 20000; + list-style-type: none; + text-align: left; + height: 19px; + padding: 4px 2px; + border: 1px solid #d2bd96; + opacity: .8; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.multidragging { + background-color: #ffe7b6; + position: absolute; + z-index: 20000; + border: 1px solid #d1bf91; + opacity: .8; +} + +.multidragging .message_item { + border: 0; + border-top: 1px solid #d2bd96; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + list-style-type: none; + text-align: left; + height: 19px; + padding: 4px 2px; +} + +.message_icon { + background: url(https://gpfr.innogamescdn.com/images/game/message/message_icons_2.20.png) 0 0 no-repeat; + display: inline-block; + height: 16px; + width: 20px; + vertical-align: middle; +} + +.message_icon.status_answered { + background-position: 0 -64px; +} + +.message_icon.status_read { + background-position: 0 -16px; +} + +.message_icon.block { + background-position: 0 -48px; +} + +.affront_dialog { + background: url(https://gpfr.innogamescdn.com/images/game/message/message_icons_2.20.png) 0 -96px no-repeat; +} + +.message_icon .massmail { + background: url(https://gpfr.innogamescdn.com/images/game/message/message_icons_2.20.png) 0 -80px no-repeat; + display: block; + height: 16px; + width: 20px; +} + +.announcement_icon { + background: url(https://gpfr.innogamescdn.com/images/game/message/message_icons_2.20.png) 0 -112px no-repeat; + display: block; + height: 16px; + width: 20px; + vertical-align: middle; +} + +#message_new_preview { + display: none; +} + +#message_new_header, +#message_new_preview_header { + height: 18px; +} + +#message_new .game_brown { + height: 48px; +} + +#message_new .button { + float: left; +} + +#message_new_preview_body { + padding: 5px; + max-height: 435px; + overflow-y: auto; +} + +#message_reply_create { + display: none; + border: 1px solid #d1bf91; +} + +#message_reply_preview { + display: none; + overflow: auto; + max-height: 210px; + border: 2px groove #fc6; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0 transparent; +} + +#message_reply_preview_body { + max-height: 160px; + overflow-y: auto; +} + +#message_reply_preview_body img { + max-width: 100%; +} + +#message_reply_message { + height: 107px; + width: 772px; + margin: 10px 0; +} + +#message_message, +#message_new_message { + height: 310px; + width: 100%; +} + +.message_status { + background-image: url(https://gpfr.innogamescdn.com/images/game/message/status.png); + position: relative; + width: 26px; + height: 22px; + float: left; +} + +#message_status_all:hover, +.message_status_all_active { + background-position: 0 -22px; +} + +#message_status_new { + background-position: -26px 0; +} + +#message_status_new:hover, +.message_status_new_active { + background-position: -26px -22px!important; +} + +#message_status_read { + background-position: -52px 0; +} + +#message_status_read:hover, +.message_status_read_active { + background-position: -52px -22px!important; +} + +#message_status_answered { + background-position: -78px 0; +} + +#message_status_answered:hover, +.message_status_answered_active { + background-position: -78px -22px!important; +} + +#message_buttons { + float: left; + width: 300px; +} + +.new_message_button { + display: block; + width: 21px; + margin: 3px; + height: 17px; + float: left; +} + +#message_adress_book { + background: url(https://gpfr.innogamescdn.com/images/game/message/adress_book.png) no-repeat; +} + +#message_alliance { + background: url(https://gpfr.innogamescdn.com/images/game/message/alliance.png) no-repeat; +} + +#mailinglist_recipients_form { + margin-left: 15px; +} + +#message_message_list .button { + float: left; +} + +#message_message_list .button.spoiler { + float: none; +} + +#message_message_list .game_header, +#message_message_list.game_header { + padding: 2px 64px; + text-align: center; +} + +#message_message_list .subject { + text-align: center; + width: 100%; + display: inline-block; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +#message_message_list .next_button, +#message_message_list .previous_button { + display: inline-block; + position: absolute; + border: none; +} + +#message_message_list .previous_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -19px; + width: 52px; + height: 19px; + left: 6px; +} + +#message_message_list .previous_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px 0; + width: 52px; + height: 19px; +} + +#message_message_list .previous_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 0; + width: 52px; + height: 19px; +} + +#message_message_list .previous_button:disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -19px; + width: 52px; + height: 19px; +} + +#message_message_list .next_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -38px; + width: 52px; + height: 19px; + right: 6px; +} + +#message_message_list .next_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -57px; + width: 52px; + height: 19px; +} + +#message_message_list .next_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -38px; + width: 52px; + height: 19px; +} + +#message_message_list .next_button:disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -57px; + width: 52px; + height: 19px; +} + +#message_new_preview .button.spoiler { + float: none; +} + +#message_partner { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png); + color: #804000; + padding: 3px; + border-bottom: 1px solid #d1bf91; +} + +#message_partner img { + vertical-align: text-bottom; +} + +.message_post_container { + overflow-y: auto; + overflow-x: hidden; + position: absolute; + top: 50px; + left: 0; + right: 0; + bottom: 31px; +} + +#message_message_list .game_border { + height: 501px; +} + +#message_message_list .game_border.reservation_list { + height: auto; +} + +#message_message_list .game_list_footer { + position: absolute; + bottom: 0; + left: 0; + right: 0; +} + +#message_message_list #message_reply_create, +#message_message_list #message_reply_preview { + position: absolute; + bottom: 31px; + left: 0; + right: 0; +} + +#message_message_list.reply_message .message_post_container { + bottom: 228px; +} + +.message_post { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); +} + +.message_post .message_post_content img { + max-width: 100%; +} + +.message_poster { + background: url(https://gpfr.innogamescdn.com/images/game/message/message_poster.png) left bottom no-repeat; + padding: 2px 4px 8px 2px; +} + +.message_poster.message_partner { + background-position: bottom right; + padding: 2px 2px 8px 4px; + text-align: right; +} + +.message_poster_id { + color: #804000; +} + +.message_post_date { + color: #000; +} + +.message_post_content { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png); + padding: 4px 4px 12px; + border-bottom: 1px solid #d1bf91; +} + +#message_new_forward { + width: 744px; +} + +#message_forward_body { + background: #ffe6b3 none repeat scroll 0 0; + padding: 5px; +} + +#content { + height: 400px; +} + +table.quote td.quote_message { + background-color: #fff; +} + +.folder_hide { + display: none; +} + +.folder_input { + float: left; +} + +.folder_save { + cursor: pointer; + float: left; +} + +#message_folder_left { + width: 421px; +} + +#message_folder_right { + width: 320px; +} + +#message_folder_left, +#message_folder_right { + float: left; +} + +#message_folder_right { + margin-left: 15px; +} + +#message_folder_left .game_header { + width: 400px; +} + +#message_folder_left ul.game_list { + overflow-y: auto; + max-height: 440px; +} + +#message_folder_right .game_header { + width: 299px; +} + +#message_folder_right #folder_form { + height: 25px; +} + +#message_folder_right #folder_form .button { + margin-top: -1px; + float: right; +} + +#message_folder_right #new_folder_name { + float: left; +} + +#message_folder_right .game_body { + height: 22px; +} + +.folder_icon { + display: block; + width: 25px; + height: 19px; + background: url(https://gpfr.innogamescdn.com/images/game/icons/folder.png) no-repeat; + float: left; + margin: 0 10px 0 0; +} + +#folder_menu_messages { + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0; + border-bottom: 1px solid #d1bf91; + height: 104px; + overflow-x: auto; + overflow-y: hidden; + position: relative; + display: none; + word-spacing: nowrap; + width: 792px; + padding-bottom: 5px; +} + +#folder_menu_messages .hor_scrollbar_cont { + position: relative; + width: 1000px; + height: 97px; + overflow: hidden; +} + +#folder_menu_messages #no_folders { + padding: 8px; + height: 28px; + display: block; +} + +#folder_toggle_menu { + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0; + border-bottom: 1px solid #d1bf91; + color: #804000; + padding: 4px; +} + +#menu_toggle { + padding: 4px; +} + +.folder_move_button { + color: #000; +} + +.folder { + display: block; + width: 170px; + height: 24px; + padding: 4px; + float: left; +} + +.folder.draghovered { + background-color: #d2bd96; +} + +#blocked_players { + max-height: 331px; + overflow-x: hidden; + overflow-y: auto; +} + +#blocked_players li { + height: 25px; +} + +#blocked_players li .cancel { + float: right; + margin-right: 16px; +} + +#recipient_list { + position: absolute; + width: 380px; +} + +#recipient_list .ui-tabs-panel ul { + max-height: 397px; + overflow: auto; +} + +#mailing_list { + position: absolute; + left: 393px; + width: 380px; + top: 0; +} + +#mailing_list_tabs, +#mailing_list_wrapper { + width: 372px; +} + +#mailing_list_wrapper .game_list { + height: 415px; + overflow: auto; +} + +#mailing_list a.cancel, +#recipient_list a.cancel { + float: right; + margin-top: 11px; +} + +.inner_recipient_list { + height: 280px; + overflow-y: auto; + border-bottom: 1px solid #000; +} + +#create_list_name_form { + margin-top: 1px; + float: left; + margin-right: 15px; + padding: 2px; +} + +#tab_recipient_list_no_entry { + width: 360px; +} + +#announcements .game_list { + height: 477px; + overflow-y: auto; + position: relative; +} + +#announcement_list .announcement_content ul { + list-style-type: disc; + margin: 0; + padding: 0 50px 0 60px; +} + +#announcement_list .announcement_content ul li { + padding: 0; + border-bottom: 0; +} + +#announcement_list .announcement_content p { + margin-left: 25px; + margin-right: 25px; +} + +#announcement_list .announcement_content a { + color: #ffdc8a; +} + +#announcement_list .announcement_content td * { + line-height: normal; +} + +#announcement_list .announcement_content td { + line-height: 8px; +} + +#announcement_list .announcement_content.hide { + display: none; +} + +#announcement_list .announcement_content.show { + display: block; +} + +#announcement_list .announcement_header { + cursor: pointer; +} + +#announcement_list .message_subject { + color: #804000; +} + +#recipient_list .recipient_list_form { + float: left; + margin-right: 15px; + padding: 3px; +} + +#command_overview { + height: 420px; +} + +#command_overview .cmd_img { + position: absolute; + top: 4px; + left: 2px; + margin: 0 5px 0 3px; +} + +#command_overview .cmd_span { + margin: 0 5px 0 3px; + position: relative; + float: left; +} + +#command_overview .cmd_span_custom { + float: left; + margin: 0 5px 0 3px; +} + +#command_overview .cmd_info_box { + float: left; + min-width: 336px; + height: 32px; + margin-left: 45px; +} + +#command_overview .cmd_info_box br { + clear: both; +} + +#command_overview .cmd_info_box.timer_ended, +#command_overview .cmd_info_box.timer_ended a { + color: gray!important; +} + +#command_overview .cmd_info_box.timer_ended .overview_outgoing.icon { + background-position: -12px -13px; +} + +#command_overview .cmd_info_box.timer_ended .overview_incoming.icon { + background-position: 0 -13px; +} + +#command_overview .cmd_info_box.timer_ended .working { + float: left; + width: 16px; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/gears_inactive.gif) no-repeat 0 50%; +} + +.place_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/place_9cb8ec3.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +#place_defense .command_count { + margin-left: 5px; +} + +#place_defense .return_all_units { + float: right; +} + +#command_overview.got_more_commands { + height: 404px; +} + +#command_overview_tabs .more_commands { + border-top: 1px solid #d0be97; + padding: 4px; + line-height: 16px; + font-style: italic; + background: #ffeec7; +} + +#place_defense .game_list { + overflow-y: auto; + overflow-x: hidden; +} + +.place_units { + display: inline-block; + width: 100%; +} + +#place_defense tfoot { + height: 30px; +} + +#place_defense .game_list_footer { + height: 24px; +} + +#place_defense #game_list_header { + margin-bottom: 3px; +} + +#units_beyond_list { + height: 425px; + overflow-y: auto; + overflow-x: hidden; +} + +#place_simulator_form .game_body { + padding: 3px 1px; +} + +.place_unit { + float: left; + margin: 5px; + position: relative; + width: 40px; + height: 40px; + border: 1px solid #724b08; +} + +.place_unit_black { + position: absolute; + right: 1px; + bottom: 1px; + color: #000; +} + +.place_unit_white { + position: absolute; + color: #fff; + right: 2px; + bottom: 2px; +} + +.place_unit_hero { + position: absolute; + color: #f8d257; + right: 2px; + bottom: 2px; +} + +.place_sendback_all { + background: url(https://gpfr.innogamescdn.com/images/game/place/sendback_2.44.png) -29px 0; + float: left; + height: 21px; + width: 28px; + margin-left: 2px; +} + +.place_sendback_all:hover { + background-position: -29px -21px; +} + +.place_sendback_all:active { + background-position: -29px -42px; +} + +.place_sendback_all.disabled { + background-position: -29px -63px; +} + +.place_sendback_part { + background: url(https://gpfr.innogamescdn.com/images/game/place/sendback_2.44.png) 0 0; + float: left; + height: 21px; + width: 28px; + margin: 0 0 0 2px; +} + +.place_sendback_part:hover { + background-position: 0 -21px; +} + +.place_sendback_part:active { + background-position: 0 -42px; +} + +.place_sendback_part.disabled { + background-position: 0 -63px; +} + +.place_sendback_container { + float: left; + width: 28px; + height: 43px; + margin: 3px 0 0 3px; +} + +div.place_send_part { + position: relative; + display: none; + clear: both; +} + +div.place_send_part div.progressbar { + clear: both; + margin: 0; +} + +.place_unit_container { + position: relative; + float: left; +} + +.row_units_container { + width: 95%; +} + +.place_unit_container .spinner_horizontal { + width: 80px; + display: none; +} + +.place_unit_container .place_unit { + margin: 5px 5px 0 5px; +} + +.unit_amount_info_input { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/unit_input.png) no-repeat; + border: 0; + left: 3px; + height: 18px; + width: 33px; + text-align: center; + padding: 3px 10px 3px 3px; +} + +.place_send_part_buttons { + float: left; + display: none; + margin: 2px 0 0 2px; +} + +.place_sim_select_gods_wrap { + width: 100%; + padding-top: 4px; +} + +.place_sim_select_gods_wrap .place_sim_insert_units, +.place_sim_select_gods_wrap .place_sim_select_gods { + float: left; +} + +.place_sim_select_gods_wrap .place_sim_insert_units>*, +.place_sim_select_gods_wrap .place_sim_select_gods>* { + display: inline-block; + vertical-align: middle; +} + +.place_sim_select_gods_wrap select { + max-width: 150px; +} + +.place_sim_sea_wrap { + float: left; +} + +.place_sim_wrap_mods { + float: left; + width: 310px; +} + +.place_sim_wrap_mods .place_simulator_table .place_image { + margin-bottom: 3px; +} + +.place_sim_wrap_mods .place_simulator_table { + float: left; +} + +.place_sim_wrap_mods .place_sim_showhide { + margin: 50px 0 0 0; + display: block; + float: left; +} + +.place_sim_bonuses_heroes .window_inner_curtain { + display: none; +} + +.place_sim_bonuses_heroes { + float: left; +} + +.place_sim_wrap_mods_extended { + position: absolute; + z-index: 11; + left: 135px; + top: 50px; + display: none; +} + +.place_sim_wrap_mods_extended .place_simulator_table { + border: 0; + margin: 0; + border-collapse: collapse; +} + +.place_sim_wrap_mods_extended .place_simulator_complex_legend { + vertical-align: bottom; +} + +.place_sim_wrap_mods_extended .place_symbol { + vertical-align: bottom; +} + +.place_sim_wrap_mods_extended td { + padding: 1px; + border: 1px solid #724b08; +} + +.place_sim_wrap_mods_extended .bottom_row td { + border: none; +} + +.place_sim_wrap_mods_extended .power_icon45x45 { + display: block; +} + +.place_sim_wrap_mods_extended .place_image { + display: table-cell; +} + +.place_sim_wrap_mods_extended .place_symbol { + margin: 2px; +} + +.place_sim_wrap_mods_extended .place_cross { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -713px -578px; + width: 14px; + height: 14px; + margin-left: 4px; + margin-top: 3px; +} + +.place_sim_wrap_mods_extended .place_checkbox_field { + display: block; + width: 14px; + height: 14px; +} + +.place_sim_wrap_mods_extended .place_sim_bonuses_more_confirm { + float: right; +} + +.place_sim_hero_choose { + width: 48px; + overflow: hidden; + height: 53px; + float: left; +} + +.place_sim_hero_unit_container { + float: left; + position: relative; + height: 52px; + width: 47px; +} + +.place_sim_hero_unit_container .hero_unit.no_hero_selected { + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg); +} + +.place_sim_hero_unit_container .hero_unit.no_hero_selected span { + display: none; +} + +.place_sim_hero_unit_container .hero_unit.no_hero_selected .button_new.square { + display: block; +} + +.place_sim_hero_unit_container .hero_unit .button_new.square { + display: none; + top: 9px; + left: 10px; +} + +#hero_attack_dd, +#hero_defense_dd { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + cursor: pointer; +} + +.place_sim_hero_container { + width: 75px; + height: 53px; +} + +.place_sim_hero_container .place_sim_hero_spinner { + position: absolute; + left: 50px; + top: 4px; +} + +#simulator_mods_morale { + cursor: pointer; +} + +.place_sim_wrap_mods_moral { + position: absolute; + z-index: 5; + width: 330px; + height: 94px; + margin: 46px 0 0 30px; + display: none; +} + +.place_sim_showhide { + background: transparent url(https://gpfr.innogamescdn.com/images/game/place/showhide.png) 0 0 no-repeat; + height: 23px; + width: 22px; + display: block; +} + +.place_sim_bonuses_more_confirm { + background: transparent url(https://gpfr.innogamescdn.com/images/game/place/confirm.png) 0 0 no-repeat; + height: 23px; + width: 22px; + display: block; +} + +.place_simulator_table { + border: 1px solid #724b08; + margin: 2px; +} + +.place_simulator_table#place_sim_ground_units { + float: left; +} + +.place_simulator_table#place_sim_battlepoints .killpoints.icon { + background-image: url(https://gpfr.innogamescdn.com/images/game/place/icon_battlepoints_large.png); + width: 40px; + height: 40px; + margin: 4px auto 0 auto; + background-repeat: no-repeat; + background-position: 50%; + text-align: center; + padding-bottom: 3px; +} + +.place_simulator_table#place_sim_battlepoints tr { + height: 23px; + text-align: center; +} + +.place_simulator_table#place_sim_battlepoints tr div { + min-width: 51px; +} + +.place_simulator_table#place_sim_battlepoints tr .att_killpoints, +.place_simulator_table#place_sim_battlepoints tr .def_killpoints { + font-weight: 600; + color: green; +} + +.place_simulator_even, +.place_simulator_even2, +.place_simulator_table td:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat; + padding: 1px; +} + +.place_simulator_odd, +.place_simulator_odd2, +.place_simulator_table td:nth-child(even) { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat; + padding: 1px; +} + +.place_simulator_table td span.percentage { + display: block; + font-size: 11px; + text-align: center; + padding: 0 0 2px 0; +} + +.place_simulator_table tr td>div { + position: relative; +} + +.place_simulator_table .unit_slider_toggle { + right: 1px; + z-index: 3; +} + +.place_simulator_table td.left_border { + border-left: 1px solid #bfa978; +} + +.place_simulator_table .place_image { + margin: 1px 3px; +} + +.place_image.mods_extend { + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg); + width: 40px; + height: 40px; + text-align: center; + line-height: 40px; +} + +.place_image.mods_extend .place_sim_showhide { + float: none; + margin: auto; + display: inline-block; + vertical-align: middle; + cursor: pointer; +} + +.active_mods_att, +.active_mods_def { + text-align: center; +} + +.place_image.building_tower { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat 0 -40px; + width: 40px; + height: 40px; +} + +.place_image.ground_factor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -80px 0; + width: 40px; + height: 40px; +} + +.place_image.is_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -80px -40px; + width: 40px; + height: 40px; +} + +.place_image.luck { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat 0 -80px; + width: 40px; + height: 40px; +} + +.place_image.morale { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -40px -80px; + width: 40px; + height: 40px; +} + +.place_image.naval_factor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat 0 0; + width: 40px; + height: 40px; +} + +.place_image.pa_captain { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_40x40.jpg); + width: 40px; + height: 40px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background-position: 0 0; +} + +.place_image.pa_commander { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_40x40.jpg); + width: 40px; + height: 40px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background-position: -40px 0; +} + +.place_image.pa_priest { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_40x40.jpg); + width: 40px; + height: 40px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background-position: -120px 0; +} + +.place_image.power_desire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -120px 0; + width: 40px; + height: 40px; +} + +.place_image.power_effort_of_the_huntress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -120px -40px; + width: 40px; + height: 40px; +} + +.place_image.power_fair_wind { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -120px -80px; + width: 40px; + height: 40px; +} + +.place_image.power_strength_of_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat 0 -120px; + width: 40px; + height: 40px; +} + +.place_image.research_divine_selection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -40px -120px; + width: 40px; + height: 40px; +} + +.place_image.research_phalanx { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -80px -120px; + width: 40px; + height: 40px; +} + +.place_image.research_ram { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -120px -120px; + width: 40px; + height: 40px; +} + +.place_image.strategy_breach { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -80px -80px; + width: 40px; + height: 40px; +} + +.place_image.research_combat_experience { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -40px -40px; + width: 40px; + height: 40px; +} + +.place_image.alliance_modifier { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -40px 0; + width: 40px; + height: 40px; +} + +.place_image.wall_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/place/simulator/sprite_images/place_simulator_b8e4ca4.png) no-repeat -160px 0; + width: 40px; + height: 40px; +} + +.place_symbol { + position: relative; + height: 18px; + width: 18px; + background-image: url(https://gpfr.innogamescdn.com/images/game/place/losts.png); +} + +.place_symbol .place_def { + margin: 0 2px 0 20px; +} + +.place_att_losts { + background-position: 0 -18px; +} + +.place_def { + background-position: 0 -36px; +} + +.place_def_losts { + background-position: 0 -54px; +} + +.place_attack { + background-image: url(https://gpfr.innogamescdn.com/images/game/place/attack.png); + margin: 0 2px 0 20px; +} + +.place_insert_field { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/unit_input.png); + height: 18px; + width: 36px; + position: relative; + border: 0 none; + text-align: center; + padding: 3px 7px 3px 3px; + margin-left: 2px; +} + +.place_losses { + color: #c00; + text-align: center; +} + +#place_container .button_new { + margin-top: 10px; + width: 150px; +} + +#place_container .error_msg { + color: #c00; + font-size: 12px; + font-weight: 700; + margin-top: 3px; +} + +#place_container .header_text { + text-align: justify; + margin-left: 23px; + margin-right: 32px; + margin-bottom: 5px; +} + +#place_container .place_festival_img { + margin-bottom: -3px; + margin-top: 22px; +} + +#place_container .game_header { + position: absolute; + width: 159px; +} + +#place_container .info_icon { + position: absolute; + right: 33px; + top: 18px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; +} + +#place_party { + margin-left: 20px; +} + +.place_box { + text-align: center; + float: left; + margin-right: 9px; + max-width: 178px; +} + +.place_box a.button { + font-size: 12px; + margin-top: 10px; +} + +.place_box a.button .middle { + line-height: 23px; + min-width: 0; + padding: 0 13px; +} + +.place_table { + border-collapse: collapse; + width: 172px; +} + +#place_container .game_footer { + height: 50px; + padding: 0; +} + +#place_triumph_bg { + background-image: url(https://gpfr.innogamescdn.com/images/game/place/triumph_bg.png); + width: 150px; + height: 19px; + position: relative; + padding: 3px; + margin: 0 auto 7px auto; + top: 5px; +} + +#place_triumph_bar { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/place/triumph_bar.png); + height: 18px; +} + +#place_triumph_count { + position: relative; + width: 150px; + height: 18px; + color: #fff; +} + +#place_culture_bg { + position: relative; + background-image: url(https://gpfr.innogamescdn.com/images/game/place/culture_bg.jpg); + width: 690px; + height: 52px; + bottom: 0; + left: 21px; + margin-bottom: 10px; + padding: 3px; +} + +#place_culture_bar { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/place/culture_bar-2.99.png); + height: 25px; + top: 30px; +} + +#place_culture_count { + position: absolute; + width: 690px; + height: 19px; + top: 30px; + color: #fff; + text-align: center; +} + +#place_culture_level { + position: relative; + float: left; + height: 19px; + padding: 3px; +} + +#place_culture_towns { + position: relative; + float: right; + height: 19px; + padding: 3px; +} + +#place_culture_in_progress { + position: relative; + text-align: center; + height: 19px; + padding: 3px; +} + +.place_not_enough_resources { + color: #c00; +} + +#place_battle_points, +#place_start_all { + float: left; + position: relative; + left: -50%; +} + +#place_battle_points .points_descr, +#place_start_all .bold { + position: relative; + float: left; + margin: 3px 5px 0 3px; +} + +#place_battle_points .points_background { + background-image: url(https://gpfr.innogamescdn.com/images/game/place/triumph_bg.png); + height: 19px; + padding: 3px; + position: relative; + float: left; + width: 150px; +} + +#place_battle_points .points_background .points_bar { + background-image: url(https://gpfr.innogamescdn.com/images/game/place/triumph_bar.png); + height: 18px; + position: absolute; +} + +#place_battle_points .points_background .points_count { + color: "#ffffff"; + height: 18px; + position: relative; + width: 150px; + text-align: center; + color: #fff; +} + +.remove_unit_red { + color: #d00; + position: absolute; + right: 2px; + top: -3px; + z-index: 2; +} + +.remove_unit_black { + color: #000; + position: absolute; + right: 1px; + top: -2px; + z-index: 1; +} + +.place_sim_hero_spinner { + width: 21px; + height: 47px; + float: left; + top: 2px; +} + +.place_sim_hero_spinner .body { + background: 0 0; +} + +.place_sim_hero_spinner .border_l, +.place_sim_hero_spinner .border_r { + display: none; +} + +.place_sim_hero_spinner .button_decrease { + top: 23px; +} + +#place_simulator_form h4 { + margin-left: 3px; + line-height: 18px; +} + +#place_simulator_form a.unit, +#place_simulator_form div.unit { + margin: 3px; +} + +#place_simulator_form .place_sim_wrap_mods { + width: 295px; + margin-bottom: 6px; +} + +#place_simulator_form .place_insert_field { + height: 22px; + width: 46px; + padding: 0; +} + +#place_simulator_form #place_sim_naval_units td { + vertical-align: top; +} + +#place_simulator_form #place_sim_naval_units .unit_container { + height: auto; +} + +#place_simulator_form #place_sim_naval_units tbody tr:last-child { + height: 84px; +} + +#place_simulator_form .place_insert_field { + margin-left: 0; +} + +#place_simulator_form .unit_container { + width: auto; + height: auto; +} + +#place_simulator_form .place_sim_select_gods_wrap { + margin-left: 4px; +} + +#place_simulator_form .place_sim_wrap_mods_moral { + margin: 45px 0 0 -15px; + width: 315px; +} + +#place_simulator_form .place_def_losts { + margin-bottom: 3px; +} + +#place_simulator_form .place_sim_select_gods_wrap .place_symbol.place_def { + margin: 0 2px 0 20px; +} + +#player_towns .game_list { + max-height: 115px; + overflow-y: auto; + position: relative; + width: 352px; +} + +#player_towns .game_list .reservation_tool.icon.small { + float: left; + margin: 0 3px; + cursor: pointer; +} + +#player_towns .game_list .reservation_tool.icon.small.free { + visibility: hidden; +} + +#ally_towns .members_list { + height: 480px; + overflow-y: auto; + position: relative; + width: 352px; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +#ally_towns .members_list li { + display: block; + position: relative; + overflow: hidden; +} + +#ally_towns .members_list li.header { + background: url(https://gpfr.innogamescdn.com/images/game/border/header2.jpg) repeat 0 0; + cursor: pointer; +} + +#ally_towns .members_list li.sub_header { + cursor: pointer; +} + +#ally_towns .members_list li.even, +#ally_towns .members_list li.header, +#ally_towns .members_list li.odd { + padding: 4px 3px 4px 26px; + border-bottom: 1px solid #d0be97; + height: 17px; +} + +#ally_towns .members_list li.even.error_message, +#ally_towns .members_list li.odd.error_message { + min-height: 17px; + height: auto; +} + +#ally_towns .members_list li.noicon { + padding-left: 8px; +} + +#ally_towns .members_list li.odd a { + color: #000; + font-weight: 400; +} + +#ally_towns .members_list .small-descr { + font-size: 10px; + position: absolute; + top: 6px; + right: 5px; +} + +#ally_towns .members_list .ally_icon, +#ally_towns .members_list .member_icon { + position: absolute; + top: 6px; + left: 6px; + height: 16px; + width: 16px; +} + +#ally_towns .members_list .founder_icon { + float: left; + margin-right: 5px; + height: 16px; + width: 16px; + margin-top: 1px; +} + +#player_towns .game_list li a { + float: left; +} + +#player_towns { + width: 360px; + position: relative; + top: 180px; + left: 14px; +} + +#ally_towns { + width: 360px; + position: relative; + top: 0; + left: 380px; +} + +#player_towns .game_list_footer { + height: 20px; +} + +#player_towns .town_image { + float: left; + padding-right: 4px; +} + +#player_buttons { + margin-top: 5px; +} + +#ally_button_bar { + position: absolute; + width: 363px; + top: 162px; +} + +#ally_button_bar .center_box { + position: absolute; + width: 300px; + left: 27px; +} + +#ally_button_bar .center { + display: table; + margin: 0 auto; +} + +#ally_buttons { + height: 24px; + padding: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/box/background_2.56_compressed.jpg) no-repeat; +} + +#ally_buttons .btn_alliance_report { + color: #fc6; + float: right; + text-decoration: underline; + line-height: 20px; + right: 5px; +} + +#profile_info .game_list { + width: 355px; + overflow-y: auto; + overflow-x: hidden; +} + +#profile_info #player_profile { + max-height: 295px; +} + +#profile_info #player_profile.profile_with_artifacts { + max-height: 232px; +} + +#profile_info { + width: 365px; + position: absolute; + left: 400px; + top: 0; +} + +#ally_profile_info { + width: 365px; + position: absolute; + left: 0; + top: 206px; +} + +#profile_info .game_list_footer { + height: 20px; +} + +#profile_info .game_list_footer.artifact_footer { + height: 82px; +} + +#profile_info #profile_image { + position: relative; + text-align: center; + padding: 10px 0 14px 0; +} + +#profile_info .profile_descr.centered { + text-align: center; +} + +#ally_profile_info .ally_bbcode { + padding: 18px 0; +} + +#ally_profile_info .ally_bbcode.centered { + text-align: center; +} + +#ally_profile_flag_image { + background-position: 15px 23px!important; + background-repeat: no-repeat!important; + position: absolute; + top: -23px; + left: -15px; +} + +#ally_rank_text { + font-size: 11px; + padding-top: 9px; + margin: 0 -35px; +} + +#ally_rank_text .rank_text { + line-height: 12px; +} + +#ally_rank_text .rank_number { + font-weight: 700; + margin-top: -2px; +} + +.settings-menu { + position: absolute; + top: 0; + left: 0; + bottom: 0; + width: 212px; + padding: 0 10px; + background: url(https://gpfr.innogamescdn.com/images/game/border/border_v.png) repeat-y right 0; + overflow: auto; +} + +.settings-menu b { + margin-top: 12px; + display: block; +} + +.settings-container .game_header { + margin: -5px -10px 15px -10px; +} + +#shared_connections .game_header { + margin: 0; +} + +#world_boosts .game_header { + margin: 0; +} + +#world_boosts td, +#world_boosts th { + width: 300px; +} + +#world_boosts th:nth-child(2) { + padding-left: 15px; +} + +#world_boosts td { + padding: 3px 6px 3px 6px; +} + +#world_boosts .world_boosts_list tr.positive { + color: green; +} + +#world_boosts .world_boosts_list tr.negative { + color: #e72200; +} + +.settings-container #player_settings { + position: relative; +} + +.settings-container #player_settings .dropdown .caption { + padding-right: 25px; +} + +.settings-container .game_list li { + border: 0; + padding: 0; +} + +.settings-container hr { + height: 0; + border-width: 1px 0; + border-top: 1px solid #b68d45; + border-bottom: 1px solid #ffe4b1; +} + +.settings-container .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + display: inline-block; + cursor: pointer; +} + +.settings-menu a, +.settings-menu a:active, +.settings-menu a:link, +.settings-menu a:visited { + font-weight: 400; +} + +.settings-menu .with-icon { + padding-left: 20px; + position: relative; +} + +.settings-menu .support-menu-item-icon { + position: absolute; + top: 0; + left: 0; +} + +.settings-menu a.selected { + text-decoration: underline; +} + +.settings-menu ul { + color: #8a401f; + margin: 3px 0 0 10px; +} + +.settings-container { + position: absolute; + top: 0; + bottom: 0; + right: 0; + left: 232px; + padding: 0 10px; + overflow: auto; +} + +.settings-container form, +.settings-container table, +.settings-container td, +.settings-container tr { + margin: 0; + padding: 0; +} + +.settings-container td { + vertical-align: middle; +} + +.settings-container .button { + margin-left: 0; +} + +.settings-container div.section { + margin-top: 5px; + padding: 0; + border-bottom-width: 0; + overflow: visible; +} + +.settings-container div.iframe { + margin-top: 0; +} + +.settings-container h4 { + margin: 8px 0; +} + +.settings-container .qrcode { + float: right; + margin: 2px; +} + +.settings-container .store_link.windows { + top: 356px; + display: block; + position: absolute; +} + +#change_email_form td { + padding: 5px; +} + +#s_sound_config .descr, +#s_windows_mgr .descr { + display: block; + margin-bottom: 7px; +} + +#s_sound_config .descr { + margin-top: 7px; +} + +#s_push_notifications .windowmgr_slider, +#s_sound_config .windowmgr_slider, +#s_windows_mgr .windowmgr_slider { + display: inline-block; + width: 150px; + vertical-align: middle; +} + +#push_notification_minute_delay_section>div.push_notification_minute_delay_value.textbox { + width: 30px; +} + +#s_sound_config .textbox, +#s_windows_mgr .textbox { + width: 30px; +} + +#s_sound_config .textbox input, +#s_windows_mgr .textbox input { + text-align: center; +} + +#s_sound_config .slider_container { + display: block; +} + +#s_sound_config .no-sound { + display: none; +} + +.no-sound #s_sound_config .no-sound { + display: block; +} + +#settings_form div.settings_column { + float: left; + width: 50%; +} + +#settings_form div.section { + margin-top: 5px; +} + +#settings_form #s_email_notifications { + display: block; +} + +#settings_form .group { + margin: 10px; +} + +#settings_form .legend { + margin: 1em 0 .5em; +} + +#settings_form .checkbox_new { + display: block; + margin-bottom: 2px; +} + +#settings_form .hidden { + display: none; +} + +#player_settings .game_list { + padding: 0; +} + +#settings_header { + height: 18px; +} + +#settings_profile_form { + overflow-y: auto; +} + +#settings_form .map_settings_save, +#settings_form .reports_save { + margin: 10px 0; +} + +#settings_form .confirmations_save .caption, +#settings_form .reports_save .caption { + padding: 0 30px; +} + +#settings_profile_form li { + padding-bottom: 25px; +} + +#profile_preview { + max-height: 282px; + max-width: 344px; + overflow: auto; + margin: 5px; + text-align: left; +} + +#edit_profile_form { + margin: 10px 5px 10px 10px; +} + +#edit_profile_form textarea, +#player_settings .list_item_right fieldset { + width: 351px; + border: 2px groove; + padding: 0; + margin-top: 25px; + position: relative; +} + +#player_settings .list_item_right fieldset>legend { + position: absolute; + top: -22px; + left: 0; + right: 0; + text-align: center; +} + +#edit_profile_form textarea { + height: 298px; + width: 340px; + margin: 0; +} + +#player_info { + position: absolute; + left: 13px; + padding: 20px; + color: #fc5; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank1_64c39bb.png) no-repeat 0 0; + width: 363px; + height: 167px; +} + +#player_info.rank2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank2_3ba1f67.png) no-repeat 0 0; + width: 363px; + height: 171px; +} + +#player_info.rank3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank3_16f5baa.png) no-repeat 0 0; + width: 363px; + height: 171px; +} + +#player_info.rank4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank4_d9d7333.png) no-repeat 0 0; + width: 363px; + height: 171px; +} + +#player_info.rank5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank5_f1a4b1a.png) no-repeat 0 0; + width: 363px; + height: 171px; +} + +#player_info h3 { + margin: 5px 0; + font-size: 18px; + float: left; +} + +#player_info ul { + clear: both; +} + +#player_info a:link, +#player_info a:visited { + color: #fc6; + text-decoration: underline; +} + +#player_info #player_points { + display: inline-block; + position: absolute; + right: 40px; + top: 10px; +} + +#player_info .warn { + color: red; +} + +#player_points .rank_bg { + position: absolute; + right: 26px; + top: 14px; +} + +#player_points .rank_bg.rank1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat 0 0; + width: 100px; + height: 33px; +} + +#player_points .rank_bg.rank2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat 0 -33px; + width: 100px; + height: 33px; +} + +#player_points .rank_bg.rank3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat 0 -66px; + width: 100px; + height: 33px; +} + +#player_points .rank_bg.rank4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat -100px 0; + width: 100px; + height: 33px; +} + +#player_points .rank_bg.rank5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat -100px -33px; + width: 100px; + height: 33px; +} + +#player_points div.rank { + position: absolute; + right: 35px; + top: 22px; + width: 58px; + color: #000; + text-align: right; +} + +#player_points .battle_points_bg { + position: absolute; + right: 26px; + top: 57px; +} + +#player_points .battle_points_bg.rank1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat 0 0; + width: 100px; + height: 33px; +} + +#player_points .battle_points_bg.rank2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat 0 -33px; + width: 100px; + height: 33px; +} + +#player_points .battle_points_bg.rank3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat 0 -66px; + width: 100px; + height: 33px; +} + +#player_points .battle_points_bg.rank4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat -100px 0; + width: 100px; + height: 33px; +} + +#player_points .battle_points_bg.rank5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat -100px -33px; + width: 100px; + height: 33px; +} + +#player_points div.battle_points { + position: absolute; + right: 35px; + top: 65px; + width: 58px; + color: #000; + text-align: right; +} + +#alliance_points { + position: absolute; + right: 59px; + text-align: center; +} + +#alliance_points.ribbon { + margin-top: -14px; + margin-left: -6px; +} + +#player_info .grepolis_score_container { + position: absolute; + right: 27px; + top: 105px; + width: 250px; + text-align: right; +} + +#player_info .grepolis_score_container .textbox { + max-width: 85px; +} + +#player_info .grepolis_score_container .grepolis_score_box { + background: url(https://gpfr.innogamescdn.com/images/game/profile/greposcore_box.png) no-repeat; + width: 72px; + height: 26px; + padding-top: 4px; + position: relative; + display: inline-block; +} + +#player_info .grepolis_score_container .grepolis_score_box .grepolis_score { + color: #000; + text-align: right; + margin: 3px; +} + +#toolbar_icons { + background: url(https://gpfr.innogamescdn.com/images/game/toolbar/toolbar_edit_bg.png) no-repeat; + height: 105px; + padding: 5px 2px; + width: 96px; + float: right; +} + +#toolbar_icons>div { + float: left; + width: 20px; + height: 20px; + padding: 2px; +} + +#toolbar_icons>div:hover { + background: url(https://gpfr.innogamescdn.com/images/game/toolbar/toolbar_selected_icon.png) no-repeat; +} + +#toolbar_icons>div.selected { + background: url(https://gpfr.innogamescdn.com/images/game/toolbar/toolbar_selected_icon.png) no-repeat; +} + +#submenu input, +#toolbar_item_name, +#toolbar_item_url { + background: url(https://gpfr.innogamescdn.com/images/start/login_field.png); + border: 0 none; + height: 18px; + padding: 4px; + width: 142px; + margin-bottom: 4px; +} + +#item_name, +#item_url, +#submenu ul li { + text-align: left; +} + +#submenu ul li { + border: 1px solid #e1af55; + background: #ffe2a1; + margin: 4px 0; + width: 100%; + cursor: pointer; +} + +#submenu ul li input { + margin-right: 7px; + float: left; +} + +#submenu ul li a, +#submenu ul li input, +#submenu ul li label { + margin-right: 7px; + float: left; +} + +#edit_toolbar_wrapper #input_wrapper .button, +#edit_toolbar_wrapper #input_wrapper .cancel { + float: right; + margin: 8px 2px 2px 2px; +} + +#edit_toolbar_wrapper #input_wrapper { + float: left; +} + +#edit_toolbar_wrapper { + width: 90%; + float: left; +} + +#player_awards { + position: absolute; + bottom: 3px; + left: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/profile/awards_bg.jpg); + width: 760px; + height: 84px; +} + +#player_awards #scrollpane { + position: absolute; + left: 26px; + right: 26px; + top: 5px; + z-index: 1; + height: 75px; + overflow: hidden; +} + +#player_awards .js-scrollbar-viewport { + width: 760px; + height: 84px; + overflow: hidden; + position: relative; +} + +#player_awards .js-scrollbar-content { + position: absolute; + height: 75px; + overflow: hidden; + z-index: 1; +} + +#player_awards .scrollbar-slider-container { + width: 760px; +} + +#player_awards .scrollbar .narrow { + width: 760px; + height: 75px; +} + +#player_awards_left, +#player_awards_right { + background: url(https://gpfr.innogamescdn.com/images/game/profile/awards_shadow.png) 0 0 no-repeat; + height: 73px; + width: 22px; + position: absolute; + top: 5px; + z-index: 2; +} + +#player_awards_left { + left: 26px; + background-position: left top; +} + +#player_awards_right { + right: 26px; + background-position: right bottom; +} + +#awards.ui-draggable-dragging { + cursor: move; + cursor: -moz-grabbing; + cursor: -webkit-grabbing; +} + +#awards { + cursor: move; + cursor: -moz-grab; + cursor: -webkit-grab; + position: absolute; + left: 0; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +#awards div.expansion { + background: url(https://gpfr.innogamescdn.com/images/game/profile/awards_expansion.png) 0 0 no-repeat; + width: 72px; + height: 72px; + float: left; + cursor: pointer; + margin-left: 15px; +} + +#awards div.expansion:hover { + background-position: -71px 0; +} + +.award { + -moz-user-select: none; + color: #fffbde; + text-align: center; + width: 74px; + height: 75px; + margin: 0 5px; + float: left; + display: block; + position: relative; + font-family: Georgia,Times,serif; + font-size: 14px; +} + +.award_world_banner { + height: 75px; + font-family: Verdana,sans-serif; + color: #fc6; + font-weight: 700; + width: auto; +} + +.award_world_banner div.left { + background: url(https://gpfr.innogamescdn.com/images/game/awards/world_banner_borders.png) no-repeat left bottom; +} + +.award_world_banner div.right { + background: url(https://gpfr.innogamescdn.com/images/game/awards/world_banner_borders.png) no-repeat right top; +} + +.award_world_banner div.center { + background: url(https://gpfr.innogamescdn.com/images/game/awards/world_banner_bg.png) repeat-x center bottom; + margin: 0 12px; + height: 55px; + padding: 10px; +} + +.player_profile_artifacts_list { + cursor: move; + cursor: -moz-grab; + cursor: -webkit-grab; + position: absolute; + left: 0; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + padding-top: 3px; +} + +.player_profile_artifacts_list .ui-draggable-dragging { + cursor: move; + cursor: -moz-grabbing; + cursor: -webkit-grabbing; +} + +.player_profile_artifacts_list div.expansion { + width: 0; + height: 82px; + float: left; + margin-left: 10px; + z-index: 1; + overflow: hidden; + display: none; +} + +.player_profile_artifact { + -moz-user-select: none; + width: 76px; + height: 76px; + margin: 0 5px; + float: left; + display: block; + position: relative; +} + +#artifacts_scrollpane { + height: 85px; + width: 353px; +} + +#artifacts_scrollpane .js-scrollbar-viewport { + height: 85px; + width: 353px; + overflow: hidden; + position: relative; +} + +#artifacts_scrollpane .js-scrollbar-content { + position: absolute; + height: 85px; + overflow: hidden; + z-index: 1; +} + +#artifacts_scrollpane .scrollbar { + visibility: hidden; +} + +#artifacts_scrollpane .scrollbar-slider-container { + width: 353px; +} + +#artifacts_scrollpane .scrollbar.narrow { + width: 353px; + height: 85px; +} + +.date_bg, +.date_fg { + position: absolute; + width: 48px; + left: 14px; + top: 5px; +} + +.date_fg { + color: #4b4a41; + left: 15px; + top: 4px; +} + +#profile_certificate { + position: relative; + left: -50%; + min-height: 257px; + margin: 40px 0; +} + +#profile_certificate>img { + float: left; +} + +#profile_certificate div { + max-width: 400px; + float: left; + padding: 0 6px; +} + +#profile_certificate p { + max-width: 250px; + margin: 15px auto; +} + +#premium_features { + position: relative; +} + +#premium_features+div { + margin: 8px 0; + text-align: center; +} + +#premium_features ul { + list-style-type: none; +} + +#premium_features li { + float: left; + text-align: center; + margin: 0 8px; + width: 138px; +} + +.premium_advisor { + position: relative; +} + +#pf_advisors { + height: 397px; +} + +#pf_advisors li.premium_advisor_wrapper { + display: block; + margin: 0 4px; + float: none; + position: absolute; + top: 0; +} + +#pf_advisors #pf-curator { + left: 20px; +} + +#pf_advisors #pf-trader { + left: 171px; +} + +#pf_advisors #pf-priest { + left: 322px; +} + +#pf_advisors #pf-commander { + left: 473px; +} + +#pf_advisors #pf-captain { + left: 624px; +} + +.premium_advisor a.button { + margin: 0; + display: inline-block; +} + +.premium_advisor a.button .middle { + min-width: 0; +} + +.premium_advisor_image.advisor_popup { + float: left; +} + +.premium_advisor_image { + width: 132px; + height: 132px; +} + +#premium_features .premium_advisor_image { + cursor: pointer; + width: 132px; + height: auto; + padding: 102px 0 0; +} + +.premium_advisor_image ul { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/premium_sprite_2.34.png) 0 -108px repeat-x; + padding: 30px 0 36px; +} + +#premium_features .premium_advisor_image ul li { + float: none; + margin: -1px 0 -2px 6px; + width: auto; + line-height: 30px; +} + +#premium_features .premium_advisor_image ul li span { + vertical-align: middle; + line-height: 13px; + display: inline-block; + word-wrap: break-word; + width: 87px; +} + +#premium_features .premium_advisor_image ul li.pf_free { + width: 99px; +} + +.pf_bonus { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat; + font-family: Calibri,Arial; + font-weight: 700; + color: #fc6; + font-size: 24px; + text-shadow: 1px 1px 1px solid #000; +} + +#temple_priest_hint .pf_bonus { + padding: 0 10px 0 60px; +} + +.premium_popup .pf_bonus.pf_priest_favor, +.premium_popup .pf_bonus.pf_priest_myth_units, +.premium_popup .pf_captain_naval_units { + padding: 0 10px 0 60px; +} + +.pf_bonus_dummy { + height: 30px; +} + +.pf_info { + color: #fff; + line-height: 30px; + font-size: 11px; +} + +.pf_bonus, +.pf_info { + height: 30px; + padding: 0 10px 0 30px; + margin: 0 0 0 6px; +} + +.pf_info.pf_price { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) 0 -30px no-repeat; +} + +.pf_info.pf_duration { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat 0 0; +} + +.pf_info.pf_free { + height: 42px; + padding: 21px 11px; + line-height: 20px!important; + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/premium_sprite_2.34.png) 0 -378px no-repeat; +} + +#premium_features .premium_advisor_image.captian pf_captain_farm_town span { + width: 100px; +} + +.pf_info.pf_active { + padding: 0; +} + +.pf_curator_queue { + background-position: 0 0; +} + +.pf_curator_overview { + font-size: 13px; + background-position: 0 -210px; +} + +.premium_popup .pf_curator_overview { + font-size: 24px; +} + +.pf_commander_ground_units { + background: inherit; +} + +.pf_commander_ground_units::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; + width: 30px; + height: 30px; + content: ''; + position: absolute; + display: inline-block; + -webkit-transform: translateX(-30px); + -ms-transform: translateX(-30px); + -o-transform: translateX(-30px); + transform: translateX(-30px); +} + +.pf_priest_favor { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) 0 -150px no-repeat; +} + +.pf_priest_myth_units { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/icon_myth_naval_ground.png) no-repeat 0 0; +} + +.pf_trader_res { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) 0 -90px no-repeat; +} + +.pf_captain_naval_units { + background: url(https://gpfr.innogamescdn.com/images/game/res/naval.png) 0 0 no-repeat; +} + +.pf_captain_trade_speed { + background-position: 0 -150px; +} + +.pf_captain_attack_planer { + font-size: 13px; + background-position: 0 -180px; +} + +.pf_captain_farm_town { + font-size: 13px; + background-position: 0 -240px; +} + +.premium_advisor_popup_text { + margin-left: 142px; + width: 320px; +} + +.auto_extension_active, +.auto_extension_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -367px -48px; + float: right; + width: 14px; + height: 15px; + display: block; + margin: 10px 2px; +} + +.auto_extension_active { + background-position: -353px -48px; +} + +div.pf_feature_buttons { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/premium_sprite_2.34.png) 0 0; + bottom: 0; + left: 0; + position: absolute; +} + +a.pf_extend_button { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/premium_sprite_2.34.png) 0 0; + width: 112px; + height: 36px; + display: block; + line-height: 36px; + float: left; +} + +a.pf_extend_button:hover { + background-position: 0 -36px; +} + +a.pf_extend_button.disabled, +a.pf_extend_button.disabled:hover { + background-position: 0 -72px; + color: #ccb; +} + +#buy_gold { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/buygold_middle.png) repeat-x right 0; + height: 65px; + position: relative; + left: 400px; + left: -50%; +} + +#left_border { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/buygold_left.png) no-repeat left 0; + width: 15px; + height: 65px; + float: left; +} + +#buy_gold_text { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/buygold.png) no-repeat right 0; + position: relative; + float: left; + top: 0; + width: 365px; + height: 65px; +} + +#current_gold { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -30px transparent; + padding: 0 0 0 35px; + position: relative; + float: left; + top: 15px; + left: 7px; + line-height: 30px; +} + +#buy_gold_text div { + width: 326px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/buygold_hover.png); + position: absolute; + right: 7px; + top: 15px; + color: #fc6; + font-size: 20px; + font-family: Arial,Verdana,sans-serif; + text-align: center; + line-height: 35px; + display: block; + cursor: pointer; +} + +#buy_gold_text div:hover { + background-position: 0 -35px; +} + +#pf_earn_gold { + position: absolute; + bottom: 10px; + left: 10px; +} + +#premium_features_bottom { + position: relative; + left: 50%; + float: left; +} + +#set_auto_extension { + position: absolute; + width: 320px; + left: 430px; + top: 15px; +} + +#premium_overview_inner { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0 transparent; + overflow-x: hidden; + overflow-y: auto; + height: 361px; +} + +#premium_overview_featurelist { + float: left; +} + +#featurelist { + width: 175px; + height: 361px; + border-right: 1px solid #d0be97; +} + +#premium_overview_info_area { + padding: 6px; +} + +#premium_overview_info_area .game_border { + float: left; + margin-right: 6px; +} + +#premium_overview_info_area .advisor_activation_area { + text-align: center; + margin-top: 15px; +} + +#premium_overview_info_area .btn_buy_advisor { + margin-top: 5px; + display: inline-block; +} + +#premium_overview_text_area_outer { + text-align: left; +} + +#premium_overview_text_area { + margin-right: 3px; + margin-top: 7px; +} + +#premium_feature_sublist { + margin-left: 10px; +} + +#premium_feature_sublist li { + border: 0 none; + padding: 2px; +} + +#premium_feature_sublist li a { + font-weight: 500; +} + +.premium_popup { + width: 300px; +} + +.premium_popup .pf_bonus { + margin-left: 10px; +} + +.premium_popup td { + margin: auto; + height: 30px; + overflow: hidden; +} + +.premium_popup td:first-child { + white-space: nowrap; + width: 90px; +} + +.premium_popup td span { + line-height: 13px; + display: block; + max-width: 90px; + white-space: normal; +} + +.premium_popup div.pf_bonus, +.premium_popup td.pf_info { + color: #000; +} + +.not_enough_gold_window .btn_buy_gold { + margin: 5px 0 15px 0; +} + +.not_enough_gold_window, +div.not_enough_gold_buildings { + text-align: center; +} + +.not_enough_gold_window th { + text-align: left; +} + +div.not_enough_gold_buildings div.premium_advisor_image_small { + display: inline-block; + border: 1px solid #431; + margin: 3px; + overflow: initial; +} + +.premium_advisor_image_small { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_64x64.jpg); + width: 64px; + height: 64px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +.premium_advisor_image_small.curator { + background-position: -128px 0; +} + +.premium_advisor_image_small.captain { + background-position: 0 0; +} + +.premium_advisor_image_small.priest { + background-position: -192px 0; +} + +.premium_advisor_image_small.commander { + background-position: -64px 0; +} + +.premium_advisor_image_small.trader { + background-position: -256px 0; +} + +.premium_advisor_image_small.highlight { + -webkit-box-shadow: 0 0 6px 2px red; + -moz-box-shadow: 0 0 6px 2px red; + -ms-box-shadow: 0 0 6px 2px red; + -o-box-shadow: 0 0 6px 2px red; + box-shadow: 0 0 6px 2px red; +} + +.not_enough_gold_buildings, +.not_enough_gold_culture, +.not_enough_gold_window { + text-align: center; +} + +.not_enough_gold_window.not_enough_gold_buy_curator { + padding-top: 15px; +} + +.not_enough_gold_buildings h3, +.not_enough_gold_culture h3, +.not_enough_gold_window h3 { + color: #c00; +} + +.not_enough_gold_buildings p, +.not_enough_gold_window p { + margin: 0; + padding: 0 32px; +} + +.not_enough_gold_buildings table, +.not_enough_gold_window table { + margin: 10px 28px 10px 28px; +} + +.not_enough_gold_buildings td, +.not_enough_gold_window td { + white-space: nowrap; +} + +.not_enough_gold_culture table { + margin: 0 auto; +} + +.not_enough_gold_buildings td.icon, +.not_enough_gold_culture td.icon, +.not_enough_gold_window td.icon { + height: 30px; + padding-left: 33px; + text-align: left; +} + +.not_enough_gold_buildings .icon.time, +.not_enough_gold_culture .icon.time, +.not_enough_gold_window .icon.time { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat 0 0; +} + +.not_enough_gold_buildings .icon.wood, +.not_enough_gold_culture .icon.wood, +.not_enough_gold_window .icon.wood { + background: url(https://gpfr.innogamescdn.com/images/game/res/wood.png) no-repeat 0 0; +} + +.not_enough_gold_buildings .icon.iron, +.not_enough_gold_culture .icon.iron, +.not_enough_gold_window .icon.iron { + background: url(https://gpfr.innogamescdn.com/images/game/res/iron.png) no-repeat 0 0; +} + +.not_enough_gold_buildings .icon.stone, +.not_enough_gold_culture .icon.stone, +.not_enough_gold_window .icon.stone { + background: url(https://gpfr.innogamescdn.com/images/game/res/stone.png) no-repeat 0 0; +} + +.not_enough_gold_buildings .icon.gold, +.not_enough_gold_culture .icon.gold, +.not_enough_gold_window .icon.gold { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -30px; +} + +.not_enough_gold_buildings tr.highlighted, +.not_enough_gold_window tr.highlighted { + color: #090; +} + +.advisors-list { + position: relative; + overflow: hidden; + text-align: center; +} + +.advisors-list .advisor { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/advisors/advisors_64x64.jpg); + width: 64px; + height: 64px; + vertical-align: middle; + overflow: hidden; + position: relative; + display: inline-block; + margin: 5px; + border: 1px solid #433210; +} + +.advisors-list .advisor.curator { + background-position: -128px 0; +} + +.advisors-list .advisor.captain { + background-position: 0 0; +} + +.advisors-list .advisor.trader { + background-position: -256px 0; +} + +.advisors-list .advisor.priest { + background-position: -192px 0; +} + +.advisors-list .advisor.commander { + background-position: -64px 0; +} + +.advisors-list .advisor.selected { + -webkit-box-shadow: 0 0 6px 2px red; + -moz-box-shadow: 0 0 6px 2px red; + -ms-box-shadow: 0 0 6px 2px red; + -o-box-shadow: 0 0 6px 2px red; + box-shadow: 0 0 6px 2px red; +} + +a.button.large.btn_buy_gold { + margin: 15px auto; + min-width: 332px; +} + +.advisor_hint { + height: 62px; + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat; + position: relative; + padding: 3px 6px; +} + +.advisor_hint .advisor_icon { + position: absolute; + top: 0; + border: 2px solid #431; +} + +div.advisor_hint .pf_bonus { + font-size: 13px; + font-family: Verdana,sans-serif; + color: #000; + line-height: 30px; + display: inline-block; +} + +.advisor_icon { + width: 64px; + height: 64px; +} + +.trader_icon { + background-position: 0 -256px; +} + +#overviews_link_hover_menu { + display: none; + position: absolute; + z-index: 5000; + margin-left: -35px; +} + +body.is_ipad #overviews_link_hover_menu { + top: 63px; +} + +body.is_ipad #overviews_link_hover_menu { + font-size: 1.5em; +} + +body.is_ipad #overviews_link_hover_menu .subsection li { + height: 30px; +} + +#overviews_link_hover_menu .subsection { + padding: 5px 8px 0 38px; + position: relative; + text-align: left; +} + +#overviews_link_hover_menu .subsection+.subsection:before { + content: ''; + position: absolute; + left: 4px; + right: 4px; + top: 0; + border-top: 1px solid #b48f45; + border-bottom: 1px solid #ffe4b1; +} + +#overviews_link_hover_menu .subsection .adviser { + display: block; + width: 24px; + height: 24px; + position: absolute; + left: 3px; + top: 50%; + padding: 1px; + margin-top: -13px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/menu_advisor_background.png) no-repeat 0 0; + text-indent: -1000em; +} + +#overviews_link_hover_menu .disabled .adviser { + background-position: -26px 0; + cursor: pointer; +} + +#overviews_link_hover_menu .subsection .adviser span { + position: relative; + display: block; + height: 22px; + width: 22px; +} + +#overviews_link_hover_menu .subsection li { + display: block; + height: 22px; + position: relative; +} + +#overviews_link_hover_menu .subsection li a { + display: block; + padding: 0 0 0 20px; + line-height: 16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/premium_features/overviews_sprite_16x16.png); + background-repeat: no-repeat; +} + +#overviews_link_hover_menu .subsection.disabled li a { + color: #4b4b4b; +} + +#overviews_link_hover_menu .trade_overview a { + background-position: 0 0; +} + +#overviews_link_hover_menu .command_overview a { + background-position: 0 -16px; +} + +#overviews_link_hover_menu .recruit_overview a { + background-position: 0 -32px; +} + +#overviews_link_hover_menu .unit_overview a { + background-position: 0 -48px; +} + +#overviews_link_hover_menu .outer_units a { + background-position: 0 -64px; +} + +#overviews_link_hover_menu .building_overview a { + background-position: 0 -80px; +} + +#overviews_link_hover_menu .culture_overview a { + background-position: 0 -96px; +} + +#overviews_link_hover_menu .gods_overview a { + background-position: 0 -112px; +} + +#overviews_link_hover_menu .hides_overview a { + background-position: 0 -128px; +} + +#overviews_link_hover_menu .town_group_overview a { + background-position: 0 -144px; +} + +#overviews_link_hover_menu .towns_overview a { + background-position: 0 -160px; +} + +#overviews_link_hover_menu .farm_town_overview a { + background-position: 0 -176px; +} + +#overviews_link_hover_menu .attack_planer a { + background-position: 0 -192px; +} + +.ranking_table table { + text-align: center; + width: 100%; +} + +#ranking_fixed_table_header { + width: 100%; +} + +.ranking_table .ranking_table_body { + position: relative; + height: 431px; + overflow-y: auto; + overflow-x: hidden; +} + +#ranking_search { + float: right; +} + +#ranking_search>* { + margin: 2px 2px; +} + +#ranking_search #ranking_search_input { + float: left; + margin-top: 2px; +} + +#ranking_search a.button { + float: left; +} + +#ranking_search_info { + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat scroll 0 0; + position: absolute; + width: 809px; + height: 23px; + padding: 1px; + z-index: 5; + overflow: hidden; + border-bottom: 1px solid #d0be97; +} + +#ranking_search_info span { + padding: 3px; + float: left; +} + +#ranking_search div { + float: left; +} + +#ranking_search_info .cancel { + float: right; + margin-right: 16px; +} + +#ranking_search_info_placeholder { + height: 25px; +} + +#ranking_buttons li ul li { + float: left; +} + +#ranking_buttons li ul { + position: absolute; + visibility: hidden; + top: 25px; + left: 0; +} + +#ranking_container { + height: 80%; + position: relative; + float: left; +} + +#ranking_buttons li ul li a.submenu_link { + float: left; +} + +.jump_button { + display: inline-block; + height: 23px; + width: 22px; + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/map/map_jump_button.png); + background-position: 0 23px; +} + +.jump_button:hover { + background-position: 0 0; +} + +.r_ally, +.r_avg_points, +.r_name, +.r_points, +.r_rank, +.r_towns { + overflow: hidden; +} + +.global_ranking .r_rank { + width: 63px; +} + +.alliance_ranking .r_rank, +.grepo_score_world_ranking .r_rank { + width: 77px; +} + +.kill_alliance_ranking .r_rank { + width: 121px; +} + +.kill_player_ranking .r_rank { + width: 99px; +} + +.wonder_ranking .r_rank, +.wonder_ranking .r_sea, +.wonder_ranking .r_stage { + width: 49px; +} + +.global_ranking .r_name, +.wonder_ranking .r_name { + width: 143px; +} + +.alliance_ranking .r_name { + width: 300px; +} + +.kill_alliance_ranking .r_name { + width: 487px; +} + +.kill_player_ranking .r_name { + width: 170px; +} + +.grepo_score_world_ranking .r_name { + width: 230px; +} + +.global_ranking .r_ally { + width: 249px; +} + +.kill_player_ranking .r_ally { + width: 372px; +} + +.grepo_score_world_ranking .r_ally { + width: 360px; +} + +.global_ranking .r_avg_points { + width: 138px; +} + +.alliance_ranking .r_avg_points { + width: 170px; +} + +.global_ranking .r_points { + width: 78px; +} + +.alliance_ranking .r_points { + width: 107px; +} + +.grepo_score_world_ranking .r_points { + width: 130px; +} + +.kill_alliance_ranking .r_points { + width: 167px; +} + +.kill_player_ranking .r_points { + width: 123px; +} + +.wonder_ranking .r_points { + width: 62px; +} + +.global_ranking .r_towns { + width: 73px; +} + +.alliance_ranking .r_player { + width: 98px; +} + +.alliance_ranking .r_towns { + width: 110px; +} + +.wonder_ranking .r_wonder { + width: 388px; +} + +#ranking_table_wrapper { + max-height: 374px; + overflow-y: auto; + overflow-x: hidden; +} + +.ranking_table td.r_ally img.ally_icon { + vertical-align: middle; +} + +#ranking_search .search_term_name { + max-width: 120px; +} + +#report_reports .report_subject { + float: left; + width: 530px; + vertical-align: top; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +#report_reports .reports_date { + position: relative; + margin-left: 530px; + text-align: right; + line-height: 19px; +} + +.published_report .reports_date { + float: right; + line-height: 16px; +} + +#report_reports .game_list { + width: 100%; + overflow-y: auto; + overflow-x: hidden; + height: 401px; +} + +#report_reports #pub_report_list { + height: 451px; +} + +#report_reports .dd_filter_type { + position: absolute; + top: 0; + right: 0; + width: 150px; +} + +#report_reports .game_list.with_menu { + height: 317px; +} + +#folder_menu_reports { + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0; + border-bottom: 1px solid #d1bf91; + height: 104px; + overflow-x: auto; + overflow-y: hidden; + position: relative; + display: none; + word-spacing: nowrap; + width: 792px; + padding-bottom: 5px; +} + +#folder_menu_reports .hor_scrollbar_cont { + position: relative; + width: 1000px; + height: 97px; + overflow: hidden; +} + +#folder_menu_reports #no_folders { + padding: 8px; + height: 28px; + display: block; +} + +#farm_report_form, +#report_form { + margin: 0; +} + +#report_reports .button_area { + position: absolute; + right: 0; +} + +#report_reports .button_area .button { + float: right; +} + +#report_report { + overflow: hidden; +} + +#report_report #right_side_container { + position: relative; + float: left; + width: 220px; + padding: 5px; +} + +#report_report_header { + height: 18px; +} + +#report_report_header .game_header, +#report_report_header.game_header { + padding: 2px 64px; + text-align: center; +} + +#report_report_header .subject { + text-align: center; + width: 100%; + display: inline-block; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +#report_report_header .next_button, +#report_report_header .previous_button { + display: inline-block; + position: absolute; + border: none; +} + +#report_report_header .previous_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -19px; + width: 52px; + height: 19px; + left: 6px; +} + +#report_report_header .previous_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px 0; + width: 52px; + height: 19px; +} + +#report_report_header .previous_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 0; + width: 52px; + height: 19px; +} + +#report_report_header .previous_button:disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -19px; + width: 52px; + height: 19px; +} + +#report_report_header .next_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -38px; + width: 52px; + height: 19px; + right: 6px; +} + +#report_report_header .next_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -57px; + width: 52px; + height: 19px; +} + +#report_report_header .next_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -38px; + width: 52px; + height: 19px; +} + +#report_report_header .next_button:disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -57px; + width: 52px; + height: 19px; +} + +#report_report .game_list_footer .button { + float: right; +} + +ul.report_units li { + width: 40px; + height: 40px; + margin: 0 3px 3px 0; + float: left; + background-repeat: no-repeat; + background-color: #862; + position: relative; + border: 1px solid #862; +} + +ul.report_units li span.unit_loss { + position: absolute; + display: none; + width: 100px; + margin-left: -30px; + bottom: 0; + left: 0; + color: #fff; + font-size: 16px; + text-align: center; + z-index: 2; +} + +ul.report_units li span.unit_loss_bloodcover { + position: absolute; + display: block; + top: 0; + left: 0; + width: 40px; + height: 40px; + background-color: red; +} + +ul.report_units li span.report_unit_black, +ul.report_units li span.report_unit_white { + font-weight: 400; +} + +.report_unit { + float: left; + margin: 1px; + position: relative; + width: 40px; + height: 40px; + border: 1px solid #431; +} + +.report_unit_black { + position: absolute; + right: 1px; + bottom: 1px; +} + +.report_unit_white { + position: absolute; + color: #fff; + right: 2px; + bottom: 2px; +} + +#report_result { + padding-left: 4px; + clear: left; +} + +#report_get_mood_strength, +#report_get_resources { + border-width: 1px; + border-style: solid; + border-color: #deb25a; + background: #f7dca2; + padding: 2px; + text-align: center; +} + +.report_side_attacker { + float: left; + margin-right: -1px; +} + +.report_side_attacker .power_holder, +.report_side_defender .power_holder { + display: inline-block; +} + +.report_side_attacker_empty { + min-height: 10px; +} + +.report_side_attacker_unit { + display: inline-block; + margin-right: -4px; + width: 50px; + text-align: center; +} + +.report_side_defender { + float: right; + width: 40px; + text-align: right; +} + +.report_side_defender_unit { + display: inline-block; + margin-left: -4px; + width: 50px; + text-align: center; +} + +.report_units_overview { + height: 369px; + clear: both; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png); + overflow: hidden; +} + +.report_units { + width: 267px; + position: relative; + border-width: 0; + height: inherit; +} + +.report_units.report_side_defender { + padding-right: 6px; +} + +.report_units.report_side_attacker { + padding-left: 6px; +} + +.report_units_type .report_units { + float: none; + clear: both; +} + +.report_alliance_power, +.report_power { + float: left; + margin: 3px; +} + +.report_side_defender .report_power { + float: right; +} + +.report_losts { + color: #d00; + font-size: 11px; +} + +.report_wins { + color: #0d0; +} + +#report_booty { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); + border-width: 0; + border-top-width: 1px; + border-style: solid; + border-color: #ca8; +} + +.report_booty_bonus_fight { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); + width: 244px; + float: left; + text-align: center; + border-left: 1px solid #ca8; + border-right: 1px solid #ca8; + padding-bottom: 100%; + margin-bottom: -100%; +} + +.report_units .fight_bonus.morale, +.report_units .fight_bonus.nightbonus { + margin: 0; + padding: 0; + display: block; + background: 0 0; + float: none; +} + +.fight_report_town { + padding: 4px; +} + +.units_population { + display: flex; + justify-content: space-evenly; + align-items: center; + height: 25px; + margin-top: 10px; +} + +.units_population div:first-child, +.units_population div:last-child { + width: 25%; +} + +.units_population div:nth-of-type(2) { + width: 50%; +} + +.units_population .population_icon { + margin: 0 auto; +} + +.folder_hide { + display: none; +} + +.folder_input { + float: left; +} + +.folder_save { + cursor: pointer; + float: left; +} + +#folder_container { + height: 453px; + width: 100%; + overflow-x: hidden; + overflow-y: hidden; + position: relative; +} + +#report_folder_left, +#report_folder_right { + float: left; +} + +#report_folder_right { + margin-left: 15px; +} + +#report_folder_left .game_header { + width: 400px; +} + +#report_folder_left ul.game_list { + overflow-y: auto; + max-height: 440px; +} + +#report_folder_right .game_header { + width: 299px; +} + +#report_folder_right #folder_form .button { + margin-top: -1px; +} + +#report_folder_right #new_folder_name { + float: left; +} + +#report_folder_right .game_body { + height: 22px; +} + +#trade_report_container { + height: 80px; +} + +.res_background32 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -122px -224px; + width: 32px; + height: 32px; +} + +.res_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -76px -224px; + width: 46px; + height: 46px; +} + +.res_background .favor_img, +.res_background .iron_img, +.res_background .pop_img, +.res_background .stone_img, +.res_background .storage_img, +.res_background .wood_img { + margin: 8px; +} + +.res_background, +.res_background32 { + z-index: 1; + position: relative; + text-align: center; + display: inline-block; +} + +.resource_list li { + display: inline-block; + margin-right: 5px; +} + +.resource_list .res_background32 .resources_small { + margin: 8px 5px; +} + +.resource_list span { + font-size: smaller; +} + +.resource_list .res_background32, +.resource_list span { + vertical-align: middle; +} + +.res_background span, +.res_background32 span { + margin-top: 10px; +} + +.res_background span { + display: block; +} + +#demand.res_background span { + color: #d00; +} + +#offer.res_background span { + color: #070; +} + +#trade_ratio { + width: 50px; + height: 30px; + padding: 12px 8px; + z-index: 1; + position: relative; + text-align: center; + vertical-align: top; + display: inline-block; +} + +.clear { + clear: both; +} + +#report_date { + margin-top: 5px; + float: left; +} + +#report_header { + border-bottom: 1px solid #ca8; + height: 75px; +} + +.report_town_bg { + background: url(https://gpfr.innogamescdn.com/images/game/report/bg_village.png) no-repeat; + width: 76px; + height: 57px; + text-align: center; + margin: 5px; + padding: 3px; +} + +.report_town_bg_quest { + background: url(https://gpfr.innogamescdn.com/images/game/report/quest_report_icon.png) no-repeat center; + width: 76px; + height: 78px; + text-align: center; + margin: -2px 5px 0 5px; + padding: 0 3px 0 3px; + float: left; +} + +.report_town_bg_attack_spot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 -94px; + width: 45px; + height: 45px; + text-align: center; + margin: 1px 5px 0 5px; + float: right; +} + +#report_receiving_town .report_town_bg_quest, +.defender .report_town_bg_quest { + float: right; +} + +.report_town_bg .island_bg { + background: url(https://gpfr.innogamescdn.com/images/game/report/bg_village_island.jpg) 0 0 no-repeat; + width: 76px; + height: 56px; + position: relative; + z-index: 1; + overflow: hidden; +} + +.report_town_bg .island_bg .flag_foundation { + width: 39px; + height: 54px; +} + +.report_town_bg .island_bg .flag_foundation .flagpole { + background: 0 0; +} + +.report_town_bg .island_bg .flag_colonization { + width: 32px; + height: 50px; +} + +.report_town_bg .island_bg .flag_colonization .flagpole { + background: 0 0; +} + +.report_town_bg .island_bg .flag_colonization { + left: 22px; +} + +.report_town_bg .island_bg .flag_foundation { + left: 30px; +} + +.report_town_bg .island_bg.nw { + background-position: 0 0; +} + +.report_town_bg .island_bg.nw .flag_colonization { + top: 2px; +} + +.report_town_bg .island_bg.nw .flag_foundation { + top: 0; +} + +.report_town_bg .island_bg.ne { + background-position: -76px 0; +} + +.report_town_bg .island_bg.ne .flag_colonization { + top: 2px; +} + +.report_town_bg .island_bg.ne .flag_foundation { + top: -5px; +} + +.report_town_bg .island_bg.sw { + background-position: -152px 0; +} + +.report_town_bg .island_bg.sw .flag_colonization { + top: -5px; +} + +.report_town_bg .island_bg.sw .flag_foundation { + top: -15px; +} + +.report_town_bg .island_bg.se { + background-position: -228px 0; +} + +.report_town_bg .island_bg.se .flag_colonization { + top: -5px; +} + +.report_town_bg .island_bg.se .flag_foundation { + top: -10px; +} + +.report_town_bg .island_bg.farm { + background-position: -304px 0; +} + +.report_town_bg .town_icon { + top: 10px; + left: 10px; +} + +.report_town_bg .town_icon.tile.ft1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 0; + width: 57px; + height: 36px; +} + +.report_town_bg .town_icon.tile.ft2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px 0; + width: 57px; + height: 36px; +} + +.report_town_bg .town_icon.tile.ft3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -36px; + width: 57px; + height: 36px; +} + +.report_town_bg .town_icon.tile.ft4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -36px; + width: 57px; + height: 36px; +} + +.report_town_bg .town_icon.tile.ft5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -72px; + width: 57px; + height: 36px; +} + +.report_town_bg .colonization_icon, +.report_town_bg .foundation_icon { + width: 100%; + height: 100%; +} + +div.report_god { + height: 67px; + width: 82px; + background-repeat: no-repeat; + margin: 4px; + float: left; +} + +div.report_god div.god_mini { + float: none; + margin: 0 auto; +} + +.report_command { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack.png); + width: 50px; + height: 50px; + float: right; + margin: 4px; +} + +#report_action_bg { + background: url(https://gpfr.innogamescdn.com/images/game/report/report_action_bg.png) center 0 no-repeat; + width: 246px; + height: 75px; + float: left; + position: relative; +} + +#report_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/report/report_header_arrow_green.png) no-repeat center center; + width: 198px; + top: 8px; + height: 56px; + position: absolute; + left: 31px; + text-align: center; +} + +#report_arrow>div { + background: url(https://gpfr.innogamescdn.com/images/game/report/report_attack_img_bg.png) no-repeat center center; + height: 56px; + width: 56px; + display: inline-block; + position: relative; + top: 3px; +} + +#report_arrow>div.small { + transform: scale(.7); + margin-right: -10px; +} + +#report_arrow>div.large { + margin-right: -2px; +} + +#report_arrow>div img { + top: 3px; + position: relative; +} + +#report_receiving_town, +#report_sending_town { + width: 273px; +} + +#report_sending_town, +#report_sending_town .report_town_bg { + float: left; +} + +#report_sending_town ul { + text-align: left; + position: relative; + top: 5px; + margin-left: 92px; + width: 165px; +} + +#report_receiving_town ul { + text-align: right; + position: relative; + top: 5px; + margin-right: 92px; + width: 165px; +} + +#report_receiving_town, +#report_receiving_town .report_town_bg { + float: right; +} + +div.bar_container { + background: url(https://gpfr.innogamescdn.com/images/game/report/report_mood_strength_frame.png); + width: 84px; + height: 18px; + padding: 3px; + display: inline-block; +} + +div.bar_container .report_farm_bar { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_bar.png) no-repeat; + height: 18px; + width: 84px; + color: #fff; + white-space: nowrap; + text-align: center; + letter-spacing: -1px; +} + +div.bar_container .report_farm_bar_diff { + background: url(https://gpfr.innogamescdn.com/images/game/report/report_farm_bar_diff.png) no-repeat; + height: 18px; + width: 84px; +} + +#report_mood_strength { + text-align: right; + padding: 10px 4px 15px 0; +} + +#booty_units, +#report_gift, +#resources { + padding: 4px; +} + +#resources>ul li { + float: left; + margin: 0 3px 15px; +} + +#report_gift>ul li { + float: left; + margin: 0 3px; + height: 50px; +} + +#resources.center>ul { + text-align: center; + width: 200px; +} + +#resources.center>ul li { + float: none; +} + +#resources>ul { + margin: 0 auto; + width: 156px; +} + +#report_report #kill_points, +.fight_report_classic.published #kill_points, +.published_report #kill_points { + font-weight: 700; +} + +#report_report #kill_points .icon, +.fight_report_classic.published #kill_points .icon, +.published_report #kill_points .icon { + background-image: url(https://gpfr.innogamescdn.com/images/game/place/icon_battlepoints_large.png); + width: 31px; + height: 29px; + margin: 4px auto 0 auto; + text-align: center; +} + +#report_report #left_side { + border-right: 1px solid #ca8; + width: 514px; + float: left; + margin-bottom: -50%; + padding-bottom: 50%; +} + +#report_container h4, +#report_report #left_side h4, +#report_report #right_side h4 { + padding: 3px 6px; +} + +#report_report #right_side { + width: 277px; + float: right; +} + +#payed_iron { + text-align: center; +} + +#payed_iron span { + vertical-align: top; +} + +#report_power_symbol { + float: left; + width: 86px; + height: 86px; + margin: 15px; +} + +hr { + color: #ca8; +} + +#resources #load { + display: block; + text-align: center; +} + +#report_game_body p { + padding: 0 6px; +} + +#report_game_body { + padding: 0; + width: 792px; + overflow: hidden; +} + +#report_game_body.gold_trade_offer_canceled { + max-height: 375px; + overflow: auto; +} + +#report_game_body.farm_town_attack .report_booty_bonus_fight { + width: 240px; +} + +#report_game_body.send_support_units_back .supporting_units, +#report_game_body.support .supporting_units { + height: 42px; + margin: 6px; +} + +#report_game_body.receive_bundle_or_package img { + vertical-align: middle; +} + +.report_flag { + position: relative; + width: 10px; + height: 12px; + z-index: 11; +} + +.report_icon { + width: 20px; + height: 20px; + display: block; + float: left; +} + +span.report_icon { + margin-left: 5px; +} + +.report_icon.morale { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -194px -224px; + width: 20px; + height: 20px; +} + +.report_icon.luck { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -174px -224px; + width: 20px; + height: 20px; +} + +.report_icon.wall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -254px -224px; + width: 20px; + height: 20px; +} + +.report_icon.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -154px -224px; + width: 20px; + height: 20px; +} + +.report_icon.stone_hail { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -234px -224px; + width: 20px; + height: 20px; +} + +.report_icon.night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -214px -224px; + width: 20px; + height: 20px; +} + +.report_icon.info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + cursor: pointer; + float: none; + display: inline-block; + vertical-align: middle; +} + +table.report_details, +table.report_details table { + text-align: center; + margin: 0 auto; +} + +table.report_details .attack_type_img { + width: 50px; + height: 50px; +} + +table.report_details .attack_strategy_img, +table.report_details .attack_type_img { + margin: 0 auto; +} + +table.report_details .attack_strategy_img { + transform: scale(.7); + margin-right: -7px; +} + +table.report_details .power_holder .attack_type_img { + float: left; +} + +table.report_details .report_icon { + float: none; + display: inline; + padding: 3px 0 2px 20px; +} + +table .report_icon.morale { + margin: 0; +} + +.report_icon.float_right { + float: right; +} + +table .report_icon.catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/reports/reports_spritesheet_02096cd.png) no-repeat -254px -224px; + width: 20px; + height: 20px; + float: none; +} + +.nightbonus .report_icon, +table .report_icon.nightbonus { + float: right; +} + +.fight_bonus { + height: 20px; + display: block; + text-align: left; + line-height: 20px; +} + +.fight_bonus.nightbonus, +.fight_bonus.oldwall { + text-align: right; +} + +.strategy_attack_type { + height: 50px; + overflow: hidden; + text-align: center; +} + +#farm_report_form .game_table, +#resource_transport_report_form .game_table { + width: 100%; +} + +#farm_report_form .game_table th, +#resource_transport_report_form .game_table th { + color: #000; +} + +#farm_report_form .game_table td, +#resource_transport_report_form .game_table td { + padding: 2px; +} + +#farm_report_form .game_table td:first-child { + text-align: center; +} + +#report_form .reports_date>* { + vertical-align: middle; +} + +#farm_report_form .game_list_footer, +#message_form .game_list_footer, +#report_form .game_list_footer, +#resource_transport_report_form .game_list_footer { + height: 20px; + position: absolute; + right: 0; + left: 0; + bottom: 0; +} + +#resource_transport_report_form #folder_container { + height: 430px; + overflow-y: auto; + overflow-x: hidden; +} + +td .resource_count { + width: 64px; + display: inline-block; + float: none; + margin: 0; + text-align: right; +} + +#game_res_trans_table td { + overflow: hidden; +} + +#report_publish_dialog .publish_report_subject { + padding: 0 0 8px 0; +} + +#report_publish_dialog .publish_report_options_all { + padding: 3px 0; +} + +#report_publish_dialog #publish_report_options { + padding: 0 0 10px 20px; +} + +#report_publish_dialog #publish_report_options div { + padding: 1px 0 0 0; +} + +#report_publish_dialog .publish_report_public_id_wrap { + clear: both; + padding: 20px 0 0 0; +} + +#report_publish_dialog .publish_report_public_id_wrap #publish_report_public_id { + width: 320px; + display: block; + margin: 3px 0 10px 0; +} + +.publish_report_error { + color: #e72200; +} + +.publish_report_public_id_wrap textarea#publish_report_public_id { + width: 394px; + height: 100px; +} + +.published_report { + border: 1px solid #ca8; + margin: 4px 12px 12px; +} + +.published_report .toggle { + background: #ca8; +} + +.published_report .report_units { + width: 30%; + float: left; + padding: 0 0 150px 0; + margin: 0 0 -150px 0; +} + +.published_report .report_side_attacker { + border-right: 1px solid #ccc; + margin-right: -1px; +} + +.published_report .report_side_defender { + border-left: 1px solid #ccc; + margin-left: -1px; +} + +.published_report .report_unit { + width: 40px; + height: 40px; +} + +.published_report .report_unit_container { + width: 25px; + margin: 3px; +} + +.published_report .report_units_overview { + height: auto; + width: 100%; + background: #fff; + position: relative; +} + +.published_report .report_booty_bonus_fight { + width: 40%; + float: left; + background: 0 0; + border: none; + margin-bottom: 0; + padding-bottom: 0; +} + +.published_report_header img { + vertical-align: text-top; +} + +.published_report_header { + border-bottom: 1px solid #ca8; + padding: 4px; + background-color: #f5e3ae; +} + +.published_report .report_side_attacker_unit, +.published_report .report_side_defender_unit { + width: 40px; +} + +.published_report .resources { + clear: both; + text-align: center; + margin-bottom: 5px; + margin-top: 11px; +} + +.published_report .resources .resource_count { + text-align: right; + margin: 0 5px; + padding: 0 0 0 26px; + min-width: 0; + float: none; + width: auto; + display: inline-block; + line-height: 16px; + height: 16px; +} + +.published_report .espionage_report, +.published_report .power_report { + background: #fff; + overflow: hidden; + padding-bottom: 5px; +} + +.published_report .spy_buildings>div, +.published_report .spy_god, +.published_report .spy_payed, +.published_report .spy_resources, +.published_report .spy_units>div { + margin: 3px; + vertical-align: middle; +} + +.spy_resources .resource_count { + text-align: left; + padding: 0 0 0 25px; +} + +.spy_success_left_align { + text-align: left; + margin-left: 10px; + display: inline-block; + padding-bottom: 10px; +} + +.god_display { + display: inline-block; + font-size: smaller; + vertical-align: middle; +} + +#report_filter img { + vertical-align: middle; +} + +#select_folder_id { + float: left; + margin-left: 15px; +} + +#report_img { + clip: rect(0,50px,50px,0); + overflow: hidden; + position: absolute; +} + +#report_filter #rf_innerdiv { + height: 190px; +} + +#report_filter fieldset { + border: 2px groove #fc6; +} + +#rf_btn_section { + float: right; +} + +#report_list li.report_item.draggable { + z-index: 20000; + list-style-type: none; +} + +#report_list li.report_item { + height: 20px; +} + +.report_item.ui-draggable-dragging { + z-index: 20000; + list-style-type: none; + text-align: left; + height: 19px; + padding: 4px 2px; + border: 1px solid #d2bd96; + opacity: .8; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.multidragging { + background-color: #ffe7b6; + position: absolute; + z-index: 20000; + border: 1px solid #d1bf91; + opacity: .8; +} + +.multidragging .report_item { + border: 0; + border-top: 1px solid #d2bd96; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + list-style-type: none; + text-align: left; + padding: 4px 2px; +} + +.report_item .report_subject { + float: left; + overflow: hidden; + vertical-align: top; +} + +.report_item .reports_date { + position: relative; + margin-left: 285px; + text-align: right; +} + +.iq_image_frame { + background-image: url(https://gpfr.innogamescdn.com/images/game/report/iq_image_frame.png); + height: 210px; + width: 465px; + margin: 0 auto; + position: relative; +} + +.iq_image_frame .quest_name { + color: #fc6; + font-weight: 700; + line-height: 30px; + margin: 0 35px; + font-size: 13px; + text-align: center; +} + +.iq_image_frame .portrait .frame, +.island_quests .window_quest_descr .portrait .frame { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quests_sprite_2.58_compressed.png) no-repeat scroll -668px 0 transparent; + height: 163px; + left: -12px; + position: absolute; + top: -7px; + width: 231px; +} + +.big_horizontal_report_separator { + background: url(https://gpfr.innogamescdn.com/images/game/report/big_horizontal_separator.jpg) no-repeat scroll 0 0 transparent; + clear: both; + height: 30px; + padding: 0; + width: 100%; +} + +.big_horizontal_report_separator .report_booty_bonus_fight { + background: 0 0; + overflow: hidden; +} + +.big_horizontal_report_separator h4 { + color: #fff; + line-height: 28px; + text-align: center; +} + +.support_report_summary { + overflow: hidden; +} + +.support_report_cities { + overflow-y: scroll; + max-height: 130px; +} + +.support_report_city { + overflow: hidden; + border-bottom: 1px solid #ca8; +} + +.support_report_city .report_side_defender { + padding: 6px 6px 2px 6px; +} + +.support_report_city .report_booty_bonus_fight { + text-align: right; +} + +.support_report_city .report_booty_bonus_fight .bbcodes_town { + padding: 0 16px 0 23px; + position: relative; + top: 23px; +} + +.towninfo.attack { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack.png); +} + +.world_wonder_endangered { + max-height: 370px; + overflow: auto; +} + +.world_wonder_endangered .wonder_container { + margin: 10px; +} + +.world_wonder_endangered .wonder_container .headline { + border-bottom: 1px solid #d0be97; +} + +.world_wonder_endangered .wonder_container ul { + margin: 10px; +} + +a.button.espionage_simulator_link { + margin-top: 10px; +} + +.storage_resbar { + background: url(https://gpfr.innogamescdn.com/images/game/storage/resbar.png) no-repeat; + position: relative; + width: 328px; + height: 47px; + padding-bottom: 2px; +} + +.storage_resbar.storage_iron, +.storage_resbar.storage_stone { + margin-top: 15px; +} + +.storage_resbar .storage_resbar_title { + position: absolute; + width: 280px; + height: 18px; + top: 6px; + left: 46px; + text-align: center; + font-size: 12px; +} + +.storage_resbar .storage_resfull { + width: 280px; + height: 18px; + position: absolute; + left: 45px; + top: 27px; + text-align: center; + color: #fff; +} + +.storage_res { + background-image: url(https://gpfr.innogamescdn.com/images/game/storage/res.png); + background-repeat: no-repeat; + height: 18px; + position: absolute; + top: 25px; + left: 45px; +} + +#storage_favor { + background-position: 0 -54px; +} + +#storage_favoricon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -150px; + position: absolute; + top: 0; + left: 0; + width: 30px; + height: 30px; + margin: 8px 0 0 8px; +} + +#temple_gods.num_of_gods_5 { + left: 39px; +} + +#temple_gods p { + font-weight: 700; +} + +#temple_god_big { + top: 5px; + position: relative; +} + +#temple_god_big, +.select_god, +.temple_button_pos_1 { + left: 100px; + width: 290px; +} + +#temple_god_big div { + position: absolute; +} + +#temple_god_fade { + z-index: 2; +} + +#temple_god_static { + z-index: 1; +} + +#temple_god_description { + position: absolute; + left: 415px; + top: 15px; + text-align: left; +} + +#temple_god_description h4, +#temple_god_description p { + margin: 5px; +} + +#temple_god_description h3 { + margin-bottom: 5px; + margin-top: 0; +} + +#temple_god_description .god_mini { + float: left; + margin-right: 10px; + width: 67px; + height: 67px; + display: block; +} + +.temple_god_power { + position: relative; + float: left; + background-repeat: no-repeat; + width: 86px; + height: 86px; +} + +.god_info_box h4 { + clear: both; +} + +#temple_god { + position: absolute; + top: 50px; + left: 20px; +} + +#temple_god #temple_shield { + margin-top: 42px; + height: 240px; +} + +#temple_god_middle { + position: absolute; + top: 70px; + left: 90px; +} + +.temple_power { + position: absolute; + width: 86px; + height: 86px; + background-position: 0 -172px; + background-repeat: no-repeat; +} + +.temple_power1 { + left: 5px; + top: 51px; +} + +.temple_power2 { + left: 65px; + top: -20px; +} + +.temple_power3 { + left: 158px; + top: -20px; +} + +.temple_power4 { + left: 218px; + top: 51px; +} + +#temple_favor_bar { + position: absolute; + top: 305px; + left: 100px; +} + +#temple_favor_bar.hide { + display: none; +} + +#temple_favor_bar .progressbar_time_and_value { + top: 4px; + text-align: center; + color: #fff; +} + +#temple_favor_bar .progressbar_time_and_value .info { + color: #000; +} + +#temple_favor_bar .progressbar_time_and_value .time { + position: absolute; + bottom: 0; + left: 50%; + width: 200px; + margin-left: -100px; + color: #fff; +} + +#temple_button, +.select_god { + position: absolute; +} + +.select_god, +.temple_button_pos_1 { + top: 315px; + text-align: center; +} + +.temple_button_pos_2 { + top: 305px; + left: 412px; +} + +.temple_unit { + margin-right: 10px; + overflow: visible; +} + +.temple_unit.mythical_frame:after { + background: url(https://gpfr.innogamescdn.com/images/game/frames/units_76x76_frame.png) no-repeat; + content: ""; + width: 76px; + height: 76px; + position: absolute; + left: -3px; + top: -1px; +} + +.temple_power_popup .temple_power_popup_image { + position: relative; + float: left; +} + +.temple_power_popup .temple_power_popup_info { + margin-left: 96px; + margin-bottom: 10px; + width: 250px; +} + +.temple_power_popup .temple_power_popup_info .favor_cost_info { + margin-bottom: 5px; +} + +.temple_power_popup .temple_power_popup_info .population_info { + margin: 0 0 5px -4px; +} + +.temple_power_popup .temple_power_popup_info .population_info .population_icon { + display: inline-block; + margin-right: 5px; + vertical-align: middle; +} + +.temple_power_popup .temple_power_popup_info .population_info b { + line-height: 30px; + vertical-align: middle; +} + +.temple_power_popup .temple_power_popup_info .duration { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat 0 0; + display: inline-block; + vertical-align: middle; + margin-right: 5px; +} + +.temple_power_popup .temple_power_popup_info p:nth-of-type(2) { + margin-bottom: 10px; +} + +.temple_power_popup .temple_power_popup_info .eta { + vertical-align: middle; +} + +.temple_power_popup .temple_power_popup_info .eta~.bold { + display: inline-block; + margin-top: 6px; +} + +.temple_power_popup.no-image .temple_power_popup_info { + margin-left: 0; +} + +.temple_power_popup .temple_power_popup_info img { + vertical-align: middle; + margin-right: 6px; +} + +.temple_power_popup.no-image .temple_power_popup_image { + display: none; +} + +.temple_power_popup .resource_icon { + display: inline-block; + vertical-align: middle; + margin: 0 5px 0 -4px; +} + +.temple_power_popup .resource_icon~* { + vertical-align: middle; +} + +.temple_power_popup .resource_icon.favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 -60px; + width: 30px; + height: 30px; +} + +.temple_power_popup .resource_icon.time { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +.temple_power_popup .resource_icon.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -90px 0; + width: 30px; + height: 30px; +} + +.temple_unit_popup .unit_icon90x90 { + float: left; + padding-right: 6px; +} + +.temple_unit_popup .temple_unit_popup_info { + margin-left: 110px; + width: 250px; +} + +.temple_list { + margin: 10px; + padding: 10px; + list-style: disc; +} + +#temple_priest_hint { + position: absolute; + bottom: 2px; +} + +#temple_priest_hint .advisor_hint { + padding-left: 72px; +} + +#temple_priest_hint .advisor_icon { + left: 0; + cursor: pointer; +} + +.confirm_changing_god { + padding-left: 10px; + padding-right: 10px; +} + +.confirm_changing_god .buttons, +.confirm_changing_god .checkbox_container, +.confirm_changing_god h3, +.confirm_changing_god p { + text-align: center; +} + +.confirm_changing_god .lost_units { + width: 100%; + text-align: center; + margin-bottom: 10px; +} + +.confirm_changing_god .lost_units .unit_container { + display: inline-block; + float: none; + height: auto; +} + +.confirm_changing_god .lost_units .unit_container.hidden { + display: none; +} + +.confirm_changing_god .lost_units .supporting_units, +.confirm_changing_god .lost_units .town_units { + display: inline-block; + width: 30%; +} + +.confirm_changing_god .lost_units .unit { + width: 39px; + height: 14px; + padding-top: 26px; + padding-right: 1px; + position: relative; + display: block; + float: left; + text-align: right; + font-family: Verdana; + font-weight: 700; + font-size: 12px; + margin: 1px; + color: #fff; + text-shadow: 1px 1px 0 #000; + cursor: pointer; + overflow: visible; + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; + margin: 10px 7px 5px 5px; +} + +.confirm_changing_god .lost_units .unit.hidden { + display: none; +} + +ul#colonization_commands li, +ul#revolts_beyond li, +ul#revolts_in_current_town li, +ul#spy_movements li, +ul#trades li, +ul#unit_movements li { + width: 230px; + height: 50px; + float: left; +} + +ul#colonization_commands li img, +ul#revolts_beyond li img, +ul#revolts_in_current_town li img, +ul#spy_movements li img, +ul#trades li img, +ul#unit_movements li img { + height: 32px!important; + width: 32px!important; + float: left; + display: block; +} + +ul#revolts_beyond li img, +ul#revolts_in_current_town li img { + margin: 0 12px; +} + +ul#colonization_commands li *, +ul#spy_movements li *, +ul#trades li *, +ul#unit_movements li * { + margin-right: 1px; + overflow: hidden; +} + +ul#colonization_commands .unit_movements_arrow, +ul#spy_movements .spy_movements_arrow, +ul#trades .unit_movements_arrow, +ul#unit_movements .unit_movements_arrow { + float: left; + width: 11px; + height: 32px; +} + +#unit_movements .unit_movements_time { + float: right; + width: 100px; +} + +#colonization_commands .unit_movements_time, +#spy_movements .unit_movements_time { + float: right; + width: 100px; + position: relative; +} + +#conqueror_units .unit_movements_time { + width: 100px; +} + +.tab_content h4 { + margin: 0 0 0 12px; +} + +.image { + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/unit_overview/buildings_30x30.png) no-repeat; + position: relative; + cursor: pointer; +} + +.level { + position: absolute; + bottom: 1px; + right: 1px; + color: #000; +} + +.level.white { + color: #fff; +} + +.trade_bubble .trade_icon { + float: left; +} + +.support_filter { + width: 24px; + height: 48px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/filter_24x24_455e697.png) no-repeat; + height: 24px; +} + +.support_filter.abort { + background-position: 0 0; +} + +.support_filter.abort.inactive { + background-position: 0 -24px; +} + +.support_filter.attack_land { + background-position: -24px 0; +} + +.support_filter.attack_land.inactive { + background-position: -24px -24px; +} + +.support_filter.attack_sea { + background-position: -48px 0; +} + +.support_filter.attack_sea.inactive { + background-position: -48px -24px; +} + +.support_filter.attack_spy { + background-position: -72px 0; +} + +.support_filter.attack_spy.inactive { + background-position: -72px -24px; +} + +.support_filter.attack_takeover { + background-position: -96px 0; +} + +.support_filter.attack_takeover.inactive { + background-position: -96px -24px; +} + +.support_filter.breakthrough { + background-position: -120px 0; +} + +.support_filter.breakthrough.inactive { + background-position: -120px -24px; +} + +.support_filter.farm_attack { + background-position: -144px 0; +} + +.support_filter.farm_attack.inactive { + background-position: -144px -24px; +} + +.support_filter.portal_attack_olympus { + background-position: -168px 0; +} + +.support_filter.portal_attack_olympus.inactive { + background-position: -168px -24px; +} + +.support_filter.portal_support_olympus { + background-position: -192px 0; +} + +.support_filter.portal_support_olympus.inactive { + background-position: -192px -24px; +} + +.support_filter.revolt { + background-position: -216px 0; +} + +.support_filter.revolt.inactive { + background-position: -216px -24px; +} + +.support_filter.support { + background-position: -240px 0; +} + +.support_filter.support.inactive { + background-position: -240px -24px; +} + +.support_filter.inactive { + background-position-y: -24px; +} + +#mines_values td { + padding: 6px; + font-weight: 700; +} + +.mines_table { + position: relative; + float: left; + table-layout: fixed; + border-collapse: collapse; + width: 375px; +} + +#mines_values .mines_table { + width: 387px; + float: left; + position: relative; +} + +#mines_values tr.even { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png); +} + +#mines_values tr.odd { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); + border-top: 1px solid #d1bf91; + border-bottom: 1px solid #d1bf91; +} + +#mines_descriptions { + position: absolute; + width: 340px; + left: 410px; +} + +#mines_text { + padding: 5px; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); +} + +#mines_text h3 { + margin: 4px 0; +} + +#mines_info .game_border { + float: left; +} + +.mines_trader_hint a.advisor_icon { + left: 0; + cursor: pointer; +} + +.mines_trader_hint .advisor_hint { + padding-left: 72px; + text-align: center; + min-width: 309px; +} + +.stoner_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/stoner_1d8fe2f.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +.ironer_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/ironer_76b7882.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +.lumber_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/lumber_65773bc.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +.ui-slider { + position: relative; + text-align: left; +} + +.ui-slider .ui-slider-handle { + position: absolute; + z-index: 2; + width: 1.2em; + height: 1.2em; + cursor: default; +} + +.ui-slider .ui-slider-range { + position: absolute; + z-index: 1; + font-size: 1%; + display: block; + border: 0; +} + +.ui-slider-horizontal { + height: .8em; +} + +.ui-slider-horizontal .ui-slider-handle { + top: -.3em; + margin-left: -.6em; +} + +.ui-slider-horizontal .ui-slider-range { + top: 0; + height: 100%; +} + +.ui-slider-horizontal .ui-slider-range-min { + left: 0; +} + +.ui-slider-horizontal .ui-slider-range-max { + right: 0; +} + +.ui-slider-vertical { + width: .8em; + height: 100px; +} + +.ui-slider-vertical .ui-slider-handle { + left: -.3em; + margin-left: 0; + margin-bottom: -.6em; +} + +.ui-slider-vertical .ui-slider-range { + left: 0; + width: 100%; +} + +.ui-slider-vertical .ui-slider-range-min { + bottom: 0; +} + +.ui-slider-vertical .ui-slider-range-max { + top: 0; +} + +.ui-tabs .ui-tabs-nav { + padding-top: 4px; + position: relative; +} + +.ui-tabs .ui-tabs-nav li { + float: left; + border-bottom: 0!important; + margin: 0 .2em -1px 0; + padding: 0; + list-style: none; + width: 58px; + height: 67px; + margin-right: 2px; + position: relative; +} + +.ui-tabs .ui-tabs-nav li a { + display: block; + text-decoration: none; +} + +.ui-tabs .ui-tabs-nav li.ui-tabs-selected { + padding-bottom: .1em; + border-bottom: 0; +} + +.ui-tabs .ui-tabs-panel { + padding: 5px; + display: block; + border: 0; + background: 0 0; +} + +.ui-tabs .ui-tabs-hide { + display: none!important; +} + +#popup_div { + display: none; + position: absolute; + max-width: 800px; +} + +.popup { + text-align: left; +} + +.popup_top { + height: 7px; +} + +.popup_top_left { + width: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_left.png) no-repeat; +} + +.popup_top_middle { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_middle.png) repeat-x; +} + +.popup_top_right { + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_right.png) no-repeat; +} + +.popup_middle_left { + width: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_left.png) repeat-y; +} + +.popup_middle_middle { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_middle.png) repeat; +} + +.popup_middle_right { + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_right.png) repeat-y; +} + +.popup_bottom { + height: 12px; +} + +.popup_bottom_left { + width: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_left.png) no-repeat; +} + +.popup_bottom_middle { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_middle.png) repeat-x; +} + +.popup_bottom_right { + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_right.png) no-repeat; +} + +.town_infos { + border-width: 1px; + border-style: solid; + border-color: #e1af55; + background-color: #ffe2a1; + border-collapse: collapse; +} + +.town_infos .popup_table_inside { + border-width: 0; + background: 0 0; +} + +.town_infos .tooltip_units_amount { + display: inline-block; + overflow: hidden; + font-size: 13px; + line-height: 27px; + margin-right: 10px; + height: 100%; + vertical-align: top; +} + +.town_infos .icon.unit_icon25x25 { + border-width: 1px; + border-style: solid; + border-color: #a16c0d; +} + +.town_infos .units_tooltip_infos { + width: 100%; + margin-top: 5px; + margin-bottom: 5px; + font-weight: 700; + text-align: center; +} + +.town_infos .divider_line_units_tooltips { + height: 1px; + width: 120px; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + display: block; + text-align: center; + margin: 5px auto; +} + +.popup_table_inside { + border-width: 1px; + border-style: solid; + border-color: #e1af55; + background-color: #ffe2a1; + border-collapse: collapse; +} + +#popup_content img { + vertical-align: middle; +} + +#popup_div.no-frame .popup_bottom, +#popup_div.no-frame .popup_middle_left, +#popup_div.no-frame .popup_middle_right, +#popup_div.no-frame .popup_top { + display: none; +} + +#popup_div.no-frame .popup_middle_middle { + background: 0 0; + border: none; + height: auto; + width: auto; +} + +div.farm_popup_progress_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -294px -621px; + width: 65px; + height: 15px; + width: 59px; + height: 9px; + padding: 3px; + font-size: 10px; + position: relative; +} + +div.farm_popup_progress_wrapper.expansion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -359px -621px; + width: 65px; + height: 15px; + width: 59px; + height: 9px; +} + +div.fp_progress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -578px; + width: 59px; + height: 9px; +} + +div.fp_expansion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -636px; + width: 59px; + height: 9px; +} + +div.fp_text { + color: #fff; + width: 59px; + height: 9px; + top: 1px; + position: absolute; + text-align: center; +} + +div.fp_icon { + float: left; + display: inline-block; + height: 24px; + width: 24px; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png); + margin: 4px 5px 1px 0; +} + +div.fp_property { + float: left; + margin: 0 3px 2px 0; +} + +div.fp_exp { + background-position: -353px 0; +} + +div.fp_mood { + background-position: -377px 0; +} + +div.fp_trade { + background-position: -377px -24px; + -webkit-transform: scale(1,-1); + -ms-transform: scale(1,-1); + -o-transform: scale(1,-1); + transform: scale(1,-1); +} + +div.fp_loot { + background-position: -353px -24px; +} + +span.fp_loot_text { + color: #804000; +} + +.game_tabs .tab_content { + max-height: 250px; +} + +ul.game_tab_list.ui-tabs-nav { + padding: 0 10px 0 0; + background: url(https://gpfr.innogamescdn.com/images/game/windows/tab_bg.png) bottom center repeat-x; + overflow: hidden; + border-bottom: 1px solid #000; +} + +ul.ui-widget-header { + border: none; +} + +ul.game_tab_list.ui-tabs-nav li { + margin: 0 -8px -8px 0; + float: left; + -moz-user-select: none; + height: 26px; + width: auto; +} + +ul.game_tab_list li span.right { + background: #eee; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/windows/submenu_sprite_1.19.png) right -516px no-repeat; +} + +ul.game_tab_list li span.center { + background: url(https://gpfr.innogamescdn.com/images/game/windows/submenu_sprite_1.19.png) 0 -573px repeat-x; + display: block; + margin: 0 10px; + line-height: 24px; + height: 26px; + color: #fad78b; + padding: 0 5px 40px; +} + +ul.game_tab_list.ui-tabs-nav li a { + background: url(https://gpfr.innogamescdn.com/images/game/windows/submenu_sprite_1.19.png) left -459px no-repeat; +} + +ul.game_tab_list li.ui-state-active a, +ul.game_tab_list li.ui-state-active:hover a, +ul.game_tab_list.ui-tabs-nav li.ui-tabs-selected a, +ul.game_tab_list.ui-tabs-nav li.ui-tabs-selected:hover a { + background-position: left -288px; + position: relative; +} + +ul.game_tab_list.ui-tabs-nav li.ui-state-disabled a, +ul.game_tab_list.ui-tabs-nav li.ui-state-disabled:hover a { + opacity: .5; +} + +ul.game_tab_list li.ui-state-active span.right, +ul.game_tab_list li.ui-state-active:hover span.right, +ul.game_tab_list li.ui-tabs-selected span.right, +ul.game_tab_list li.ui-tabs-selected:hover span.right { + background-position: right -345px; +} + +ul.game_tab_list li.ui-state-active span.center, +ul.game_tab_list li.ui-state-active:hover span.center, +ul.game_tab_list li.ui-tabs-selected span.center, +ul.game_tab_list li.ui-tabs-selected:hover span.center { + background-position: 0 -402px; + color: #804000; +} + +ul.game_tab_list li:hover a { + background-position: left -630px; +} + +ul.game_tab_list li:hover span.right { + background-position: right -687px; +} + +ul.game_tab_list li:hover span.center { + background-position: 0 -744px; +} + +.game_tabs.ui-tabs .ui-tabs-panel { + padding: 0; +} + +#confirm_dialog { + display: none; + position: absolute; + width: 380px; + height: 134px; + background-image: url(https://gpfr.innogamescdn.com/images/game/popup/reduce_building_time.png); + z-index: 300; +} + +.confirm_dialog h3 { + text-align: center; + margin: 15px 0 10px 0; +} + +.main_dialog_text_area { + margin: 20px; +} + +.confirm_dialog_text { + text-align: center; +} + +div.dialog_buttons { + text-align: center; +} + +html { + height: 100%; + width: 100%; + overflow: hidden; +} + +@media screen and (max-height:768px) { + body.grepo_hybrid { + height: 100%; + width: 100%; + } +} + +input, +textarea { + outline: 0; +} + +textarea { + resize: none; +} + +body { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + margin: 0; + padding: 0; + border: 0; + font: 13px Verdana,Arial,Helvetica,sans-serif; + background-color: #000; + text-align: center; + vertical-align: bottom; + overflow: hidden; +} + +select { + font: 13px Verdana,Arial,Helvetica,sans-serif; +} + +.is_ipad, +.ui-game-unselectable { + -webkit-touch-callout: none; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.greyscale { + filter: url("data:image/svg+xml;utf8,#grayscale"); + filter: gray; + -webkit-filter: grayscale(100%); +} + +.text_shadow { + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; +} + +.ui-game-selectable { + -moz-user-select: text; + -khtml-user-select: text; + -webkit-user-select: text; + -ms-user-select: text; + user-select: text; +} + +.centering_box { + position: relative; + text-align: center; +} + +.align_right_box { + position: relative; + text-align: right; +} + +.vertical_decoration_divider { + position: relative; + height: 16px; + width: 383px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/yellow_box_horizontal.png) no-repeat 50% -9px; +} + +.tooltip_tip { + font-size: 11px; + margin-top: 10px; +} + +img { + border: none; +} + +h2 { + margin: 0; + font-size: 18px; + line-height: 40px; + color: #000; +} + +h4 { + margin: 0; + font-size: 13px; + line-height: 22px; + color: #000; +} + +hr { + color: #fc6; +} + +.alliance_link { + color: #804000; +} + +.alliance_link, +a { + outline-style: none; + font-weight: 700; + text-decoration: none; + color: #804000; + cursor: pointer; +} + +.alliance_link:active, +.alliance_link:hover, +a:active, +a:hover { + color: #0082be; +} + +@-webkit-keyframes spell-animation-44x44 { + 100% { + background-position: 0 -1408px; + } +} + +@-ms-keyframes spell-animation-44x44 { + 100% { + background-position: 0 -1408px; + } +} + +@keyframes spell-animation-44x44 { + 100% { + background-position: 0 -1408px; + } +} + +@-webkit-keyframes spell-animation-50x50 { + 100% { + background-position: 0 -1600px; + } +} + +@-ms-keyframes spell-animation-50x50 { + 100% { + background-position: 0 -1600px; + } +} + +@keyframes spell-animation-50x50 { + 100% { + background-position: 0 -1600px; + } +} + +.animated_power_icon { + overflow: visible; + cursor: pointer; +} + +.animated_power_icon .extend_spell .amount { + display: block; + text-align: right; + font-size: 10px; + font-family: Arial,serif; + color: #ecb44d; + font-weight: 700; + position: absolute; + pointer-events: none; +} + +.animated_power_icon.active_animation .extend_spell { + position: absolute; + overflow: visible; + z-index: 1000; +} + +.animated_power_icon.active_animation .extend_spell .gold { + position: absolute; + width: 27px; + height: 26px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/icon_gold_extend_power.png) no-repeat 0 0; + z-index: 2000; + display: none; +} + +.animated_power_icon.extendable .extend_spell .gold { + display: block; +} + +.animated_power_icon.active_animation .extend_spell .amount, +.animated_power_icon.disabled .extend_spell .amount { + display: none; +} + +.animated_power_icon.disabled { + cursor: default; +} + +.animated_power_icon.animated_power_icon_30x30 .extend_spell .amount { + right: -5px; + bottom: -6px; +} + +.animated_power_icon.animated_power_icon_30x30.active_animation .extend_spell { + top: -8px; + left: -7px; + width: 44px; + height: 44px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/orbs_yellow.png) no-repeat 0 0; + -webkit-animation: spell-animation-44x44 2.5s steps(32) infinite; + -ms-animation: spell-animation-44x44 2.5s steps(32) infinite; + animation: spell-animation-44x44 2.5s steps(32) infinite; +} + +.animated_power_icon.animated_power_icon_30x30.active_animation .extend_spell .gold { + bottom: 0; + right: 0; +} + +.animated_power_icon.animated_power_icon_45x45 .extend_spell .amount { + left: 31px; + bottom: -3px; +} + +.animated_power_icon.animated_power_icon_45x45.active_animation .extend_spell { + top: -3px; + left: -3px; + width: 50px; + height: 50px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/animated_power/animated_power_50x50.png) no-repeat 0 0; + -webkit-animation: animated_power_50x50-animation 3.2s steps(31) infinite; + -ms-animation: animated_power_50x50-animation 3.2s steps(31) infinite; + animation: animated_power_50x50-animation 3.2s steps(31) infinite; +} + +.animated_power_icon.animated_power_icon_45x45.active_animation .extend_spell .gold { + bottom: 0; + right: 0; +} + +a, +img { + -webkit-touch-callout: none; +} + +.bold { + font-weight: 700; +} + +.small { + font-size: 10px; +} + +.sword_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -577px -524px; + width: 24px; + height: 24px; + display: inline; + position: static; + padding: 9px 24px 0 0; + line-height: 24px; + vertical-align: middle; +} + +.italic { + font-style: italic; +} + +.build.small, +.build_grey.small, +.name.small, +.report_unit_black.small, +.tear_down.small { + font-size: 11px; +} + +#foo { + background: #eee; +} + +#notification_area { + position: absolute; + right: 10px; + bottom: 11px; + z-index: 2000; + padding: 0 0 16px; +} + +#notification_area.collision_with_right_menu { + right: 150px; + bottom: 25px; +} + +#notification_area.collision_with_gods_spells_menu { + right: 290px; + bottom: 25px; +} + +#notification_area:hover { + z-index: 6000; +} + +#notification_area a.notify_subjectlink { + text-align: left; + color: #edb; + font-size: 10px; + line-height: 10px; +} + +#notification_area a.notify_subjectlink:hover { + text-decoration: underline; +} + +#notification_area a.award_picture { + float: left; + margin: 0 5px 0 0; +} + +#notification_area strong.award_name+div.award_description+br+span.small { + display: none; +} + +#notification_area strong.award_name:hover+div.award_description { + display: none; +} + +#notification_area strong.award_name:hover+div.award_description+br+span.small { + display: block; +} + +#notification_area a.award_picture img { + width: 31px; + height: 31px; +} + +#notification_area div.notification { + background-color: rgba(0,0,0,.6); + border: 1px solid #ebdab9; + border-radius: 6px; + margin: 1px; + width: 39px; + height: 39px; + opacity: 0; + top: -600px; + position: relative; +} + +#notification_area a.close { + float: right; + margin: 5px 5px 0 0; + display: none; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -41px -68px; +} + +#notification_area div.notification:hover a.close { + display: block; + width: 7px; + cursor: pointer; + height: 7px; +} + +#notification_area div.notification a.close:hover { + background-position: -41px -75px; +} + +#notification_area div.award_description { + margin: 0 100px 0 0; + overflow: hidden; + word-wrap: break-word; + word-break: normal; + line-height: 12px; +} + +#notification_area div.description { + background-color: rgba(0,0,0,.6); + border: 1px solid #ebdab9; + border-radius: 6px; + width: 418px; + position: absolute; + min-height: 30px; + padding: 5px; + text-align: left; + color: #edb; + font-size: 10px; + right: 41px; + overflow: hidden; +} + +#notification_area div.description span { + display: block; +} + +#notification_area div.description b.award_name { + line-height: 10px; +} + +#notification_area .notification_date { + position: absolute; + bottom: 1px; + right: 5px; +} + +#notification_area div.icon { + width: 41px; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -48px -68px; +} + +#notification_area div.notification.notassigned div.icon, +#notification_area div.notification.systemmessage div.icon { + background: 0 0; +} + +#notification_area div.notification.newreport div.icon { + background-position: -48px -68px; +} + +#notification_area div.notification.alliance_invitation div.icon, +#notification_area div.notification.newtempreport div.icon, +#notification_area div.notification.premium_feature_running_out div.icon { + background-position: -89px -68px; +} + +#notification_area div.notification.phoenician_salesman_arrived div.icon { + background-position: -458px -27px; +} + +#notification_area div.notification.phoenician_salesman_arrived { + border: none; +} + +#notification_area div.notification.awmessage div.icon, +#notification_area div.notification.newmessage div.icon { + background-position: -130px -68px; +} + +#notification_area div.notification.newalliancepost div.icon { + background-position: -171px -68px; +} + +#notification_area div.notification.newaward div.icon { + background-position: -212px -68px; +} + +#notification_area div.notification.newaward .award31x31 { + width: 31px; + height: 31px; + float: left; + margin-right: 5px; +} + +#notification_area div.notification.resourcetransport div.icon { + background-position: -253px -68px; +} + +#notification_area div.notification.tutorial div.icon { + background-position: -294px -68px; +} + +#notification_area div.notification.incoming_attack div.icon { + background-position: -335px -68px; +} + +#notification_area div.notification.planed_attack div.icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat -80px 0; + width: 40px; + height: 40px; +} + +#notification_area div.notification.mass_notification div.icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat -40px 0; + width: 40px; + height: 40px; +} + +#notification_area div.notification.mass_notification.mass_notification_type_wonder div.icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat -40px -40px; + width: 40px; + height: 40px; +} + +#notification_area div.notification.mass_notification.mass_notification_type_community_goal div.icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat 0 0; + width: 40px; + height: 40px; +} + +#notification_area div.notification.mass_notification.mass_notification_type_domination div.icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat 0 -40px; + width: 40px; + height: 40px; +} + +#notification_area div.notification.domination_era_started div.icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat 0 -40px; + width: 40px; + height: 40px; +} + +#notification_area div.notification.incoming_support div.icon { + background-position: -376px -68px; +} + +#notification_area div.notification.all_building_finished div.icon, +#notification_area div.notification.building_finished div.icon { + background-position: -417px -68px; +} + +#notification_area div.notification.botcheck div.icon { + background-position: -358px -151px; +} + +#notification_area div.notification.trade_cancelled div.icon { + background-position: -499px -27px; +} + +.notification_building_image { + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/unit_overview/buildings_30x30.png) no-repeat; + float: left; + margin: 0 5px 0 0; + cursor: pointer; +} + +.image_main { + background-position: 0 0; +} + +.image_hide { + background-position: -240px 0; +} + +.image_storage { + background-position: -120px 0; +} + +.image_farm { + background-position: -60px 0; +} + +.image_lumber { + background-position: -30px 0; +} + +.image_stoner { + background-position: -90px 0; +} + +.image_ironer { + background-position: -150px 0; +} + +.image_market { + background-position: -360px 0; +} + +.image_docks { + background-position: -270px 0; +} + +.image_barracks { + background-position: -180px 0; +} + +.image_wall { + background-position: -210px 0; +} + +.image_academy { + background-position: -300px 0; +} + +.image_temple { + background-position: -330px 0; +} + +.image_lighthouse { + background-position: -90px -90px; +} + +.image_tower { + background-position: -120px -90px; +} + +.image_statue { + background-position: -150px -90px; +} + +.image_trade_office { + background-position: -210px -90px; +} + +.image_theater { + background-position: 0 -90px; +} + +.image_thermal { + background-position: -30px -90px; +} + +.image_library { + background-position: -60px -90px; +} + +.image_oracle { + background-position: -180px -90px; +} + +ul { + list-style: none; + margin: 0 auto; + padding: 0; +} + +#new_post { + display: inline-block; + background-image: url(https://gpfr.innogamescdn.com/images/game/forum/new_post.png); +} + +#new_messages { + display: inline-block; +} + +#new_reports { + display: inline-block; +} + +.clearfix:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +a.power_icon, +span.power_icon { + display: block; + float: left; + margin: 3px; + z-index: 50; + position: relative; +} + +a.power_icon.power_icon45x45, +span.power_icon.power_icon45x45 { + overflow: visible; +} + +#map_jump_button:hover { + background-position: -44px -23px; +} + +#power_casted a { + background: url(https://gpfr.innogamescdn.com/images/game/report/new.png) left center no-repeat; + line-height: 16px; + padding: 0 0 0 20px; +} + +.favor_img, +.iron_img, +.pop_img, +.stone_img, +.storage_img, +.wood_img { + display: block; +} + +.wood_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 -30px; + width: 30px; + height: 30px; +} + +.stone_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px 0; + width: 30px; + height: 30px; +} + +.iron_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 0; + width: 30px; + height: 30px; +} + +.storage_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -60px -60px; + width: 30px; + height: 30px; +} + +.pop_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -60px; + width: 30px; + height: 30px; +} + +.favor_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 -60px; + width: 30px; + height: 30px; +} + +.game_table { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat; +} + +.game_table td { + padding: 3px 6px 3px 6px; +} + +.game_table th { + padding: 3px 6px 3px 6px; + color: #fff; + border-bottom: 1px solid #000; +} + +.game_table thead tr { + background: url(https://gpfr.innogamescdn.com/images/game/border/header.png) repeat-x; +} + +.game_table td { + border-bottom: 1px solid #d0be97; +} + +.game_table_odd { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat; +} + +.game_table tfoot { + background: url(https://gpfr.innogamescdn.com/images/game/border/footer.png) repeat-x; +} + +.game_header { + background-image: url(https://gpfr.innogamescdn.com/images/game/border/header.png); + background-position: 0 -1px; + padding: 3px 6px 3px 6px; + color: #fff; + border-bottom: 1px solid #000; +} + +.game_body { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat; + padding: 3px 6px 3px 6px; +} + +.game_inner_box .game_body2 { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat; + padding: 3px 6px 3px 6px; +} + +.game_inner_box .game_footer { + background-image: url(https://gpfr.innogamescdn.com/images/game/border/footer.png); + background-repeat: repeat; + padding: 3px; + position: relative; + height: 25px; +} + +.game_inner_box .game_brown { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat; + padding: 3px 6px 3px 6px; + position: relative; + border-bottom: 1px solid #000; +} + +.game_list .even, +.game_list .odd { + background-repeat: repeat; +} + +.game_list .even { + background-image: url(https://gpfr.innogamescdn.com/images/game/border/even.png); +} + +.game_list .odd { + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); +} + +.game_list .note:before { + content: '!'; + color: #9e2a2a; + font-weight: 700; + padding: 0 5px; + font-style: italic; +} + +.game_list .color_highlight { + background-image: none; +} + +.game_list li { + padding: 4px 2px; + border-bottom: 1px solid #d0be97; +} + +.reservation_tool_list li { + padding: 4px 2px; + border-bottom: 1px solid #d0be97; +} + +.reservation_tool_list li .col_town_name { + display: inline; +} + +.reservation_tool_list li .reservation_details { + margin-left: 30px; +} + +.game_list .list_item_left { + float: left; +} + +.list_item_right { + float: right; +} + +.game_list_footer { + background: url(https://gpfr.innogamescdn.com/images/game/border/footer.png) repeat-x; + padding: 3px 2px; + height: 25px; +} + +.game_list_footer.big { + background: url(https://gpfr.innogamescdn.com/images/game/border/footer_long.png) repeat-x; + height: 100px; +} + +span.grepo_input { + height: 23px; + overflow: hidden; +} + +span.grepo_input input { + background: url(https://gpfr.innogamescdn.com/images/game/layout/input_bg_2.33.png) 0 -46px repeat-x; + border: 0 none; + margin: 0 5px; + padding: 1px; + height: 21px; +} + +.ui-dialog span.grepo_input input { + z-index: 10000; + position: relative; +} + +span.grepo_input span { + background: url(https://gpfr.innogamescdn.com/images/game/layout/input_bg_2.33.png) 0 0 no-repeat; + display: inline-block; +} + +span.grepo_input span.left { + background-position: left 0; +} + +span.grepo_input span.right { + background-position: right -23px; +} + +a.checkbox { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -367px -48px; + width: 14px; + height: 15px; + display: inline-block; + margin: 2px 2px 3px; + vertical-align: middle; +} + +a.checkbox.checked { + background-position: -353px -48px; +} + +span.grepo_input select { + background: url(https://gpfr.innogamescdn.com/images/game/layout/input_bg_2.33.png) 0 -46px repeat-x; + border: 0 none; + margin: 0 3px; + padding: 3px 0; + height: 22px; +} + +span.grepo_input option { + background: #fff0cb; +} + +a.button.simulate_units { + width: 22px; + height: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/place/units_to_simulator.png) no-repeat 0 0; +} + +a.button.simulate_units:hover { + background-position: 0 -23px; +} + +a.invite_to_ally { + height: 23px; + width: 22px; + background: url(https://gpfr.innogamescdn.com/images/game/button/invite_to_ally.png) no-repeat; + float: left; +} + +a.invite_to_ally:hover { + height: 23px; + width: 22px; + background: url(https://gpfr.innogamescdn.com/images/game/button/invite_to_ally_hover.png) no-repeat; +} + +a.write_message { + height: 23px; + width: 26px; + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/button/write_message.png) no-repeat; +} + +a.write_message:hover { + background: url(https://gpfr.innogamescdn.com/images/game/button/write_message_hover.png) no-repeat; +} + +a.left, +a.right { + display: block; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png); + width: 18px; + height: 19px; +} + +a.left:hover { + background-position: 0 -19px; +} + +a.right { + background-position: -18px 0; +} + +a.right:hover { + background-position: -18px -19px; +} + +a.down_big { + display: block; + width: 22px; + height: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) -330px 0 no-repeat; +} + +a.down_big:hover { + background-position: -330px -23px; +} + +.ui-tabs .ui-tabs-hide { + display: none; +} + +#block_top, +#new_window_top { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/new_window/topbottom.png); + background-repeat: no-repeat; + height: 12px; + width: 520px; + left: 0; +} + +#block_bottom, +#new_window_bottom { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/new_window/topbottom.png); + background-repeat: no-repeat; + height: 12px; + width: 520px; + background-position: 0 -12px; + bottom: 0; + left: 0; +} + +#block_left, +#new_window_left { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/new_window/leftright.png); + background-repeat: no-repeat; + height: 380px; + width: 12px; + top: 12px; + left: 0; +} + +#block_right, +#new_window_right { + position: absolute; + background-image: url(https://gpfr.innogamescdn.com/images/game/new_window/leftright.png); + background-repeat: no-repeat; + height: 380px; + width: 12px; + background-position: -12px 0; + top: 12px; + right: 0; +} + +#new_window_content { + position: relative; + margin: 12px; + padding: 10px; +} + +#block_content { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/new_window/bg.png) repeat; + height: 360px; + width: 476px; + margin: 12px; + padding: 10px; + left: 0; +} + +a.cancel, +a.confirm, +a.help, +a.reload { + height: 23px; + width: 22px; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat 0 0; +} + +a.confirm { + background-position: 0 0; +} + +a.confirm:hover { + background-position: 0 -23px; +} + +a.confirm.disabled { + cursor: default; + background-position: 0 -46px; +} + +a.confirm.disabled:hover { + background-position: 0 -46px; +} + +a.cancel { + background-position: -66px 0; +} + +a.cancel:hover { + background-position: -66px -23px; +} + +a.help { + background-position: -22px 0; +} + +a.help:hover { + background-position: -22px -23px; +} + +a.reload { + background-position: -110px 0; +} + +a.reload:hover { + background-position: -110px -23px; +} + +.game_arrow_left { + position: relative; + display: block; + float: left; + width: 18px; + height: 19px; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png); + background-repeat: no-repeat; +} + +a.game_arrow_left:hover { + background-position: 0 -19px; +} + +.game_arrow_right { + position: relative; + display: block; + float: left; + width: 18px; + height: 19px; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png); + background-position: -18px 0; + background-repeat: no-repeat; +} + +a.game_arrow_right:hover { + background-position: -18px -19px; +} + +#game_arrow_left_gray { + background-position: 0 -38px; +} + +#game_arrow_right_gray { + background-position: -18px -38px; +} + +.game_arrow_delete, +.remove_color_btn { + position: relative; + display: block; + float: left; + width: 18px; + height: 19px; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png); + background-position: -54px 0; + background-repeat: no-repeat; + margin-top: -2px; + cursor: pointer; +} + +.game_arrow_delete:hover, +.remove_color_btn:hover { + background-position: -54px -19px; +} + +#report_report .game_arrow_delete { + margin-top: 0; +} + +#message_message_list .game_arrow_delete { + margin-top: 0; +} + +.remove_color_btn { + margin-left: 5px; +} + +#quickbar_toggle_text_button { + float: right; +} + +#edit_toolbar_item { + display: none; +} + +.decreased_opacity { + opacity: .5; +} + +#validation { + color: #fc6; +} + +.image_countdown { + z-index: 2; + position: absolute; + overflow: hidden; + width: 40px; + height: 40px; + top: 24px; + left: 10px; +} + +.image_countdown img { + z-index: 3; + position: absolute; +} + +.flag_small_image { + background-position: 4px 8px!important; + background-repeat: no-repeat!important; + position: absolute; + top: -8px; + left: -4px; + z-index: 10; +} + +.flag_small { + background-color: #047; + height: 34px; + width: 32px; + top: 8px; + left: 4px; + position: relative; + float: left; + margin-left: 10px; + margin-bottom: 15px; +} + +.flag_big_image { + background-position: 9px 17px!important; + background-repeat: no-repeat!important; + position: absolute; + top: -17px; + left: -9px; + z-index: 10; +} + +.flag_big { + background-color: #047; + height: 75px; + width: 71px; + top: 20px; + left: 12px; + position: relative; + float: left; + margin-right: 30px; + margin-bottom: 30px; +} + +.flag_disabled { + opacity: .3; +} + +.buildings_image { + position: absolute; + right: 10px; + bottom: 10px; +} + +.special_buildings_image { + width: 780px; + height: 465px; + left: 0; + top: 0; + position: absolute; +} + +.special_buildings_description { + background: url(https://gpfr.innogamescdn.com/images/game/buildings/special_building_description.png); + width: 659px; + height: 84px; + position: absolute; + bottom: 0; + left: 13px; + top: 15px; +} + +.special_buildings_description .center { + margin-left: 43px; + margin-top: 8px; + width: 588px; +} + +#new_messages.no_new_messages { + display: none; +} + +.new_post { + display: inline-block; + height: 21px; + margin-bottom: -5px; + width: 20px; +} + +.no_new_post { + display: none; +} + +.attack_type { + margin: 13px 0 10px 3px; + width: 46px; + height: 47px; + float: left; +} + +.attack_table_box .revolt, +.attack_type_revolt { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack_type/revolt.png); +} + +.attack_table_box .attack, +.attack_type_regular { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack_type/attack.png); +} + +.attack_table_box .breach, +.attack_type_breach { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack_type/breach.png); +} + +.attack_table_box .portal_attack_olympus { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack_type/portal_attack_olympus.png); +} + +.attack_table_box .stone_storm { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack_type/stone_storm.png); +} + +.attack_type_farm_attack { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack_type/raise.png); +} + +.attack_type_ask_farm_for_units { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack_type/troops.png); +} + +.attack_type_ask_farm_for_resources { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/attack_type/res.png); +} + +.attack_table_box .attack_strategy.checked, +.attack_table_box .attack_type.checked, +.attack_type_active { + background-position: 0 -47px; +} + +.unit_container.trade_resource { + float: left; + position: relative; + height: 76px; + width: 80px; +} + +.unit_container { + float: left; + position: relative; + height: 76px; + width: 52px; +} + +#place_sim_naval_units .unit_container { + height: 105px; +} + +.unit_container.active { + z-index: 5000; +} + +.unit_slider_container { + background: url(https://gpfr.innogamescdn.com/images/game/layout/unit_slider_bg.png) no-repeat; + width: 120px; + height: 14px; + position: absolute; + bottom: -14px; + left: 3px; + z-index: 5; + display: none; +} + +.unit_slider_toggle { + background: url(https://gpfr.innogamescdn.com/images/game/layout/unit_slider_toggle.png) no-repeat 0 0; + width: 10px; + height: 20px; + position: absolute; + right: 4px; + bottom: 3px; + z-index: 5; +} + +.unit_slider_toggle:hover { + background-position: 0 -20px; +} + +.unit_slider { + width: 80px; + margin: 0 1px; + display: inline-block; +} + +.unit_slider_container a.button { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/unit_slider_buttons.png); + width: 8px; + height: 8px; + display: inline-block; + margin: 3px; + cursor: pointer; +} + +.unit_slider_container a.button.prev { + background-position: 0 0; +} + +.unit_slider_container a.button.next { + background-position: -8px 0; +} + +.unit_slider_container a.button.prev:hover { + background-position: 0 -8px; +} + +.unit_slider_container a.button.next:hover { + background-position: -8px -8px; +} + +div .unit_slider_container .unit_slider .ui-slider-handle { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/slider_point.png)!important; + width: 18px; + height: 18px; + top: -6px; +} + +span.toggle_icon { + display: inline-block; + width: 12px; + height: 12px; + background-image: url(https://gpfr.innogamescdn.com/images/game/button/toggle_sprite.png); + vertical-align: middle; + margin: 0 5px 2px 0; +} + +span.toggle_icon.left_d { + background-position: -12px 0; +} + +span.toggle_icon.up_d { + background-position: -12px -12px; +} + +span.toggle_icon.right_d { + background-position: -12px -24px; +} + +span.toggle_icon.down_d { + background-position: -12px -36px; +} + +.dock-outer1 { + position: fixed; + bottom: 0; + width: 100%; + z-index: 5; +} + +.dock-outer2 { + width: 1002px; + margin: 0 auto; +} + +.dock { + margin: 0 6px 0 182px; + text-align: left; +} + +#blockbox { + display: none; + width: 520px; + margin: 0 0 0 -180px; + left: 50%; + position: absolute; + top: 350px; + z-index: 5000; + height: 200px; +} + +#blockbox #block_content, +#blockbox #block_left, +#blockbox #block_right { + top: 12px; + bottom: 12px; + height: auto; +} + +#blockbox #block_bottom, +#blockbox #block_left, +#blockbox #block_top { + left: 0; +} + +#blockbox #block_content { + margin: 0 12px; + left: 0; + overflow: auto; +} + +#blockbox_bg { + display: none; + position: fixed; + top: 0; + left: 0; + background-color: #000; + height: 100%; + width: 100%; + z-index: 4999; + opacity: .5; +} + +.input_box, +.label_box { + float: left; +} + +.label_box label { + display: block; + padding: 0 5px 0 0; + line-height: 23px; + height: 26px; + white-space: nowrap; +} + +.input_box>span { + display: block; + clear: left; + float: left; + padding: 0 0 0 5px; + height: 26px; +} + +.input_box>span>input { + margin: 7px 0 6px; +} + +.input_box>span>input+label { + line-height: 23px; + float: right; + margin-left: 5px; +} + +table.input_label_box td label { + float: right; +} + +#player_hint { + position: absolute; + z-index: 50; + left: 100px; + top: 50px; +} + +#hint_window_title { + left: 22px; + top: 9px; + position: relative; + width: 280px; +} + +.zindex_1 { + z-index: 1; +} + +.zindex_2 { + z-index: 2; +} + +.box.middle.center div.box_content { + border: 1px solid #e1af55; + background: #ffe2a1; + min-height: 29px; + padding: 1px; +} + +.box.top { + height: 7px; + position: relative; +} + +.box.bottom { + height: 12px; +} + +.box.center { + margin: 0 11px 0 7px; + position: relative; + overflow: hidden; +} + +#town_list .box.middle.center { + overflow-y: auto; + overflow-x: hidden; + max-width: 692px; + max-height: 510px; +} + +.box.top.center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_middle.png) repeat-x; +} + +.box.bottom.center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_middle.png) repeat-x; +} + +.box.middle.left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_left.png) repeat-y left; +} + +.box.middle.right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_right.png) repeat-y right; +} + +.box.middle.center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_middle.png) repeat; + overflow: hidden; +} + +.box.top.left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_left.png) no-repeat left; +} + +.box.top.right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_right.png) no-repeat right; +} + +.box.bottom.left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_left.png) no-repeat left; +} + +.box.bottom.right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_right.png) no-repeat right; +} + +.mouse-resizable .mouse-resize-southeast { + position: absolute; + bottom: 0; + right: 0; + width: 10px; + height: 10px; + cursor: se-resize; + background-color: red; +} + +.mouse-resizable .mouse-resize-south { + position: absolute; + bottom: 0; + left: 10px; + right: 10px; + height: 10px; + cursor: s-resize; + background-color: #ff0; +} + +.mouse-resizable .mouse-resize-east { + position: absolute; + bottom: 10px; + top: 10px; + right: 0; + width: 10px; + cursor: e-resize; + background-color: green; +} + +#map_bookmark_link_hover_menu { + position: absolute; + z-index: 2000; + top: 18px; + left: 71px; + text-align: left; +} + +#map_bookmark_link_hover_menu a { + background-repeat: no-repeat; + display: block; + text-align: left; + line-height: 21px; + float: left; + z-index: 2000; +} + +#map_bookmark_link_hover_menu a.cancel { + float: right; +} + +.units_container { + float: left; + position: relative; + width: 400px; +} + +#loader { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + z-index: 10; + background-color: #000; + background-color: rgba(0,0,0,.5); + background-color: transparent; +} + +#load_progress { + height: 18px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/loader.png) 0 -214px; + width: 524px; + padding: 3px; + margin: 0 auto; + position: relative; + float: left; +} + +#load_progress_bar { + height: 18px; + background: #0051a0 url(https://gpfr.innogamescdn.com/images/game/layout/progress_alpha.png); +} + +#loader_content { + width: 535px; + margin: 150px auto; +} + +#loader_content span { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/loader.png); + width: 107px; + height: 107px; + display: block; + float: left; + text-indent: -999em; +} + +#loader_step_powers { + background-position: 0 0; +} + +#loader_step_powers.loading_done { + background-position: 0 -107px; +} + +#loader_step_bar { + background-position: -428px 0; +} + +#loader_step_bar.loading_done { + background-position: -428px -107px; +} + +#loader_step_map { + background-position: -321px 0; +} + +#loader_step_map.loading_done { + background-position: -321px -107px; +} + +#loader_step_units { + background-position: -107px 0; +} + +#loader_step_units.loading_done { + background-position: -107px -107px; +} + +#loader_step_buildings { + background-position: -214px 0; +} + +#loader_step_buildings.loading_done { + background-position: -214px -107px; +} + +a.unit, +div.unit { + width: 40px; + height: 40px; + position: relative; + display: block; + float: left; + text-align: right; + margin: 5px; +} + +a.unit span, +div.unit span { + color: #fff; + text-shadow: 1px 1px 0 #000; + filter: dropshadow(color=#000000,offX=1,offY=1); + position: absolute; + bottom: 2px; + right: 2px; + letter-spacing: -1px; + font-size: 15px; +} + +a.unit.hero_unit span, +div.unit.hero_unit span { + color: #f8d257; +} + +li.menu_bubble_entry.troops { + height: 50px; +} + +.menu_bubble_orders_left { + position: absolute; + top: 0; + z-index: 2; + font-weight: 700; + text-align: left; + color: #fff; + text-shadow: 1px 1px 1px #000; +} + +span.eta.menu_bubble_troops { + position: absolute; + left: 50px; + top: 14px; + z-index: 2; +} + +.menu_bubble_troops_bg { + width: 40px; + height: 40px; + position: relative; + z-index: 1; + border: 1px solid #000; +} + +.select_all_units { + margin-left: 5px; + position: relative; + top: 3px; +} + +.attack_type_wrapper { + margin-bottom: 6px; + position: relative; +} + +.attack_type_wrapper .town_info_duration_pos_alt { + position: relative; + top: 7px; + width: 300px; + min-height: 50px; + overflow: hidden; +} + +img#version { + height: 18px; + width: 80px; + position: absolute; + bottom: 10px; +} + +a.info_jump_to_town { + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) -44px 0; + width: 22px; + height: 23px; + bottom: 3px; + float: right; + position: relative; +} + +a.info_jump_to_town:hover { + background-position: -44px -23px; +} + +div.res_large { + width: 90px; + height: 90px; + display: inline-block; + position: relative; +} + +div.res_large.wood { + background: url(https://gpfr.innogamescdn.com/images/game/res/wood_90x90.png) 0 0 no-repeat; +} + +div.res_large.iron { + background: url(https://gpfr.innogamescdn.com/images/game/res/iron_90x90.png) 0 0 no-repeat; +} + +div.res_large.stone { + background: url(https://gpfr.innogamescdn.com/images/game/res/stone_90x90.png) 0 0 no-repeat; +} + +div.res_large.favor { + background: url(https://gpfr.innogamescdn.com/images/game/res/favor_90x90.png) 0 0 no-repeat; +} + +div.res_large.gold { + background: url(https://gpfr.innogamescdn.com/images/game/res/gold_90x90.png) 0 0 no-repeat; +} + +.arrow_next { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png); + width: 25px; + height: 31px; + background-position: -25px -150px; +} + +.arrow_next:hover { + background-position: -25px -181px; +} + +.arrow_prev { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png); + width: 25px; + height: 31px; + background-position: 0 -150px; +} + +.arrow_prev:hover { + background-position: 0 -181px; +} + +div.quote { + margin: 0 10px; + border: 1px solid #d0be97; +} + +div.quote div.quote_author { + font-weight: 700; + font-size: 8pt; + margin-bottom: 0; + background-color: #ffecc3; +} + +div.quote div.quote_message { + background-color: #fff; + font-size: 8pt; + margin-top: 0; + padding: 2px 3px; +} + +.not_enough_space_in_storage { + font-weight: 700; + color: red; +} + +.captain_commercial { + position: relative; + min-height: 90px; + margin: 0 5px; + overflow: hidden; +} + +.captain_commercial .descr { + padding-top: 9px; + text-align: center; + position: relative; + overflow: hidden; +} + +.captain_commercial .iconbox { + padding-left: 20px; + text-align: center; + overflow: hidden; + min-height: 30px; + padding-top: 4px; + font-weight: 700; + position: relative; +} + +.captain_commercial .iconbox .bauer_icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -240px; + padding: 7px 15px; + margin-right: 5px; +} + +.captain_commercial .message { + min-height: 64px; + background-color: #ffe4b1; + margin: 0 70px 0 0; + overflow: hidden; + position: relative; +} + +.captain_commercial .advisor_hint { + height: auto; +} + +.captain_commercial .captain_icon { + position: absolute; + top: 0; + right: 0; + border-left: 1px solid #64513d; + cursor: pointer; +} + +#farm_town_overview_btn { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -240px; + width: 30px; + height: 30px; + position: absolute; + top: 421px; + right: 3px; + cursor: pointer; +} + +div.player_settings h4.additional_descriptive_text { + display: none; +} + +#trade_tab .trade_button { + margin-top: 7px; +} + +#trade_tab form { + float: none; +} + +#trade_tab .game_border { + margin: 4px auto 0 auto; + width: 476px; +} + +#trade_tab .progressbar { + margin-top: 6px; +} + +#trade_tab #duration_container span#nightbonus { + display: none; +} + +#trade_tab .town_info { + margin-top: 18px; +} + +#trade_tab .content { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + position: relative; + overflow: hidden; + text-align: center; + padding-bottom: 9px; +} + +.resource_selector { + margin-top: 8px; + width: 60px; + height: 60px; + display: inline-block; +} + +#trade_tab #trade .resource_selector { + margin-left: 10px; +} + +.resource_selector .icon, +.town-capacity-indicator .icon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 0; + margin: 0 auto; + width: 30px; + height: 30px; + margin-bottom: 2px; + cursor: pointer; +} + +.resource_selector .icon.iron, +.town-capacity-indicator .icon.iron { + background-position: 0 -60px; +} + +.resource_selector .icon.stone, +.town-capacity-indicator .icon.stone { + background-position: 0 -30px; +} + +.resource_selector .spinner { + margin: 0 auto; +} + +#trade_tab #duration_container { + margin-top: 4px; + float: none; + width: auto; +} + +#trade_tab #duration_container span { + display: inline-block; + float: none; + position: static; +} + +.town-capacity-indicator { + position: relative; + overflow: hidden; + width: 300px; + margin: 0 auto; + display: block; + height: 34px; +} + +.town-capacity-indicator .tripple-progress-progressbar { + margin-top: 9px; + margin-left: 13px; +} + +.town-capacity-indicator .icon, +.town-capacity-indicator .tripple-progress-progressbar { + float: left; +} + +.town-capacity-indicator .icon { + margin-left: 5px; +} + +.info_banner { + width: 600px; + height: 18px; + position: absolute; + top: 102px; + left: 50%; + margin-left: -300px; + display: block; + z-index: 10; + padding: 1px 0 0 0; + color: #fff; + border: 2px solid #fff; + font-weight: 700; + font-size: 12px; + line-height: 16px; +} + +#world_end_info { + width: 600px; + height: 18px; + position: absolute; + top: 102px; + left: 50%; + margin-left: -300px; + display: block; + z-index: 10; + padding: 1px 0 0 0; + color: #fff; + border: 2px solid #fff; + font-weight: 700; + font-size: 12px; + line-height: 16px; + background-color: #ed2300; + top: 123px; +} + +#link_bug_report { + width: 600px; + height: 18px; + position: absolute; + top: 102px; + left: 50%; + margin-left: -300px; + display: block; + z-index: 10; + padding: 1px 0 0 0; + color: #fff; + border: 2px solid #fff; + font-weight: 700; + font-size: 12px; + line-height: 16px; + top: 81px; + background-color: #000; +} + +#maintenance_notification { + width: 600px; + height: 18px; + position: absolute; + top: 102px; + left: 50%; + margin-left: -300px; + display: block; + z-index: 10; + padding: 1px 0 0 0; + color: #fff; + border: 2px solid #fff; + font-weight: 700; + font-size: 12px; + line-height: 16px; + height: auto; + min-height: 18px; + background-color: #ed2300; + display: none; +} + +#admin_logged_in_message { + width: 600px; + height: 18px; + position: absolute; + top: 102px; + left: 50%; + margin-left: -300px; + display: block; + z-index: 10; + padding: 1px 0 0 0; + color: #fff; + border: 2px solid #fff; + font-weight: 700; + font-size: 12px; + line-height: 16px; + top: 81px; + background-color: #00f; + animation: blinking_text 1.2s infinite; +} + +@keyframes blinking_text { + 0% { + color: #fff; + } + + 49% { + color: #fff; + } + + 60% { + color: transparent; + } + + 99% { + color: transparent; + } + + 100% { + color: #fff; + } +} + +#admin_logged_in_message a { + color: #31e417; + text-decoration: underline; +} + +#admin_logged_in_message a:hover, +#link_bug_report:hover { + color: #ed2300; +} + +#debug_time_offset { + width: 600px; + height: 18px; + position: absolute; + top: 102px; + left: 50%; + margin-left: -300px; + display: block; + z-index: 10; + padding: 1px 0 0 0; + color: #fff; + border: 2px solid #fff; + font-weight: 700; + font-size: 12px; + line-height: 16px; + background-color: #ed2300; +} + +.game_border .game_border_header { + height: 18px; + background: url(https://gpfr.innogamescdn.com/images/game/border/header.png) repeat-x 0 -1px; + border-bottom: 1px solid #000; + color: #fff; + padding: 3px 6px; +} + +.game_border .game_border_header .title { + float: left; + font-weight: 700; +} + +.brown { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat 0 0; +} + +.section { + padding: 5px; + border-bottom-width: 1px; + overflow: hidden; + position: relative; +} + +.section.player_settings { + overflow: visible; +} + +.section.no_border { + border: 0; +} + +.section.no_hor_padding { + padding: 5px 0; +} + +.section.contain_bbcode { + overflow: visible; + height: 22px; +} + +.section.contain_bbcode .bb_button_wrapper { + overflow: visible; +} + +.section.centered { + text-align: center; +} + +.divider { + position: relative; +} + +.divider.horizontal { + background: url(https://gpfr.innogamescdn.com/images/game/border/horizontal_dividers.png) repeat-x 0 0; +} + +.divider.horizontal.window_style_thin { + height: 3px; + background-position: 0 0; +} + +.divider.horizontal.window_style_fat { + height: 8px; + background-position: 0 -4px; +} + +.section.stone { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/fixed_table_header_bg.jpg) repeat-x 0 0; + height: 40px; + border: 0; + padding: 0; +} + +.tab_type_support #btn_plan_attack_town { + margin-top: -1px; +} + +#btn_plan_attack_town { + margin-left: 10px; +} + +.resource_favor_icon, +.resource_gold_icon, +.resource_iron_icon, +.resource_stone_icon, +.resource_storage_icon, +.resource_wood_icon, +.storage_icon { + float: left; + display: block; +} + +.resource_wood_icon { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resource_stone_icon { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resource_iron_icon { + background-position: 0 -48px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.storage_icon { + background-position: 0 -16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resource_favor_icon { + background-position: 0 -96px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resource_gold_icon { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resource_count { + margin: 0 auto; + text-align: right; + min-width: 60px; + padding: 0 0 0 16px; +} + +a.power_icon.active .extend_spell { + position: absolute; + overflow: visible; + top: -6px; + left: -5px; + width: 56px; + height: 56px; + background: 0 0; + z-index: 1000; +} + +a.power_icon.active .extend_spell { + background: url(https://gpfr.innogamescdn.com/images/game/layout/power_active.png) no-repeat 0 0; +} + +a.power_icon.active .extend_spell .coin { + position: absolute; + bottom: 0; + right: 0; + width: 27px; + height: 26px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/icon_gold_extend_power.png) no-repeat 0 0; + z-index: 2000; + display: none; +} + +a.power_icon.extendable .extend_spell .coin { + display: block; +} + +#grepo_curtain { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + background-color: #000; + opacity: .5; + z-index: 999999999; +} + +.even { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.odd { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.brown { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat 0 0; + border-bottom: 1px solid #d0be97; +} + +.color_highlight, +.item_selected { + background-color: #f5d590; + background-image: none; +} + +.gp_link_fake { + color: #904e00; + font-weight: 700; + font-size: 12px; + cursor: pointer; + line-height: 16px; +} + +.gp_link_fake:hover { + color: #0584be; +} + +.grepo_menu .rbtn_search_by { + float: left; +} + +.grepo_menu .search_by_label { + margin: 2px 8px 0 0; +} + +.grepo_menu .search_row { + position: relative; + overflow: hidden; + padding: 0 2px 4px 2px; +} + +.grepo_menu .admin_mode_box { + display: none; + position: relative; + overflow: hidden; +} + +.grepo_menu.admin_mode .admin_mode_box { + display: block; +} + +.grepo_menu .txt_admin_mode_select_player { + display: block; + margin-top: 4px; + width: 152px; +} + +.grepo_menu .rbtn_reservation_type .option { + margin-top: 4px; + display: block; + text-align: left; +} + +.grepo_menu .dd_admin_mode_select_alliance { + display: block; + width: 152px; + margin-top: 4px; +} + +.grepo_menu .btn_add_reservation { + margin-top: 6px; +} + +.bbcode_menu { + position: absolute; + display: none; + z-index: 5000; + margin: 6px 0 0 7px; +} + +.bbcode_menu .txt_display_bbcode { + width: 200px; +} + +.clickable { + cursor: pointer; +} + +#quest_welcome .guide.helen_portrait, +.helen_portrait { + width: 400px; + height: 446px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/portraits/helen_2.53_compressed.png) no-repeat 0 0; + position: absolute; + top: -16px; + left: -86px; + z-index: 6; +} + +.gold_icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + display: inline-block; + width: 14px; + height: 16px; + vertical-align: middle; +} + +#js-lol-casted-powers-viewport { + position: absolute; + z-index: 99999; + width: 200px; + height: 200px; + background-color: red; + top: 50%; + margin-left: -100px; + left: 50%; + margin-top: -100px; + overflow: hidden; + display: none; +} + +ul.wonder_visual_checklist { + line-height: 20px; +} + +ul.wonder_visual_checklist li { + width: 50%; + float: left; +} + +div.wonder_controls { + margin: 0 0 15px; + overflow: hidden; + padding: 0; +} + +.wonder_controls .wonder_header { + margin: 9px 0 12px 0; + color: #7e3e00; + text-align: center; +} + +.game_inner_box.wonder_state { + overflow-x: hidden; + overflow-y: auto; + height: 100%; +} + +.game_inner_box.wonder_state .wonder_controls { + margin-bottom: 0; +} + +.game_inner_box.wonder_state .wonder_controls p { + margin: 10px; +} + +div.wonder_state.wonder_finished { + position: absolute; + bottom: 0; + width: 100%; + z-index: 1000; +} + +div.wonder_state.wonder_finished .finished_wonder_box { + width: 100%; + position: absolute; + bottom: 0; + left: 0; +} + +div.wonder_state.wonder_finished .wonder_controls .next_ww, +div.wonder_state.wonder_finished .wonder_controls .prev_ww { + top: 200px; +} + +div.wonder_info_text_wrapper { + overflow: auto; + max-height: 425px; +} + +span.checked, +span.unchecked { + height: 24px; + width: 22px; + float: left; + display: block; + margin-right: 3px; + background-image: url(https://gpfr.innogamescdn.com/images/game/wonders/wonders_sprite.png); +} + +span.checked { + background-position: -196px 0; +} + +span.unchecked { + background-position: -196px -24px; +} + +span.winfo_text { + vertical-align: middle; +} + +span.unchecked+span.winfo_text { + color: #986; +} + +div.wonder_descriptions { + display: none; +} + +table.res_info { + border-collapse: collapse; + width: 100%; + border: 1px solid #cb9; +} + +table.res_info td { + padding: 3px 6px; +} + +table.res_info td.resource_count { + text-align: right; +} + +table.res_info tr { + border-bottom: 1px solid #cb9; +} + +table.res_info tr.wonder_available_resources_info td.resource_count { + color: #058; +} + +table.res_info tr.wonder_needed_resources_info td.resource_count { + color: #900; +} + +.wonder_list { + list-style: disc outside none; + margin-left: 20px; +} + +div.wonder_progress { + margin: 0 auto 15px; + position: relative; + width: 600px; + height: 123px; +} + +div.wonder_progress_bar { + width: 299px; + height: 44px; + background: url(https://gpfr.innogamescdn.com/images/game/wonders/wonders_sprite.png) 0 -99px no-repeat; + position: absolute; + left: 110px; + top: 38px; +} + +div.wonder_progress_bar div.progress_step { + background: url(https://gpfr.innogamescdn.com/images/game/wonders/wonders_sprite.png) -196px -76px no-repeat; + width: 24px; + height: 24px; + margin: 11px 0 0 4px; + float: left; +} + +div.wonder_free_trade_capacity { + position: absolute; + bottom: -15px; + left: 0; +} + +div.wonder_expansion_stage { + position: absolute; + top: -15px; + left: 0; +} + +img.finished_image { + position: absolute; + width: 762px; + height: 459px; +} + +img.finished_image_small { + width: 185px; + height: 123px; + position: relative; + left: -1px; + top: -1px; +} + +.finished_image_small_container { + width: 191px; + position: absolute; + top: 0; + right: 0; +} + +.wonder_finished .finished_image_small_container { + display: none; +} + +.finished_image_small_inner_container { + height: 122px; +} + +div.wonder_progress .build_wonder_icon { + position: absolute; + left: 0; + top: 6px; +} + +div.wonder_res_container span.iron_img, +div.wonder_res_container span.stone_img, +div.wonder_res_container span.wood_img { + margin: -2px 0 0 20px; +} + +div.wonder_res_container div.unit_container.trade_resource { + height: 26px; + width: 110px; + margin: 0 7px 5px 0; +} + +.wonder_res_container { + position: relative; + overflow: hidden; + padding-bottom: 18px; +} + +div.wonder_res_container fieldset { + width: 313px; + height: 183px; + padding: 5px; + border: 1px solid #b68d4b; + margin-top: 7px; + float: left; +} + +div.wonder_res_container fieldset.next_level_res { + margin-left: 33px; +} + +div.wonder_res_container fieldset.send_res { + margin-left: 30px; + text-align: center; +} + +div.wonder_res_container fieldset.send_res legend { + text-align: left; +} + +div.wonder_res_container fieldset.send_res .descr, +div.wonder_res_container fieldset.send_res td { + text-align: center; +} + +div.wonder_res_container fieldset.send_res .button { + margin-top: 11px; +} + +.build_wonder_icon { + height: 99px; + width: 98px; + background: url(https://gpfr.innogamescdn.com/images/game/wonders/wonders_sprite.png) -98px 0 no-repeat; + float: left; + margin: 3px; +} + +.build_wonder_icon.selected { + background-position: 0 0; +} + +.build_wonder_icon a, +.build_wonder_icon div { + display: block; + height: 92px; + width: 92px; + margin: 3px; + background-position: center right; +} + +.build_wonder_icon.great_pyramid_of_giza a { + background: url(https://gpfr.innogamescdn.com/images/game/map/wonder_great_pyramid_of_giza.png) -691px -17px; +} + +.build_wonder_icon.hanging_gardens_of_babylon a { + background: url(https://gpfr.innogamescdn.com/images/game/map/wonder_hanging_gardens_of_babylon.png) -693px -10px; +} + +.build_wonder_icon.statue_of_zeus_at_olympia a { + background: url(https://gpfr.innogamescdn.com/images/game/map/wonder_statue_of_zeus_at_olympia.png) -680px -10px; +} + +.build_wonder_icon.temple_of_artemis_at_ephesus a { + background: url(https://gpfr.innogamescdn.com/images/game/map/wonder_temple_of_artemis_at_ephesus.png) -690px -12px; +} + +.build_wonder_icon.mausoleum_of_halicarnassus a { + background: url(https://gpfr.innogamescdn.com/images/game/map/wonder_mausoleum_of_halicarnassus.png) -680px -10px; +} + +.build_wonder_icon.colossus_of_rhodes a { + background: url(https://gpfr.innogamescdn.com/images/game/map/wonder_colossus_of_rhodes.png) -675px 0; +} + +.build_wonder_icon.lighthouse_of_alexandria a { + background: url(https://gpfr.innogamescdn.com/images/game/map/wonder_lighthouse_of_alexandria.png) -680px 0; +} + +a.toggle_wonder_info_text { + float: left; + height: 23px; + width: 22px; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/wonders/showhide.png) no-repeat 0 -46px; +} + +a.toggle_wonder_info_text.open { + background-position: 0 0; +} + +a.toggle_wonder_info_text.open:hover { + background-position: 0 -23px; +} + +a.toggle_wonder_info_text.closed:hover { + background-position: 0 -69px; +} + +.hidden { + display: none; +} + +div.confirm_wonder_button { + display: none; +} + +#duration_container { + width: auto; + text-align: center; + float: none; + position: relative; + overflow: hidden; + margin-top: 4px; +} + +#duration_container span { + display: inline-block; + float: none; +} + +#duration_container span#nightbonus { + display: none; +} + +.age_of_wonder_bar_text { + height: 24px; + width: 100%; + top: 130px; + left: 16px; +} + +.grace_period_wonder_bar { + width: 350px; + display: inline-block; +} + +.age_of_wonder_bar { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_build_bar.jpg); + width: 410px; + height: 32px; + top: 154px; + left: 16px; + display: inline-block; +} + +.age_of_wonder_bar_amage_of_wonder_bar_containerount { + position: relative; + top: -17px; + left: 0; + width: 100%; + font-weight: 600; + color: #fff; + text-shadow: 1px 1px 0 #000; +} + +.age_of_wonder_bar_progress { + position: relative; + height: 26px; + top: 3px; + left: 3px; + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_build_bar_progress.jpg); + max-width: 404px; +} + +.age_of_wonder_bar_amount { + position: relative; + width: 410px; + height: 26px; + top: -22px; + left: 3px; + color: #fec; + font-weight: 700; + text-align: center; + line-height: 24px; +} + +.age_of_wonder_bar_container { + height: 40px; + text-align: center; +} + +.age_of_wonder_estimation { + width: 100%; + text-align: center; +} + +.world_wonder_img { + width: 193px; + top: 20px; + display: inline-block; +} + +.world_wonder_img img { + margin-bottom: -4px; +} + +.world_wonder_description { + display: inline-block; + width: 490px; + vertical-align: top; + margin-left: 10px; +} + +.world_wonder_main_wrapper.pre_world_wonder_era { + margin: 0 10px 20px 10px; +} + +.world_wonder_main_wrapper.pre_world_wonder_era .world_wonder_description { + text-align: left; + padding-top: 0; +} + +.world_wonder_main_wrapper.pre_world_wonder_era .world_wonder_requirements { + text-align: center; + padding: 0 15px; +} + +.world_wonder_main_wrapper.grace_period { + margin: 20px 10px 20px 10px; +} + +.world_wonder_main_wrapper.grace_period .world_wonder_description { + text-align: center; + padding-top: 20px; +} + +.world_wonder_main_wrapper.grace_period .world_wonder_description .age_of_wonder_text { + font-weight: 600; + margin-bottom: 5px; +} + +.wonder_more_information { + width: 200px; + float: left; + left: 10px; + position: relative; + top: 3px; +} + +.wonder_more_information.show { + display: inline; +} + +.wonder_more_information.hide { + display: none; +} + +.wonder_controls .town-capacity-indicator { + margin-top: 13px; +} + +.wonder_controls h4 { + text-align: center; + margin: 10px auto; +} + +.wonder_divider { + height: 1px; + width: 360px; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + margin: 10px auto; +} + +a.button.send_resources_btn .middle { + margin: 0 3px; +} + +ul.wonder_building_options { + width: 730px; +} + +.next_ww, +.prev_ww { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png); + width: 25px; + height: 31px; + position: absolute; + top: 85px; + cursor: pointer; +} + +.prev_ww { + background-position: 0 -150px; + left: 26px; +} + +.prev_ww:hover { + background-position: 0 -181px; +} + +.next_ww { + background-position: -25px -150px; + right: 26px; +} + +.next_ww:hover { + background-position: -25px -181px; +} + +td.next_building_phase { + width: 305px; + height: 163px; + vertical-align: middle; + text-align: center; +} + +.ww_image { + padding: 6px 8px; +} + +.ww_image div { + background: url(https://gpfr.innogamescdn.com/images/game/wonders/small_icon_world_wonders.png) no-repeat 0 0; + height: 40px; + width: 40px; +} + +.ww_image div.colossus_of_rhodes { + background-position: 0 0; +} + +.ww_image div.great_pyramid_of_giza { + background-position: -40px 0; +} + +.ww_image div.hanging_gardens_of_babylon { + background-position: -80px 0; +} + +.ww_image div.lighthouse_of_alexandria { + background-position: -240px 0; +} + +.ww_image div.mausoleum_of_halicarnassus { + background-position: -200px 0; +} + +.ww_image div.statue_of_zeus_at_olympia { + background-position: -160px 0; +} + +.ww_image div.temple_of_artemis_at_ephesus { + background-position: -120px 0; +} + +.ww_image div.colossus_of_rhodes.gray { + background-position: 0 -40px; +} + +.ww_image div.great_pyramid_of_giza.gray { + background-position: -40px -40px; +} + +.ww_image div.hanging_gardens_of_babylon.gray { + background-position: -80px -40px; +} + +.ww_image div.lighthouse_of_alexandria.gray { + background-position: -240px -40px; +} + +.ww_image div.mausoleum_of_halicarnassus.gray { + background-position: -200px -40px; +} + +.ww_image div.statue_of_zeus_at_olympia.gray { + background-position: -160px -40px; +} + +.ww_image div.temple_of_artemis_at_ephesus.gray { + background-position: -120px -40px; +} + +.ww_list .stage { + text-align: center; + font-weight: 700; +} + +.ww_list .progress { + text-align: center; +} + +.ww_list .progress .tripple-progress-progressbar { + width: auto; + margin: 0 15px; +} + +.ww_list .tripple-progress-progressbar .amounts { + top: 0; + left: 2px; + right: 2px; + bottom: 2px; + text-align: center; + color: #fff; +} + +.resource_selector { + width: 100px; +} + +.unit_town .index_unit { + float: left; +} + +#town_units_overview { + left: 0; + right: 0; + bottom: 62px; + overflow-x: hidden; + overflow-y: auto; + top: 0; + position: absolute; + z-index: 2; + height: 475px; +} + +#town_units_overview .game_list { + width: 750px; + margin: 0 auto; +} + +.game_list .town_item, +.town_item { + display: inline-block; + vertical-align: top; + position: relative; + text-align: left; + padding: 0; + border: 0 none; + list-style-type: none; + margin: 0; + width: 184px; +} + +.game_list .town_item.hidden>*, +.town_item.hidden>* { + display: none; +} + +#culture_overview_towns .town_item { + height: 169px; +} + +#culture_overview_towns, +#gods_overview_towns, +#hides_overview_towns { + width: 751px; + margin: 0 auto; + border-top: 0; +} + +.game_list#culture_overview_towns li, +.game_list#gods_overview_towns li, +.game_list#hides_overview_towns li, +.game_list#trade_overview_towns li { + padding: 0; + border-bottom: 0 none; +} + +.town_droppable { + width: 182px; + padding: 3px; + position: relative; + top: 7px; + height: 100%; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/drop_field.jpg) no-repeat; +} + +.town_droppable li { + cursor: default; +} + +.town_droppable#trade_from { + float: left; +} + +.town_droppable#trade_to { + float: right; +} + +div.overview_search_bar { + position: absolute; + top: 0; + left: 0; + right: 0; + height: 25px; + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat; + border: 2px ridge #e8a52b; +} + +div.overview_search_bar span.grepo_input { + display: inline-block; + float: left; + margin: 2px 0 2px 0; +} + +div.overview_search_bar a.cancel { + display: inline-block; + float: left; + margin: 2px 3px 2px 0; +} + +#wrapper { + position: absolute; + top: 60px; +} + +#trade_wrappyer, +.t0#wrapper { + position: absolute; + top: 0; + left: 0; + right: 0; +} + +.movement_town { + float: left; + margin: 2px 6px; +} + +.town_storage_full { + color: #c00; +} + +#trade_controls #res_container { + margin: 0 auto; + width: 186px; + position: absolute; + top: 38px; + left: 239px; +} + +#sort_icons { + position: relative; + top: 12px; + left: 35px; +} + +#trade_controls #buttons { + position: absolute; + right: 194px; + bottom: 5px; + width: 150px; +} + +#trade_controls #trade_duration { + display: none; + position: absolute; + width: 120px; + right: 200px; + top: 11px; +} + +#trade_controls #trade_duration img { + vertical-align: middle; +} + +.trade_resource_amount { + float: right; + margin: 2px 6px; +} + +.trade_movements.list_open li { + border-bottom: 0 none; +} + +.sort_icon { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/sort_icons_2.32.png) no-repeat; + width: 31px; + height: 31px; + float: left; + cursor: pointer; + display: block; +} + +.sort_icon.stone { + background-position: -31px 0; +} + +.sort_icon.iron { + background-position: -62px 0; +} + +.sort_icon.storage { + background-position: -93px 0; +} + +.sort_icon.trade_movements { + background-position: -124px 0; +} + +.sort_icon.town_name { + background-position: -155px 0; +} + +.sort_icon.town_points { + background-position: -186px 0; +} + +.sort_icon.town_population_sort { + background-position: -248px 0; +} + +.sort_icon.town_population_sort.active { + background-position: -248px -31px; +} + +.sort_icon.wood.active { + background-position: 0 -31px; +} + +.sort_icon.stone.active { + background-position: -31px -31px; +} + +.sort_icon.iron.active { + background-position: -62px -31px; +} + +.sort_icon.storage.active { + background-position: -93px -31px; +} + +.sort_icon.trade_movements.active { + background-position: -124px -31px; +} + +.sort_icon.town_name.active { + background-position: -155px -31px; +} + +.sort_icon.town_points.active { + background-position: -186px -31px; +} + +.town_name .toggle { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/toggle.png) no-repeat; + width: 11px; + height: 11px; + display: block; + position: absolute; + right: 9px; + top: 6px; + cursor: pointer; +} + +.town_name .toggle:hover { + background-position: 0 -11px; +} + +.town_name .toggle.active:hover { + background-position: -11px -11px; +} + +#building_overview { + width: 100%; + table-layout: fixed; +} + +#recruit_overview #fixed_table_header { + position: absolute; + top: 29px; +} + +#fixed_table_header { + clear: both; + height: 40px; + padding: 0; + width: 100%; + border-bottom: 1px solid #000; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/fixed_table_header_bg.jpg) repeat-x 0 0; +} + +#fixed_table_header #toggle { + margin: 10px; + float: right; +} + +#fixed_table_header div#icon_building_main, +#fixed_table_header div#icon_building_theater { + margin-left: 152px; +} + +#fixed_table_header div.special { + display: none; +} + +#fixed_table_header div { + display: block; + float: left; + width: 40px; + height: 40px; + border-left: 1px solid #000; +} + +#fixed_table_header .overviews_building.selected { + border: 3px solid red; + width: 35px; + height: 34px; +} + +#building_overview tr td.building { + text-align: center; + padding: 0; + width: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/pixel.gif) repeat-y 0 0; +} + +#building_overview td.building.special { + display: none; +} + +.diff { + display: none; + position: absolute; + left: 70px; + width: 60px; +} + +#building_overview tr:hover .diff { + display: inline; +} + +.building_overview #building_overview td.building.hover, +.building_overview #building_overview tr:hover { + background: #ffe09b; +} + +#building_overview tr td.locked { + background-color: #ffc99b; +} + +#building_overview td.locked.hover, +#building_overview td.locked:hover { + background-color: #ffa379; +} + +#building_overview td.building a.building_tear_down, +#building_overview td.building a.building_upgrade, +#building_overview td.building a.building_upgrade_reduced { + display: none; +} + +#building_overview td.building:hover a { + display: block; +} + +#building_overview td.building.max_level:hover a.building_upgrade, +#building_overview td.building.max_level:hover a.building_upgrade_reduced { + display: none; +} + +#building_overview td.building.group_locked:hover a.building_tear_down { + display: none; +} + +#building_overview .dummy { + padding: 0; + border-left: 1px solid #d0be97; +} + +#building_overview .towninfo div { + float: none; + position: relative; +} + +.building_overview #building_overview .towninfo { + width: 152px; +} + +#building_overview .townbuildings, +#building_overview .towninfo { + overflow: hidden; +} + +#building_overview .townbuildings { + height: 25px; +} + +#building_overview_table_wrapper { + height: 410px; + overflow-y: auto; + overflow-x: hidden; +} + +#table_wrapper { + position: absolute; + top: 69px; + height: 468px; + right: 0; + left: 0; + overflow-y: auto; + overflow-x: hidden; +} + +a.building_tear_down, +a.building_upgrade, +a.building_upgrade_reduced { + color: #fc6; +} + +.building_tear_down, +.building_upgrade, +.building_upgrade_reduced { + width: 18px; + height: 19px; + display: block; + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png) no-repeat 0 0; + white-space: nowrap; + line-height: 19px; + font-size: 9px; + text-shadow: #000 1px 1px; + text-align: right; +} + +.build_cost_reduction_enabled .building_tear_down, +.build_cost_reduction_enabled .building_upgrade, +.building_upgrade_reduced { + width: 40px; + height: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat -222px -184px; + padding-top: 1px; +} + +a.building_upgrade_reduced { + padding-right: 5px; + width: 35px; +} + +.build_cost_reduction_enabled .building_tear_down, +.build_cost_reduction_enabled .building_upgrade { + padding-right: 3px; + padding-left: 20px; + width: 17px; + text-align: center; +} + +.building_upgrade { + background-position: -126px 0; +} + +.building_upgrade:hover { + background-position: -126px -19px; +} + +.building_upgrade.disabled { + background-position: -126px -38px; +} + +.build_cost_reduction_enabled .building_upgrade { + background-position: -220px -184px; +} + +.build_cost_reduction_enabled .building_upgrade:hover { + background-position: -220px -206px; +} + +.build_cost_reduction_enabled .building_upgrade.disabled { + background-position: -220px -228px; +} + +.building_tear_down { + background-position: -144px 0; +} + +.building_tear_down:hover { + background-position: -144px -19px; +} + +.building_tear_down.disabled { + background-position: -144px -38px; +} + +.build_cost_reduction_enabled .building_tear_down { + background-position: -261px -184px; +} + +.build_cost_reduction_enabled .building_tear_down:hover { + background-position: -261px -206px; +} + +.build_cost_reduction_enabled .building_tear_down.disabled { + background-position: -261px -228px; +} + +.building_upgrade_reduced { + background-position: -179px -184px; +} + +.building_upgrade_reduced:hover { + background-position: -179px -206px; +} + +.building_upgrade_reduced.disabled { + background-position: -179px -228px; +} + +.building_tear_down.disabled, +.building_upgrade.disabled, +.building_upgrade_reduced.disabled { + color: #ccb; +} + +#building_overview .town_info { + float: left; + min-width: 220px; + margin-right: 5px; +} + +#building_overview .town_info span { + float: left; + margin: 5px; +} + +.town_points_icon { + width: 50px; + display: block; + margin: 5px; + text-align: right; + background: url(https://gpfr.innogamescdn.com/images/game/icons/points.png) no-repeat; +} + +#building_overview .town_resources { + padding-left: 24px; + line-height: 16px; + width: auto; + margin: 0 3px; + text-align: left; +} + +#building_overview tr:hover .town_resources .notenough { + color: red; +} + +#building_overview tr td { + padding: 0; + margin-top: 3px; +} + +.build_cost_reduction_enabled #building_overview_table_wrapper tr td { + margin-top: 0; +} + +#building_overview .towninfo_wrapper { + padding: 3px 6px; +} + +#recruit_overview .resource_count { + float: left; + display: block; +} + +#recruit_overview .resource_stone_icon { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +#recruit_overview .resource_iron_icon { + background-position: 0 -48px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +#recruit_overview .resource_favor_icon { + background-position: 0 -96px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +#recruit_overview .town_population, +.town_population { + width: 50px; + display: block; + margin: 5px; + text-align: right; + background: url(https://gpfr.innogamescdn.com/images/game/res/population_16x16.png) no-repeat 4px 0; +} + +#recruit_units { + height: 200px; + width: 100%; + cursor: auto; +} + +#recruit_units #recruit_box { + width: 551px; + height: 130px; + position: relative; + top: 44px; + padding: 10px; +} + +#recruit_units #unit_order_unit_name { + position: absolute; +} + +#recruit_units #recruit_box a.confirm { + position: absolute; + top: 60px; + right: 10px; +} + +#recruit_units #recruit_costs { + position: absolute; + top: 27px; + left: 255px; +} + +#recruit_slider { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/count.png) no-repeat; + position: relative; + height: 94px; + width: 234px; + top: 25px; +} + +#recruit_amount { + left: 140px; + top: 59px; + position: absolute; + background: 0 0; +} + +#recruit_slider #unit_order_slider { + left: 125px; +} + +#recruit_slider #unit_order_down.left { + top: 34px; +} + +#recruit_slider #unit_order_up.right { + top: 15px; + left: 206px; +} + +#recruit_slider #unit_order_down.left, +#recruit_slider #unit_order_min { + left: 100px; +} + +#recruit_units #recruit_tabs { + position: absolute; + left: 18px; +} + +#recruit_units .recruit_tab { + width: 37px; + height: 48px; + float: left; + display: none; + margin: 0 -1px; + cursor: pointer; + position: relative; + z-index: 2; +} + +#recruit_units .recruit_tab.selected { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/recruit_units_tab.png) no-repeat; +} + +#recruit_units .max { + text-align: center; + display: block; + letter-spacing: -1px; + white-space: nowrap; +} + +#recruit_units .recruit_tab .recruit_unit { + float: none; + margin: 5px 5px 0; +} + +#recruit_units .unit_container .town_info_input { + left: 0; +} + +#outer_troops_list { + width: 740px; + height: 407px; + overflow-y: auto; + overflow-x: hidden; +} + +#outer_troops_box .return_all_units { + float: right; +} + +#outer_troops_box .return_all_units.hidden { + display: none; +} + +#outer_troops_box .outer_troops_sort_box { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat 0 0; + height: 23px; + padding: 5px; +} + +#outer_troops_box .outer_troops_sort_box .label { + margin-top: 0; +} + +#dd_troops_outside_sort_by { + min-width: 150px; + margin-left: 5px; +} + +#outer_troops_list li { + display: block; +} + +#outer_troops_close { + float: right; + margin: 5px 15px; +} + +#outer_troops { + position: absolute; + bottom: 0; + left: -1px; + right: -1px; + z-index: 3; + padding: 0 1px; + overflow: hidden; +} + +#outer_troops_content_wrapper { + position: relative; + left: 1px; + right: 1px; + top: 22px; +} + +#outer_troops_box { + position: absolute; + top: 0; + left: 15px; + right: 15px; +} + +.sendback_container { + width: 28px; + height: 43px; + float: left; +} + +#outer_troops_list .sendback_container { + margin-top: 4px; +} + +#outer_troops_list .place_send_part_buttons { + margin: 5px 0 0 2px; +} + +#outer_troops .sendback_container a { + margin-left: 3px; + position: relative; + left: 5px; +} + +#outer_troops.closed { + width: 715px; + position: absolute; + left: 20px; + top: 25px; + max-height: 25px; + overflow: hidden; +} + +#outer_troops_list .select_units_container { + position: relative; + overflow: hidden; + height: 30px; +} + +#outer_troops_list .select_units_container .spinner { + float: left; + margin-right: 9px; + width: 43px; +} + +#outer_troops_list .select_units_container .spinner_horizontal { + float: left; + margin-right: 5px; + width: 80px; +} + +#outer_troops_list .single-progressbar { + width: 466px; + margin-bottom: 2px; + float: left; +} + +#outer_troops_list .button_fast_ship, +#outer_troops_list .button_slow_ship { + float: left; + margin-left: 4px; +} + +.unit_overview_toggle a:link, +.unit_overview_toggle a:visited { + color: #473b2b; +} + +.dropdown_border { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/dropdown_border.png); + height: 8px; +} + +.dropdown_border.left { + background-position: left 0; + background-repeat: no-repeat; +} + +.dropdown_border.right { + background-position: right -8px; + background-repeat: no-repeat; +} + +.dropdown_border.center { + margin: 0 21px; + background-position: 0 -16px; + background-repeat: repeat-x; +} + +.overview_incoming.icon, +.overview_outgoing.icon { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/arrows_small.2.41.png) no-repeat; + width: 12px; + height: 13px; + display: inline-block; + margin: 0 2px; + vertical-align: middle; +} + +.overview_incoming.icon { + background-position: 0 0; +} + +.overview_outgoing.icon { + background-position: -12px 0; +} + +.overview_preview_thumb { + width: 40%; +} + +.overview_preview { + border: 1px #000 solid; + cursor: pointer; +} + +#overview_help { + position: absolute; + z-index: 5; + width: 178px; + overflow: hidden; +} + +#overview_help.top_align .top { + height: 15px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/help_popup_top_align.png) no-repeat top; +} + +#overview_help.bottom_align .top { + height: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/help_popup_bottom_align.png) no-repeat top; +} + +#overview_help .middle { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/help_popup_middle.jpg) repeat-y; + padding: 0 6px; +} + +#overview_help.top_align .bottom { + height: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/help_popup_top_align.png) no-repeat bottom; +} + +#overview_help.bottom_align .bottom { + height: 15px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/help_popup_bottom_align.png) no-repeat bottom; +} + +img#drag_here { + position: absolute; + left: 60px; + top: 24px; + display: none; +} + +#unit_overview_town_list .unit_town_resources { + float: left; + margin-bottom: 5px; +} + +#gods_overview_towns .town_item, +#unit_overview_town_list .town_item { + cursor: pointer; + margin: 2px 10px; + width: 730px; +} + +.command_overview_booty { + overflow: hidden; +} + +#command_overview div.command_overview_units { + float: right; +} + +#all_units .place_unit, +#current_myth_units .place_unit, +#recruit_units .place_unit, +#unit_overview_town_list .place_unit, +.command_overview_units .place_unit, +.overviews_building, +.tg_town_draggable .place_unit { + height: 25px; + width: 25px; +} + +.command_overview_units .place_unit { + font-size: 10px; + margin: 6px 1px 3px 1px; +} + +#recruit_units_list .queues.active, +#unit_overview_town_list .queues.active { + margin: 0 0 0 80px; +} + +#ordered_unit_popup img { + vertical-align: middle; +} + +#unit_overview_town_list .queues .queue { + height: 27px; + padding: 3px; + width: 189px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/queue_small.jpg) no-repeat 0 0; +} + +#current_myth_units .place_unit, +#unit_overview_town_list .place_unit { + display: inline-block; + float: left; + margin: 0; +} + +#unit_overview_town_list .place_unit_hero, +#unit_overview_town_list .place_unit_white #current_myth_units .place_unit, +.command_overview_units .place_unit .place_unit_hero, +.command_overview_units .place_unit .place_unit_white { + right: 1px; + bottom: 1px; +} + +#current_myth_unit .place_unit_black, +#unit_overview_town_list .place_unit_black, +.command_overview_units .place_unit .place_unit_black { + right: 0; + bottom: 0; +} + +.command_overview_booty { + overflow: visible; + float: right; + width: 60px; +} + +.command_overview_booty .resource_count { + text-align: left; + padding: 0 5px 0 18px; + overflow: hidden; + position: relative; + display: inline; + width: auto; + float: left; +} + +.place_command { + min-height: 32px; +} + +.place_command.color_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/row_highlight.png) repeat; +} + +.place_command a.cancel { + display: inline-block; + position: relative; + bottom: 2px; +} + +.place_command .casted_power { + position: absolute; + top: 23px; + left: 26px; +} + +.place_command .game_arrow_edit { + position: relative; + display: block; + float: left; + width: 18px; + height: 18px; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png); + background-position: -162px -38px; + background-repeat: no-repeat; + margin-top: -2px; +} + +.place_command .game_arrow_save { + position: relative; + display: block; + float: left; + width: 18px; + height: 18px; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png); + background-position: -197px 0; + background-repeat: no-repeat; + margin-top: -2px; +} + +.place_command .game_arrow_save:hover { + background-position: -197px -19px; +} + +.place_command .game_arrow_reset { + position: relative; + display: block; + float: left; + width: 18px; + height: 18px; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png); + background-position: -180px 0; + background-repeat: no-repeat; + margin-top: -2px; +} + +.place_command .game_arrow_reset:hover { + background-position: -180px -19px; +} + +.place_command input { + width: 250px; + height: 12px; + margin-top: -2px; + float: left; +} + +.troops_arrive_at { + float: left; + margin-left: 10px; + font-size: 10px; + margin-top: 3px; +} + +#culture_overview_wrapper, +#hides_overview_wrapper { + width: 780px; + height: 405px; + overflow: auto; + left: 0; + position: relative; +} + +#hides_overview_wrapper { + height: 455px; +} + +#gods_overview_wrapper { + height: 405px; + overflow: auto; + left: 0; + position: relative; +} + +.start_enabled { + cursor: pointer; +} + +#culture_points_overview_bottom { + height: 107px; + padding: 0 5px; + position: absolute; + width: 780px; + left: -1px; + bottom: 5px; + z-index: 3; +} + +#culture_points_overview_bottom .center_outer_wrap { + top: 55px; +} + +#culture_points_overview_bottom #place_culture_bg { + position: absolute; + top: 17px; +} + +#place_celebration_select, +#start_all_celebrations { + display: block; + float: left; +} + +#place_celebration_select { + margin-right: 3px; + width: 130px; +} + +#place_start_all .grepo_input { + float: left; +} + +#culture_overview_towns .celebration_wrapper, +#hides_overview_towns .iron_store_wrapper { + margin: -2px; +} + +#culture_overview_towns .celebration_wrapper li, +#hides_overview_towns .iron_store_wrapper li { + width: 166px; + height: 36px; + position: relative; + margin-bottom: -3px; +} + +#culture_overview_towns div.celebration_button, +#culture_overview_towns div.celebration_icon, +#culture_overview_towns div.celebration_icon_bg, +#culture_overview_towns div.celebration_name, +#culture_overview_towns div.celebration_progressbar, +#culture_overview_towns div.celebration_progressbar div, +#hides_overview_towns div.help_button, +#hides_overview_towns div.hide_icon, +#hides_overview_towns div.hide_icon_bg, +#hides_overview_towns div.hide_progressbar, +#hides_overview_towns div.hide_progressbar div, +#hides_overview_towns div.iron_name { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/celebration_bg_new.png); + position: absolute; +} + +#culture_overview_towns div.celebration_icon_bg, +#hides_overview_towns div.hide_icon_bg { + height: 36px; + width: 30px; + left: 0; +} + +#culture_overview_towns div.celebration_name, +#hides_overview_towns div.iron_name { + left: 30px; + background-position: 0 -36px; + background-repeat: repeat-x; + height: 23px; + right: 24px; + line-height: 23px; +} + +#culture_overview_towns div.celebration_button, +#hides_overview_towns div.help_button { + width: 24px; + height: 36px; + right: 0; + background-position: 0 -72px; +} + +#culture_overview_towns div.celebration_button div.button_wrapper, +#hides_overview_towns div.help_button div.button_wrapper { + width: 18px; + height: 18px; + margin: 3px; + overflow: hidden; +} + +#culture_overview_towns div.celebration_button div.button_wrapper a, +#hides_overview_towns div.help_button div.button_wrapper a { + position: relative; + left: -2px; + top: -2px; +} + +#culture_overview_towns div.celebration_icon { + width: 25px; + height: 30px; + margin: 3px 2px; +} + +#culture_overview_towns div.celebration_progressbar, +#hides_overview_towns div.hide_progressbar { + left: 30px; + right: 4px; + background-position: 0 -59px; + background-repeat: repeat-x; + height: 13px; + bottom: 0; + line-height: 10px; + color: #fff; + text-align: center; +} + +#culture_overview_towns div.celebration_progressbar div, +#hides_overview_towns div.hide_progressbar div { + background-position: 0 -228px; + height: 10px; + left: -1px; + z-index: 1; + border-left: 1px solid #677135; + border-right: 1px solid #666e34; +} + +#culture_overview_towns div.celebration_progressbar .eta, +#hides_overview_towns div.hide_progressbar .eta { + display: inline-block; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + width: 134px; + position: relative; + z-index: 2; +} + +div.celebration_icon.type_party { + background-position: 0 -108px; +} + +div.celebration_icon.type_games { + background-position: 0 -138px; +} + +div.celebration_icon.type_triumph { + background-position: 0 -198px; +} + +div.celebration_icon.type_theater { + background-position: 0 -168px; +} + +#town_group_overview_wrapper { + width: 780px; + height: 350px; + left: 0; + position: relative; +} + +#town_group_overview { + height: 350px; + overflow-x: visible; +} + +#active_town_list_overview { + height: 100%; + overflow-y: scroll; + overflow-x: hidden; +} + +#all_town_list_overview { + height: 100%; + overflow-y: scroll; + overflow-x: hidden; +} + +div.group_list_scroll_border { + padding: 0 3px 3px 3px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/group_scroll_border.png) no-repeat; + width: 234px; + height: 338px; + float: left; +} + +#town_group_options_add span { + clear: both; + display: block; +} + +#town_group_active_towns, +#town_group_all_towns { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/group_list_bg.jpg) repeat-y; + min-height: 100%; + padding: 0 18px; +} + +#overview_town_group_list li { + line-height: 22px; +} + +#group_controls { + width: 782px; + height: 106px; + position: absolute; + left: -1px; + bottom: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/bottom_bg.jpg) no-repeat; +} + +.town_name .move_left { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/toggle_turned.png) no-repeat; + width: 11px; + height: 11px; + display: block; + position: absolute; + right: 6px; + top: 6px; + cursor: pointer; + background-position: -11px -11px; +} + +.town_name .move_left:hover { + background-position: -11px 0; +} + +.town_name .move_left.active:hover { + background-position: -11px 0; +} + +.town_name .move_right { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/toggle.png) no-repeat; + width: 11px; + height: 11px; + display: block; + position: absolute; + right: 6px; + top: 6px; + cursor: pointer; +} + +.town_name .move_right:hover { + background-position: 0 -11px; +} + +.town_name .move_right.active:hover { + background-position: -11px -11px; +} + +#town_group_list_header { + position: relative; + width: 781px; + height: 30px; + left: 0; + font-weight: 700; + line-height: 24px; +} + +.delete_town_group, +.rename_town_cancel, +.rename_town_confirm, +.rename_town_group, +.select_town_group { + margin-right: 4px; + float: right; +} + +#sort_option_area { + position: relative; + width: 782px; + left: 0; +} + +#town_group_overview_head { + border-bottom: 1px solid #000; +} + +#active_town_list_head, +#all_town_list_head { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/group_header_bg.jpg) no-repeat; + height: 30px; + text-align: center; +} + +.town_group_col1 { + width: 269px; + left: 0; + position: absolute; +} + +.town_group_col2 { + width: 241px; + right: 256px; + position: absolute; +} + +.town_group_col3 { + width: 241px; + right: 0; + position: absolute; +} + +.overview_type_icon, +.sort_icon_active, +.sort_icon_all { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/sort_icons_2.32.png) no-repeat; + width: 31px; + height: 31px; + float: left; + cursor: pointer; +} + +.sort_icon_active.town_name, +.sort_icon_all.town_name { + background-position: -155px 0; +} + +.sort_icon_active.town_points, +.sort_icon_all.town_points { + background-position: -186px 0; +} + +.sort_icon_active.town_name.active, +.sort_icon_all.town_name.active { + background-position: -155px -31px; +} + +.sort_icon_active.town_points.active, +.sort_icon_all.town_points.active { + background-position: -186px -31px; +} + +.overview_type_icon.show_resources { + background-position: -93px 0; +} + +.overview_type_icon.show_resources.active { + background-position: -93px -31px; +} + +.overview_type_icon.show_units { + background-position: -217px 0; + left: 0; + top: 0; +} + +.overview_type_icon.show_units.active { + background-position: -217px -31px; +} + +.sort_options .hide, +.town_group_name .hide { + display: none; +} + +.sort_options .show, +.town_group_name .show { + display: inline; +} + +.trade_info .trade_capacity { + width: inherit; + float: right; +} + +.town_group_active a, +.town_group_active span { + margin-left: 3px; +} + +#gods_overview_bottom { + height: 100px; + position: absolute; + left: -1px; + right: -1px; + bottom: 5px; +} + +.god_overview_god_favor { + top: 3px; + position: relative; + text-align: center; + display: inline-block; +} + +.god_overview_god_favor:first-child:nth-last-child(7), +.god_overview_god_favor:first-child:nth-last-child(7)~.god_overview_god_favor { + margin: 0 6px; +} + +.god_overview_god_favor:first-child:nth-last-child(6), +.god_overview_god_favor:first-child:nth-last-child(6)~.god_overview_god_favor { + margin: 0 15px; +} + +#favor_athena, +#favor_hera, +#favor_poseidon, +#favor_zeus { + width: 193px; + top: 3px; + position: absolute; +} + +.god_favor_text, +.god_fury_text { + color: #fc6; + text-align: center; + position: absolute; + width: 35px; + bottom: 7px; +} + +.god_favor_text.disabled, +.god_fury_text.disabled { + color: #cfcfcf; +} + +.god_favor_text { + left: 28px; +} + +.god_favor_text.ares { + left: 52px; +} + +.god_fury_text { + left: 5px; +} + +.god_icons_container { + display: inline-block; + position: absolute; + bottom: 0; + width: 100%; + text-align: center; +} + +.god_icons_container .filter_buttons { + position: absolute; + right: 5px; + top: -25px; +} + +.god_icons_container .filter_buttons a { + display: inline-block; +} + +.gods_overview_icon.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -93px 0; + width: 93px; + height: 79px; +} + +.gods_overview_icon.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -93px -79px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -186px -79px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -93px -158px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -279px 0; + width: 93px; + height: 79px; +} + +.gods_overview_icon.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -279px -158px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -93px -237px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -279px -237px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.selected.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat 0 0; + width: 93px; + height: 79px; +} + +.gods_overview_icon.selected.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat 0 -79px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.selected.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -186px 0; + width: 93px; + height: 79px; +} + +.gods_overview_icon.selected.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat 0 -158px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.selected.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -186px -158px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.selected.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -279px -79px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.selected.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat 0 -237px; + width: 93px; + height: 79px; +} + +.gods_overview_icon.selected.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -186px -237px; + width: 93px; + height: 79px; +} + +.town_god { + float: left; +} + +#town_god_infos { + float: left; + width: 40px; +} + +.town_temple_level { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/temple.png) no-repeat; +} + +.town_temple_level_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/temple_disabled.png) no-repeat; + text-align: right; +} + +.town_temple_level, +.town_temple_level_disabled { + display: block; + width: 45px; + height: 30px; + position: relative; + left: 15px; + text-align: right; +} + +.town_statue { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/statue.png) no-repeat; +} + +.town_statue_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/statue_disabled.png) no-repeat; +} + +.town_statue, +.town_statue_disabled { + display: block; + height: 30px; + left: 60px; + position: relative; + float: none; + margin: 0 auto; + width: 40px; +} + +#towninfo_powers_shield { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/powers_shield.png) 36px 36px no-repeat; + height: 275px; + width: 275px; +} + +#gods_overview_castable_powers { + min-height: 80px; +} + +#gods_overview_castable_powers .power_icon { + display: block; + float: left; + width: 45px; + height: 45px; + background-position: 0 -45px; + margin: 3px; +} + +#gods_overview_castable_powers .power_icon.disabled { + background-position: 0 0; +} + +#gods_overview_castable_powers .power_icon:hover { + background-position: 0 -90px; +} + +#gods_overview_castable_powers .power_icon.disabled:hover { + background-position: 0 0; +} + +#gods_overview_gods { + min-height: 80px; +} + +#gods_overview_gods a { + float: left; + margin: 3px; +} + +#gods_overview_text { + margin-left: 320px; +} + +.box_content .res_box { + float: left; +} + +.tg_town_draggable, +.town_draggable { + cursor: pointer; + cursor: -moz-grab; + cursor: -webkit-grab; + list-style-type: none; +} + +.tg_town_draggable.ui-draggable-dragging, +.town_draggable.ui-draggable-dragging { + cursor: move; + cursor: -moz-grabbing; + cursor: -webkit-grabbing; + z-index: 10000; +} + +.town_draggable .trade_movements { + display: none; +} + +.trade_movement_icons { + display: block; + clear: both; +} + +.town_draggable .city_list { + position: relative; + display: block; + float: right; +} + +.box_content .resource_count { + min-width: 56px; + width: 56px; + display: block; + float: none; + margin: 0; + height: 16px; + text-align: right; +} + +#hides_overview_wrapper .box_content .resource_count { + position: relative; +} + +.town_draggable.even, +.town_draggable.odd { + background: 0 0; + z-index: 5; +} + +.town_draggable .town_name { + display: block; +} + +li.tg_town_draggable div.info_bar, +li.town_draggable div.info_bar { + border-bottom: 1px solid #000; + height: 13px; + background: 0 0; +} + +.town_draggable .town_points { + float: left; + width: 50%; + margin-right: 7px; +} + +.town_draggable .trade_capacity { + display: block; + text-align: right; +} + +.box_content .current_units { + margin: 12px 0 0 70px; +} + +.box_content .current_units div { + display: inline-block; +} + +.town_draggable .storage { + display: block; + text-align: right; + float: right; + width: 50px; + background: url(https://gpfr.innogamescdn.com/images/game/res/storage_15x15.png) no-repeat; +} + +.trade_info .storage, +.trade_info .trade_capacity { + display: block; + text-align: right; + height: 16px; +} + +.box_content .resource_count .res_plenty, +.box_content .resource_count .res_rare, +.building_overview .res_plenty, +.building_overview .res_rare { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/resources_deposit.png); + width: 10px; + height: 10px; + position: absolute; + left: 12px; +} + +.box_content .resource_count .res_rare, +.building_overview .res_rare { + background-position: 0 -10px; +} + +.town_draggable .overview_incoming.icon, +.town_draggable .overview_outgoing.icon { + display: block; + float: right; +} + +.box_content .resource_count .res_plenty, +.box_content .resource_count .res_rare { + float: left; +} + +.game_table_even .towninfo .res_plenty, +.game_table_even .towninfo .res_rare, +.game_table_odd .towninfo .res_plenty, +.game_table_odd .towninfo .res_rare { + float: left; + position: relative; +} + +.building_overview .towninfo .res_plenty, +.building_overview .towninfo .res_rare { + position: absolute; +} + +#hides_overview_towns div.hide_icon { + width: 25px; + height: 30px; + margin: 3px 2px; + background: url(https://gpfr.innogamescdn.com/images/game/hide/spy_90x90_2.67.jpg) no-repeat center center; +} + +#hides_overview_towns .hide_buttons { + position: absolute; + left: 117px; + top: 109px; +} + +#hides_overview_towns .spinner { + position: absolute; + left: 40px; + top: 107px; +} + +#hides_overview_towns .spinner_horizontal { + top: 6px; + width: 80px; +} + +#hides_overview_towns .hide_buttons a { + display: inline-block; +} + +#hides_overview_towns .no_hide { + text-align: center; + padding: 11px 0 7px 0; +} + +#hides_overview_towns .iron_img { + margin: 2px 0 0 4px; + float: left; + cursor: pointer; +} + +#hides_overview_towns div.trade_resource { + float: left; + position: relative; + height: 36px; + width: 52px; + margin: 0 auto; +} + +.support_filter { + float: left; + margin: 2px 5px; + cursor: pointer; +} + +#townsoverview #header_island { + display: table; +} + +#townsoverview #header_island p { + margin: 0; + display: table-cell; + vertical-align: middle; + text-align: center; +} + +#townsoverview .h25 { + height: 25px; +} + +#townsoverview .h16 { + height: 16px; +} + +#townsoverview .w16 { + width: 16px; +} + +#townsoverview .col { + float: left; +} + +#townsoverview .col.w20 { + width: 20px; +} + +#townsoverview .col.w25 { + width: 25px; +} + +#townsoverview .col.w30 { + width: 30px; +} + +#townsoverview .col.w35 { + width: 35px; +} + +#townsoverview .col.w40 { + width: 40px; +} + +#townsoverview .col.w50 { + width: 50px; +} + +#townsoverview .col.w80 { + width: 80px; + overflow: hidden; +} + +#townsoverview .col.w175 { + width: 175px; +} + +#townsoverview .col.w200 { + width: 200px; +} + +#townsoverview .scroll_content { + max-height: 408px; + overflow-x: hidden; + overflow-y: auto; + width: 770px; + text-align: center; + margin: 0; +} + +.casted_spell_town { + float: left; + margin-top: 4px; +} + +#townsoverview .scroll_content.game_list li { + padding: 0; + letter-spacing: -1px; + background-position: 0 -32px; +} + +#townsoverview #units_show { + float: right; + width: 12px; + height: 12px; + background: url(https://gpfr.innogamescdn.com/images/game/button/toggle_sprite.png) no-repeat -12px -24px; +} + +#townsoverview .units_div { + position: relative; + left: 0; + width: 800px; +} + +#townsoverview .hideoverflow { + overflow-x: hidden; +} + +#townsoverview .hidden_border_cols { + width: 25px; + height: 25px; + border-style: none; + border-left: 0!important; + padding-right: 1px; +} + +#townsoverview .col.header { + width: 25px; + height: 25px; + padding: 0; + float: none; +} + +#townsoverview .col.header.main { + width: 20px; + height: 20px; + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/main_20x20.png); + margin: 0 auto; +} + +#townsoverview .col.header.docks { + width: 20px; + height: 20px; + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/docks_20x20.png); + margin: 0 auto; +} + +#townsoverview .col.header.barracks { + width: 20px; + height: 20px; + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/barracks_20x20.png); + margin: 0 auto; +} + +#townsoverview .col.header.wood { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/wood_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.stone { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/stone_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.iron { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/iron_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.storage { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/storage_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.free_pop { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/free_pop_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.casts { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/favor_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.research_points { + background-image: url(https://gpfr.innogamescdn.com/images/game/academy/points_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.free_trade { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/free_trade_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.culture { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/culture_25x25.png); + margin: 0 auto; +} + +#townsoverview .col.header.attackin { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/attack_in.png); + margin: 0 auto; +} + +#townsoverview .col.header.attackout { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/attack_out.png); + margin: 0 auto; +} + +#townsoverview .game_list li:hover { + background-image: url(https://gpfr.innogamescdn.com/images/game/border/brown.png); +} + +#townsoverview .towns_overview_inner_unit_table { + border-style: none; +} + +#townsoverview .towns_overview_inner_unit_table td { + border-style: none; +} + +#townsoverview .towns_overview_inner_unit_table div { + width: 25px; +} + +#townsoverview .no_construction { + width: 16px; + height: 16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/gears_inactive.png); + margin: 0 auto; +} + +#townsoverview .construction { + width: 16px; + height: 16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/gears.gif); + margin: 0 auto; +} + +#townsoverview .celebration { + float: left; + width: 16px; + height: 16px; +} + +#townsoverview .celebration.party { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/culture_icons_73x16.png) no-repeat -56px 0; +} + +#townsoverview .celebration.games { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/culture_icons_73x16.png) no-repeat 0 0; +} + +#townsoverview .celebration.triumph { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/culture_icons_73x16.png) no-repeat -38px 0; +} + +#townsoverview .celebration.theater { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/culture_icons_73x16.png) no-repeat -19px 0; +} + +#townsoverview_table_wrapper { + max-height: 408px; + overflow: hidden; +} + +.w64 { + width: 64px; +} + +#recruit_overview_table_toggle { + margin-top: 10px; + margin-right: 10px; + float: right; +} + +a.rename { + height: 23px; + width: 22px; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat 0 0; +} + +a.rename { + background-position: -154px 0; +} + +a.rename:hover { + background-position: -154px -23px; +} + +#town_group_options_rename { + display: none; + border-bottom: none; +} + +#gods_overview_towns .town_inner_field { + padding-top: 10px; +} + +.gods_overview_castable_powers { + padding-top: 5px; +} + +.gods_overview_castable_powers .gods_overview_chose_god { + position: relative; + overflow: hidden; + clear: left; + padding-top: 5px; +} + +#castable_powers { + position: relative; + overflow: hidden; +} + +.store_iron_interaction_wrapper { + display: flex; + position: relative; +} + +.store_iron_interaction_wrapper .spinner { + width: 100%; + max-width: 150px; +} + +.keep_iron_in_caves { + display: flex; + justify-content: space-evenly; + align-items: center; + width: 45%; +} + +.add_iron_to_caves { + display: flex; + justify-content: space-evenly; + align-items: center; + width: 55%; +} + +#hides_overview_bottom { + padding: 0 5px; + position: absolute; + width: 770px; + z-index: 3; +} + +.trade_town_wrapper { + width: 33%; + height: 125px; + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/town_tile.png) right -125px no-repeat; + overflow: hidden; + cursor: -moz-grab; +} + +div.trade_town { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/town_tile.png) 0 0 no-repeat; + padding: 13px 0 13px 13px; + margin: 0 15px 0 0; + height: 99px; + overflow: hidden; + position: relative; +} + +div.trade_town a.gp_town_link { + position: absolute; + left: 13px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +#trade_buttons { + position: absolute; + top: 94px; + right: 53px; +} + +#trade_buttons a { + display: inline-block; + width: 52px; + height: 23px; +} + +#trade_duration { + display: none; + position: absolute; + right: 3px; + left: 3px; + border-top: 1px solid #ca8; + bottom: 3px; +} + +.trade_town_wrapper.ui-draggable-dragging { + z-index: 10000; + position: absolute; + text-align: left; + cursor: -moz-grabbing; + margin: 0; + list-style: none; +} + +div.trade_town div.res_icon { + padding: 0 0 0 25px; + position: relative; + clear: left; +} + +div.trade_town div.resource_population_icon { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/town_tile.png) 0 -516px no-repeat; + position: absolute; + right: 10px; + width: 30px; + top: 16px; +} + +div.trade_town div.trade_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/town_tile.png) 0 -500px no-repeat; + position: absolute; + right: 10px; + width: 30px; + top: 0; +} + +div.trade_town .res_plenty, +div.trade_town .res_rare { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/resources_deposit.png); + width: 10px; + height: 10px; + position: absolute; + left: 12px; + top: 0; +} + +div.trade_town .res_rare { + background-position: 0 -10px; +} + +span.trade_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/arrows_small.2.41.png) -12px 0; + display: inline-block; + vertical-align: middle; + width: 12px; + height: 13px; +} + +div.trade_town_movements { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/town_tile.png) -244px -500px no-repeat; + width: 16px; + height: 20px; + right: 30px; + top: 13px; + cursor: pointer; +} + +div.trade_town_movements span { + position: absolute; + top: 0; +} + +div.trade_town_movements span.incoming { + left: 20px; + text-align: left; +} + +div.trade_town_movements span.outgoing { + right: 20px; + text-align: right; +} + +div.trade_town_info { + margin: 6px 0 0; + position: relative; +} + +#trade_overview_towns li.selected { + opacity: .5; +} + +div.trade_movement { + border-bottom: 1px solid #ca8; + margin: 3px 6px; +} + +div.trade_resource div.iron_img, +div.trade_resource div.stone_img, +div.trade_resource div.wood_img { + margin: 0 auto; +} + +#trade_overview_wrapper a.swap { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -52px 0 no-repeat; +} + +#trade_overview_wrapper a.swap:hover { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -52px -23px no-repeat; +} + +#trade_overview_wrapper a.confirm { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) 0 0 no-repeat; +} + +#trade_overview_wrapper a.confirm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) 0 -23px no-repeat; +} + +#trade_overview_wrapper a.cancel { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -104px 0 no-repeat; +} + +#trade_overview_wrapper a.cancel:hover { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -104px -23px no-repeat; +} + +#trade_overview_show_sidebar { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/town_tile.png) -200px -500px no-repeat; + display: inline-block; + float: left; + width: 22px; + height: 23px; + margin: 2px; +} + +#trade_overview_show_sidebar:hover { + background-position: -222px -500px; +} + +#trade_overview_towns_wrapper { + position: absolute; + top: 0; + bottom: 154px; + border-bottom: 1px solid #222; + left: 0; + right: 0; + overflow: auto; +} + +#trade_overview_movements_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat; + position: absolute; + left: 0; + bottom: 0; + top: 30px; + width: 0; + overflow-x: hidden; + overflow-y: auto; + -moz-transition: all .5s ease-in-out 0s; + -o-transition: all .5s ease-in-out 0s; + -webkit-transition: all .5s ease-in-out 0s; +} + +#trade_overview_movements_wrapper span.eta { + display: none; +} + +#trade_overview_movements_wrapper.expanded { + z-index: 1; + width: 33%; + border-top: 1px solid #222; + border: 2px ridge #e8a52b; +} + +#trade_overview_movements_wrapper.expanded+#trade_overview_wrapper { + width: 67%; +} + +#trade_overview_movements_wrapper span.res_icon { + padding: 0 10px 0 25px; + width: auto; +} + +#trade_overview_wrapper { + position: absolute; + right: 0; + top: 30px; + border-top: 1px solid #222; + bottom: 0; + width: 100%; + -moz-transition: all .5s ease-in-out 0s; + -o-transition: all .5s ease-in-out 0s; + -webkit-transition: all .5s ease-in-out 0s; +} + +div.trade_town .res_icon { + display: block; +} + +#trade_selected { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat; + border: 2px ridge #e8a52b; + position: absolute; + bottom: 0; + height: 150px; + left: 0; + right: 0; + overflow: hidden; +} + +#res_container { + width: 100%; + margin: 0 auto; +} + +#res_container a:not(.button) { + margin: 0 auto; +} + +#trade_options { + position: absolute; + left: 33%; + right: 33%; +} + +#trade_options .capacity { + position: relative; + width: 50px; + margin: 5px auto 0; +} + +#trade_options .trade_capacity { + position: absolute; + width: 22px; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/town_tile.png) 0 -500px no-repeat; + float: left; + top: 3px; + left: -23px; +} + +#trade_options .capacity_left { + display: inline-block; + color: #000; +} + +#trade_options .capacity_left .left, +#trade_options .capacity_left .right { + background: url(https://gpfr.innogamescdn.com/images/game/layout/input_bg_2.33.png) no-repeat 0 -69px; +} + +#trade_options .capacity_left .right { + background-position: 0 -92px; +} + +#trade_options .capacity_left .middle { + background: url(https://gpfr.innogamescdn.com/images/game/layout/input_bg_2.33.png) repeat 0 -115px; +} + +#trade_options .capacity_left input { + text-align: center; +} + +#trade_options .capacity_left.brimfull, +#trade_options .capacity_left.brimfull input { + color: red; +} + +#trade_selected_from { + float: left; + width: 33%; + background-position: right -375px; +} + +#trade_selected_to { + float: right; + width: 33%; + background-position: right -375px; +} + +#trade_selected_from.active, +#trade_selected_to.active { + background-position: right -125px; +} + +#trade_selected_from div.trade_town, +#trade_selected_to div.trade_town { + background-position: left -250px; + height: 125px; +} + +#trade_selected_from.active div.trade_town, +#trade_selected_to.active div.trade_town { + background-position: left 0; + position: relative; +} + +#filter_towns.info_text { + color: #444; +} + +#trade_control #txt_trade_filter_towns { + margin: 2px 2px 0 0; + float: left; +} + +.pin { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/pin.png) no-repeat; + width: 11px; + height: 11px; + display: block; + position: absolute; + right: 0; + top: 8px; + cursor: pointer; +} + +.pin.active { + background-position: 0 -11px; +} + +.market_favor_icon, +.market_gold_icon, +.market_iron_icon, +.market_stone_icon, +.market_storage_icon, +.market_wood_icon { + margin-right: 3px; + display: inline-block; + vertical-align: middle; +} + +.market_stone_icon { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.market_iron_icon { + background-position: 0 -48px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.market_wood_icon { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.market_storage_icon { + background-position: 0 -16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.market_favor_icon { + background-position: 0 -96px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.market_gold_icon { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.resource_count { + margin: 0 auto; + text-align: right; + min-width: 60px; + padding: 0 0 0 16px; +} + +.menu_align_demand { + position: absolute; + display: none; + z-index: 10000; +} + +div.gpwindow_left, +div.gpwindow_right { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/vertical_tile.png); + background-repeat: repeat-y; + position: absolute; + top: 44px; + bottom: 17px; + width: 16px; + overflow: hidden; + display: block; +} + +div.gpwindow_left { + background-position: -10px 0; + left: -16px; +} + +div.gpwindow_right { + background-position: -26px 0; + right: -16px; +} + +div.gpwindow_top { + height: 44px; + position: absolute; + left: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_horizontal.png) 0 -17px repeat-x; + top: 0; +} + +div.gpwindow_bottom { + height: 17px; + position: absolute; + left: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_horizontal.png) 0 0 repeat-x; + bottom: 0; +} + +div.corner { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png); + background-repeat: no-repeat; + width: 16px; + position: absolute; + top: 0; + bottom: 0; +} + +div.gpwindow_bottom div.corner { + height: 17px; +} + +div.gpwindow_top div.corner { + height: 44px; +} + +div.gpwindow_left.corner { + left: -16px; +} + +div.gpwindow_right.corner { + right: -16px; +} + +div.gpwindow_bottom div.gpwindow_right.corner { + background-position: right -17px; +} + +div.gpwindow_bottom div.gpwindow_left.corner { + background-position: left 0; +} + +div.gpwindow_top div.gpwindow_right.corner { + background-position: right -78px; +} + +div.gpwindow_top div.gpwindow_left.corner { + background-position: left -34px; +} + +div.gpwindow_content { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) 0 0 repeat; + position: absolute; + left: 0; + right: 0; + top: 44px; + bottom: 17px; + text-align: left; + z-index: 15; +} + +div.gpwindow_content.fullwindow { + left: -9px; + right: -9px; + top: 35px; + bottom: 8px; + z-index: 5; +} + +div.ui-dialog-titlebar { + height: 34px; + position: absolute; + left: -16px; + right: -16px; + cursor: default; + z-index: 15; + padding: 7px 8px 0 14px; +} + +div.ui-dialog { + position: absolute; +} + +div.ui-dialog .ipad_drag_element { + width: 100px; + height: 30px; + position: absolute; + top: 0; + left: 0; + z-index: 1; +} + +div.ui-dialog-dragging div.ui-dialog-titlebar { + cursor: move; +} + +span.ui-dialog-title { + color: #edb; + float: left; + font-weight: 700; + line-height: 20px; + font-size: 11px; + text-align: left; + position: relative; + word-wrap: break-word; + padding: 0 16px 0 0; + height: 20px; + display: block; + max-width: 300px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + min-width: 40px; +} + +.window_buttons { + float: right; + padding: 0; + border: none; + cursor: pointer; +} + +button.ui-dialog-titlebar-close { + float: right; + padding: 0; + border: none; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .arrow_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +button.ui-dialog-titlebar-close .arrow_down_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +button.ui-dialog-titlebar-close .arrow_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +} + +button.ui-dialog-titlebar-close .arrow_down_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +button.ui-dialog-titlebar-close .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .arrow_left_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .arrow_right_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .arrow_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +button.ui-dialog-titlebar-close .arrow_up_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +button.ui-dialog-titlebar-close .arrow_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +button.ui-dialog-titlebar-close .arrow_up_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +button.ui-dialog-titlebar-close .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .close_button_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .maximize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .minimize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close .wiki_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +button.ui-dialog-titlebar-close span { + display: none; +} + +div.ui-dialog-titlebar a.next { + float: right; + padding: 0; + border: none; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .arrow_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.next .arrow_down_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.next .arrow_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.next .arrow_down_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.next .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .arrow_left_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .arrow_right_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .arrow_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.next .arrow_up_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.next .arrow_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.next .arrow_up_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.next .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .close_button_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .maximize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .minimize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next .wiki_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.next:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev { + float: right; + padding: 0; + border: none; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .arrow_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.prev .arrow_down_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.prev .arrow_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +}div.ui-dialog-titlebar a.prev .arrow_down_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.prev .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .arrow_left_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .arrow_right_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .arrow_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.prev .arrow_up_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.prev .arrow_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.prev .arrow_up_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +div.ui-dialog-titlebar a.prev .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .close_button_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .maximize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .minimize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev .wiki_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +div.ui-dialog-titlebar a.prev:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize { + float: right; + padding: 0; + border: none; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .arrow_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-minimize .arrow_down_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-minimize .arrow_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-minimize .arrow_down_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-minimize .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .arrow_left_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .arrow_right_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .arrow_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-minimize .arrow_up_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-minimize .arrow_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-minimize .arrow_up_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-minimize .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .close_button_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .maximize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .minimize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize .wiki_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-minimize:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize { + float: right; + padding: 0; + border: none; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .arrow_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-maximize .arrow_down_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-maximize .arrow_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-maximize .arrow_down_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-maximize .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .arrow_left_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .arrow_right_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .arrow_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-maximize .arrow_up_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-maximize .arrow_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-maximize .arrow_up_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-maximize .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .close_button_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .maximize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .minimize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize .wiki_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-maximize:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help { + float: right; + padding: 0; + border: none; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .arrow_down_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 0; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-help .arrow_down_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -23px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-help .arrow_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px 0; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-help .arrow_down_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -23px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-help .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px 0; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .arrow_left_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -20px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -40px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .arrow_right_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -104px -60px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .arrow_up_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -46px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-help .arrow_up_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -46px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-help .arrow_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -69px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-help .arrow_up_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -52px -69px; + width: 52px; + height: 23px; +} + +a.ui-dialog-titlebar-help .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .close_button_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .maximize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -92px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .maximize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .minimize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .minimize_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -100px -112px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .wiki { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat 0 -132px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help .wiki_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +a.ui-dialog-titlebar-help:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/buttons/buttons_a55d708.png) no-repeat -50px -132px; + width: 50px; + height: 20px; +} + +a.submenu_link .left, +a.submenu_link .middle, +a.submenu_link .right { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png) 0 0 no-repeat; + height: 22px; + display: block; + cursor: pointer; +} + +div.menu_wrapper { + overflow: hidden; + height: 22px; + position: relative; +} + +div.menu_wrapper div.fade_left, +div.menu_wrapper div.fade_right { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png); + width: 20px; + height: 24px; + z-index: 50; +} + +div.menu_wrapper div.fade_left { + background-position: 0 -400px; + left: 0; +} + +div.menu_wrapper div.fade_right { + background-position: 0 -376px; + right: 0; +} + +ul.menu_inner { + height: 22px; + z-index: 15; + position: absolute; + right: 0; +} + +ul.menu_inner li { + float: right; +} + +ul.menu_inner a:link, +ul.menu_inner a:visited { + text-align: center; + color: #000; + text-decoration: none; + display: block; +} + +ul.menu_inner a:hover { + color: #000; + text-decoration: underline; +} + +#submenu_image { + position: absolute; + right: 0; +} + +a.submenu_link .left { + background-position: left -228px; +} + +a.submenu_link .middle { + background-position: center -272px; + margin: 0 7px; + background-repeat: repeat; + line-height: 20px; + font-family: Tahoma,Verdana,sans-serif; + font-size: 11px; + min-width: 45px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +a.submenu_link .right { + background-position: right -250px; + position: relative; +} + +div.ui-dialog-titlebar span.submenu_dots { + position: absolute; + top: 0; + right: 5px; +} + +a.submenu_link.active .left, +a.submenu_link.unread.active .left { + background-position: left -162px; +} + +a.submenu_link.active .middle, +a.submenu_link.unread.active .middle { + background-position: center -206px; + color: #430; +} + +a.submenu_link.active .right, +a.submenu_link.unread.active .right { + background-position: right -184px; + position: relative; +} + +a.submenu_link.unread .left { + background-position: left -768px; +} + +a.submenu_link.unread .middle { + background-position: center -812px; +} + +a.submenu_link.unread .right { + background-position: right -790px; + position: relative; +} + +a.submenu_link.disabled { + cursor: default; + pointer-events: none; +} + +a.submenu_link.disabled:hover { + color: #6a6a6a; + text-decoration: none; +} + +a.submenu_link.disabled .middle { + color: #6a6a6a; +} + +div.grey_layer { + position: absolute; + background-color: #000; + opacity: .15; + left: -9px; + right: -9px; + top: 35px; + bottom: 8px; + z-index: 100; +} + +.ui-widget-overlay { + position: absolute; + background-color: #000; + opacity: .45; + top: 0; + left: 0; +} + +.colonize_window { + margin-bottom: 5px; + position: relative; + overflow: hidden; +} + +.award31x31, +.award76x76 { + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; +} + +#awards_visibility_wrapper { + width: 780px; + height: 345px; + overflow: hidden; + left: 0; + top: 82px; + position: absolute; +} + +#awards_visibility_all_wrapper, +#awards_visibility_ally_wrapper, +#awards_visibility_player_wrapper { + height: 100%; +} + +#awards_visibility_all, +#awards_visibility_ally, +#awards_visibility_player { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/group_list_bg.jpg) repeat-y; + height: 100%; + padding: 0 18px; + overflow-y: scroll; + overflow-x: hidden; +} + +.col1 { + position: absolute; + left: 15px; + width: 239px; +} + +.col2 { + width: 241px; + position: absolute; + right: 271px; +} + +.col3 { + width: 241px; + position: absolute; + right: 15px; +} + +#visibility_all_head, +#visibility_ally_head, +#visibility_player_head { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/group_header_bg.jpg) no-repeat; + height: 30px; + text-align: center; +} + +#award_visibility_header { + position: absolute; + width: 781px; + height: 20px; + top: 52px; + left: 0; + font-weight: 700; + line-height: 24px; +} + +#awards_visibility_all_wrapper, +#awards_visibility_ally_wrapper, +#awards_visibility_player_wrapper { + padding: 0 3px 3px 3px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/group_scroll_border.png) no-repeat; + width: 234px; + height: 338px; + float: left; +} + +.award_draggable { + display: inline-block; + cursor: move; + cursor: -moz-grab; + list-style-type: none; + z-index: 1; +} + +#award_visibility_default_visibility_form, +#award_visibility_world_form, +#award_visibility_world_selection { + position: relative; +} + +#award_visibility_default_visibility_form, +#award_visibility_world_form, +#award_visibility_world_selection { + top: 10px; + float: left; +} + +#award_visibility_world_form, +#award_visibility_world_selection { + left: 10px; +} + +#award_visibility_default_visibility_form { + left: 30px; +} + +#menu_inner_subject_container, +.menu_inner.player_settings { + height: 25px; +} + +#awards_visibility_all_list li, +#awards_visibility_ally_list li, +#awards_visibility_player_list li { + border: none!important; +} + +#ph_trader { + position: absolute; + left: 10px; + top: 10px; + width: 392px; + height: 356px; +} + +#ph_trader_image { + position: absolute; + top: 30px; + width: 392px; + height: 336px; + background-image: url(https://gpfr.innogamescdn.com/images/game/phoenician_salesman/trader_bg-2.66.jpg); +} + +#ph_trader_text { + position: absolute; + top: 223px; + left: 4px; + width: 376px; + height: 101px; + padding: 5px; +} + +#ph_town { + position: absolute; + top: 386px; + left: 10px; + width: 392px; + height: 112px; +} + +#ph_offers { + position: absolute; + left: 410px; + width: 400px; + height: 480px; + top: 10px; +} + +#ph_offers_header { + position: relative; + height: 30px; +} + +.ph_order_info { + position: relative; + float: left; + width: 380px; + height: 77px; + background-image: url(https://gpfr.innogamescdn.com/images/game/phoenician_salesman/offer_bg.jpg); + margin-bottom: 10px; +} + +#ph_res_order_info_0.ph_order_info, +#ph_res_order_info_1.ph_order_info { + background-image: url(https://gpfr.innogamescdn.com/images/game/phoenician_salesman/offer_bg_2.20.jpg); +} + +.ph_unit_order_count a.left { + position: absolute; + left: 88px; + top: 52px; +} + +.ph_unit_order_count a.right { + position: absolute; + left: 196px; + top: 52px; +} + +form.ph_unit_order_count div.ph_unit_order_slider { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/slider_bar.png) repeat-x scroll 50% 50%; + position: absolute; + height: 18px; + left: 114px; + width: 74px; + top: 52px; +} + +form.ph_unit_order_count div.ph_unit_order_slider .ui-slider-handle { + margin-left: -8px; + margin-top: 5px; + background: transparent url(https://gpfr.innogamescdn.com/images/game/barracks/slider_point.png) repeat-x scroll 50% 50%; +} + +form.ph_unit_order_count a.ph_unit_order_confirm { + position: absolute; + top: 48px; + left: 255px; +} + +.ph_ratio { + position: absolute; + width: 124px; + height: 30px; + top: 10px; + left: 88px; + background-image: url(https://gpfr.innogamescdn.com/images/game/phoenician_salesman/ratio.png); + background-repeat: no-repeat; +} + +.ph_ratio_count { + position: absolute; + width: 98px; + height: 27px; + left: 30px; + top: 3px; + color: #fc5; + text-align: center; + font-size: 18px; + font-weight: 700; +} + +.ph_ratio_shadow { + color: #000; + left: 31px; + top: 4px; +} + +#ph_res_order, +#ph_unit_order { + position: absolute; + top: 60px; + left: 20px; +} + +#ph_unit_order #ph_units { + position: relative; + height: 95px; + width: 600px; + top: 8px; + z-index: 2; +} + +#ph_unit_order .unit { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/unit_bg_passive.png) no-repeat; + float: left; + text-align: center; + width: 58px; + height: 95px; + margin-right: 2px; + cursor: pointer; + padding-top: 2px; +} + +#ph_unit_order .unit_active { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/unit_bg_active.png) no-repeat; + height: 101px; +} + +#ph_unit_order .unit_order_total { + display: block; + margin-bottom: -2px; + line-height: 14px; +} + +#ph_unit_active a { + margin-left: -10px; +} + +#ph_units .max { + color: #000; + line-height: 15px; + margin-right: 6px; +} + +#ph_unit_order_units_show { + float: left; + padding: 52px 0 0 1px; +} + +.ph_unit_order_count .ph_unit_order_input { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/input.png) no-repeat; + border: 0; + top: 45px; + left: 9px; + height: 17px; + width: 52px; + text-align: center; + padding: 3px; + font-weight: 700; +} + +.ph_offer_price { + position: absolute; + left: 223px; + top: 10px; + height: 20px; + width: 137px; + text-align: center; + line-height: 30px; +} + +#ph_res_order_info_0 .ph_offer_price, +#ph_res_order_info_1 .ph_offer_price { + position: absolute; + top: 0; + left: 307px; +} + +.ph_offer_price .ph_unit_order_input { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/input.png) no-repeat; + border: 0; + top: 45px; + left: 6px; + height: 17px; + width: 52px; + text-align: center; + padding: 3px; + font-weight: 700; +} + +.ph_order_info .ph_unit_order_unit_big_image, +img.ph_res_order_unit_big_image, +img.ph_unit_order_unit_big_image { + position: absolute; + left: 3px; + top: 3px; +} + +img.ph_unit_order_unit_big_image.right { + left: 0; +} + +#ph_res_order_box, +.ph_unit_order_box { + background: url(https://gpfr.innogamescdn.com/images/game/phoenician_salesman/count.png) no-repeat; + position: relative; + height: 94px; + width: 234px; + top: 10px; +} + +form.ph_unit_order_count { + position: absolute; + left: 0; +} + +a.ph_unit_order_max, +a.ph_unit_order_min { + position: absolute; + top: 10px; + width: 52px; + height: 23px; + text-align: center; + color: #f9e09d; + text-decoration: none; + line-height: 20px; +} + +a.ph_unit_order_min { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_passive.png) no-repeat; + left: 10px; +} + +a.ph_unit_order_max { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_passive.png) no-repeat; + right: 10px; +} + +a#ph_unit_order_max:hover, +a.ph_unit_order_min:hover { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_active.png) no-repeat; +} + +a.ph_unit_order_confirm { + position: absolute; + top: 60px; + right: 10px; +} + +.accept.ph_unit_order_confirm { + position: absolute; + right: 103px; + top: 48px; +} + +div.ph_unit_order_slider { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/slider_bar.png) repeat-x scroll 50% 50%; + position: absolute; + height: 18px; + left: 36px; + width: 74px; + top: 35px; +} + +div.ph_unit_order_slider .ui-slider-handle { + margin-left: -8px; + margin-top: 5px; + background: transparent url(https://gpfr.innogamescdn.com/images/game/barracks/slider_point.png) repeat-x scroll 50% 50%; +} + +#ph_unit_order_values { + border-width: 1px; + border-style: solid; + border-collapse: collapse; + padding: 2px; + border-color: #e1af55; + height: 90px; + position: relative; + top: 8px; + width: 300px; + white-space: nowrap; +} + +#ph_unit_order_values td { + background: #ffe2a1; + border-color: #e1af55; + text-align: center; + min-width: 100px; + line-height: 24px; +} + +a.next_town_ :hover { + font-weight: 700; + color: #0082be; + text-decoration: none; +} + +.table_in_town { + border-width: 1px; + border-style: dashed; + border-collapse: collapse; + width: 90%; + left: 5%; + position: relative; + float: left; +} + +.table_units { + width: 90%; + left: 5%; + position: relative; + float: left; +} + +.table_in_town.table_next_town { + top: 30px; +} + +a.speed_up_for_gold { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/button/button_gold.png) no-repeat; + width: 22px; + height: 23px; + left: 220px; + top: -42px; + float: left; +} + +.phoenician_salesman_background { + position: relative; + height: 490px; + width: 790px; + top: 0; + overflow-y: hidden; + overflow-x: hidden; +} + +.phs_p_rel { + position: relative; +} + +.ph_unit_order_info { + height: 150px; +} + +.ph_res_order_info { + height: 170px; +} + +.phs_position_01 { + float: left; + position: relative; + left: 10%; +} + +.phs_position_02 { + float: left; + position: relative; + left: 5%; +} + +.phs_position_01.t40 { + top: 40px; +} + +.phs_position_01.t50 { + top: 50px; +} + +.phs_position_01.t200 { + top: 200px; +} + +.phs_position_02.t200 { + top: 200px; +} + +.phs_info_01 { + text-align: center; + height: 260px; + width: 600px; +} + +.phs_info_02 { + text-align: center; + height: 200px; + width: 700px; +} + +.phs_inner_box_size01 { + width: 375px; + height: 300px; +} + +.phoenician_salesman_background #available_next_town_list { + overflow-y: auto; + height: 200px; +} + +.phoenician_salesman_background #current__town, +.phoenician_salesman_background #current_next_town { + position: relative; + margin: 0 5px; + top: 5px; +} + +#phs_box_right { + float: right; +} + +#phs_box_left { + float: left; +} + +.phoenician_salesman_background .report_town_bg { + float: left; +} + +.phoenician_salesman_background #etadisplay { + left: 30px; + position: relative; + top: -22px; +} + +#phs_description { + margin: 5px; +} + +#ph_hint div.ph_image { + width: 190px; + height: 114px; + margin: 3px 0; + margin: auto; + border-top: 1px solid #c8a05c; + border-right: 1px solid #7f653a; + border-bottom: 1px solid #514023; + border-left: 1px solid #af8b4e; +} + +#ph_hint { + text-align: center; +} + +div.espionage_espionage { + position: absolute; + width: 370px; + z-index: 1; + left: 20px; + top: 5px; + text-align: left; +} + +div.espionage_espionage .extra_info_box { + padding: 5px 0; +} + +div.espionage_espionage .extra_info_box.espionage_arrival, +div.espionage_espionage .extra_info_box.espionage_runtime { + display: inline-block; + padding-left: 5px; + padding-right: 5px; + font-weight: 700; +} + +div.espionage_espionage .extra_info_box.espionage_arrival .runtime_icon, +div.espionage_espionage .extra_info_box.espionage_runtime .runtime_icon { + background: transparent url(https://gpfr.innogamescdn.com/images/game/towninfo/traveltime.png) no-repeat 0 0; + float: left; + width: 30px; + height: 30px; +} + +div.espionage_espionage .extra_info_box.espionage_arrival .arrival_icon, +div.espionage_espionage .extra_info_box.espionage_runtime .arrival_icon { + background: transparent url(https://gpfr.innogamescdn.com/images/game/towninfo/arrival.png) no-repeat 0 0; + float: left; + width: 30px; + height: 30px; +} + +div.espionage_espionage .extra_info_box .info_text { + padding-left: 5px; + float: left; +} + +div.espionage_espionage .extra_info_box .info_text.arrival_at, +div.espionage_espionage .extra_info_box .info_text.runtime_time { + padding-top: 8px; +} + +div.espionage_order_box { + position: relative; + height: 94px; + width: 326px; + margin: 0 auto; + top: 0; +} + +div.espionage_order_box .spy { + background-image: url(https://gpfr.innogamescdn.com/images/game/hide/spy_90x90_2.67.jpg); + width: 90px; + height: 90px; +} + +a.espionage_order_confirm { + position: absolute; + top: 60px; + right: 10px; +} + +p.espionage_info { + width: 435px; + color: #c00; + font-size: 16px; + font-weight: 700; +} + +img.espionage_coins { + position: relative; + top: 5px; +} + +span.espionage_stored_iron { + font-size: 22px; +} + +div.espionage_spy_button { + float: left; + clear: both; +} + +a.espionage_goto_hide { + padding-left: 20px; +} + +.game_border td { + z-index: 0; +} + +.threadicon { + background: url(https://gpfr.innogamescdn.com/images/game/forum/thread_icons.png) no-repeat; + width: 28px; + height: 28px; + margin: 7px; +} + +.threadicon_wrapper input { + display: none; +} + +.threadicon_wrapper { + width: 42px; + height: 42px; + min-height: 42px; +} + +#threadlist .forum_lastpost { + background: url(https://gpfr.innogamescdn.com/images/game/forum/lastpost.gif) no-repeat; + width: 12px; + height: 12px; + float: left; + margin: 3px; + padding: 0; +} + +.forum_unread a.submenu_link .left { + background-position: left -216px; +} + +.forum_unread a.submenu_link .right { + background-position: right -240px; +} + +.forum_unread a.submenu_link .middle { + background-position: center -264px; +} + +span.handle_icon, +span.hidden_icon, +span.share_icon { + background: url(https://gpfr.innogamescdn.com/images/game/forum/forum_icons_2.29.png) 0 0 no-repeat; + width: 16px; + height: 16px; + display: inline-block; + vertical-align: middle; +} + +li.forum_menu { + padding: 0; +} + +li.forum_menu span.hidden_icon, +li.forum_menu span.share_icon { + padding-left: 19px; + display: inline; + width: auto; + vertical-align: top; +} + +span.handle_icon { + background-position: 0 -32px; +} + +span.share_icon { + background-position: 0 -48px; +} + +span.share_icon.hidden_icon { + background-position: 0 -66px; +} + +.forum_thread_read { + background-position: 0 0; +} + +.forum_thread_unread { + background-position: 0 -28px; +} + +.thread_closed_unread { + background-position: -28px -28px; +} + +.thread_closed { + background-position: -28px 0; +} + +.forum_thread_read.checked { + background-position: -56px 0; +} + +.forum_thread_unread.checked { + background-position: -56px -28px; +} + +.thread_closed_unread.checked { + background-position: -84px -28px; +} + +.thread_closed.checked { + background-position: -84px 0; +} + +.forum_thread_important_read { + background-position: 0 -56px; +} + +.forum_thread_important_unread { + background-position: 0 -84px; +} + +.thread_important_closed { + background-position: -28px -56px; +} + +.thread_important_closed_unread { + background-position: -28px -84px; +} + +.forum_thread_important_read.checked { + background-position: -56px -56px; +} + +.forum_thread_important_unread.checked { + background-position: -56px -84px; +} + +.thread_important_closed.checked { + background-position: -84px -56px; +} + +.thread_important_closed_unread.checked { + background-position: -84px -84px; +} + +#forum, +#forum_admin { + height: 430px; + position: relative; + overflow: hidden; +} + +#forum .bb_button_wrapper { + float: none; + height: 23px; +} + +#forum_admin div.game_list_footer, +#thread_list_form #forum div.game_list_footer { + position: absolute; + background: 0 0; + padding: 5px 8px 7px 8px; + bottom: 0; + left: 0; + right: 0; +} + +#forum div.game_list_footer { + background: 0 0; + padding: 7px 10px 5px 10px; + border-top: 1px solid #d4bb95; + bottom: 0; + left: 0; + right: 0; + position: absolute; +} + +div.forum_pager { + position: relative; + height: 21px; + padding: 5px 10px; + border-bottom: 1px solid #d4bb95; +} + +#thread_list_form div.forum_pager { + position: relative; + height: 21px; + padding: 6px 8px; +} + +#forumtitle div { + float: left; +} + +#forumtitle, +#threadtitle { + height: 18px; + position: relative; +} + +#forum .thread>div, +#forum_admin .forum>div { + border-right: 1px solid #d0be97; + height: 100%; + float: left; + padding-bottom: 300px; + margin-bottom: -300px; +} + +#forum .thread .lastpost, +#forum_admin .forum .delete { + border-right: none; +} + +#forum #postlist, +#forum .game_list, +#forumlist { + position: absolute; + overflow-x: hidden; + overflow-y: auto; + top: 84px; + bottom: 38px; + left: 0; + right: 0; +} + +#forum .bb_sizes .game_list { + position: relative; + top: 0; + bottom: 0; + border-top: 1px solid #d1bf91; +} + +#search_results .game_list { + position: relative; +} + +.gpwindow_content .forum_content .game_border #search_results { + height: 420px; + overflow: auto; +} + +#forum #postlist.view_topic, +#forum .game_list.view_topic { + top: 57px; + bottom: 37px; +} + +#forum .game_list.view_topic.reply { + bottom: 33px; +} + +#forum #postlist.reply, +.game_inner_box .game_list.reply { + bottom: 240px; + top: 56px; +} + +#forum #postlist.view_topic.poll, +#forum .game_list.view_topic.poll { + top: 81px; +} + +#forum #postlist.reply.poll, +.game_inner_box .game_list.reply.poll { + bottom: 167px; + top: 81px; +} + +#forum_admin #forumlist { + top: 25px; +} + +.game_list li.post { + padding: 5px; +} + +#forum #threadlist { + position: relative; + top: 0; + bottom: 0; + overflow: visible; +} + +#forum .threadlist_container { + position: absolute; + top: 83px; + left: 0; + bottom: 38px; + right: 0; + overflow: auto; + border-top: 1px solid #d2bd96; +} + +#forum li.thread span.clear, +#search_results li.found_post span.clear { + clear: both; + float: none; + display: block; +} + +.forum .description, +.thread .author, +.thread .author a, +.thread .lastpost .date { + line-height: 15px; + padding: 2px 3px 0; +} + +.forum .title, +.thread .lastpost a, +.thread .title { + float: none; + clear: left; + padding: 3px 5px 0; + display: block; +} + +#forum .title_author_wrapper { + width: 425px; +} + +#forumtitle .title_author_wrapper { + margin-right: 35px; + border: none; +} + +#forumtitle .title_author_wrapper .title, +#threadtitle .title { + float: left; + margin-right: 4px; +} + +.lastpost { + width: 200px; + white-space: nowrap; +} + +#content #forumtitle .lastpost { + text-align: center; +} + +.thread .lastpost { + width: 160px; +} + +.postcount { + width: 90px; + text-align: center; +} + +#threadlist .postcount { + padding-top: 13px; +} + +.forum_toggle { + border-bottom: 1px solid #d0be97; + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0; + overflow: hidden; + height: 24px; + position: relative; +} + +.forum_toggle #toggle { + border-left: 1px solid #d0be97; + float: right; + padding: 4px; + width: 120px; + margin-bottom: -50px; + padding-bottom: 50px; + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat scroll 0 0 transparent; +} + +.forum_toggle #forum_description { + float: left; + padding: 4px; + width: 600px; +} + +#poll_toggle { + padding: 4px; + height: 16px; + min-height: 0; +} + +#poll_toggle .icon, +.forum_toggle #toggle .icon { + background: transparent url(https://gpfr.innogamescdn.com/images/game/forum/expand.png) no-repeat; + display: block; + float: left; + width: 12px; + height: 12px; + margin: 2px; +} + +#thread_list_form { + margin: 0; + padding: 0; +} + +#thread_functions { + display: none; + overflow: visible; + height: 0; + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat scroll 0 0; + border-bottom: 1px solid #d0be97; + position: absolute; + z-index: 90; + left: 0; + right: 0; +} + +#forum_poll_wrapper .functions_dropshadow, +#thread_functions .functions_dropshadow { + height: 10px; + position: absolute; + bottom: -10px; + left: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/forum/dropshadow.png) repeat-x 0 0; +} + +#thread_functions>ul { + width: 354px; + margin: 5px; + border: 1px solid #d0be97; + padding: 3px 3px; + float: left; +} + +#thread_functions>ul>li { + height: 20px; +} + +#thread_functions>#admin_functions>li { + height: 30px; +} + +#thread_functions>ul>li>* { + float: left; +} + +#thread_functions>ul>li>input { + vertical-align: sub; +} + +#poll_toggle .icon.expanded, +.forum_toggle #toggle .icon.expanded { + background-position: 0 -12px; +} + +#poll_toggle .icon.collapsed, +.forum_toggle #toggle .icon.collapsed { + background-position: 0 0; +} + +#forum .thread, +#forum_admin .forum, +#forum_admin .forum_list_wrapper { + width: 100%; + overflow: hidden; + padding: 0; + position: relative; + float: left; +} + +#forum_admin .ui-sortable-placeholder-highlight { + height: 60px; + background: transparent url(https://gpfr.innogamescdn.com/images/game/chat/chat_sprite_x.png) top repeat-x; +} + +#forum_admin .delete a { + margin: 8px 0 8px 16px; + display: inline-block; +} + +#forum_admin .forum .handle { + width: 20px; + cursor: n-resize; + text-align: center; + padding-top: 3px; +} + +#forum_admin .shared_forum .dummy { + width: 20px; + height: 40px; +} + +#forum_admin .forum .name { + width: 460px; + position: relative; +} + +#forumtitle .name, +#shared_forum_header.forum .name { + width: 480px; +} + +#shared_forum_header.forum div div { + padding: 3px 6px; +} + +#forum_admin .forum .name img { + vertical-align: middle; +} + +#forum_admin .forum .name .text_box { + position: relative; + cursor: pointer; + z-index: 1; + width: 100%; + height: 100%; + border-right: 1px solid #d0be97; +} + +#forum_admin .forum.shared_forum .name .text_box { + cursor: default; +} + +#forum_admin .forum .name .edit_box div, +#forum_admin .forum .name .text_box div { + padding: 3px 6px; +} + +#forum_admin .forum.odd .name .text_box { + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat scroll 0 0; +} + +#forum_admin .forum.even .name .text_box { + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0; +} + +#forum_admin .forum .name .edit_box { + float: left; + display: none; +} + +.label_box label { + margin: 3px 0 0 5px; +} + +.input_box { + margin: 3px 0 0 0; +} + +.input_box#remove_alliances { + margin-top: 0; +} + +.input_box#remove_alliances>span { + margin-top: 3px; +} + +#forum_admin #forumtitle .order, +#forum_admin .forum .order { + width: 100px; +} + +#forum_admin #forumtitle .shared_with, +#forum_admin .forum .shared_from, +#forum_admin .forum .shared_with { + width: 150px; +} + +#forum_admin .forum .shared_from span { + padding: 4px 2px; +} + +#forum_admin .forum a.share_link { + float: right; + margin: -2px 0 0 0; +} + +#forum_admin .forum .shared_with a.cancel { + display: inline-block; + vertical-align: middle; +} + +#forum_admin .order .order_button { + background: transparent url(https://gpfr.innogamescdn.com/images/game/forum/forum_order.png) no-repeat scroll 0 0; + width: 18px; + height: 19px; + display: block; + float: left; + margin: 7px 2px; +} + +#forum_admin .order .up { + margin-left: 28px; +} + +#forum_admin .order .down { + background-position: -18px 0; +} + +#forum_admin .order .up:hover { + background-position: 0 -19px; +} + +#forum_admin .order .down:hover { + background-position: -18px -19px; +} + +#forum_admin .button { + float: right; +} + +#forum_buttons .cancel { + margin: 2px; + float: left; +} + +.openclose_toggle { + position: relative; + cursor: pointer; +} + +.openclose_toggle:hover { + background-position: 0 -23px; +} + +.openclose_toggle.active:hover { + background-position: -22px -23px; +} + +.important_button { + background: transparent url(https://gpfr.innogamescdn.com/images/game/forum/button_important.png) no-repeat scroll 0 0; + display: block; + width: 22px; + height: 23px; + float: left; + margin: 2px; +} + +.important_button:hover { + background-position: 0 -30px; +} + +.openclose_button { + background: transparent url(https://gpfr.innogamescdn.com/images/game/forum/button_open_close.png) no-repeat scroll 0 0; + display: block; + width: 22px; + height: 23px; + float: left; + margin: 2px; +} + +.openclose_button.closed { + background-position: -22px 0; +} + +.openclose_button.open:hover { + background-position: 0 -23px; +} + +.openclose_button.closed:hover { + background-position: -22px -23px; +} + +#forum_select { + float: left; +} + +#admin_functions .button, +#admin_functions .cancel, +#admin_functions .important_button, +#admin_functions .openclose_button, +#thread_functions .button, +#thread_functions .grepo_input { + margin: 1px 3px; +} + +#admin_functions, +#admin_functions_left { + height: 85px; +} + +#forum_admin .hide_forum, +#forum_admin .save_forum_name { + display: none; +} + +#forum_thread_name_span_input, +#forum_thread_name_span_text_admin { + float: left; + margin-right: 5px; +} + +#forum_thread_name_span_text_admin .title { + float: none; + margin-right: 0; +} + +#newthread { + padding: 0; + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat scroll 0 0; + height: 374px; +} + +#newthread #bbcodes { + border-bottom: 1px solid #d0be97; + border-top: 1px solid #d0be97; + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0; + position: relative; + height: 24px; + padding: 5px; +} + +.game_inner_box .bb_button_wrapper { + padding-bottom: 4px; +} + +.game_inner_box .game_list { + border-top: 1px solid #d1bf91; +} + +#forum .game_list { + border-top: 0; +} + +#forum_post_textarea.newthread { + height: 299px; + width: 100%; + margin: 4px 0; +} + +#forum_post_textarea.newpoll { + height: 215px; + width: 100%; + margin: 4px 0; +} + +#forum_poll_options_list { + border: 1px solid #d0be97; +} + +.post { + position: relative; +} + +.post .post_functions { + text-align: right; +} + +.post .post_functions a { + margin: 0 4px; +} + +.post .content img { + max-width: 100%; +} + +.post .content p { + line-height: 17px; + word-wrap: break-word; +} + +.post .author a { + line-height: 18px; + display: inline-block; +} + +.post_select { + float: right; + padding-right: 15px; +} + +#forum_buttons a.button { + float: left; +} + +#poll_wrapper { + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0; + max-height: 50%; + position: absolute; + top: 57px; + left: 0; + right: 0; + z-index: 90; +} + +#forum_poll_form { + width: 100%; +} + +#forum_poll_wrapper { + display: none; + visibility: visible; + overflow: auto; + border-bottom: 1px solid #d0be97; + height: 153px; +} + +#forum_poll_wrapper.hidden { + visibility: hidden; + height: 0; +} + +.poll_btn_container { + width: 602px; + padding: 3px 0; + margin: 5px auto; +} + +#forum_poll_wrapper a.button { + float: left; +} + +#post_save_wrapper { + height: 193px; + background: transparent url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0; + border-top: 1px solid #d0be97; + padding: 4px 6px 4px 4px; + position: absolute; + bottom: 38px; + left: 0; + right: 0; +} + +#post_save_wrapper textarea { + width: 100%; + height: 164px; +} + +.content #post_save_wrapper textarea { + width: 100%; + height: 144px; +} + +.content #post_save_wrapper { + height: 183px; + background: 0 0; + border: none; + padding: 0; + position: static; +} + +.poll_bar_container { + width: 602px; + margin: 5px auto; + padding: 3px 0; + height: 24px; + background: url(https://gpfr.innogamescdn.com/images/game/forum/poll_bg.png) no-repeat; +} + +.poll_bar { + float: left; + height: 18px; + margin: 0 3px; + background: url(https://gpfr.innogamescdn.com/images/game/forum/poll_bar.png) no-repeat; + width: 100%; +} + +.poll_option, +.poll_votecount { + color: #fff; +} + +.poll_option { + float: left; + margin-left: 11px; +} + +.poll_votecount { + float: right; + margin-right: 11px; +} + +.poll_input { + float: left; +} + +#forum_paginator { + float: left; +} + +#forum_paginator li { + display: inline; + margin: 0; + padding: 0; +} + +a.submenu_link .middle { + min-width: 0; +} + +.forum_footer { + float: right; + margin: 5px; +} + +div.menu_inner a.menu_scroll { + height: 50px; + background-image: url(https://gpfr.innogamescdn.com/images/game/forum/forum_menu_scroll.png); + background-repeat: no-repeat; + width: 20px; + display: block; + position: static; +} + +div.menu_inner a.menu_scroll.left { + background-position: left -50px; + float: left; +} + +div.menu_inner a.menu_scroll.right { + background-position: right -50px; + position: absolute; + right: -7px; +} + +div.menu_inner a.menu_scroll.left:hover { + background-position: left 0; +} + +div.menu_inner a.menu_scroll.right:hover { + background-position: right 0; +} + +#menu_wrapper { + height: 50px; + overflow: hidden; + position: relative; + float: left; +} + +#menu_wrapper ul { + position: relative; + left: 0; + height: 50px; + overflow: hidden; +} + +li.found_post { + padding: 3px 6px; +} + +li.found_post div.post_text { + border: 1px solid #ca8; + background: #fff; + padding: 3px 6px; + margin: 4px 0 12px; +} + +li.found_post div.title_author_wrapper .forum, +li.found_post div.title_author_wrapper .title { + display: inline; +} + +.create_forum_btns { + position: absolute; + overflow: hidden; + bottom: 0; + left: 2px; + right: 2px; + height: 35px; +} + +#create_forum_dialog a.button, +#delete_forum_dialog a.button { + display: inline-block; + position: relative; +} + +#create_forum_dialog .input_box, +#create_forum_dialog .label_box, +#share_forum_with_alliance .input_box, +#share_forum_with_alliance .label_box { + width: 42%; +} + +.gpwindow_frame.share_forum .gpwindow_content { + overflow: auto; +} + +#shared_with_list { + position: relative; +} + +#shared_with_list ul { + margin: 0 auto; + width: 400px; +} + +#shared_with_list { + text-align: center; +} + +#forum_list, +#forum_shared_list { + position: relative; + float: left; + width: 100%; +} + +#content.forum_content { + padding: 0 15px; + width: 750px; + height: 420px; +} + +a.separate_forum_tab_link { + display: none; + position: absolute; + right: 0; + bottom: 0; +} + +div.bbcodes_spoiler_text { + background-color: #fff; + padding-top: 3px; + margin: 3px 0 0 0; +} + +div.bbcodes.bbcodes_spoiler { + border: 1px solid #d0be97; +} + +#building_wall { + width: 750px; + position: relative; + left: 20px; +} + +#building_wall .game_list { + max-height: 470px; + overflow-y: auto; + overflow-x: hidden; +} + +#building_wall h3 { + margin: 4px; +} + +.list_item_right { + text-align: right; +} + +.game_list li { + position: relative; +} + +.game_list { + position: relative; +} + +#building_wall .game_list .list_item_left, +#building_wall .game_list .list_item_right { + width: 49%; +} + +#building_wall .game_list li { + margin: 0; + padding: 2px; +} + +#building_wall p { + margin: 4px; +} + +.wall_symbol { + position: relative; + height: 18px; + width: 18px; + float: left; + background-image: url(https://gpfr.innogamescdn.com/images/game/place/losts.png); + margin-right: 5px; + margin-top: 2px; +} + +.wall_def { + background-position: 0 -36px; +} + +.list_item_left .wall_unit_container, +.list_item_left h4 { + float: left; +} + +.list_item_right .report_unit, +.list_item_right .wall_unit_container, +.list_item_right h4 { + float: right; +} + +.wall_unit_container { + width: 270px; +} + +.wall_unit_container .place_unit_black, +.wall_unit_container .place_unit_hero, +.wall_unit_container .place_unit_white { + letter-spacing: -1px; +} + +.wall_report_unit { + float: left; + margin: 1px; + position: relative; + width: 50px; + height: 50px; + border: 1px solid #431; +} + +.wall_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/wall_46aa725.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +a#vacation_order_confirm { + position: absolute; + top: 60px; + right: 10px; +} + +#vacation_order_count { + position: relative; + height: 69px; +} + +#vacation_order_count a.left { + position: absolute; + left: 10px; + top: 35px; +} + +#vacation_order_count a.left, +#vacation_order_count a.right { + position: absolute; + top: 37px; +} + +#vacation_order_count a.right { + right: 100px; +} + +#vacation_order_input, +#vacation_order_input_cost { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/input.png) no-repeat; + border: 0; + top: 60px; + right: 10px; + left: auto; + height: 17px; + width: 52px; + text-align: center; + padding: 3px; +} + +#vacation_order_input_cost { + top: 35px; +} + +#vacation_order_input { + top: 5px; +} + +a#vacation_order_max, +a#vacation_order_min { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_passive.png) no-repeat; + position: absolute; + top: 5px; + left: 10px; + width: 52px; + height: 23px; + text-align: center; + color: #f9e09d; + text-decoration: none; + line-height: 20px; +} + +a#vacation_order_max:hover, +a#vacation_order_min:hover { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_active.png) no-repeat; +} + +a#vacation_order_max { + right: auto; + left: 84px; +} + +#vacation_order_slider { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/slider_bar.png) repeat-x scroll 50% 50%; + position: absolute; + height: 18px; + left: 36px; + width: 74px; + top: 38px; +} + +#vacation_order_slider .ui-slider-handle { + margin-left: -8px; + margin-top: 5px; + background: transparent url(https://gpfr.innogamescdn.com/images/game/barracks/slider_point.png) repeat-x scroll 50% 50%; +} + +#buy_vacation { + float: right; + margin: 0 0 0 6px; + min-width: 260px; +} + +#buy_vacation fieldset { + border: 2px groove #fc6; + padding: 4px 8px 9px; + display: block; + min-width: 216px; +} + +.registration_date { + text-decoration: underline; +} + +#activate_vacation { + margin: 10px 0; +} + +div#invite_credentials div.game_body, +div#invite_friends div.game_body, +div#invite_index div.game_body, +div#mentoring_info div.game_body { + overflow: hidden; + min-height: 452px; + max-height: 452px; + width: 780px; + background: url(https://gpfr.innogamescdn.com/images/game/friend_invite/friend_invite_splash_2.29.png) no-repeat bottom right; +} + +div#mentoring_info fieldset div.game_body { + width: 736px; +} + +div#invite_credentials div.game_body div.game_body, +div#invite_friends div.game_body div.game_body, +div#invite_index div.game_body div.game_body, +div#mentoring_info div.game_body div.game_body { + overflow: auto; + min-height: 365px; +} + +div#invite_credentials fieldset, +div#invite_friends fieldset, +div#invite_index fieldset, +div#mentoring_info fieldset { + border: 2px solid transparent; + float: left; + padding: 0; +} + +div#invite_credentials #invite_buttons, +div#invite_friends #invite_buttons, +div#invite_index #invite_buttons, +div#mentoring_info #invite_buttons { + float: left; +} + +div#invite_credentials #invite_buttons .button, +div#invite_friends #invite_buttons .button, +div#invite_index #invite_buttons .button, +div#mentoring_info #invite_buttons .button { + display: block; + float: none; +} + +div#invite_credentials #invite_buttons .icon, +div#invite_index #invite_buttons .icon, +div#mentoring_info #invite_buttons .icon { + width: 41px; + height: 41px; + background-image: url(https://gpfr.innogamescdn.com/images/game/friend_invite/friend_invite_icons.png); + display: block; + float: left; +} + +div#invite_credentials #invite_buttons .icon_message, +div#invite_index #invite_buttons .icon_message, +div#mentoring_info #invite_buttons .icon_message { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -130px -68px!important; +} + +div#invite_credentials #invite_buttons .icon_banner, +div#invite_index #invite_buttons .icon_banner, +div#mentoring_info #invite_buttons .icon_banner { + background: url(https://gpfr.innogamescdn.com/images/game/friend_invite/banner.png) 0 10px no-repeat!important; +} + +div#invite_credentials #invite_buttons .icon_facebook, +div#invite_index #invite_buttons .icon_facebook, +div#mentoring_info #invite_buttons .icon_facebook { + background: url(https://gpfr.innogamescdn.com/images/start/logos/facebook_24px.png) 0 10px no-repeat!important; +} + +div#invite_credentials #invite_buttons .icon_url, +div#invite_index #invite_buttons .icon_url, +div#mentoring_info #invite_buttons .icon_url { + background-position: 0 0; +} + +div#invite_credentials #invite_buttons .icon_gold, +div#invite_friends #invite_buttons .icon_gold, +div#invite_index #invite_buttons .icon_gold, +div#mentoring_info #invite_buttons .icon_gold { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/gold.png); + margin-top: 8px; + margin-right: 14px; + width: 30px; + height: 30px; +} + +div#invite_credentials #invite_hint, +div#invite_friends #invite_hint, +div#invite_index #invite_hint, +div#mentoring_info #invite_hint { + display: none; + float: left; +} + +div#invite_credentials #invite_hint span.tile, +div#invite_friends #invite_hint span.tile, +div#invite_index #invite_hint span.tile, +div#mentoring_info #invite_hint span.tile { + position: static; + display: block; + float: left; +} + +div#invite_credentials .mail_credentials { + overflow: auto; + padding: 5px; +} + +div#invite_credentials .mail_credentials label { + display: block; + margin: 4px 0 1px 0; + font-weight: 700; +} + +div#invite_credentials .textbox, +div#invite_credentials label { + width: 100%; +} + +div#invite_credentials .textbox { + margin-bottom: 5px; +} + +div#invite_credentials .column { + width: 286px; + padding: 5px; +} + +div#invite_credentials .column.left { + float: left; +} + +div#invite_credentials .column.right { + float: right; +} + +div#invite_credentials #txta_message { + width: 278px; + height: 75px; +} + +div#invite_credentials .message_spacer { + height: 20px; +} + +div#invite_credentials .textbox .error-msg { + margin-top: -23px; + margin-left: 100%; + width: 100%; +} + +div#invite_credentials div.invite_friend_mail_credentials, +div#invite_credentials div.invite_friend_master_credentials, +div#invite_friends div.invite_friend_mail_credentials, +div#invite_friends div.invite_friend_master_credentials, +div#invite_index div.invite_friend_mail_credentials, +div#invite_index div.invite_friend_master_credentials, +div#mentoring_info div.invite_friend_mail_credentials, +div#mentoring_info div.invite_friend_master_credentials { + float: left; + width: 286px; +} + +div#invite_credentials div.invite_friend_mail_credentials fieldset, +div#invite_credentials div.invite_friend_master_credentials fieldset, +div#invite_friends div.invite_friend_mail_credentials fieldset, +div#invite_friends div.invite_friend_master_credentials fieldset, +div#invite_index div.invite_friend_mail_credentials fieldset, +div#invite_index div.invite_friend_master_credentials fieldset, +div#mentoring_info div.invite_friend_mail_credentials fieldset, +div#mentoring_info div.invite_friend_master_credentials fieldset { + width: 100%; + margin-top: 5px; +} + +div#invite_credentials div.invite_friend_mail_credentials input, +div#invite_credentials div.invite_friend_master_credentials input, +div#invite_friends div.invite_friend_mail_credentials input, +div#invite_friends div.invite_friend_master_credentials input, +div#invite_index div.invite_friend_mail_credentials input, +div#invite_index div.invite_friend_master_credentials input, +div#mentoring_info div.invite_friend_mail_credentials input, +div#mentoring_info div.invite_friend_master_credentials input { + width: 274px; +} + +div#invite_credentials div.invite_friend_mail_credentials a.button, +div#invite_credentials div.invite_friend_master_credentials a.button, +div#invite_friends div.invite_friend_mail_credentials a.button, +div#invite_friends div.invite_friend_master_credentials a.button, +div#invite_index div.invite_friend_mail_credentials a.button, +div#invite_index div.invite_friend_master_credentials a.button, +div#mentoring_info div.invite_friend_mail_credentials a.button, +div#mentoring_info div.invite_friend_master_credentials a.button { + margin-top: 5px; +} + +div#invite_credentials div.invite_friend_mail_credentials div#spot_hint, +div#invite_credentials div.invite_friend_master_credentials div#spot_hint, +div#invite_friends div.invite_friend_mail_credentials div#spot_hint, +div#invite_friends div.invite_friend_master_credentials div#spot_hint, +div#invite_index div.invite_friend_mail_credentials div#spot_hint, +div#invite_index div.invite_friend_master_credentials div#spot_hint, +div#mentoring_info div.invite_friend_mail_credentials div#spot_hint, +div#mentoring_info div.invite_friend_master_credentials div#spot_hint { + margin-top: 15px; +} + +div#invite_credentials div.invite_friend_url_credentials fieldset, +div#invite_friends div.invite_friend_url_credentials fieldset, +div#invite_index div.invite_friend_url_credentials fieldset, +div#mentoring_info div.invite_friend_url_credentials fieldset { + width: 753px; +} + +div#invite_credentials div.invite_friend_url_credentials fieldset input, +div#invite_friends div.invite_friend_url_credentials fieldset input, +div#invite_index div.invite_friend_url_credentials fieldset input, +div#mentoring_info div.invite_friend_url_credentials fieldset input { + width: 743px; +} + +div#invite_credentials form#invite_friend select, +div#invite_friends form#invite_friend select, +div#invite_index form#invite_friend select, +div#mentoring_info form#invite_friend select { + width: 286px; +} + +div#invite_credentials form#invite_friend input, +div#invite_friends form#invite_friend input, +div#invite_index form#invite_friend input, +div#mentoring_info form#invite_friend input { + margin-top: 5px; +} + +div#invite_credentials form#invite_friend span.grepo_input, +div#invite_friends form#invite_friend span.grepo_input, +div#invite_index form#invite_friend span.grepo_input, +div#mentoring_info form#invite_friend span.grepo_input { + margin: 3px 0 0 20px; +} + +div#invite_credentials div#invite_data, +div#invite_friends div#invite_data, +div#invite_index div#invite_data, +div#mentoring_info div#invite_data { + height: 290px; + margin: 0; + padding: 0; +} + +div#invite_credentials div#invite_data a.button, +div#invite_friends div#invite_data a.button, +div#invite_index div#invite_data a.button, +div#mentoring_info div#invite_data a.button { + margin-top: 10px; +} + +div#invite_credentials div#spot_hint span.t, +div#invite_friends div#spot_hint span.t, +div#invite_index div#spot_hint span.t, +div#mentoring_info div#spot_hint span.t { + font-size: 10px; +} + +div#invite_credentials div#spot_hint>div, +div#invite_friends div#spot_hint>div, +div#invite_index div#spot_hint>div, +div#mentoring_info div#spot_hint>div { + margin-top: 10px; + float: left; +} + +div#invite_credentials div#spot_hint div.island_image, +div#invite_credentials div#spot_hint div.spot_image, +div#invite_friends div#spot_hint div.island_image, +div#invite_friends div#spot_hint div.spot_image, +div#invite_index div#spot_hint div.island_image, +div#invite_index div#spot_hint div.spot_image, +div#mentoring_info div#spot_hint div.island_image, +div#mentoring_info div#spot_hint div.spot_image { + position: absolute; + width: 69px; + height: 46px; + margin-top: 10px; + margin-left: 10px; +} + +div#invite_credentials div#spot_hint div.spot_image, +div#invite_friends div#spot_hint div.spot_image, +div#invite_index div#spot_hint div.spot_image, +div#mentoring_info div#spot_hint div.spot_image { + background: url(https://gpfr.innogamescdn.com/images/game/map/towns_sprite_2.19.png) -345px -46px; + z-index: 10; +} + +div#invite_credentials div#spot_hint div.island_image, +div#invite_friends div#spot_hint div.island_image, +div#invite_index div#spot_hint div.island_image, +div#mentoring_info div#spot_hint div.island_image { + background: url(https://gpfr.innogamescdn.com/images/game/map/island1.png) -370px -415px; + z-index: 1; +} + +#invite_credentials fieldset, +#mentoring_info fieldset { + border: 2px groove #fc6!important; + padding: 4px 8px 9px!important; +} + +#mentoring_info fieldset { + margin-left: 12px!important; + margin-top: 10px!important; +} + +#mentoring_info div.game_body { + background: 0 0!important; +} + +div#mentoring_info table { + width: 100%; + border-spacing: 0; +} + +div#mentoring_info table td { + border-bottom: 1px solid #d0be97; +} + +#invite_friends .large_button { + min-width: 190px; +} + +a.color_table { + display: block; + width: 22px; + height: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) -286px 0; +} + +a.color_table:hover { + background-position: -286px -23px; +} + +div.menu_bubble { + position: relative; + top: 0; + max-height: 370px; + overflow-y: auto; + overflow-x: hidden; +} + +#colonization_commands li.menu_bubble_entry, +#conqueror_units li.menu_bubble_entry, +#revolts_beyond li.menu_bubble_entry, +#revolts_in_current_town li.menu_bubble_entry, +#spy_movements li.menu_bubble_entry, +#unit_movements li.menu_bubble_entry, +li.menu_bubble_entry { + position: relative; + width: 160px; + height: 40px; + float: none; +} + +.menu_bubble_cancelable { + left: 130px; + top: 5px; + position: absolute; +} + +.menu_bubble_cancelable.orders { + left: 110px; + top: 22px; +} + +a.menu_bubble_finish { + display: inline; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/button/button_gold.png) no-repeat; + width: 22px; + height: 23px; + left: 110px; + top: 0; +} + +a.menu_bubble_finish:hover { + background-position: 0 -23px; +} + +a.menu_bubble_finish.disabled, +a.menu_bubble_finish.disabled:hover { + background-position: 0 -46px; +} + +#hidden_notification_count { + left: 0; + position: absolute; + font-size: 11px; + line-height: 16px; + color: #fff; + text-shadow: #000 2px 2px 4px; + font-weight: 700; +} + +#delete_all_notifications { + display: none; + width: 16px; + height: 16px; + position: absolute; + bottom: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -189px -150px; +} + +#delete_all_notifications:hover { + background-position: -189px -166px; +} + +#notification_area:hover #delete_all_notifications { + display: block; +} + +.god_mini { + width: 62px; + height: 62px; + display: block; +} + +.god_mini.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) 0 0 no-repeat; +} + +.god_mini.aphrodite_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -62px 0 no-repeat; +} + +.god_mini.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) 0 -62px no-repeat; +} + +.god_mini.ares_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -62px -62px no-repeat; +} + +.god_mini.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -124px 0 no-repeat; +} + +.god_mini.artemis_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -124px -62px no-repeat; +} + +.god_mini.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) 0 -124px no-repeat; +} + +.god_mini.athena_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -62px -124px no-repeat; +} + +.god_mini.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -124px -124px no-repeat; +} + +.god_mini.hades_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -186px 0 no-repeat; +} + +.god_mini.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -186px -62px no-repeat; +} + +.god_mini.hera_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -186px -124px no-repeat; +} + +.god_mini.none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) 0 -186px no-repeat; +} + +.god_mini.none_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -62px -186px no-repeat; +} + +.god_mini.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -124px -186px no-repeat; +} + +.god_mini.poseidon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -186px -186px no-repeat; +} + +.god_mini.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -248px 0 no-repeat; +} + +.god_mini.zeus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -248px -62px no-repeat; +} + +.temple_gods_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 0; + width: 290px; + height: 289px; +} + +#temple_god_fade, +#temple_god_static { + left: 28px; + top: 27px; +} + +#temple_god_fade.artemis, +#temple_god_static.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -235px -289px; + width: 235px; + height: 236px; +} + +#temple_god_fade.ares, +#temple_god_static.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 -289px; + width: 235px; + height: 236px; +} + +#temple_god_fade.athena, +#temple_god_static.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px 0; + width: 235px; + height: 236px; +} + +#temple_god_fade.hades, +#temple_god_static.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -236px; + width: 235px; + height: 236px; +} + +#temple_god_fade.hera, +#temple_god_static.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -760px 0; + width: 235px; + height: 236px; +} + +#temple_god_fade.aphrodite, +#temple_god_static.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -290px 0; + width: 235px; + height: 236px; +} + +#temple_god_fade.poseidon, +#temple_god_static.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -760px -236px; + width: 235px; + height: 236px; +} + +#temple_god_fade.zeus, +#temple_god_static.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 -525px; + width: 235px; + height: 236px; +} + +.gods_area .gods_container.god { + width: 76px; + height: 76px; +} + +.gods_area .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat 0 0; + width: 78px; + height: 78px; +} + +.gods_area .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -78px 0; + width: 78px; + height: 78px; +} + +.gods_area .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat 0 -78px; + width: 78px; + height: 78px; +} + +.gods_area .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -78px -78px; + width: 78px; + height: 78px; +} + +.gods_area .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -156px 0; + width: 78px; + height: 78px; +} + +.gods_area .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -156px -78px; + width: 78px; + height: 78px; +} + +.gods_area .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat 0 -156px; + width: 78px; + height: 78px; +} + +.gods_area .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -78px -156px; + width: 78px; + height: 78px; +} + +.god_micro { + width: 30px; + height: 30px; +} + +.god_micro.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 0 no-repeat; +} + +.god_micro.aphrodite_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px 0 no-repeat; +} + +.god_micro.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -30px no-repeat; +} + +.god_micro.ares_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -30px no-repeat; +} + +.god_micro.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px 0 no-repeat; +} + +.god_micro.artemis_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -30px no-repeat; +} + +.god_micro.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -60px no-repeat; +} + +.god_micro.athena_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -60px no-repeat; +} + +.god_micro.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -60px no-repeat; +} + +.god_micro.hades_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px 0 no-repeat; +} + +.god_micro.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -30px no-repeat; +} + +.god_micro.hera_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -60px no-repeat; +} + +.god_micro.none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -90px no-repeat; +} + +.god_micro.none_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -90px no-repeat; +} + +.god_micro.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -90px no-repeat; +} + +.god_micro.poseidon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -90px no-repeat; +} + +.god_micro.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -120px 0 no-repeat; +} + +.god_micro.zeus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -120px -30px no-repeat; +} + +body.gods-christmas .god_mini.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -124px 0 no-repeat; +} + +body.gods-christmas .god_mini.artemis.artemis_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -124px -62px no-repeat; +} + +body.gods-christmas .god_mini.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) 0 -62px no-repeat; +} + +body.gods-christmas .god_mini.ares.ares_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -62px -62px no-repeat; +} + +body.gods-christmas .god_mini.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) 0 -124px no-repeat; +} + +body.gods-christmas .god_mini.athena.athena_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -62px -124px no-repeat; +} + +body.gods-christmas .god_mini.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -124px -124px no-repeat; +} + +body.gods-christmas .god_mini.hades.hades_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -186px 0 no-repeat; +} + +body.gods-christmas .god_mini.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -186px -62px no-repeat; +} + +body.gods-christmas .god_mini.hera.hera_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -186px -124px no-repeat; +} + +body.gods-christmas .god_mini.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) 0 0 no-repeat; +} + +body.gods-christmas .god_mini.aphrodite.aphrodite_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -62px 0 no-repeat; +} + +body.gods-christmas .god_mini.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) 0 -186px no-repeat; +} + +body.gods-christmas .god_mini.poseidon.poseidon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -62px -186px no-repeat; +} + +body.gods-christmas .god_mini.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -124px -186px no-repeat; +} + +body.gods-christmas .god_mini.zeus.zeus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -186px -186px no-repeat; +} + +body.gods-christmas #temple_god_fade.artemis, +body.gods-christmas #temple_god_static.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat 0 -236px; + width: 234px; + height: 236px; +} + +body.gods-christmas #temple_god_fade.ares, +body.gods-christmas #temple_god_static.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -470px 0; + width: 234px; + height: 236px; +} + +body.gods-christmas #temple_god_fade.athena, +body.gods-christmas #temple_god_static.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -704px 0; + width: 232px; + height: 236px; +} + +body.gods-christmas #temple_god_fade.hades, +body.gods-christmas #temple_god_static.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -234px -236px; + width: 234px; + height: 236px; +} + +body.gods-christmas #temple_god_fade.hera, +body.gods-christmas #temple_god_static.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -468px -236px; + width: 234px; + height: 236px; +} + +body.gods-christmas #temple_god_fade.aphrodite, +body.gods-christmas #temple_god_static.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat 0 0; + width: 235px; + height: 236px; +} + +body.gods-christmas #temple_god_fade.poseidon, +body.gods-christmas #temple_god_static.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -235px 0; + width: 235px; + height: 236px; +} + +body.gods-christmas #temple_god_fade.zeus, +body.gods-christmas #temple_god_static.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -704px -236px; + width: 232px; + height: 236px; +} + +body.gods-christmas .god_selection .js-list .artemis_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -100px 0 no-repeat; +} + +body.gods-christmas .god_selection .js-list .ares_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) 0 -50px no-repeat; +} + +body.gods-christmas .god_selection .js-list .athena_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) 0 -100px no-repeat; +} + +body.gods-christmas .god_selection .js-list .hades_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -100px -100px no-repeat; +} + +body.gods-christmas .god_selection .js-list .hera_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -150px -50px no-repeat; +} + +body.gods-christmas .god_selection .js-list .aphrodite_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) 0 0 no-repeat; +} + +body.gods-christmas .god_selection .js-list .poseidon_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) 0 -150px no-repeat; +} + +body.gods-christmas .god_selection .js-list .zeus_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -100px -150px no-repeat; +} + +body.gods-christmas .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -156px -472px; + width: 78px; + height: 78px; +} + +body.gods-christmas .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -78px -472px; + width: 78px; + height: 78px; +} + +body.gods-christmas .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -234px -472px; + width: 78px; + height: 78px; +} + +body.gods-christmas .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -312px -472px; + width: 78px; + height: 78px; +} + +body.gods-christmas .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -390px -472px; + width: 78px; + height: 78px; +} + +body.gods-christmas .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat 0 -472px; + width: 78px; + height: 78px; +} + +body.gods-christmas .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -468px -472px; + width: 78px; + height: 78px; +} + +body.gods-christmas .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -546px -472px; + width: 78px; + height: 78px; +} + +body.gods-christmas .god_micro.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -60px 0 no-repeat; +} + +body.gods-christmas .god_micro.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) 0 -30px no-repeat; +} + +body.gods-christmas .god_micro.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) 0 -60px no-repeat; +} + +body.gods-christmas .god_micro.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -60px -60px no-repeat; +} + +body.gods-christmas .god_micro.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -90px -30px no-repeat; +} + +body.gods-christmas .god_micro.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) 0 0 no-repeat; +} + +body.gods-christmas .god_micro.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) 0 -90px no-repeat; +} + +body.gods-christmas .god_micro.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -60px -90px no-repeat; +} + +body.gods-christmas .gods_overview_icon.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -93px 0; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -93px -79px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -186px -79px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -93px -158px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -279px 0; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -279px -158px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -93px -237px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -279px -237px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.selected.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat 0 0; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.selected.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat 0 -79px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.selected.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -186px 0; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.selected.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat 0 -158px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.selected.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -186px -158px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.selected.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -279px -79px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.selected.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat 0 -237px; + width: 93px; + height: 79px; +} + +body.gods-christmas .gods_overview_icon.selected.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -186px -237px; + width: 93px; + height: 79px; +} + +body.gods-halloween .god_mini.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -62px 0 no-repeat; +} + +body.gods-halloween .god_mini.aphrodite.aphrodite_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) 0 -124px no-repeat; +} + +body.gods-halloween .god_mini.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -124px -124px no-repeat; +} + +body.gods-halloween .god_mini.ares.ares_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -62px -124px no-repeat; +} + +body.gods-halloween .god_mini.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) 0 -62px no-repeat; +} + +body.gods-halloween .god_mini.artemis.artemis_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) 0 0 no-repeat; +} + +body.gods-halloween .god_mini.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -62px -62px no-repeat; +} + +body.gods-halloween .god_mini.athena.athena_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -186px 0 no-repeat; +} + +body.gods-halloween .god_mini.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -124px 0 no-repeat; +} + +body.gods-halloween .god_mini.hades.hades_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -186px -62px no-repeat; +} + +body.gods-halloween .god_mini.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -124px -62px no-repeat; +} + +body.gods-halloween .god_mini.hera.hera_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -186px -124px no-repeat; +} + +body.gods-halloween .god_mini.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -124px -186px no-repeat; +} + +body.gods-halloween .god_mini.poseidon.poseidon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) 0 -186px no-repeat; +} + +body.gods-halloween .god_mini.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -186px -186px no-repeat; +} + +body.gods-halloween .god_mini.zeus.zeus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -62px -186px no-repeat; +} + +body.gods-halloween #temple_god_fade.aphrodite, +body.gods-halloween #temple_god_static.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat 0 0; + width: 231px; + height: 231px; +} + +body.gods-halloween #temple_god_fade.ares, +body.gods-halloween #temple_god_static.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -231px -462px; + width: 231px; + height: 231px; +} + +body.gods-halloween #temple_god_fade.artemis, +body.gods-halloween #temple_god_static.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -231px 0; + width: 231px; + height: 231px; +} + +body.gods-halloween #temple_god_fade.athena, +body.gods-halloween #temple_god_static.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat 0 -231px; + width: 231px; + height: 231px; +} + +body.gods-halloween #temple_god_fade.hades, +body.gods-halloween #temple_god_static.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -231px -231px; + width: 231px; + height: 231px; +} + +body.gods-halloween #temple_god_fade.hera, +body.gods-halloween #temple_god_static.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -462px 0; + width: 231px; + height: 231px; +} + +body.gods-halloween #temple_god_fade.poseidon, +body.gods-halloween #temple_god_static.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -462px -231px; + width: 231px; + height: 231px; +} + +body.gods-halloween #temple_god_fade.zeus, +body.gods-halloween #temple_god_static.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat 0 -462px; + width: 231px; + height: 231px; +} + +body.gods-halloween .god_selection .js-list .aphrodite_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -50px 0 no-repeat; +} + +body.gods-halloween .god_selection .js-list .ares_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -100px -100px no-repeat; +} + +body.gods-halloween .god_selection .js-list .artemis_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) 0 -50px no-repeat; +} + +body.gods-halloween .god_selection .js-list .athena_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -50px -50px no-repeat; +} + +body.gods-halloween .god_selection .js-list .hades_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -100px 0 no-repeat; +} + +body.gods-halloween .god_selection .js-list .hera_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -100px -50px no-repeat; +} + +body.gods-halloween .god_selection .js-list .poseidon_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -100px -150px no-repeat; +} + +body.gods-halloween .god_selection .js-list .zeus_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -150px -150px no-repeat; +} + +body.gods-halloween .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -693px -234px; + width: 78px; + height: 78px; +} + +body.gods-halloween .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -540px -462px; + width: 78px; + height: 78px; +} + +body.gods-halloween .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -462px -540px; + width: 78px; + height: 78px; +} + +body.gods-halloween .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -540px -540px; + width: 78px; + height: 78px; +} + +body.gods-halloween .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -693px 0; + width: 78px; + height: 78px; +} + +body.gods-halloween .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -693px -78px; + width: 78px; + height: 78px; +} + +body.gods-halloween .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -693px -156px; + width: 78px; + height: 78px; +} + +body.gods-halloween .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -462px -462px; + width: 78px; + height: 78px; +} + +body.gods-halloween .god_micro.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -30px 0 no-repeat; +} + +body.gods-halloween .god_micro.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -60px -60px no-repeat; +} + +body.gods-halloween .god_micro.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) 0 -30px no-repeat; +} + +body.gods-halloween .god_micro.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -30px -30px no-repeat; +} + +body.gods-halloween .god_micro.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -60px 0 no-repeat; +} + +body.gods-halloween .god_micro.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -60px -30px no-repeat; +} + +body.gods-halloween .god_micro.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -60px -90px no-repeat; +} + +body.gods-halloween .god_micro.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -90px -90px no-repeat; +} + +body.gods-halloween .gods_overview_icon.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -186px -158px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -186px -237px; + width: 93px; + height: 78px; +} + +body.gods-halloween .gods_overview_icon.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -186px -79px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -93px -158px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -279px 0; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -279px -158px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -93px -79px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -93px -237px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.selected.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -93px 0; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.selected.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -279px -237px; + width: 93px; + height: 78px; +} + +body.gods-halloween .gods_overview_icon.selected.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -186px 0; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.selected.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat 0 -158px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.selected.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat 0 0; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.selected.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -279px -79px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.selected.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat 0 -237px; + width: 93px; + height: 79px; +} + +body.gods-halloween .gods_overview_icon.selected.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat 0 -79px; + width: 93px; + height: 79px; +} + +body.gods-jp .god_mini { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/favor_gods_2.134_jp.png); +} + +body.gods-jp .god_mini.artemis.artemis_disabled, +body.gods-jp .god_mini.athena.athena_disabled, +body.gods-jp .god_mini.disabled, +body.gods-jp .god_mini.hades.hades_disabled, +body.gods-jp .god_mini.hera.hera_disabled, +body.gods-jp .god_mini.none.none_disabled, +body.gods-jp .god_mini.poseidon.poseidon_disabled, +body.gods-jp .god_mini.zeus.zeus_disabled { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/favor_gods_inactive_2.134_jp.png); +} + +body.gods-jp .temple_gods_large div { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/gods_big_sprite_2.134_jp.png); +} + +body.gods-jp .gods_container.god { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/layout_favor_gods_2.134_jp.png); +} + +body.gods-jp .god_micro { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/favor_gods_small_2.134_jp.png); +} + +body.gods-elven_invasion .god_mini { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/favor_gods_elvenar.png); +} + +body.gods-elven_invasion .god_mini .disabled, +body.gods-elven_invasion .god_mini.artemis.artemis_disabled, +body.gods-elven_invasion .god_mini.athena.athena_disabled, +body.gods-elven_invasion .god_mini.hades.hades_disabled, +body.gods-elven_invasion .god_mini.hera.hera_disabled, +body.gods-elven_invasion .god_mini.none.none_disabled, +body.gods-elven_invasion .god_mini.poseidon.poseidon_disabled, +body.gods-elven_invasion .god_mini.zeus.zeus_disabled { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/favor_gods_inactive_elvenar.png); +} + +body.gods-elven_invasion .temple_gods_large div { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/temple_elvenar.png); +} + +body.gods-elven_invasion .gods_container.god { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/layout_favor_gods_elvenar.png); +} + +body.gods-elven_invasion .god_micro { + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/favor_gods_small_elvenar.png); +} + +#captcha_curtain { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + background-color: #000; + z-index: 4999; + display: none; +} + +#captcha_window { + z-index: 5000; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/message/captcha_box.jpg) 0 0 no-repeat; + width: 192px; + height: 135px; + top: 50%; + left: 50%; + margin: -67px 0 0 -96px; + display: none; +} + +#captcha_window img { + position: absolute; + top: 28px; + left: 21px; +} + +#captcha_window p { + color: #fc6; + left: 21px; + margin: 10px 0; + position: absolute; + text-shadow: 1px 1px #000; + width: 150px; + font-size: 10px; + font-weight: 700; + text-align: left; +} + +#captcha_window p.captcha_caption_box { + top: 70px; +} + +#captcha_window .txt_captcha { + position: absolute; + top: 95px; + left: 19px; + width: 108px; +} + +#captcha_window .btn_reload { + position: absolute; + top: 95px; + left: 128px; +} + +#captcha_window .btn_confirm { + position: absolute; + top: 95px; + left: 151px; +} + +#recaptcha_window { + z-index: 5000; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/message/captcha_box2.png) 0 0 no-repeat; + width: 342px; + height: 135px; + top: 45%; + left: 45%; + margin: -67px 0 0 -96px; + display: none; +} + +#recaptcha_window .btn_confirm { + position: absolute; + bottom: 8px; + left: 0; + right: 0; + margin: 0 auto; + max-width: 150px; +} + +#recaptcha_container { + position: absolute; + top: 22px; + left: 20px; +} + +.mass_recruit_window .gpwindow_content { + overflow: hidden; +} + +#recruit_overview { + position: relative; + width: 798px; +} + +#recruit_overview.extra-large .horizontal_scroll_area { + overflow-x: scroll; + overflow-y: hidden; + height: 457px; +} + +#recruit_overview.extra-large .horizontal_scroll_area #recruit_general_fields, +#recruit_overview.extra-large .horizontal_scroll_area #recruit_town_list, +#recruit_overview.extra-large .horizontal_scroll_area .divider { + width: 940px; +} + +#recruit_overview.extra-large .section { + overflow: visible; +} + +#recruit_overview #recruit_control { + padding: 3px; +} + +#recruit_overview #dd_recruit_select_town_group { + width: 160px; +} + +#recruit_overview #dd_recruit_sort_by { + width: 160px; +} + +#recruit_overview #txt_recruit_search { + width: 160px; +} + +#recruit_overview #btn_recruit_help { + float: right; +} + +#recruit_overview #rbtn_show_troops { + margin: 9px 0 0 6px; + vertical-align: middle; + float: left; +} + +#recruit_overview #btn_population { + margin: 8px 0 0 26px; + float: left; +} + +#recruit_overview .tab_general_unit_types { + position: absolute; + top: 0; + bottom: 0; + left: 173px; +} + +#recruit_overview .tab_general_unit_types .unit { + margin: 0; + border-right: 1px solid #000; + float: none; + overflow: hidden; + cursor: pointer; +} + +#recruit_overview .tab_general_unit_types td:first-child .unit { + border-left: 1px solid #000; +} + +#recruit_overview #switch_units_wrapper { + position: absolute; + top: 11px; + right: 5px; +} + +#recruit_overview #recruit_town_list { + height: 338px; + overflow-x: hidden; + overflow-y: auto; + position: relative; +} + +#recruit_overview #recruit_town_list .empty_message { + display: none; +} + +#recruit_overview #recruit_town_list.js-empty .empty_message { + display: block; + text-align: center; + padding: 5px; +} + +#recruit_overview #recruit_town_list.section { + padding: 0; +} + +#recruit_overview #recruit_general_fields { + padding: 0; + height: 105px; + text-align: center; +} + +#recruit_overview #recruit_general_fields .textbox input { + text-align: center; +} + +#recruit_overview #recruit_general_fields .section.stone { + padding: 0; + height: 65px; +} + +#recruit_overview .recruit_button_section { + text-align: center; +} + +#recruit_overview #btn_recruit_units { + margin-top: 9px; +} + +#recruit_overview .tab_general_unit_types td { + border: 0; + padding: 0; + margin: 0; + width: 41px; +} + +#recruit_overview .tab_general_unit_types .unit_icon40x40 { + cursor: pointer; +} + +#recruit_overview .cell_town_info { + border: 0; + border-bottom: 1px solid #d2bd96; + border-right: 1px solid #d2bd96; +} + +#recruit_overview .cell_units_info { + vertical-align: top; + border-bottom: 1px solid #d2bd96; + border-right: 1px solid #d2bd96; +} + +#recruit_overview .table_resources { + font-size: 10px; + line-height: 14px; + width: 94px; + margin-bottom: 5px; +} + +#recruit_overview .table_resources .res22x16 { + margin-right: 7px; +} + +#recruit_overview .table_resources .label { + float: right; + line-height: 15px; +} + +#recruit_overview .table_resources .storage_full { + color: #c00; +} + +#recruit_overview .table_town_info { + width: 172px; + height: 102px; +} + +#recruit_overview .table_recruit_units .unit_box { + width: 40px; + height: 52px; + font-size: 10px; + text-align: center; + border-right: 1px solid #d2bd96; +} + +#recruit_overview .tab_recruit_unit_types .js-page-1 .unit_box:last-child { + border-right: 0; +} + +#recruit_overview .table_recruit_units .town_buttons { + position: absolute; + top: 3px; + right: -37px; + width: 29px; + height: 52px; +} + +#recruit_overview .table_recruit_units .town_buttons .remove { + margin: 2px 0 2px 0; +} + +#recruit_overview .tab_recruit_unit_types table tr td:first-child { + width: 41px; +} + +#recruit_overview .table_recruit_units .unit_box .textbox input { + text-align: center; +} + +#recruit_overview .table_recruit_units .max { + font-weight: 700; + color: #84a053; + cursor: pointer; +} + +#recruit_overview .table_recruit_units .max:hover { + color: #000; +} + +#recruit_overview .table_recruit_units .unit_number { + font-weight: 700; +} + +#recruit_overview .row_resources td, +#recruit_overview .row_town_name td { + padding-top: 2px; + overflow: hidden; +} + +#recruit_overview .row_town_name td { + border-bottom-width: 1px; + padding-bottom: 2px; + padding-left: 5px; +} + +#recruit_overview .row_town_name .gp_town_link { + max-width: 164px; + overflow: hidden; + display: inline-block; +} + +#recruit_overview .cell_resources { + padding-left: 5px; +} + +#recruit_overview .cell_casted_powers { + line-height: 12px; + width: 28px; + border-bottom-width: 0; + border-right: 1px solid #d0be97; + background-color: #f6e1b3; +} + +#recruit_overview .container_casted_powers { + max-height: 76px; +} + +#recruit_overview .cell_casted_powers .power_icon12x12 { + vertical-align: top; + margin: 0 1px 1px; +} + +#recruit_overview .cell_cast_power { + width: 30px; + padding-left: 8px; + border-left: 1px solid #d0be97; +} + +#recruit_overview .cell_cast_power .power_icon24x24 { + display: block; + cursor: pointer; +} + +#recruit_overview .cell_cast_power .power_icon24x24.disabled { + cursor: default; +} + +#recruit_overview .cell_cast_power .power_icon24x24.fertility_improvement, +#recruit_overview .cell_cast_power .power_icon24x24.spartan_training { + margin-bottom: 2px; +} + +#recruit_overview #cbx_save_settings { + position: absolute; + top: 45px; + left: 5px; + display: block; + height: auto; + overflow: visible; +} + +#recruit_overview #save_resources_box { + margin: 5px; + height: 25px; + display: inline-block; +} + +#recruit_overview #save_resources_box .label { + max-width: 82px; +} + +#recruit_overview #save_resources_box .res22x16 { + margin-left: 5px; +} + +#recruit_overview #save_resources_box .spinner_horizontal { + width: 90px; +} + +#recruit_overview #btn_insert_troops { + max-width: 190px; +} + +#recruit_overview #btn_insert_troops .caption { + padding: 0 5px; +} + +#recruit_overview .btn_insert_recruits { + vertical-align: top; + margin: 5px 10px; +} + +#recruit_overview .cell_barracks_queue { + border-right: 1px solid #d2bd96; + width: 287px; +} + +#recruit_overview .cell_barracks_queue, +#recruit_overview .cell_harbor_queue { + vertical-align: top; +} + +#recruit_overview .units_queue { + padding: 2px; + height: 27px; +} + +#recruit_overview .unit_queue { + border: 1px solid #000; + display: block; + float: left; + margin-right: 1px; +} + +#recruit_overview .unit_queue.premium_feature_button { + cursor: pointer; +} + +#recruit_overview .unit_queue.premium_feature_button:hover { + background-position: 0!important; + background: #d0be97 url(https://gpfr.innogamescdn.com/images/game/res/gold.png) no-repeat 0 0; +} + +#recruit_overview .unit_queue .units_left { + position: absolute; + bottom: 0; + right: 0; + width: 25px; + height: 15px; + font-weight: 700; + color: #fff; + text-align: right; + text-shadow: 1px 1px 1px #000; + font-size: 11px; +} + +#recruit_overview .unit_queue.unknown_transparent { + border: 1px solid #d2bd96; + vertical-align: middle; + text-align: center; + line-height: 25px; + color: #d2bd96; + font-size: 10px; + cursor: default; +} + +#recruit_overview .open_barracks_window, +#recruit_overview .open_harbor_window { + color: #804000; + padding: 2px 4px; + font-size: 10px; + font-weight: 700; + border-bottom-width: 1px; + border-top: 1px solid #d0be97; +} + +#recruit_overview .open_barracks_window span, +#recruit_overview .open_harbor_window span { + cursor: pointer; +} + +#recruit_overview .tab { + overflow: visible; +} + +#recruit_overview #btn_general_clear_textboxes { + position: absolute; + top: 40px; + right: -29px; +} + +#recruit_overview .scroll_simulator { + position: relative; +} + +#recruit_overview .helper_row { + height: 104px; + position: absolute; + display: block; + left: 0; + right: 0; +} + +#recruit_overview .power_container { + height: 27px; +} + +#recruit_overview .gold { + position: relative; + width: 27px; + height: 26px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/icon_gold_extend_power.png) no-repeat 0 0; + background-size: 75% 75%; + top: -15px; + left: 10px; + pointer-events: none; +} + +#dd_commands_select_town_group, +#txt_commands_search { + width: 160px; +} + +.unit_info30x30 { + width: 30px; + height: 30px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/units/units_info_sprite2.51.png) no-repeat 0 0; +} + +.unit_info30x30.def_hack { + background-position: 0 0; +} + +.unit_info30x30.def_pierce { + background-position: 0 -30px; +} + +.unit_info30x30.def_distance { + background-position: 0 -60px; +} + +.unit_info30x30.att_pierce { + background-position: 0 -90px; +} + +.unit_info30x30.att_hack { + background-position: 0 -120px; +} + +.unit_info30x30.att_distance { + background-position: 0 -150px; +} + +.unit_info30x30.booty { + background-position: 0 -180px; +} + +.unit_info30x30.speed { + background-position: 0 -210px; +} + +.unit_info30x30.ship_att { + background-position: 0 -240px; +} + +.unit_info30x30.ship_def { + background-position: 0 -270px; +} + +.unit_info30x30.capacity { + background-position: 0 -300px; +} + +.unit_info30x30.special_ability { + background-position: 0 -330px; +} + +.building_icon40x40 { + width: 40px; + height: 40px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/main/buildings_sprite_40x40.png) no-repeat 0 0; +} + +.building_icon40x40.academy { + background-position: 0 0; +} + +.building_icon40x40.barracks { + background-position: -40px 0; +} + +.building_icon40x40.docks { + background-position: -80px 0; +} + +.building_icon40x40.farm { + background-position: -120px 0; +} + +.building_icon40x40.hide { + background-position: -160px 0; +} + +.building_icon40x40.ironer { + background-position: -200px 0; +} + +.building_icon40x40.library { + background-position: -240px 0; +} + +.building_icon40x40.lighthouse { + background-position: -280px 0; +} + +.building_icon40x40.lumber { + background-position: -320px 0; +} + +.building_icon40x40.main { + background-position: -360px 0; +} + +.building_icon40x40.market { + background-position: 0 -40px; +} + +.building_icon40x40.oracle { + background-position: -40px -40px; +} + +.building_icon40x40.place { + background-position: -80px -40px; +} + +.building_icon40x40.statue { + background-position: -120px -40px; +} + +.building_icon40x40.stoner { + background-position: -160px -40px; +} + +.building_icon40x40.storage { + background-position: -200px -40px; +} + +.building_icon40x40.temple { + background-position: -240px -40px; +} + +.building_icon40x40.theater { + background-position: -280px -40px; +} + +.building_icon40x40.thermal { + background-position: -320px -40px; +} + +.building_icon40x40.tower { + background-position: -360px -40px; +} + +.building_icon40x40.trade_office { + background-position: 0 -80px; +} + +.building_icon40x40.wall { + background-position: -40px -80px; +} + +.building_icon50x50 { + width: 50px; + height: 50px; + display: inline-block; + vertical-align: middle; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/main/buildings_sprite_50x50.png) no-repeat 0 0; +} + +.building_icon50x50.academy { + background-position: 0 0; +} + +.building_icon50x50.barracks { + background-position: -50px 0; +} + +.building_icon50x50.docks { + background-position: -100px 0; +} + +.building_icon50x50.farm { + background-position: -150px 0; +} + +.building_icon50x50.hide { + background-position: -200px 0; +} + +.building_icon50x50.ironer { + background-position: -250px 0; +} + +.building_icon50x50.library { + background-position: -300px 0; +} + +.building_icon50x50.lighthouse { + background-position: -350px 0; +} + +.building_icon50x50.lumber { + background-position: -400px 0; +} + +.building_icon50x50.main { + background-position: -450px 0; +} + +.building_icon50x50.market { + background-position: 0 -50px; +} + +.building_icon50x50.oracle { + background-position: -50px -50px; +} + +.building_icon50x50.place { + background-position: -100px -50px; +} + +.building_icon50x50.statue { + background-position: -150px -50px; +} + +.building_icon50x50.stoner { + background-position: -200px -50px; +} + +.building_icon50x50.storage { + background-position: -250px -50px; +} + +.building_icon50x50.temple { + background-position: -300px -50px; +} + +.building_icon50x50.theater { + background-position: -350px -50px; +} + +.building_icon50x50.thermal { + background-position: -400px -50px; +} + +.building_icon50x50.tower { + background-position: -450px -50px; +} + +.building_icon50x50.trade_office { + background-position: 0 -100px; +} + +.building_icon50x50.wall { + background-position: -50px -100px; +} + +@-webkit-keyframes bounceTop { + 0% { + -webkit-transform: translate3d(0,0,0); + } + + 20% { + -webkit-transform: translate3d(0,0,0); + } + + 100% { + -webkit-transform: translate3d(0,-10px,0); + } +} + +@-webkit-keyframes bounceTopNoGPU { + 0% { + -webkit-transform: translate(0,0,0); + } + + 20% { + -webkit-transform: translate(0,0,0); + } + + 100% { + -webkit-transform: translate(0,-10px); + } +} + +@-moz-keyframes bounceTop { + 0% { + -moz-transform: translate(0,0); + } + + 20% { + -moz-transform: translate(0,0); + } + + 100% { + -moz-transform: translate(0,-10px); + } +} + +@-o-keyframes bounceTop { + 0% { + margin-top: 0; + } + + 20% { + margin-top: 0; + } + + 100% { + margin-top: -10px; + } +} + +@keyframes bounceTop { + 0% { + transform: translate3d(0,0,0); + } + + 20% { + transform: translate3d(0,0,0); + } + + 100% { + transform: translate3d(0,-10px,0); + } +} + +@keyframes bounceTopNoGPU { + 0% { + transform: translate(0,0,0); + } + + 20% { + transform: translate(0,0,0); + } + + 100% { + transform: translate(0,-10px); + } +} + +@-webkit-keyframes bounceRight { + 0% { + -webkit-transform: translate3d(0,0,0); + } + + 20% { + -webkit-transform: translate3d(0,0,0); + } + + 100% { + -webkit-transform: translate3d(10px,0,0); + } +} + +@-webkit-keyframes bounceRighttranslate { + 0% { + -webkit-transform: translate(0,0); + } + + 20% { + -webkit-transform: translate(0,0); + } + + 100% { + -webkit-transform: translate(10px,0); + } +} + +@-webkit-keyframes bounceRightmargin { + 0% { + margin-left: 0; + } + + 20% { + margin-left: 0; + } + + 100% { + margin-left: 10px; + } +} + +@-webkit-keyframes bounceRightNoGPU { + 0% { + -webkit-transform: translate(0,0); + } + + 20% { + -webkit-transform: translate(0,0); + } + + 100% { + -webkit-transform: translate(10px,0); + } +} + +@-moz-keyframes bounceRight { + 0% { + -moz-transform: translate(0,0); + } + + 20% { + -moz-transform: translate(0,0); + } + + 100% { + -moz-transform: translate(10px,0); + } +} + +@-o-keyframes bounceRight { + 0% { + margin-left: 0; + } + + 20% { + margin-left: 0; + } + + 100% { + margin-left: 10px; + } +} + +@keyframes bounceRight { + 0% { + transform: translate3d(0,0,0); + } + + 20% { + transform: translate3d(0,0,0); + } + + 100% { + transform: translate3d(10px,0,0); + } +} + +@keyframes bounceRighttranslate { + 0% { + transform: translate(0,0); + } + + 20% { + transform: translate(0,0); + } + + 100% { + transform: translate(10px,0); + } +} + +@keyframes bounceRightmargin { + 0% { + margin-left: 0; + } + + 20% { + margin-left: 0; + } + + 100% { + margin-left: 10px; + } +} + +@keyframes bounceRightNoGPU { + 0% { + transform: translate(0,0); + } + + 20% { + transform: translate(0,0); + } + + 100% { + transform: translate(10px,0); + } +} + +@-webkit-keyframes bounceBottom { + 0% { + -webkit-transform: translate3d(0,0,0); + } + + 20% { + -webkit-transform: translate3d(0,0,0); + } + + 100% { + -webkit-transform: translate3d(0,10px,0); + } +} + +@-webkit-keyframes bounceBottomNoGPU { + 0% { + -webkit-transform: translate(0,0); + } + + 20% { + -webkit-transform: translate(0,0); + } + + 100% { + -webkit-transform: translate(0,10px); + } +} + +@-moz-keyframes bounceBottom { + 0% { + -moz-transform: translate(0,0); + } + + 20% { + -moz-transform: translate(0,0); + } + + 100% { + -moz-transform: translate(0,10px); + } +} + +@-o-keyframes bounceBottom { + 0% { + margin-top: 0; + } + + 20% { + margin-top: 0; + } + + 100% { + margin-top: 10px; + } +} + +@keyframes bounceBottom { + 0% { + transform: translate3d(0,0,0); + } + + 20% { + transform: translate3d(0,0,0); + } + + 100% { + transform: translate3d(0,10px,0); + } +} + +@keyframes bounceBottomNoGPU { + 0% { + transform: translate(0,0); + } + + 20% { + transform: translate(0,0); + } + + 100% { + transform: translate(0,10px); + } +} + +@-webkit-keyframes bounceLeft { + 0% { + -webkit-transform: translate3d(0,0,0); + } + + 20% { + -webkit-transform: translate3d(0,0,0); + } + + 100% { + -webkit-transform: translate3d(-10px,0,0); + } +} + +@-webkit-keyframes bounceLeftNoGPU { + 0% { + -webkit-transform: translate(0,0); + } + + 20% { + -webkit-transform: translate(0,0); + } + + 100% { + -webkit-transform: translate(-10px,0); + } +} + +@-moz-keyframes bounceLeft { + 0% { + -moz-transform: translate3d(0,0,0); + } + + 20% { + -moz-transform: translate3d(0,0,0); + } + + 100% { + -moz-transform: translate3d(-10px,0,0); + } +} + +@-o-keyframes bounceLeft { + 0% { + margin-left: 0; + } + + 20% { + margin-left: 0; + } + + 100% { + margin-left: -10px; + } +} + +@keyframes bounceLeft { + 0% { + transform: translate3d(0,0,0); + } + + 20% { + transform: translate3d(0,0,0); + } + + 100% { + transform: translate3d(-10px,0,0); + } +} + +@keyframes bounceLeftNoGPU { + 0% { + transform: translate(0,0); + } + + 20% { + transform: translate(0,0); + } + + 100% { + transform: translate(-10px,0); + } +} + +@-webkit-keyframes bounceTopRight { + 0% { + -webkit-transform: translate3d(0,0,0); + } + + 20% { + -webkit-transform: translate3d(0,0,0); + } + + 100% { + -webkit-transform: translate3d(10px,-10px,0); + } +} + +@-webkit-keyframes bounceTopRightNoGPU { + 0% { + -webkit-transform: translate(0,0); + } + + 20% { + -webkit-transform: translate(0,0); + } + + 100% { + -webkit-transform: translate(10px,-10px); + } +} + +@-moz-keyframes bounceTopRight { + 0% { + -moz-transform: translate(0,0); + } + + 20% { + -moz-transform: translate(0,0); + } + + 100% { + -moz-transform: translate(10px,-10px); + } +} + +@-o-keyframes bounceTopRight { + 0% { + margin-top: 0; + margin-left: 0; + } + + 20% { + margin-top: 0; + margin-left: 0; + } + + 100% { + margin-top: -10px; + margin-left: 10px; + } +} + +@keyframes bounceTopRight { + 0% { + transform: translate3d(0,0,0); + } + + 20% { + transform: translate3d(0,0,0); + } + + 100% { + transform: translate3d(10px,-10px,0); + } +} + +@keyframes bounceTopRightNoGPU { + 0% { + transform: translate(0,0); + } + + 20% { + transform: translate(0,0); + } + + 100% { + transform: translate(10px,-10px); + } +} + +@-webkit-keyframes bounceTopLeft { + 0% { + -webkit-transform: translate3d(0,0,0); + } + + 20% { + -webkit-transform: translate3d(0,0,0); + } + + 100% { + -webkit-transform: translate3d(-10px,-10px,0); + } +} + +@-webkit-keyframes bounceTopLeftNoGPU { + 0% { + -webkit-transform: translate(0,0); + } + + 20% { + -webkit-transform: translate(0,0); + } + + 100% { + -webkit-transform: translate(-10px,-10px); + } +} + +@-moz-keyframes bounceTopLeft { + 0% { + -moz-transform: translate(0,0); + } + + 20% { + -moz-transform: translate(0,0); + } + + 100% { + -moz-transform: translate(-10px,-10px); + } +} + +@-o-keyframes bounceTopLeft { + 0% { + margin-top: 0; + margin-left: 0; + } + + 20% { + margin-top: 0; + margin-left: 0; + } + + 100% { + margin-top: -10px; + margin-left: -10px; + } +} + +@keyframes bounceTopLeft { + 0% { + transform: translate3d(0,0,0); + } + + 20% { + transform: translate3d(0,0,0); + } + + 100% { + transform: translate3d(-10px,-10px,0); + } +} + +@keyframes bounceTopLeftNoGPU { + 0% { + transform: translate(0,0); + } + + 20% { + transform: translate(0,0); + } + + 100% { + transform: translate(-10px,-10px); + } +} + +@-webkit-keyframes bounceBottomRight { + 0% { + -webkit-transform: translate3d(0,0,0); + } + + 20% { + -webkit-transform: translate3d(0,0,0); + } + + 100% { + -webkit-transform: translate3d(10px,10px,0); + } +} + +@-webkit-keyframes bounceBottomRightNoGPU { + 0% { + -webkit-transform: translate(0,0); + } + + 20% { + -webkit-transform: translate(0,0); + } + + 100% { + -webkit-transform: translate(10px,10px); + } +} + +@-moz-keyframes bounceBottomRight { + 0% { + -moz-transform: translate(0,0); + } + + 20% { + -moz-transform: translate(0,0); + } + + 100% { + -moz-transform: translate(10px,10px); + } +} + +@-o-keyframes bounceBottomRight { + 0% { + margin-top: 0; + margin-left: 0; + } + + 20% { + margin-top: 0; + margin-left: 0; + } + + 100% { + margin-top: 10px; + margin-left: 10px; + } +} + +@keyframes bounceBottomRight { + 0% { + transform: translate3d(0,0,0); + } + + 20% { + transform: translate3d(0,0,0); + } + + 100% { + transform: translate3d(10px,10px,0); + } +} + +@keyframes bounceBottomRightNoGPU { + 0% { + transform: translate(0,0); + } + + 20% { + transform: translate(0,0); + } + + 100% { + transform: translate(10px,10px); + } +} + +@-webkit-keyframes bounceBottomLeft { + 0% { + -webkit-transform: translate3d(0,0,0); + } + + 20% { + -webkit-transform: translate3d(0,0,0); + } + + 100% { + -webkit-transform: translate3d(-10px,10px,0); + } +} + +@-webkit-keyframes bounceBottomLeftNoGPU { + 0% { + -webkit-transform: translate(0,0); + } + + 20% { + -webkit-transform: translate(0,0); + } + + 100% { + -webkit-transform: translate(-10px,10px); + } +} + +@-moz-keyframes bounceBottomLeft { + 0% { + -moz-transform: translate(0,0); + } + + 20% { + -moz-transform: translate(0,0); + } + + 100% { + -moz-transform: translate(-10px,10px); + } +} + +@-o-keyframes bounceBottomLeft { + 0% { + margin-top: 0; + margin-left: 0; + } + + 20% { + margin-top: 0; + margin-left: 0; + } + + 100% { + margin-top: 10px; + margin-left: -10px; + } +} + +@keyframes bounceBottomLeft { + 0% { + transform: translate3d(0,0,0); + } + + 20% { + transform: translate3d(0,0,0); + } + + 100% { + transform: translate3d(-10px,10px,0); + } +} + +@keyframes bounceBottomLeftNoGPU { + 0% { + transform: translate(0,0); + } + + 20% { + transform: translate(0,0); + } + + 100% { + transform: translate(-10px,10px); + } +} + +@-webkit-keyframes fadeOutIn { + 0% { + opacity: 1; + } + + 20% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes fadeOutIn { + 0% { + opacity: 1; + } + + 20% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-ms-keyframes fadeOutIn { + 0% { + opacity: 1; + } + + 20% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes fadeOutIn { + 0% { + opacity: 1; + } + + 20% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@keyframes fadeOutIn { + 0% { + opacity: 1; + } + + 20% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-webkit-keyframes fadeInOut { + 0% { + opacity: 0; + } + + 20% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@-moz-keyframes fadeInOut { + 0% { + opacity: 0; + } + + 20% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@-ms-keyframes fadeInOut { + 0% { + opacity: 0; + } + + 20% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@-o-keyframes fadeInOut { + 0% { + opacity: 0; + } + + 20% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes fadeInOut { + 0% { + opacity: 0; + } + + 20% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@-webkit-keyframes fadeInOutIn { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes fadeInOutIn { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-ms-keyframes fadeInOutIn { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes fadeInOutIn { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@keyframes fadeInOutIn { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-webkit-keyframes highLight { + 0% { + -webkit-box-shadow: 0 0 30px 10px #abf0ea; + box-shadow: 0 0 30px 10px #abf0ea; + } + + 100% { + -webkit-box-shadow: 0 0 30px 10px #c00c0c; + box-shadow: 0 0 30px 10px #c00c0c; + } +} + +@-moz-keyframes highLight { + 0% { + -moz-box-shadow: 0 0 30px 10px #abf0ea; + box-shadow: 0 0 30px 10px #abf0ea; + } + + 100% { + -moz-box-shadow: 0 0 30px 10px #c00c0c; + box-shadow: 0 0 30px 10px #c00c0c; + } +} + +@-ms-keyframes highLight { + 0% { + -ms-box-shadow: 0 0 30px 10px #abf0ea; + box-shadow: 0 0 30px 10px #abf0ea; + } + + 100% { + -ms-box-shadow: 0 0 30px 10px #c00c0c; + box-shadow: 0 0 30px 10px #c00c0c; + } +} + +@-o-keyframes highLight { + 0% { + -o-box-shadow: 0 0 30px 10px #abf0ea; + box-shadow: 0 0 30px 10px #abf0ea; + } + + 100% { + -o-box-shadow: 0 0 30px 10px #c00c0c; + box-shadow: 0 0 30px 10px #c00c0c; + } +} + +@keyframes highLight { + 0% { + box-shadow: 0 0 30px 10px #abf0ea; + } + + 100% { + box-shadow: 0 0 30px 10px #c00c0c; + } +} + +@-webkit-keyframes wiggle { + from { + -webkit-transform: translate(-5px,0); + } + + 10% { + -webkit-transform: translate(5px,-2px); + } + + 20% { + -webkit-transform: translate(-5px,-2px); + } + + 30% { + -webkit-transform: translate(5px,-3px); + } + + 40% { + -webkit-transform: translate(-5px,-1px); + } + + 50% { + -webkit-transform: translate(5px,1px); + } + + 60% { + -webkit-transform: translate(-5px,3px); + } + + 70% { + -webkit-transform: translate(5px,1px); + } + + 80% { + -webkit-transform: translate(-5px,2px); + } + + 90% { + -webkit-transform: translate(5px,-1px); + } + + to { + -webkit-transform: translate(-5px,0); + } +} + +@-moz-keyframes wiggle { + from { + -moz-transform: translate(-5px,0); + } + + 10% { + -moz-transform: translate(5px,-2px); + } + + 20% { + -moz-transform: translate(-5px,-2px); + } + + 30% { + -moz-transform: translate(5px,-3px); + } + + 40% { + -moz-transform: translate(-5px,-1px); + } + + 50% { + -moz-transform: translate(5px,1px); + } + + 60% { + -moz-transform: translate(-5px,3px); + } + + 70% { + -moz-transform: translate(5px,1px); + } + + 80% { + -moz-transform: translate(-5px,2px); + } + + 90% { + -moz-transform: translate(5px,-1px); + } + + to { + -moz-transform: translate(-5px,0); + } +} + +@-ms-keyframes wiggle { + from { + -ms-transform: translate(-5px,0); + } + + 10% { + -ms-transform: translate(5px,-2px); + } + + 20% { + -ms-transform: translate(-5px,-2px); + } + + 30% { + -ms-transform: translate(5px,-3px); + } + + 40% { + -ms-transform: translate(-5px,-1px); + } + + 50% { + -ms-transform: translate(5px,1px); + } + + 60% { + -ms-transform: translate(-5px,3px); + } + + 70% { + -ms-transform: translate(5px,1px); + } + + 80% { + -ms-transform: translate(-5px,2px); + } + + 90% { + -ms-transform: translate(5px,-1px); + } + + to { + -ms-transform: translate(-5px,0); + } +} + +@keyframes wiggle { + from { + transform: translate(-5px,0); + } + + 10% { + transform: translate(5px,-2px); + } + + 20% { + transform: translate(-5px,-2px); + } + + 30% { + transform: translate(5px,-3px); + } + + 40% { + transform: translate(-5px,-1px); + } + + 50% { + transform: translate(5px,1px); + } + + 60% { + transform: translate(-5px,3px); + } + + 70% { + transform: translate(5px,1px); + } + + 80% { + transform: translate(-5px,2px); + } + + 90% { + transform: translate(5px,-1px); + } + + to { + transform: translate(-5px,0); + } +} + +.grepo_slider { + position: relative; + padding: 10px 33px; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.grepo_slider .button_down, +.grepo_slider .button_up { + position: absolute; + width: 18px; + height: 19px; + background-image: url(https://gpfr.innogamescdn.com/images/game/layout/button_2.40.png); + top: 50%; + margin-top: -10px; + cursor: pointer; +} + +.grepo_slider .button_down { + left: 5px; +} + +.grepo_slider .button_down:hover { + background-position: 0 -19px; +} + +.grepo_slider .button_down.disabled { + background-position: 0 -38px; +} + +.grepo_slider .button_up { + background-position: -18px 0; + right: 5px; +} + +.grepo_slider .button_up:hover { + background-position: -18px -19px; +} + +.grepo_slider .button_up.disabled { + background-position: -18px -38px; +} + +.grepo_slider .bar { + position: relative; +} + +.grepo_slider .bar, +.grepo_slider .bar .border_l, +.grepo_slider .bar .border_r { + background: url(https://gpfr.innogamescdn.com/images/game/components/slider_sprite.png) repeat-x 0 0; + height: 8px; +} + +.grepo_slider .bar .border_l, +.grepo_slider .bar .border_r { + position: absolute; + width: 3px; + top: 0; +} + +.grepo_slider .bar .border_l { + background-position: 0 -8px; + left: -3px; +} + +.grepo_slider .bar .border_r { + background-position: -3px -8px; + right: -3px; +} + +.grepo_slider .slider_handle { + margin: -5px 0 0 -9px; + top: 0; + width: 18px; + height: 18px; + background: url(https://gpfr.innogamescdn.com/images/game/components/slider_sprite.png) no-repeat 100% 100%; + cursor: pointer; + z-index: 1; + position: absolute; +} + +.grepo_slider.disabled .slider_handle { + cursor: default; +} + +.tooltip_power { + padding: 0 5px 5px 95px; +} + +.tooltip_power .power_icon86x86 { + width: 86px; + height: 86px; + position: absolute; + top: 6px; + left: 6px; +} + +.tooltip_power h3 { + line-height: 20px; + font-weight: 700; + font-size: 15px; +} + +.tooltip_power p { + font-size: 13px; + line-height: 17px; + margin: 13px 0; +} + +.tooltip_power .effect { + font-weight: 700; +} + +.tooltip_power .favor { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -150px; + line-height: 28px; + padding-left: 35px; + margin-bottom: 3px; +} + +.tooltip_power p.timelife { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat 0 0; + line-height: 28px; + padding-left: 35px; + margin-top: 3px; +} + +.tooltip_power .rewards_table td, +.tooltip_power .rewards_table th { + text-align: center; + padding: 1px 4px; + border: 1px solid #4e3f2e; + font-size: 11px; +} + +.tooltip_power .rewards_table th { + background-color: #4e3f2e; + color: #fff; + font-weight: 400; +} + +div.temple_power_popup_image { + background-repeat: no-repeat; +} + +.tooltip_hor_divider { + height: 3px; + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/tooltip_sprite.png) repeat-x 0 0; + margin: 4px -4px 4px -3px; +} + +.item_shop_tooltip.grepolympia .cost_icon { + background-image: url(https://gpfr.innogamescdn.com/images/game/item_shop/shop_sprite_2.25.png); +} + +.island_resource_info { + margin-left: 68px; +} + +.event_rewards_tooltip { + padding: 5px; +} + +.event_rewards_tooltip p { + margin: 0; + padding: 0; +} + +.event_rewards_tooltip .reward { + position: relative; + overflow: hidden; + padding-left: 80px; + min-height: 71px; +} + +.event_rewards_tooltip .reward h3 { + margin: 5px 0; + padding: 0; +} + +.event_rewards_tooltip .reward .icon { + position: absolute; + left: 0; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); +} + +.event_rewards_tooltip .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: relative; + margin: 0 auto; +} + +.textarea { + height: 60px; + width: 160px; + padding: 4px; + position: relative; + display: inline-block; + overflow: hidden; + vertical-align: middle; +} + +.textarea .bottom, +.textarea .bottomleft, +.textarea .left, +.textarea .right, +.textarea .top, +.textarea .topleft { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/components/textarea_frame_2.39.png) no-repeat 0 0; + z-index: 1; +} + +.textarea .left, +.textarea .right { + width: 5px; + top: 6px; + bottom: 5px; +} + +.textarea .left { + left: 0; + background-repeat: repeat-y; +} + +.textarea .right { + right: 0; + background-position: -6px 0; + background-repeat: repeat-y; +} + +.textarea .bottomleft, +.textarea .topleft { + width: 5px; + height: 6px; + left: 0; +} + +.textarea .topleft { + top: 0; + background-position: -12px 0; +} + +.textarea .bottomleft { + bottom: 0; + background-position: -12px bottom; + height: 5px; +} + +.textarea .bottom, +.textarea .top { + height: 6px; + left: 5px; + right: 0; +} + +.textarea .top { + top: 0; + background-position: right 0; +} + +.textarea .bottom { + bottom: 0; + background-position: right bottom; + height: 5px; +} + +.textarea .middle { + height: 100%; + width: 100%; + margin: -2px; + padding: 2px; + background: #ffedc5 url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + position: relative; + overflow: hidden; +} + +.textarea .middle textarea { + background-color: transparent; + width: 100%; + height: 100%; + padding: 0; + margin: 0; + border: 0; + display: block; + position: relative; + line-height: 15px; + vertical-align: middle; + color: #000; + font-size: 11px; + font-family: Verdana,Arial,Helvetica,sans-serif; + overflow: hidden; +} + +.textarea .error-msg { + display: none; + margin: 2px -4px; + padding: 4px; + line-height: 15px; + color: red; + font-weight: 700; + background: rgba(255,237,197,.7); + font-size: 11px; + font-family: Verdana,Arial,Helvetica,sans-serif; +} + +.textarea.textarea_error .error-msg { + display: block; +} + +.textarea.textarea_error, +.textarea.textarea_error .middle { + overflow: visible; +} + +.reward_scroll_large { + height: 122px; + width: 300px; + position: relative; +} + +.reward_scroll_large>div { + position: absolute; +} + +.reward_scroll_large .scroll_left { + background-image: url(https://gpfr.innogamescdn.com/images/game/scroll/large/scroll_left.png); + width: 85px; + height: 122px; + left: 0; +} + +.reward_scroll_large .scroll_right { + background-image: url(https://gpfr.innogamescdn.com/images/game/scroll/large/scroll_right.png); + width: 85px; + height: 122px; + right: 0; +} + +.reward_scroll_large .scroll_middle { + background-image: url(https://gpfr.innogamescdn.com/images/game/scroll/large/scroll_middle.png); + width: 197px; + height: 122px; + background-repeat: repeat-x; + left: 85px; + right: 85px; + width: auto; +} + +.reward_scroll_large .scroll_content { + position: absolute; + left: -50px; + right: -50px; + height: 73px; + top: 18px; +} + +.scrollbar-native.horizontal { + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 20px; +} + +.scrollbar-native.horizontal .scrollbar-resizer { + position: relative; + height: 1px; +} + +.scrollbar.vertical { + position: absolute; + overflow: hidden; +} + +.scrollbar.vertical.disabled { + cursor: default; +} + +.scrollbar.vertical .scrollbar-arrow1, +.scrollbar.vertical .scrollbar-arrow2 { + cursor: pointer; + position: absolute; + width: 29px; + height: 62px; + background: url(https://gpfr.innogamescdn.com/images/game/scrollbar_sprite.png) no-repeat 0 0; +} + +.scrollbar.vertical .scrollbar-arrow1 { + background-position: 0 0; + top: 0; + left: 0; +} + +.scrollbar.vertical .scrollbar-arrow1:hover { + background-position: -31px 0; +} + +.scrollbar.vertical .scrollbar-arrow1:active { + background-position: -62px 0; +} + +.scrollbar.vertical .scrollbar-arrow1.disabled, +.scrollbar.vertical.disabled .scrollbar-arrow1 { + background-position: -94px 1px; + cursor: default; +} + +.scrollbar.vertical .scrollbar-arrow2 { + background-position: 0 -65px; + bottom: 0; + left: 0; +} + +.scrollbar.vertical .scrollbar-arrow2:hover { + background-position: -31px -65px; +} + +.scrollbar.vertical .scrollbar-arrow2:active { + background-position: -62px -65px; +} + +.scrollbar.vertical .scrollbar-arrow2.disabled, +.scrollbar.vertical.disabled .scrollbar-arrow2 { + background-position: -94px -65px; + cursor: default; +} + +.scrollbar.vertical { + top: 0; + right: 0; + bottom: 0; + width: 29px; +} + +.scrollbar.vertical .scrollbar-slider-container { + position: absolute; + top: 62px; + bottom: 62px; + left: 0; + width: 29px; + overflow: visible; + display: block; +} + +.scrollbar.vertical.disabled .scrollbar-slider-container { + opacity: .4; +} + +.scrollbar.vertical .scrollbar-slider { + width: 23px; + margin: 0 2px 0 3px; + position: absolute; + top: 0; + left: 0; + overflow: visible; + background-color: #000; + cursor: pointer; +} + +.scrollbar.vertical.disabled .scrollbar-slider { + cursor: default; +} + +.scrollbar .skinable-scrollbar-background { + margin-left: 11px; + height: 100%; +} + +.scrollbar .skinable-scrollbar-background-top { + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/scrollbar_sprite.png) -69px 0; + width: 7px; + height: 6px; + position: absolute; + top: -6px; +} + +.scrollbar .skinable-scrollbar-background-center { + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/scrollbar_sprite.png) -76px 0; + width: 7px; + height: 100%; +} + +.scrollbar .skinable-scrollbar-background-bottom { + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/scrollbar_sprite.png) -83px 0; + width: 7px; + height: 6px; + position: absolute; + bottom: -6px; +} + +.scrollbar .scrollbar-slider { + min-height: 1px!important; + width: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/scrollbar_sprite.png) -23px 0; +} + +.scrollbar .skinable-scrollbar-slider-top { + width: 23px; + height: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/scrollbar_sprite.png) 0 0; + position: absolute; + top: -6px; +} + +.scrollbar .skinable-scrollbar-slider-center { + width: 23px; +} + +.scrollbar .skinable-scrollbar-slider-bottom { + width: 23px; + height: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/scrollbar_sprite.png) -46px 0; + position: absolute; + bottom: -6px; +} + +.round.scrollbar.vertical .scrollbar-slider, +.round.scrollbar.vertical .scrollbar-slider-container { + overflow: visible; +} + +.round.scrollbar .skinable-scrollbar-background { + margin-left: 11px; + top: 13px; + bottom: 13px; + height: auto; + position: absolute; +} + +.round.scrollbar .skinable-scrollbar-background-top { + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/round_scrollbar_sprite.png) -72px center; + width: 7px; + height: 6px; + position: absolute; + top: -6px; +} + +.round.scrollbar .skinable-scrollbar-background-center { + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/round_scrollbar_sprite.png) -79px 0; + width: 7px; + height: 100%; +} + +.round.scrollbar .skinable-scrollbar-background-bottom { + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/round_scrollbar_sprite.png) -86px center; + width: 7px; + height: 6px; + position: absolute; + bottom: -6px; +} + +.round.scrollbar .scrollbar-slider { + min-height: 1px!important; + width: 24px; + background: 0 0; +} + +.round.scrollbar .skinable-scrollbar-slider-top { + width: 24px; + height: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/round_scrollbar_sprite.png) 0 0; + position: absolute; + top: 0; +} + +.round.scrollbar .skinable-scrollbar-slider-center { + width: 24px; + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/round_scrollbar_sprite.png) -24px 0; + position: absolute; + top: 11px; + bottom: 11px; +} + +.round.scrollbar .skinable-scrollbar-slider-bottom { + width: 24px; + height: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/round_scrollbar_sprite.png) -48px bottom; + position: absolute; + bottom: 0; +} + +.scrollbar.osx { + position: absolute; + overflow: hidden; + background-color: #fafafa; +} + +.scrollbar.osx .scrollbar-arrow1, +.scrollbar.osx .scrollbar-arrow2 { + display: none; +} + +.scrollbar.osx.vertical { + top: 0; + right: 0; + bottom: 0; + width: 13px; + border-left: 1px solid #e4e4e4; + border-right: 1px solid #efefef; +} + +.scrollbar.osx.vertical .scrollbar-slider-container { + position: absolute; + top: 3px; + bottom: 3px; + left: 0; + width: 13px; +} + +.scrollbar.osx.vertical .scrollbar-slider { + width: 8px; + background-color: #c2c2c2; + -moz-border-radius: 7px; + border-radius: 7px; + margin: 0 2px 0 3px; + position: absolute; + top: 0; + left: 0; + overflow: hidden; +} + +.scrollbar.osx.vertical .scrollbar-slider:hover { + background-color: #7e7e7e; +} + +.scrollbar.osx.horizontal { + left: 0; + right: 0; + bottom: 0; + height: 13px; + border-top: 1px solid #e4e4e4; + border-bottom: 1px solid #efefef; +} + +.scrollbar.osx.horizontal .scrollbar-slider-container { + position: absolute; + left: 3px; + right: 3px; + top: 0; + height: 13px; +} + +.scrollbar.osx.horizontal .scrollbar-slider { + height: 8px; + background-color: #c2c2c2; + -moz-border-radius: 7px; + border-radius: 7px; + margin: 3px 0 2px 0; + position: absolute; + top: 0; + left: 0; + overflow: hidden; +} + +.scrollbar.osx.horizontal .scrollbar-slider:hover { + background-color: #7e7e7e; +} + +.scrollbar.small_scrollbar { + width: 14px; + right: 2px; + top: 2px; + bottom: 2px; +} + +.scrollbar.small_scrollbar .scrollbar-arrow1, +.scrollbar.small_scrollbar .scrollbar-arrow2 { + display: none; +} + +.scrollbar.small_scrollbar .scrollbar-slider-container { + top: 7px; + right: 0; + width: 14px; + bottom: 3px; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-background { + margin-left: 0; + width: 14px; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-background-bottom, +.scrollbar.small_scrollbar .skinable-scrollbar-background-center, +.scrollbar.small_scrollbar .skinable-scrollbar-background-top { + width: 14px; + background: url(https://gpfr.innogamescdn.com/images/game/scrollbar_small_sprite.png) no-repeat 0 0; + height: auto; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-background-top { + height: 7px; + background-position: -1px 0; + top: 0; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-background-center { + background-position: -17px 0; + background-repeat: repeat-y; + position: absolute; + top: 7px; + bottom: 6px; + height: auto; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-background-bottom { + height: 6px; + background-position: -1px -8px; + bottom: 0; +} + +.scrollbar.small_scrollbar .scrollbar-slider { + width: 6px; + background: 0 0; + margin: 0 2px 0 4px; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-slider-bottom, +.scrollbar.small_scrollbar .skinable-scrollbar-slider-center, +.scrollbar.small_scrollbar .skinable-scrollbar-slider-top { + width: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/scrollbar_small_sprite.png) no-repeat 0 0; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-slider-top { + top: 0; + height: 7px; + background-position: -32px 0; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-slider-center { + top: 7px; + bottom: 3px; + background-position: -39px 0; + background-repeat: repeat-y; + position: absolute; +} + +.scrollbar.small_scrollbar .skinable-scrollbar-slider-bottom { + bottom: 0; + height: 3px; + background-position: -32px -9px; +} + +.scrollbar.narrow { + width: 6px; + right: 4px; + top: 2px; + bottom: 2px; + overflow: visible; +} + +.scrollbar.narrow .scrollbar-arrow1, +.scrollbar.narrow .scrollbar-arrow2 { + display: none; +} + +.scrollbar.narrow .scrollbar-slider-container { + top: 7px; + right: 0; + width: 6px; + bottom: 3px; +} + +.scrollbar.narrow .skinable-scrollbar-background { + width: 6px; + margin-left: 0; +} + +.scrollbar.narrow .skinable-scrollbar-background-bottom, +.scrollbar.narrow .skinable-scrollbar-background-center, +.scrollbar.narrow .skinable-scrollbar-background-top { + width: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/narrow_sprite.png) no-repeat 0 0; + height: auto; +} + +.scrollbar.narrow .skinable-scrollbar-background-top { + height: 8px; + background-position: -33px 0; + top: 0; +} + +.scrollbar.narrow .skinable-scrollbar-background-center { + background-position: -41px 0; + background-repeat: repeat-y; + position: absolute; + top: 8px; + bottom: 4px; + height: auto; +} + +.scrollbar.narrow .skinable-scrollbar-background-bottom { + height: 4px; + background-position: -33px -9px; + bottom: 0; +} + +.scrollbar.narrow .scrollbar-slider { + width: 14px; + background: 0 0; + margin-left: -4px; +} + +.scrollbar.narrow .skinable-scrollbar-slider-bottom, +.scrollbar.narrow .skinable-scrollbar-slider-center, +.scrollbar.narrow .skinable-scrollbar-slider-top { + width: 14px; + background: url(https://gpfr.innogamescdn.com/images/game/components/scrollbar/narrow_sprite.png) no-repeat 0 0; +} + +.scrollbar.narrow .skinable-scrollbar-slider-top { + top: 0; + height: 8px; + background-position: -1px 0; +} + +.scrollbar.narrow .skinable-scrollbar-slider-center { + top: 8px; + bottom: 7px; + background-position: -17px 0; + background-repeat: repeat-y; + position: absolute; +} + +.scrollbar.narrow .skinable-scrollbar-slider-bottom { + bottom: 0; + height: 7px; + background-position: -1px -9px; +} + +.scrollbar.blue, +.scrollbar.purple, +.scrollbar.red { + width: 17px; +} + +.scrollbar.blue .scrollbar-arrow1, +.scrollbar.blue .scrollbar-arrow1.disabled, +.scrollbar.purple .scrollbar-arrow1, +.scrollbar.purple .scrollbar-arrow1.disabled, +.scrollbar.red .scrollbar-arrow1, +.scrollbar.red .scrollbar-arrow1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -34px 0; + width: 17px; + height: 18px; +} + +.scrollbar.blue .scrollbar-arrow2, +.scrollbar.blue .scrollbar-arrow2.disabled, +.scrollbar.purple .scrollbar-arrow2, +.scrollbar.purple .scrollbar-arrow2.disabled, +.scrollbar.red .scrollbar-arrow2, +.scrollbar.red .scrollbar-arrow2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat 0 0; + width: 17px; + height: 18px; +} + +.scrollbar.blue .scrollbar-arrow1:hover, +.scrollbar.purple .scrollbar-arrow1:hover, +.scrollbar.red .scrollbar-arrow1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -51px 0; + width: 17px; + height: 18px; +} + +.scrollbar.blue .scrollbar-arrow2:hover, +.scrollbar.purple .scrollbar-arrow2:hover, +.scrollbar.red .scrollbar-arrow2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -17px 0; + width: 17px; + height: 18px; +} + +.scrollbar.blue .skinable-scrollbar-background, +.scrollbar.purple .skinable-scrollbar-background, +.scrollbar.red .skinable-scrollbar-background { + margin: 0; +} + +.scrollbar.blue .skinable-scrollbar-background .skinable-scrollbar-background-top, +.scrollbar.purple .skinable-scrollbar-background .skinable-scrollbar-background-top, +.scrollbar.red .skinable-scrollbar-background .skinable-scrollbar-background-top { + background: initial; +} + +.scrollbar.blue .skinable-scrollbar-background .skinable-scrollbar-background-bottom, +.scrollbar.purple .skinable-scrollbar-background .skinable-scrollbar-background-bottom, +.scrollbar.red .skinable-scrollbar-background .skinable-scrollbar-background-bottom { + background: initial; +} + +.scrollbar.blue .skinable-scrollbar-background .skinable-scrollbar-background-center, +.scrollbar.purple .skinable-scrollbar-background .skinable-scrollbar-background-center, +.scrollbar.red .skinable-scrollbar-background .skinable-scrollbar-background-center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -68px 0; + width: 17px; + height: 18px; + margin: 0; + height: 100%; + background-repeat: repeat-y; +} + +.scrollbar.blue .scrollbar-slider, +.scrollbar.purple .scrollbar-slider, +.scrollbar.red .scrollbar-slider { + margin-left: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -100px 0; + width: 15px; + height: 18px; + height: initial; + background-repeat: repeat-y; +} + +.scrollbar.blue .skinable-scrollbar-slider-top, +.scrollbar.purple .skinable-scrollbar-slider-top, +.scrollbar.red .skinable-scrollbar-slider-top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -205px 0; + width: 15px; + height: 2px; + top: initial; +} + +.scrollbar.blue .skinable-scrollbar-slider-bottom, +.scrollbar.purple .skinable-scrollbar-slider-bottom, +.scrollbar.red .skinable-scrollbar-slider-bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -85px 0; + width: 15px; + height: 2px; + bottom: 0; +} + +.scrollbar.blue .scrollbar-slider-container, +.scrollbar.purple .scrollbar-slider-container, +.scrollbar.red .scrollbar-slider-container { + top: 18px; + bottom: 18px; + width: 17px; +} + +.scrollbar.blue.disabled .scrollbar-arrow1, +.scrollbar.purple.disabled .scrollbar-arrow1, +.scrollbar.red.disabled .scrollbar-arrow1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -34px 0; + width: 17px; + height: 18px; +} + +.scrollbar.blue.disabled .scrollbar-arrow2, +.scrollbar.purple.disabled .scrollbar-arrow2, +.scrollbar.red.disabled .scrollbar-arrow2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat 0 0; + width: 17px; + height: 18px; +} + +.scrollbar.red .scrollbar-slider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -175px 0; + width: 15px; + height: 18px; + height: initial; + background-repeat: repeat-y; +} + +.scrollbar.red .skinable-scrollbar-slider-bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -160px 0; + width: 15px; + height: 2px; +} + +.scrollbar.red .skinable-scrollbar-slider-top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -190px 0; + width: 15px; + height: 2px; +} + +.scrollbar.purple .scrollbar-slider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -130px 0; + width: 15px; + height: 18px; + height: initial; + background-repeat: repeat-y; +} + +.scrollbar.purple .skinable-scrollbar-slider-bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -115px 0; + width: 15px; + height: 2px; +} + +.scrollbar.purple .skinable-scrollbar-slider-top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/components/scrollbar/vertical_f063e7a.png) no-repeat -145px 0; + width: 15px; + height: 2px; +} + +.attack_planner.attacks .game_border { + margin: 10px 14px 0; +} + +.attack_planner.attacks .attacks_list { + height: 420px; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.attack_planner.attacks .attacks_list .selected { + background-image: none; +} + +.attack_planner.attacks li { + min-height: 53px; + border-bottom: 1px solid #d1bf90; + position: relative; + overflow: hidden; + display: block; + height: auto; + padding: 0; +} + +.attack_planner.attacks li.no_results_found { + border-bottom: 0; + padding: 3px 6px 3px 6px; + font-family: Verdana,Arial,Helvetica,sans-serif; + font-size: 13px; + color: #000; +} + +.attack_planner .attacks_list .attack_type32x32 { + position: absolute; + top: 11px; + left: 11px; +} + +.attack_planner .attacks_list .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/unit_overview/arrow_right.png) no-repeat 0 0; + width: 11px; + height: 25px; + position: absolute; + top: 11px; + left: 46px; +} + +.attack_planner .attacks_list .small_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/report/right.png) no-repeat 0 0; + width: 12px; + height: 13px; + display: inline-block; + position: relative; + top: 4px; + left: 3px; + padding-right: 4px; +} + +.attack_planner.attacks .show_units { + position: absolute; + top: 3px; + right: 3px; +} + +.attack_planner .row1 { + margin-top: 2px; +} + +.attack_planner .row1 strong { + margin-left: 2px; +} + +.attack_planner .row1 span { + color: #893e0e; + cursor: pointer; +} + +.attack_planner .row1 span, +.attack_planner .row3 span { + font-weight: 700; +} + +.attack_planner .row1 span:hover { + color: #0584be; +} + +.attack_planner .pgr_attacks_list { + float: right; +} + +.attack_planner.attacks .buttons_bar { + padding: 0; + margin: 10px 12px 0; +} + +.attack_planner.attacks .attack_icon { + bottom: 0; + right: 1px; +} + +.attack_planner.index { + margin: 10px; +} + +.attack_planner .plan_list_table .ap_name { + width: 138px; +} + +.attack_planner .plan_list_table .ap_description { + width: 180px; +} + +.attack_planner .plan_list_table .ap_targets { + width: 110px; +} + +.attack_planner .plan_list_table .ap_attacks { + width: 110px; +} + +.attack_planner .plan_list_table .ap_supports { + width: 110px; +} + +.attack_planner .plan_list_table .ap_delete { + width: 20px; +} + +.attack_planner .plan_list_table td, +.attack_planner .plan_list_table th { + text-align: center; +} + +.attack_planner .plan_list_table .attack_plan_description { + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/ally/forum_mod.png) no-repeat 0 0; + height: 20px; +} + +.attack_planner .plan_list_table .attack_plan_description span { + padding: 0 0 0 25px; + line-height: 22px; + float: left; + height: 22px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + width: 140px; + text-align: left; +} + +.attack_planner .plan_list_table .attack_plan { + background-repeat: no-repeat; + background-position: 0 0; + padding: 16px 0 0 0; + height: 16px; + width: 32px; + margin: 0 10px; + position: relative; + display: inline-block; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; + text-align: right; +} + +.attack_planner .plan_list_table .attack_plan.target { + background-image: url(https://gpfr.innogamescdn.com/images/game/unit_overview/ask_farm_for_units.png); +} + +.attack_planner .plan_list_table .attack_plan.attacks { + background-image: url(https://gpfr.innogamescdn.com/images/game/unit_overview/attack_land.png); +} + +.attack_planner .plan_list_table .attack_plan.supports { + background: url(https://gpfr.innogamescdn.com/images/game/unit_overview/support.png); +} + +.attack_planner .pgr_plan_list { + float: right; +} + +.wnd_create_new_plan .game_border { + position: absolute; + top: 100px; + left: 50%; + width: 400px; + margin: 0 0 0 -200px; +} + +.wnd_create_new_plan .content { + overflow: hidden; +} + +.wnd_create_new_plan .lbl_name { + margin: 10px 0 5px 10px; +} + +.wnd_create_new_plan .middle textarea { + margin: 1px; +} + +.wnd_create_new_plan .lbl_descr, +.wnd_create_new_plan .lbl_name, +.wnd_create_new_plan .lbl_target, +.wnd_create_new_plan .rbtn_search_by { + margin: 5px 0 5px 10px; +} + +.wnd_create_new_plan .txt_plan_name, +.wnd_create_new_plan .txt_plan_target, +.wnd_create_new_plan .txta_plan_descr { + margin: 0 0 0 10px; +} + +.wnd_create_new_plan .txta_plan_descr { + margin-bottom: 20px; +} + +.wnd_create_new_plan .btn_cancel_plan { + margin: 2px 3px 0 0; + float: right; +} + +.wnd_create_new_plan .btn_create_plan { + margin: 2px 0 0 3px; +} + +.wnd_create_new_plan .textarea .error-msg { + background: 0 0; + width: 370px; +} + +.attack_planner.real_time_calculator { + width: 100%; +} + +.attack_planner.real_time_calculator .gp_town_link { + font-weight: 700; + cursor: pointer; +} + +.attack_planner .bar_top { + position: relative; + overflow: hidden; + height: 60px; + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +.attack_planner .target_container { + color: #804000; + padding: 9px 0 0 10px; + font-size: 11px; +} + +.attack_planner .target_container span { + font-weight: 700; +} + +.attack_planner .dd_town_groups { + position: absolute; + bottom: 7px; + left: 10px; + width: 160px; +} + +.attack_planner .txt_search_in_towns { + position: absolute; + bottom: 7px; + left: 198px; + width: 160px; +} + +.attack_planner .rb_sort_by { + position: absolute; + right: 13px; + top: 14px; +} + +.attack_planner .btn_order_towns_by { + bottom: 8px; + left: 174px; + position: absolute; +} + +.attack_planner .bar_header { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/fixed_table_header_bg2.jpg) repeat-x 0 0; + position: relative; + overflow: visible; + height: 66px; +} + +.attack_planner .btn_clear_all_textboxes, +.attack_planner .btn_reset_hidden_units, +.attack_planner .btn_show_scheduled_units, +.attack_planner .btn_show_units_in_the_queue, +.attack_planner .btn_show_units_on_the_way { + position: absolute; + top: 10px; +} + +.attack_planner .btn_show_units_on_the_way { + left: 10px; +} + +.attack_planner .btn_show_units_in_the_queue { + display: none; +} + +.attack_planner .btn_reset_hidden_units { + left: 141px; +} + +.attack_planner .btn_show_scheduled_units { + left: 36px; +} + +.attack_planner .btn_clear_all_textboxes { + top: 44px; + left: 151px; +} + +.attack_planner .details_container { + height: 374px; + width: 767px; + position: relative; + overflow-x: hidden; + overflow-y: auto; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.attack_planner .details_container .town_info { + width: 173px; + position: absolute; + overflow: hidden; + top: 0; + left: 0; + z-index: 10; +} + +.attack_planner .data_container { + top: 0; + left: 173px; + width: 578px; + position: absolute; + overflow: hidden; +} + +.attack_planner .details_container .units_info { + position: relative; + overflow: hidden; + z-index: 5; +} + +.attack_planner .scrollbar-native.horizontal { + bottom: 0; + left: 175px; + right: 16px; + z-index: 20; +} + +.attack_planner .top_border { + height: 3px; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/attack_planner/borders.png) repeat-x 0 0; +} + +.attack_planner .bottom_border { + height: 8px; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/attack_planner/borders.png) repeat-x 0 -4px; +} + +.attack_planner .visibility_limiter { + margin-left: 173px; + overflow: hidden; + position: relative; + width: 578px; + height: 66px; +} + +.attack_planner .units_header { + height: 66px; + overflow: hidden; + position: absolute; + width: auto; + top: 0; + left: 0; + table-layout: fixed; + border-spacing: 3px 0; +} + +.attack_planner .units_header input { + text-align: center; +} + +.attack_planner .units_header td { + min-width: 42px; + text-align: center; + height: 68px; + position: relative; + overflow: hidden; +} + +.attack_planner .units_header td.removed { + display: none; +} + +.attack_planner .units_header .btn_show_all_units { + position: absolute; + top: 10px; + left: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -73px; + width: 22px; + height: 23px; +} + +.attack_planner .units_header .btn_show_all_units.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -50px; + width: 22px; + height: 23px; +} + +.attack_planner .units_header .textbox { + width: 53px; +} + +.attack_planner .units_header .unit_icon40x40 { + border: 1px solid #362f2d; + margin: 0 auto 1px auto; + display: block; + overflow: hidden; + position: relative; + cursor: pointer; +} + +.attack_planner .units_header .unit_icon40x40.selected { + border-color: #73e837; +} + +.attack_planner .remove_column { + width: 10px; + height: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -472px -152px; + position: absolute; + top: 0; + right: 0; + display: none; + cursor: pointer; +} + +.attack_planner .units_header .unit_icon40x40:hover .remove_column { + display: block; +} + +.attack_planner .helper_row { + position: absolute; + display: block; + left: 0; + right: 0; + overflow: hidden; +} + +.attack_planner .helper_row { + height: auto; +} + +.attack_planner .scroll_simulator { + position: relative; + width: 1px; +} + +.attack_planner .empty_message, +.attack_planner .no_units_at_all_msg { + display: none; + text-align: center; + padding: 5px; +} + +.attack_planner .js-empty .empty_message, +.attack_planner .no_units_in_all_towns .no_units_at_all_msg { + display: block; +} + +.attack_planner .no_units_in_all_towns .data_container, +.attack_planner .no_units_in_all_towns .town_info { + display: none; +} + +.attack_planner .town_info .gp_town_link { + font-size: 11px; +} + +.attack_planner .town_box, +.attack_planner .units_box { + height: 50px; + position: relative; + overflow: hidden; +} + +.attack_planner .even, +.attack_planner .odd { + border-bottom: 0; +} + +.attack_planner .town_box .town_name_box { + background-color: #fae6c1; + border: 1px solid #ddc7a0; + border-left-width: 0; + padding: 3px 6px; + position: relative; + overflow: hidden; + line-height: 14px; + margin-top: 3px; +} + +.attack_planner .selected .town_name_box { + cursor: pointer; +} + +.attack_planner .attack_town_button { + width: 15px; + height: 16px; + position: absolute; + bottom: 2px; + right: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -291px -349px; + cursor: pointer; +} + +.attack_planner .units_box { + height: auto; +} + +.attack_planner .units_box table { + table-layout: fixed; + position: relative; + border-spacing: 3px; +} + +.attack_planner .click_detection { + cursor: pointer; +} + +.textboxes_row td.amount.no_units.inactive { + visibility: hidden; +} + +.attack_planner .units_box td { + background-color: #fff1d3; + border: 1px solid #e3d0ad; + height: 20px; + width: 51px; + padding: 0; + text-align: center; + font-size: 11px; + table-layout: fixed; +} + +.attack_planner .units_box td.no_units { + border-color: transparent; + background-color: transparent; +} + +.attack_planner .units_box td.duration { + font-size: 9px; + border-color: transparent; + background-color: transparent; +} + +.attack_planner .units_box td.duration.no_units { + color: #d3b496; +} + +.attack_planner .units_box td.duration.show_amount { + cursor: pointer; +} + +.attack_planner .plan_specification { + display: none; + height: 180px; +} + +.attack_planner .town_info .plan_specification { + height: 160px; +} + +.attack_planner .selected .plan_specification { + display: block; +} + +.attack_planner .textboxes_row { + display: none; +} + +.attack_planner .textboxes_row .textbox input { + text-align: center; +} + +.attack_planner .selected .textboxes_row { + display: table-row; +} + +.attack_planner .attack_details, +.attack_planner .attack_details .divider, +.attack_planner .attack_details .info, +.attack_planner .attack_details .time { + position: relative; + overflow: hidden; +} + +.attack_planner .attack_details .time { + margin-top: 9px; +} + +.attack_planner .attack_details .divider { + border: 1px solid #78674d; + height: 1px; + position: relative; + overflow: hidden; + margin-top: 6px; +} + +.attack_planner .info .icon { + padding: 9px 5px 0 26px; + height: 17px; + font-size: 12px; + line-height: 14px; + position: relative; +} + +.attack_planner .info div { + position: relative; + overflow: hidden; + padding: 9px 5px 0 26px; + float: left; + height: 17px; + font-size: 12px; + line-height: 14px; +} + +.attack_planner .info .ships_small { + padding-left: 21px; +} + +.attack_planner .info .ships_big { + padding-left: 22px; +} + +.attack_planner .info .morale { + padding-left: 17px; +} + +.attack_planner .info .traveltime { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/traveltime.png) no-repeat 0 0; +} + +.attack_planner .info .resources { + padding: 9px 5px 0 0; +} + +.attack_planner .info .resources .icon { + padding: 0; + display: inline-block; + background-position: 0 -16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.attack_planner .info .resources .text { + vertical-align: top; +} + +.attack_planner .info .morale, +.attack_planner .info .ships_big, +.attack_planner .info .ships_small { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat 0 0; +} + +.attack_planner .info .ships_small { + background-position: -403px -174px; + height: 16px; + top: 6px; + padding-top: 3px; + cursor: pointer; +} + +.attack_planner .info .ships_big { + background-position: -403px -151px; + height: 18px; + top: 6px; + padding-top: 3px; + cursor: pointer; +} + +.attack_planner .info .morale { + background-position: -403px -193px; + height: 20px; + top: 6px; + padding-top: 3px; +} + +.attack_planner .time .clock { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat; + bottom: 4px; + float: left; + height: 30px; + position: relative; + width: 30px; +} + +.attack_planner .time .radiobutton, +.attack_planner .time .spinner_horizontal { + float: left; +} + +.attack_planner .time .spinner_horizontal .body input { + text-align: center; +} + +.attack_planner .time .comma, +.attack_planner .time .dot { + float: left; + height: 16px; + line-height: 14px; + padding-top: 8px; +} + +.attack_planner .time .comma { + padding-right: 5px; +} + +.attack_planner .sp_attack_day, +.attack_planner .sp_attack_month { + width: 65px; +} + +.attack_planner .sp_attack_day { + margin-left: 3px; +} + +.attack_planner .sp_attack_year { + width: 85px; +} + +.attack_planner .sp_attack_time { + width: 100px; +} + +.attack_planner .rb_attack_type { + margin-left: 7px; +} + +.attack_planner .btn_add_plan { + margin-top: 5px; +} + +.attack_planner #dd_select_plan { + min-width: 150px; +} + +.attack_planner.show_plan { + position: relative; + overflow: hidden; + padding-bottom: 14px; +} + +.attack_planner .attacks_list_box, +.attack_planner .targets_list_box { + position: relative; + float: left; + width: 366px; +} + +.attack_planner .targets_list_box { + margin-left: 18px; +} + +.attack_planner.show_plan ul { + height: 388px; +} + +.attack_planner .attacks_list_box li { + padding: 2px 0 0 0; + line-height: 14px; + font-size: 10px; +} + +.attack_planner .attacks_list_box li.no_results_found { + line-height: 21px; + font-size: 11px; +} + +.attack_planner.show_plan .row1, +.attack_planner.show_plan .row2, +.attack_planner.show_plan .row3, +.attack_planner.show_plan .row4 { + margin: 0 0 0 46px; + line-height: 14px; +} + +.attack_planner .btn_edit_rights { + margin-top: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/ally/internal_forum.png) no-repeat 0 0; + padding: 4px 0 0 25px; + float: left; + display: block; + color: #833f00; + font-weight: 700; + height: 16px; + line-height: 13px; + margin-left: 20px; + cursor: pointer; +} + +.attack_planner .bar { + position: relative; + overflow: hidden; + margin-top: 6px; + clear: both; +} + +.attack_planner .rbtn_sort_attack_list { + float: right; + margin-right: 20px; +} + +.attack_planner .btn_add_attack, +.attack_planner .btn_add_target, +.attack_planner .btn_remove_attack, +.attack_planner .btn_remove_target { + float: right; + top: 2px; +} + +.attack_planner.show_plan .game_list_footer { + padding: 3px 3px; +} + +.attack_planner.show_plan .game_list_footer .square.plus { + margin-right: 2px; +} + +.attack_planner .btn_go_to_plan_list { + margin: 8px 0 0 20px; + cursor: pointer; + display: inline-block; + color: #833f00; + font-weight: 700; +} + +.attack_planner .btn_open_new_plan_window { + margin-top: 6px; +} + +.attack_planner.show_plan .attacks_row { + position: relative; + overflow: hidden; + min-height: 57px; + height: auto; + border-bottom: 1px solid #d0be97; +} + +.attack_planner.show_plan .attacks_list li.selected { + background: 0 0; + background-color: #ffe09b; +} + +.attack_planner.show_plan .attacks_row .attack_type32x32 { + top: 6px; + left: 6px; + position: absolute; +} + +.attack_planner.show_plan .attack_icon { + top: 0; + right: 0; +} + +.attack_planner.show_plan .show_units { + position: absolute; + bottom: 3px; + right: 3px; +} + +.attack_planner.show_plan .origin_town_units { + padding: 0 5px; +} + +.attack_planner.rights { + margin: 10px; +} + +.attack_planner .rights_content { + position: relative; + overflow: hidden; +} + +.attack_planner .add_rights { + position: relative; + overflow: hidden; + width: 222px; + padding: 10px 10px 18px 10px; + float: left; +} + +.attack_planner .rights_list { + position: relative; + overflow: hidden; + float: left; + width: 475px; + border-left: 1px solid #d0be97; + height: 100%; +} + +.attack_planner.rights .btn_go_back { + margin: 2px 0 0 2px; +} + +.attack_planner .caption_row { + position: relative; + overflow: hidden; + height: 16px; + line-height: 16px; + background-position: 0 0; + background-repeat: no-repeat; + padding-left: 18px; + margin-bottom: 3px; +} + +.attack_planner .caption_row.alliance { + background-image: url(https://gpfr.innogamescdn.com/images/game/icons/ally.png); +} + +.attack_planner .caption_row.player { + background-image: url(https://gpfr.innogamescdn.com/images/game/icons/player.png); + margin-top: 3px; +} + +.attack_planner.rights li { + width: 215px; + float: left; + height: 21px; + border-right: 1px solid #d0be97; + border-bottom: 1px solid #d0be97; +} + +.attack_planner .delete_right { + position: absolute; + width: 10px; + height: 15px; + top: 3px; + right: 4px; + color: #804000; + cursor: pointer; + font-weight: 700; + overflow: hidden; + line-height: 13px; + text-align: center; +} + +.attack_planner.rights .icon { + height: 16px; + padding: 2px 0 0 21px; + line-height: 14px; + position: absolute; + top: 2px; + left: 2px; + background-position: 0 0; + background-repeat: no-repeat; +} + +.attack_planner.rights .icon.alliance { + background-image: url(https://gpfr.innogamescdn.com/images/game/icons/ally.png); + color: #804000; + font-weight: 700; + cursor: pointer; + font-family: Verdana,Arial,Helvetica,sans-serif; + font-size: 11px; +} + +.attack_planner .delete_right:hover, +.attack_planner.rights .icon.alliance:hover { + color: #0584be; +} + +.attack_planner.rights .icon.player { + background-image: url(https://gpfr.innogamescdn.com/images/game/icons/player.png); +} + +.attack_planner.rights .no_results_found { + text-align: center; + padding: 50px 0 0 0; + line-height: 16px; + height: 65px; +} + +.attack_type32x32 { + display: inline-block; + vertical-align: middle; + position: relative; +} + +.attack_type32x32.breakthrough { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -32px 0; +} + +.attack_type32x32.attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -32px -32px; +} + +.attack_type32x32.spying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -64px -64px; +} + +.attack_type32x32.conqueror { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -96px -32px; +} + +.attack_type32x32.portal_attack_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat -64px -32px; +} + +.attack_type32x32.portal_support_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_overview/attack_type_e52169f.png) no-repeat 0 -64px; +} + +.attack_type32x32.glow::after { + content: ""; + position: absolute; + top: -8px; + left: -8px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -244px; + width: 48px; + height: 48px; +} + +.reservation_tool.icon.small { + display: inline-block; + width: 17px; + height: 17px; + color: #fff; + text-align: center; + margin-right: 2px; + vertical-align: middle; + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/reservation_tool/icons_sprite.png) no-repeat 100% 0; +} + +.button_new.reservation_tool .icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/reservation_tool/icons_sprite.png) no-repeat 100% 0; +} + +.button_new.reservation_tool.free .icon, +.reservation_tool.icon.small.free { + background-position: -68px 0; +} + +.button_new.reservation_tool.added .icon, +.reservation_tool.icon.small.added { + background-position: -51px 0; +} + +.button_new.reservation_tool.reserved .icon, +.reservation_tool.icon.small.reserved { + background-position: 0 0; +} + +.button_new.reservation_tool.added.pact .icon, +.reservation_tool.icon.small.added.pact { + background-position: -34px 0; +} + +.button_new.reservation_tool.reserved.pact .icon, +.reservation_tool.icon.small.reserved.pact { + background-position: -34px 0; +} + +.button_new.reservation_tool.own .icon, +.reservation_tool.icon.small.own { + background-position: -17px 0; +} + +#towninfo_towninfo .btn_reserve { + float: right; + bottom: 2px; +} + +#map_towns .tile.reservation_tool:after { + position: absolute; + display: block; + top: 50%; + left: 50%; + width: 26px; + height: 26px; + margin: -13px 0 0 -13px; + content: ' '; + z-index: 3; + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/reservation_tool/icons_sprite.png) no-repeat 100% 100%; +} + +#map_towns .tile.reservation_tool.ally:after { + background-position: 0 100%; +} + +#map_towns .tile.reservation_tool.pact:after { + background-position: -52px 100%; +} + +#map_towns .tile.reservation_tool.own:after { + background-position: -26px 100%; +} + +#map_towns .tile.reservation_tool.ally.added:after { + background-position: -79px 100%; +} + +.reservation_tool .btn_reserve_town { + margin: 5px 0 0 2px; +} + +.reservation_tool .btn_open_reservation_settings { + display: inline-block; + float: right; + margin: 9px 4px 0 0; +} + +.reservation_tool .tab_reservations { + position: relative; + overflow: hidden; + display: block; +} + +.reservation_tool .gp_tab_page { + height: 324px; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.reservation_tool .pgr_reservations { + margin: 6px 0 0 4px; +} + +.reservation_tool .game_list_footer { + height: 29px; +} + +.reservation_tool .txt_search { + float: right; + margin-top: 4px; +} + +.reservation_tool .rbtn_search_type { + float: right; +} + +.reservation_tool .game_list_footer .label { + float: right; + margin: 8px 3px 0 6px; +} + +.reservation_tool .reservations_list { + position: relative; + font-size: 12px; +} + +.reservation_tool .reservations_list .header { + position: relative; + overflow: hidden; + display: block; +} + +.reservation_tool .reservations_list .header div { + font-weight: 700; + padding: 3px 0; + height: 14px; + border-bottom: 2px solid #000; + font-size: 12px; + overflow: hidden; + text-align: center; + float: left; +} + +.reservation_tool .reservation { + position: relative; + overflow: hidden; + height: 40px; + display: table; +} + +.reservation_tool .reservation.even, +.reservation_tool .reservation.odd { + border-bottom-width: 1px; +} + +.selecting_mode .reservation_tool .reservation:hover { + background-color: #f5d590; + background-image: none; + cursor: pointer; +} + +.reservation_tool .reservations_list .tcol1, +.reservation_tool .reservations_list .tcol2, +.reservation_tool .reservations_list .tcol3, +.reservation_tool .reservations_list .tcol4, +.reservation_tool .reservations_list .tcol5 { + overflow: hidden; + display: table-cell; + vertical-align: middle; +} + +.reservation_tool .reservations_list .tcol1 { + width: 215px; + text-align: left; +} + +.reservation_tool .reservations_list .tcol2, +.reservation_tool .reservations_list .tcol3 { + width: 181px; +} + +.reservation_tool .reservation .gp_link_fake, +.reservation_tool .reservation .gp_player_link, +.reservation_tool .reservation .gp_town_link { + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + text-align: left; + display: inline-block; + clear: right; +} + +.reservation_tool .reservation .gp_link_fake, +.reservation_tool .reservation .gp_player_link { + max-width: 163px; +} + +.reservation_tool .reservation .gp_town_link { + max-width: 214px; +} + +.reservation_tool .new_targets_tab .reservation .gp_town_link { + max-width: 190px; +} + +.reservation_tool .reservations_list .tcol4 { + width: 130px; +} + +.reservation_tool .reservations_list .tcol5 { + width: 56px; +} + +.reservation_tool .reservations_list .tcol5 .btn_open_attack_planner, +.reservation_tool .reservations_list .tcol5 .dropdown_square { + float: right; +} + +.reservation_tool .reservations_list .tcol5 .dropdown_square { + margin-right: 5px; +} + +.reservation_tool .reservations_list.new_targets_tab .header .tcol1 { + width: 218px; +} + +.reservation_tool .reservations_list.new_targets_tab .tcol1 { + width: 190px; +} + +.reservation_tool .reservations_list.new_targets_tab .tcol2 { + width: 150px; +} + +.reservation_tool .reservations_list.new_targets_tab .tcol3 { + width: 150px; +} + +.reservation_tool .reservations_list.new_targets_tab .tcol5 { + width: 144px; + text-align: center; +} + +.reservation_tool .reservations_list .header .tcol1 { + width: 243px; +} + +.reservation_tool .reservation.no_results { + border-bottom-color: transparent; + text-align: center; + display: block; + padding-top: 10px; +} + +.reservation_tool .col_bbcode { + width: 38px; +} + +.reservation_tool .btn_show_bbcode { + margin: 0 8px; +} + +.reservation_tool .col_town_name { + background: url(https://gpfr.innogamescdn.com/images/game/icons/town.png) no-repeat 7px 50%; + padding-left: 28px; + height: 40px; +} + +.reservations_list .col_current_owner { + text-align: center; +} + +.reservations_list .col_reserved_by { + text-align: center; + padding-top: 3px; +} + +.reservation_tool .col_expiration_date { + text-align: center; +} + +.reservation_tool .player_name { + background: url(https://gpfr.innogamescdn.com/images/game/icons/player.png) no-repeat 0 0; + display: inline-block; + padding-top: 1px; + padding-left: 18px; +} + +.reservation_tool .alliance_name { + background: url(https://gpfr.innogamescdn.com/images/game/icons/ally.png) no-repeat 0 0; + display: inline-block; + padding-top: 1px; + padding-left: 18px; +} + +.reservation_tool .btn_open_attack_planner { + width: 20px; + height: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_20x20.png) no-repeat 0 -120px; + float: left; + margin: 2px 6px 0 0; + cursor: pointer; +} + +.reservation_tool .remove { + float: left; +} + +.reservation_tool .gp_tab .gp_captions_container { + height: 33px; +} + +.reservation_tool .gp_tab .gp_page_caption { + margin: 14px 0 0 -6px; +} + +.reservation_tool .rbtn_switch_mode { + position: absolute; + top: 4px; + right: 7px; +} + +#select_town_popup_reservation_tool.vertical_bottom { + margin-top: 6px; +} + +#select_town_popup_reservation_tool.grepo_menu { + z-index: 2000; +} + +.reservation_tool .btn_get_bbcode { + position: absolute; + top: 4px; + right: 90px; +} + +.reservation_tool .txt_get_bbcode { + position: absolute; + top: 4px; + right: 115px; + width: 200px; +} + +#dd_admin_mode_select_alliance_list.dropdown-list { + z-index: 5050; +} + +.reservation_dd_remove_list [name=empty] { + display: none; +} + +.reservation_tool_settings { + position: relative; + overflow: hidden; +} + +.reservation_tool_settings .content { + position: relative; + overflow: hidden; + border: 0; +} + +.reservation_tool_settings .settings_row { + position: relative; + overflow: hidden; +} + +.reservation_tool_settings fieldset { + float: left; + margin: 5px 0 10px 10px; +} + +.reservation_tool_settings .our_settings { + width: 330px; +} + +.reservation_tool_settings .our_settings .textbox, +.reservation_tool_settings .reservation_view_settings .textbox { + width: 38px; +} + +.reservation_tool_settings .our_settings .textbox input, +.reservation_tool_settings .reservation_view_settings .textbox input { + text-align: center; +} + +.reservation_tool_settings .reservation_settings, +.reservation_tool_settings .reservation_view_settings { + width: 386px; +} + +.reservation_tool_settings .btn_cancel, +.reservation_tool_settings .btn_save { + float: right; + margin-top: 5px; +} + +.reservation_tool_settings .btn_save { + margin-right: 5px; +} + +.reservation_tool_settings .permissions_list td, +.reservation_tool_settings .permissions_list tr { + text-align: center; +} + +.reservation_tool_settings .col_alliance_name { + width: 200px; +} + +.reservation_tool_settings .col_add, +.reservation_tool_settings .col_edit, +.reservation_tool_settings .col_view { + width: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/ally/reservationtool_rights.png) no-repeat 0 0; + height: 22px; +} + +.reservation_tool_settings .col_edit { + background-position: 7px -22px; +} + +.reservation_tool_settings .col_add { + background-position: 6px 0; +} + +.reservation_tool_settings .col_view { + background-position: 4px -44px; +} + +.reservation_tool_settings .permissions_content .accept { + margin-right: 5px; + margin-left: 10px; +} + +.reservation_tool_settings .view_settings { + margin-right: 5px; +} + +.reservation_tool_settings .add_alliance_box { + position: relative; + overflow: hidden; + margin-top: 20px; +} + +.reservation_tool_settings .btn_add_all_pacts { + margin-top: 20px; + float: right; +} + +.reservation_tool_settings .gp_link_fake { + background: url(https://gpfr.innogamescdn.com/images/game/icons/ally.png) no-repeat 0 0; + padding-left: 19px; +} + +.reservation_tool_settings .no_results_found { + padding: 10px 0; +} + +.reservation_tool_settings .label { + line-height: 15px; + overflow: visible; +} + +.reservation_view_settings .col_alliance_name { + width: 250px; +} + +.reservation_view_settings .btn_go_back { + float: right; + margin-top: 10px; +} + +.grepo_menu { + position: absolute; + overflow: hidden; + display: none; + z-index: 5000; + text-align: left; +} + +.grepo_menu .gm_top_left { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_left.png) no-repeat 0 0; + width: 7px; + height: 7px; + top: 0; + left: 0; +} + +.grepo_menu .gm_top_right { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_right.png) no-repeat 0 0; + width: 11px; + height: 7px; + top: 0; + right: 0; +} + +.grepo_menu .gm_top_center { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_middle.png) repeat-x 0 0; + height: 7px; + top: 0; + left: 7px; + right: 11px; +} + +.grepo_menu .gm_middle_center { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_middle.png) repeat 0 0; + margin: 7px 11px 12px 7px; +} + +.grepo_menu .gm_bottom_left { + position: absolute; + width: 7px; + height: 12px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_left.png) no-repeat left; + bottom: 0; + left: 0; +} + +.grepo_menu .gm_bottom_right { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_right.png) no-repeat 0 0; + bottom: 0; + right: 0; + width: 11px; + height: 12px; +} + +.grepo_menu .gm_bottom_center { + position: absolute; + bottom: 0; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_middle.png) repeat-x 0 0; + left: 7px; + right: 11px; + height: 12px; +} + +.grepo_menu .gm_middle_left { + position: absolute; + left: 0; + top: 7px; + bottom: 12px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_left.png) repeat-y 0 0; + width: 7px; +} + +.grepo_menu .gm_middle_right { + position: absolute; + top: 7px; + right: 0; + bottom: 12px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_right.png) repeat-y 0 0; + width: 11px; +} + +.bbcode_box.top_center, +.bbcode_box.top_left, +.bbcode_box.top_right { + height: 7px; + position: absolute; +} + +.bbcode_box.middle_center { + position: relative; +} + +.bbcode_box.middle_left, +.bbcode_box.middle_right { + position: absolute; +} + +.bbcode_box.bottom_center, +.bbcode_box.bottom_left, +.bbcode_box.bottom_right { + height: 12px; + position: absolute; +} + +.bbcode_box.top_center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_middle.png) repeat-x; + top: -7px; + left: 0; + right: 0; +} + +.bbcode_box.bottom_center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_middle.png) repeat-x; + bottom: -12px; + left: 0; + right: 0; +} + +.bbcode_box.middle_left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_left.png) repeat-y left; + left: -7px; + top: 0; + bottom: 0; + width: 7px; +} + +.bbcode_box.middle_right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_right.png) repeat-y right; + right: -11px; + top: 0; + bottom: 0; + width: 11px; +} + +.bbcode_box.middle_center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_middle.png) repeat; +} + +.bbcode_box.top_left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_left.png) no-repeat left; + left: -7px; + top: -7px; + width: 7px; +} + +.bbcode_box.top_right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_right.png) no-repeat right; + top: -7px; + right: -11px; + width: 11px; +} + +.bbcode_box.bottom_left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_left.png) no-repeat left; + bottom: -12px; + left: -7px; + width: 7px; +} + +.bbcode_box.bottom_right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_right.png) no-repeat right; + bottom: -12px; + right: -11px; + width: 11px; +} + +.hercules2014 .countdown_box .btn_info_overlay { + left: 100px; +} + +.hercules2014 .countdown_box .ornament { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -646px -819px; + width: 130px; + height: 25px; + left: 50%; + margin-left: auto; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.hercules2014 .countdown_box .middle { + min-width: 109px; +} + +.hercules2014 .btn_resize { + position: absolute; + bottom: 1px; + left: 56px; +} + +.hercules2014 .btn_resize:after { + content: ""; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1071px -465px; + width: 11px; + height: 11px; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.hercules2014 .btn_resize.minimize:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1071px -476px; + width: 11px; + height: 11px; +} + +.hercules_units_box { + position: relative; + min-height: 94px; + min-width: 100px; +} + +.hercules_units_box .hub_corner_tl, +.hercules_units_box .hub_corner_tr { + width: 28px; + height: 90px; + position: absolute; + top: 0; + z-index: 3; +} + +.hercules_units_box .hub_corner_tl { + left: 0; +} + +.hercules_units_box .hub_corner_tr { + right: 0; +} + +.hercules_units_box .hub_corner_bl, +.hercules_units_box .hub_corner_br { + width: 3px; + height: 4px; + position: absolute; + bottom: 0; + z-index: 2; +} + +.hercules_units_box .hub_corner_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -852px -490px; + width: 3px; + height: 4px; + right: 14px; +} + +.hercules_units_box .hub_corner_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -855px -490px; + width: 3px; + height: 4px; + left: 14px; +} + +.hercules_units_box .hub_border_t { + z-index: 2; + position: absolute; + top: 9px; + left: 16px; + right: 16px; + height: 43px; +} + +.hercules_units_box .hub_border_l, +.hercules_units_box .hub_border_r { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/box_ver_border_645973c.png) no-repeat 0 0; + height: 1px; + background-repeat: repeat-y; + position: absolute; + top: 90px; + right: 14px; + bottom: 4px; + width: 3px; + z-index: 2; + height: auto; +} + +.hercules_units_box .hub_border_l { + left: 14px; +} + +.hercules_units_box .hub_border_r { + right: 14px; +} + +.hercules_units_box .hub_border_b { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/box_border_b_23a5fb4.png) no-repeat 0 0; + width: 1px; + background-repeat: repeat-x; + position: absolute; + bottom: 0; + left: 17px; + right: 17px; + height: 4px; + z-index: 2; + width: auto; +} + +.hercules_units_box .hub_title { + width: 335px; + height: 34px; + position: absolute; + top: 9px; + left: 50%; + margin-left: -167px; + text-align: center; + z-index: 3; + font-size: 12px; + line-height: 19px; +} + +.hercules_units_box .hub_content { + position: absolute; + top: 13px; + left: 15px; + bottom: 0; + right: 15px; + z-index: 5; + padding: 22px 2px 4px 2px; +} + +.hercules_units_box .hub_bg { + position: absolute; + top: 13px; + left: 15px; + bottom: 0; + right: 15px; + z-index: 5; + padding: 22px 2px 4px 2px; + z-index: 0; + background-color: #f6d590; +} + +.hercules_units_box.blue .hub_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -28px -706px; + width: 28px; + height: 90px; +} + +.hercules_units_box.blue .hub_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -84px -706px; + width: 28px; + height: 90px; +} + +.hercules_units_box.blue .hub_title { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -119px -588px; + width: 335px; + height: 32px; +} + +.hercules_units_box.blue .hub_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/box_blue_border_t_7564c67.png) no-repeat 0 0; + width: 1px; + height: 43px; + background-repeat: repeat-x; + width: auto; +} + +.hercules_units_box.red .hub_corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -56px -706px; + width: 28px; + height: 90px; +} + +.hercules_units_box.red .hub_corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 -706px; + width: 28px; + height: 90px; +} + +.hercules_units_box.red .hub_title { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -358px -529px; + width: 335px; + height: 32px; +} + +.hercules_units_box.red .hub_border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/box_red_border_t_aa53a9b.png) no-repeat 0 0; + width: 1px; + height: 43px; + background-repeat: repeat-x; + width: auto; +} + +.hercules_units_box.fancy_bottom_line .hub_corner_bl, +.hercules_units_box.fancy_bottom_line .hub_corner_br { + display: none; +} + +.hercules_units_box.fancy_bottom_line .hub_border_b { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -358px -490px; + width: 453px; + height: 39px; + position: absolute; + bottom: 0; + left: 14px; + right: 0; + background-repeat: no-repeat; + z-index: 2; +} + +.hercules_units_box.fancy_bottom_line .hub_content { + padding: 22px 2px 4px 2px; + bottom: 35px; +} + +.hercules_fight_icons_box { + position: relative; + text-align: center; + height: 20px; +} + +.hercules_fight_icons_box .factor { + height: 20px; + line-height: 20px; + overflow: hidden; + position: relative; + padding-left: 22px; + padding-top: 1px; +} + +.hercules_fight_icons_box .factor:nth-child(odd) { + margin-right: 20px; +} + +.hercules_fight_icons_box .factor.hercules { + padding-left: 16px; +} + +.hercules_fight_icons_box .factor .icon { + position: absolute; + left: 0; + top: 0; +} + +.hercules_fight_icons_box .factor.clover .icon { + background: url(https://gpfr.innogamescdn.com/images/game/report/fight_report_icons.png) no-repeat -20px 0; + width: 20px; + height: 20px; +} + +.hercules_fight_icons_box .factor.hercules .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -836px -490px; + width: 16px; + height: 28px; + top: -4px; +} + +.hercules2014_mercenaries_box .mercenary { + float: left; + width: 122px; + height: 105px; +} + +.hercules2014_mercenaries_box .mercenary .mercenary_image { + border: 1px solid #000; +} + +.hercules2014_mercenaries_box .mercenary .ct_top { + overflow: auto; +} + +.hercules2014_mercenaries_box .mercenary .ct_left { + float: left; + display: inline-block; + margin: 6px 3px 5px 8px; +} + +.hercules2014_mercenaries_box .mercenary .ct_left .mercenary_image.disabled { + opacity: .4; +} + +.hercules2014_mercenaries_box .mercenary .ct_right { + float: right; + width: 56px; + margin-top: 2px; + height: 62px; +} + +.hercules2014_mercenaries_box .mercenary .ct_right .healthy, +.hercules2014_mercenaries_box .mercenary .ct_right .wounded { + text-align: center; + line-height: 30px; +} + +.hercules2014_mercenaries_box .mercenary .ct_right .wounded { + color: #e72200; + margin-top: 2px; +} + +.hercules2014_mercenaries_box .mercenary .ct_right .healthy { + color: green; +} + +.hercules2014_mercenaries_box .mercenary .total { + font-weight: 700; + text-shadow: #000 1px 1px; + position: relative; + padding-top: 33px; + margin-right: 2px; + text-align: right; + color: #fff; + font-weight: 600; +} + +.hercules2014_mercenaries_box .mercenary .buy_unit { + text-align: center; +} + +.hercules2014_mercenaries_box .mercenary .button_container>div { + width: 110px; + margin: 0 5px 0 7px; +} + +.hercules2014_mercenaries_box .healer { + float: right; + width: 125px; + margin-right: 20px; +} + +.hercules2014_mercenaries_box .healer>div:first-child { + margin-top: 3px; +} + +.hercules2014_mercenaries_box .healer .headline { + text-align: center; +} + +.hercules2014_mercenaries_box .healer .headline.heal { + margin-top: -4px; +} + +.hercules2014_mercenaries_box .healer .progressbar_container { + margin-left: 2px; + margin-top: 3px; +} + +.hercules2014_mercenaries_box .healer .progressbar_container .icon_wounded { + float: left; +} + +.hercules2014_mercenaries_box .healer .progressbar_container .pb_healer_timer { + z-index: 1; + width: 88px; + margin: 0 auto; +} + +.hercules2014_mercenaries_box .healer .progressbar_container .pb_healer_timer .progress .indicator { + background-position: 0 -674px; +} + +.hercules2014_mercenaries_box .healer .btn_buy_healer { + left: 4px; + width: 117px; +} + +.campaign_collect_tooltip .list_container { + margin: 1em auto 1em auto; + display: table; +} + +.campaign_collect_tooltip .list_container .tooltip_list { + display: inline-block; + margin: auto; + list-style-type: disc; +} + +.campaign_collect_tooltip .title { + text-align: center; + font-weight: 600; +} + +.campaign_collect_tooltip .amount_text { + margin-left: 5px; +} + +.campaign_collect_tooltip .mercenaries_box { + margin: 5px 0 0 12px; + height: 60px; +} + +.campaign_collect_tooltip .mercenaries_box .mercenary { + width: 86px; + height: 65px; +} + +.campaign_collect_tooltip .mercenaries_box .mercenary .button_container, +.campaign_collect_tooltip .mercenaries_box .mercenary .buy_unit, +.campaign_collect_tooltip .mercenaries_box .mercenary .ct_right { + display: none; +} + +.campaign_collect_tooltip .mercenaries_box .mercenary .ct_left { + margin: 0; + margin-top: 5px; +} + +.healer_tooltip { + margin-left: -1px; + margin-top: -3px; + margin-right: -3px; +} + +.healer_tooltip .content { + padding: 3px; +} + +.mercenary_tooltip { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/frame_tooltip_unit_47f5a3e.png) no-repeat 0 0; + height: 505px; + width: 319px; +} + +.mercenary_tooltip.hide_amounts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/frame_tooltip_unit2_ea724dd.png) no-repeat 0 0; + width: 319px; + height: 436px; +} + +.mercenary_tooltip .mercenary_image_large { + margin: 2px 0 0 37px; +} + +.mercenary_tooltip .mercenary_image_large.unit_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -356px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.unit_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -245px -568px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.unit_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -568px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.unit_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px -212px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.unit_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -245px -780px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.special_unit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -356px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.opponent { + margin: 2px 0 0 37px; +} + +.mercenary_tooltip .mercenary_image_large.opponent.unit_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -245px -356px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.opponent.unit_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -568px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.opponent.unit_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -568px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.opponent.unit_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px 0; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .mercenary_image_large.opponent.unit_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -780px; + width: 245px; + height: 212px; +} + +.mercenary_tooltip .title { + color: #edb; + font-size: 11px; + font-weight: 600; + height: 20px; + text-align: center; + padding-top: 32px; + line-height: 18px; +} + +.mercenary_tooltip .power_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat 0 -992px; + width: 93px; + height: 61px; + margin: -45px auto -12px auto; + position: relative; +} + +.mercenary_tooltip .power_frame .power_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -973px -870px; + width: 40px; + height: 48px; + margin: auto; + position: relative; + top: -2px; + left: -6px; +} + +.mercenary_tooltip .power_frame .extra_power_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -538px; + width: 58px; + height: 53px; + margin: auto; + position: relative; + top: -12px; + left: -4px; +} + +.mercenary_tooltip .power_frame .up_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -437px; + width: 32px; + height: 35px; + margin: auto; + position: absolute; + top: -13px; + left: 42px; +} + +.mercenary_tooltip .power_frame .power { + position: absolute; + width: 67px; + left: 13px; + bottom: 5px; + text-align: center; + color: #fc6; + font-weight: 600; + font-size: 11px; + line-height: 19px; +} + +.mercenary_tooltip .power_frame .power .extra { + color: #fff; +} + +.mercenary_tooltip .bonus_container { + padding-left: 47px; + padding-top: 8px; +} + +.mercenary_tooltip .bonus_container.center_single_bonus { + margin-top: 30px; +} + +.mercenary_tooltip .bonus_container .divider_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px -560px; + width: 218px; + height: 1px; + margin: 0 0 3px 0; +} + +.mercenary_tooltip .bonus_container .mercenary_image { + display: inline-block; + margin-left: 7px; + border: 1px solid #000; +} + +.mercenary_tooltip .bonus_container .bonus_text { + width: 165px; + display: inline-block; + margin-top: -40px; + vertical-align: middle; +} + +.mercenary_tooltip .bonus_container .text_only { + padding-right: 45px; + margin-top: 13px; +} + +.mercenary_tooltip .amounts { + position: absolute; + top: 404px; + left: 44px; + width: 240px; + height: 70px; +} + +.mercenary_tooltip .amounts .amount_line { + line-height: 23px; + height: 23px; + margin-left: 10px; +} + +.mercenary_tooltip .amounts .amount_line .line_text { + float: left; +} + +.mercenary_tooltip .amounts .amount_line .amount { + float: right; + margin-right: 20px; +} + +.mercenary_tooltip .amounts .amount_line .green { + color: green; +} + +.mercenary_tooltip .amounts .amount_line .red { + color: #e72200; +} + +.healer_tooltip .image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/healer_08e111d.jpg) no-repeat 0 0; + width: 341px; + height: 228px; +} + +.mercenary_image.unit_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -915px; + width: 50px; + height: 50px; +} + +.mercenary_image.unit_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -193px -992px; + width: 50px; + height: 50px; +} + +.mercenary_image.unit_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -343px -992px; + width: 50px; + height: 50px; +} + +.mercenary_image.unit_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -93px -992px; + width: 50px; + height: 50px; +} + +.mercenary_image.unit_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -443px -992px; + width: 50px; + height: 50px; +} + +.mercenary_image.opponent.unit_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -865px; + width: 50px; + height: 50px; +} + +.mercenary_image.opponent.unit_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -143px -992px; + width: 50px; + height: 50px; +} + +.mercenary_image.opponent.unit_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -293px -992px; + width: 50px; + height: 50px; +} + +.mercenary_image.opponent.unit_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -705px -220px; + width: 50px; + height: 50px; +} + +.mercenary_image.opponent.unit_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -393px -992px; + width: 50px; + height: 50px; +} + +.line_horizontal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -811px -519px; + width: 158px; + height: 1px; + margin: auto; +} + +.campaign_reward .scroll { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 -490px; + width: 358px; + height: 98px; + margin: auto; +} + +.campaign_reward .rwrd_container { + text-align: center; + margin-top: 13px; +} + +.campaign_reward .reward { + margin: auto; + display: inline-block; +} + +.campaign_reward .reward.hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -703px; + width: 54px; + height: 56px; +} + +.campaign_reward .reward.hero.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -759px; + width: 54px; + height: 56px; +} + +.campaign_reward .reward.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -591px; + width: 54px; + height: 56px; +} + +.campaign_reward .reward.culture_level.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -647px; + width: 54px; + height: 56px; +} + +.campaign_reward .caption { + text-align: center; + font-weight: 600; +} + +.hercules2014_stage_tooltip { + width: 440px; +} + +.hercules2014_stage_tooltip .title_container { + text-align: center; + margin-top: 5px; +} + +.hercules2014_stage_tooltip .title_container .title { + font-weight: 600; + margin-bottom: 5px; + margin-top: 5px; +} + +.hercules2014_stage_tooltip .hercules2014_battle { + height: auto; + width: 440px; +} + +.hercules2014_stage_tooltip .hercules2014_battle .mercenaries_box { + margin: 0; +} + +.hercules2014_stage_tooltip .hercules2014_battle .mercenaries_box .mercenary { + width: 60px; +} + +.hercules2014_stage_tooltip .cooldown_text, +.hercules2014_stage_tooltip .enemy_text, +.hercules2014_stage_tooltip .reward_container { + margin-top: 15px; + text-align: center; +} + +.hercules2014_stage_tooltip .cooldown_container { + display: none; +} + +.hercules2014_stage_tooltip .cooldown_container.cooldown_active { + display: block; +} + +.hercules2014_stage_tooltip .cooldown_container .cooldown_inner_container { + margin: auto; + width: 220px; + margin-top: 5px; +} + +.hercules2014_stage_tooltip .cooldown_container .hourglass { + float: left; + margin-left: 10px; + margin-top: 2px; +} + +.hercules2014_stage_tooltip .cooldown_container .pb_stage_cooldown { + width: 160px; + left: 17px; +} + +.hercules2014.welcome_window_container .logo { + bottom: 10px; + left: 20px; + z-index: 7; +} + +.classic_window.hercules2014 .window_content { + height: calc(100% - 43px); +} + +.hercules2014_map { + height: 100%; + overflow: hidden; + position: relative; + touch-action: none; + -ms-touch-action: none; +} + +.hercules2014_map .countdown_box { + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.hercules2014_map .animation { + right: 0; + bottom: 0; + position: absolute; + top: 0; + left: 0; + z-index: 300; + display: none; +} + +.hercules2014_map .animation>.gp_window_curtain { + left: 0; + right: 0; + bottom: 0; + z-index: 0; +} + +.hercules2014_map .mercenaries_box { + margin-left: 15px; + margin-top: 12px; +} + +.hercules2014_map .mercenaries_box .mercenary { + float: left; + width: 122px; + height: 105px; +} + +.hercules2014_map .mercenaries_box .mercenary .mercenary_image { + border: 1px solid #000; +} + +.hercules2014_map .mercenaries_box .mercenary .ct_top { + overflow: auto; +} + +.hercules2014_map .mercenaries_box .mercenary .ct_left { + float: left; + display: inline-block; + margin: 6px 3px 5px 8px; +} + +.hercules2014_map .mercenaries_box .mercenary .ct_left .mercenary_image.disabled { + opacity: .4; +} + +.hercules2014_map .mercenaries_box .mercenary .ct_right { + float: right; + width: 56px; + margin-top: 2px; + height: 62px; +} + +.hercules2014_map .mercenaries_box .mercenary .ct_right .healthy, +.hercules2014_map .mercenaries_box .mercenary .ct_right .wounded { + text-align: center; + line-height: 30px; +} + +.hercules2014_map .mercenaries_box .mercenary .ct_right .wounded { + color: #e72200; + margin-top: 2px; +} + +.hercules2014_map .mercenaries_box .mercenary .ct_right .healthy { + color: green; +} + +.hercules2014_map .mercenaries_box .mercenary .total { + font-weight: 700; + text-shadow: #000 1px 1px; + position: relative; + padding-top: 33px; + margin-right: 2px; + text-align: right; + color: #fff; + font-weight: 600; +} + +.hercules2014_map .mercenaries_box .mercenary .buy_unit { + text-align: center; +} + +.hercules2014_map .mercenaries_box .mercenary .button_container>div { + width: 110px; + margin: 0 5px 0 7px; +} + +.hercules2014_map .mercenaries_box .healer { + float: right; + width: 125px; + margin-right: 20px; +} + +.hercules2014_map .mercenaries_box .healer>div:first-child { + margin-top: 3px; +} + +.hercules2014_map .mercenaries_box .healer .headline { + text-align: center; +} + +.hercules2014_map .mercenaries_box .healer .headline.heal { + margin-top: -4px; +} + +.hercules2014_map .mercenaries_box .healer .progressbar_container { + margin-left: 2px; + margin-top: 3px; +} + +.hercules2014_map .mercenaries_box .healer .progressbar_container .icon_wounded { + float: left; +} + +.hercules2014_map .mercenaries_box .healer .progressbar_container .pb_healer_timer { + z-index: 1; + width: 88px; + margin: 0 auto; +} + +.hercules2014_map .mercenaries_box .healer .progressbar_container .pb_healer_timer .progress .indicator { + background-position: 0 -674px; +} + +.hercules2014_map .mercenaries_box .healer .btn_buy_healer { + left: 4px; + width: 117px; +} + +.hercules2014_map .mercenaries_box .ct_left .total { + display: none; +} + +.hercules2014_map.with_shadow { + box-shadow: inset 0 0 10px 2px rgba(0,0,0,.5); +} + +.hercules2014_map .frame_daily_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -780px; + width: 404px; + height: 39px; + position: absolute; + top: -2px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.hercules2014_map .frame_daily_units div:first-child { + margin-left: 35px; +} + +.hercules2014_map .icon_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -472px; + width: 31px; + height: 31px; + float: left; + width: 33px; + position: relative; + top: 2px; + margin-right: 1px; +} + +.hercules2014_map .viewport { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + overflow: hidden; +} + +.hercules2014_map .dragdrop, +.hercules2014_map .hercules_map { + position: absolute; + will-change: transform; + width: 1810px; + height: 1305px; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +@-webkit-keyframes fadeInOutNoBreak { + 0% { + opacity: .4; + } + + 20% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 80% { + opacity: 1; + } + + 100% { + opacity: .4; + } +} + +@-ms-keyframes fadeInOutNoBreak { + 0% { + opacity: .4; + } + + 20% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 80% { + opacity: 1; + } + + 100% { + opacity: .4; + } +} + +@keyframes fadeInOutNoBreak { + 0% { + opacity: .4; + } + + 20% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 80% { + opacity: 1; + } + + 100% { + opacity: .4; + } +} + +.hercules2014_map .dragdrop.dragging .stage::before { + visibility: visible; +} + +.hercules2014_map .hercules_map { + top: 0; + left: 0; + cursor: move; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/map_615b52e.jpg) no-repeat 0 0; + width: 1810px; + height: 1305px; +} + +.hercules2014_map .hercules_map .special_stage::after { + content: ""; + position: absolute; + top: -54px; + left: -16px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -491px -170px; + width: 101px; + height: 146px; + -webkit-animation: fadeInOutNoBreak 10s ease infinite; + -ms-animation: fadeInOutNoBreak 10s ease infinite; + animation: fadeInOutNoBreak 10s ease infinite; +} + +.hercules2014_map .hercules_map .stage::before { + visibility: hidden; + border-radius: 50%; + background-color: #18130f; + color: #fff; + text-align: center; + line-height: 40px; + font-size: 1.5em; + font-weight: 600; + position: absolute; + opacity: .7; + width: 45px; + height: 45px; + top: 20px; + left: 12px; +} + +.hercules2014_map .hercules_map .stage.badge_attack1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -870px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_attack2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -628px -870px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_cooldown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -93px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_collect_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -904px -870px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_collect-reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -766px -870px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -279px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_attack1:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -559px -870px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_attack2:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -697px -870px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_cooldown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -186px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_collect_reward:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px 0; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_collect-reward:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -835px -870px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage.badge_locked:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -372px; + width: 69px; + height: 93px; +} + +.hercules2014_map .hercules_map .stage { + cursor: pointer; +} + +.hercules2014_map .frame_my_army { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/frame_my_army_cb189df.png) no-repeat 0 0; + width: 772px; + height: 122px; + position: absolute; + bottom: 0; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + overflow: visible; +} + +.hercules2014_map .headline_container { + float: left; + width: 100%; + position: absolute; + bottom: 163px; +} + +.hercules2014_map .headline_container .myarmy_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -490px -819px; + width: 156px; + height: 51px; + position: absolute; + left: 310px; +} + +.hercules2014_map .headline_container>.headline { + position: absolute; + text-align: center; + width: 125px; + left: 325px; + margin-top: 31px; + color: #fff; + text-shadow: 1px 1px 2px #000; + font-weight: 600; +} + +.hercules2014_map .btn_info_overlay { + position: absolute; + bottom: 1px; + left: 50%; + margin-left: -13px; +} + +.hercules2014_healer_tooltip { + width: 334px; +} + +.hercules2014_healer_tooltip .healer_tooltip { + position: relative; + left: -3px; + top: -4px; +} + +.hercules2014_healer_tooltip .content { + padding-left: 5px; +} + +.hercules2014_battle { + height: 500px; + min-width: 640px; +} + +.hercules2014_battle .mercenaries_box { + margin: 0 10px 0 44px; + height: 60px; + text-align: center; +} + +.hercules2014_battle .mercenaries_box .mercenary { + width: 86px; + height: 65px; + display: inline-block; + float: none; +} + +.hercules2014_battle .mercenaries_box .mercenary .button_container, +.hercules2014_battle .mercenaries_box .mercenary .buy_unit, +.hercules2014_battle .mercenaries_box .mercenary .ct_right { + display: none; +} + +.hercules2014_battle .mercenaries_box .mercenary .ct_left { + margin: 0; + margin-top: 5px; +} + +.hercules2014_battle .textbox_container { + height: 23px; + margin: 0 10px 0 40px; + text-align: center; +} + +.hercules2014_battle .textbox_container>div { + display: inline-block; +} + +.hercules2014_battle .textbox_container .textbox { + width: 55px; + margin: 0; +} + +.hercules2014_battle .textbox_container .textbox input { + text-align: center; +} + +.hercules2014_battle .my_army { + height: 280px; + text-align: center; +} + +.hercules2014_battle .my_army.hercules_units_box.fancy_bottom_line .hub_border_b { + z-index: 0!important; +} + +.hercules2014_battle .my_army .mercenary_image { + cursor: pointer; +} + +.hercules2014_battle .enemy_army { + margin-top: -10px; + height: 110px; +} + +.hercules2014_battle .army_title { + color: #fff; + text-align: center; + margin-top: -3px; + margin-bottom: 7px; +} + +.hercules2014_battle .btn_buy_mercenary_attack_window { + left: -5px; + margin-right: 5px; +} + +.hercules2014_battle .caption { + text-align: center; + font-weight: 600; +} + +.hercules2014_battle .units_amount { + height: 24px; + margin: 0 80px; +} + +.hercules2014_battle .attack_boost_container { + margin-right: 10px; +} + +.hercules2014_battle .attack_boost_container .select_boost_container { + position: relative; + top: -7px; +} + +.hercules2014_battle .attack_boost_container .cbx_add_boost { + display: table-cell; +} + +.hercules2014_battle .attack_boost_container .cbx_caption { + width: 150px; +} + +.hercules2014_battle .attack_boost_container .plus_20 { + position: relative; + left: 10px; + bottom: 41px; + color: #fff; + font-size: 10px; + font-weight: 600; +} + +.hercules2014_battle .attack_boost_container .cooldown_boost_container, +.hercules2014_battle .attack_boost_container .select_boost_container { + width: 205px; + margin-left: 5px; +} + +.hercules2014_battle .attack_boost_container .cooldown_boost_container>div { + float: left; +} + +.hercules2014_battle .attack_boost_container .cooldown_boost_container .instant_boost { + text-align: center; + margin-top: 5px; +} + +.hercules2014_battle .attack_boost_container .cooldown_boost_container .subcaption { + font-size: 11px; + width: 95px; + margin-right: 5px; + text-align: left; +} + +.hercules2014_battle .attack_boost_container .frame_icon .image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -815px; + width: 50px; + height: 50px; +} + +.hercules2014_battle .attack_boost_container .frame_icon .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -503px; + width: 26px; + height: 26px; +} + +.hercules2014_battle .healer_container .frame_icon .image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -705px -170px; + width: 50px; + height: 50px; +} + +.hercules2014_battle .healer_container .frame_icon .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -399px; + width: 30px; + height: 38px; +} + +.hercules2014_battle .healer_container .headline { + height: 27px; + line-height: 27px; +} + +.hercules2014_battle .attack_boost_container, +.hercules2014_battle .healer_container { + height: 56px; + padding: 10px 5px; + position: relative; + margin: 10px 10px 5px 10px; + width: 270px; + display: inline-block; + vertical-align: middle; +} + +.hercules2014_battle .attack_boost_container .frame_icon, +.hercules2014_battle .healer_container .frame_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -119px -620px; + width: 56px; + height: 57px; + float: left; +} + +.hercules2014_battle .attack_boost_container .frame_icon .icon, +.hercules2014_battle .healer_container .frame_icon .icon { + position: relative; + bottom: 29px; + left: -5px; +} + +.hercules2014_battle .attack_boost_container .frame_icon .image, +.hercules2014_battle .healer_container .frame_icon .image { + margin: 3px; +} + +.hercules2014_battle .attack_boost_container .progress .indicator, +.hercules2014_battle .healer_container .progress .indicator { + background-position: 0 -674px; +} + +.hercules2014_battle .attack_boost_container .btn_buy_healer, +.hercules2014_battle .attack_boost_container .btn_unit_boost, +.hercules2014_battle .attack_boost_container .pb_boost_cooldown, +.hercules2014_battle .attack_boost_container .pb_healer_timer, +.hercules2014_battle .healer_container .btn_buy_healer, +.hercules2014_battle .healer_container .btn_unit_boost, +.hercules2014_battle .healer_container .pb_boost_cooldown, +.hercules2014_battle .healer_container .pb_healer_timer { + width: 100px; +} + +.hercules2014_battle .attack_boost_container .button_new, +.hercules2014_battle .attack_boost_container .cbx_caption, +.hercules2014_battle .attack_boost_container .cbx_icon, +.hercules2014_battle .attack_boost_container .container, +.hercules2014_battle .attack_boost_container .frame_icon, +.hercules2014_battle .attack_boost_container .single-progressbar, +.hercules2014_battle .attack_boost_container .subcaption, +.hercules2014_battle .healer_container .button_new, +.hercules2014_battle .healer_container .cbx_caption, +.hercules2014_battle .healer_container .cbx_icon, +.hercules2014_battle .healer_container .container, +.hercules2014_battle .healer_container .frame_icon, +.hercules2014_battle .healer_container .single-progressbar, +.hercules2014_battle .healer_container .subcaption { + display: inline-block; + vertical-align: middle; +} + +.hercules2014_battle .attack_boost_container .cbx_icon, +.hercules2014_battle .healer_container .cbx_icon { + float: none; +} + +.hercules2014_battle .reward_container { + margin-top: 5px; +} + +.hercules2014_stage_tooltip .hercules2014_battle { + min-width: 100%; +} + +.hercules_map .stages .stage { + position: absolute; +} + +.campaign_map.stage_1 { + left: 276px; + top: 129px; +} + +.campaign_map.stage_1::before { + content: "1"; +} + +.campaign_map.stage_2 { + left: 479px; + top: 237px; +} + +.campaign_map.stage_2::before { + content: "2"; +} + +.campaign_map.stage_3 { + left: 683px; + top: 152px; +} + +.campaign_map.stage_3::before { + content: "3"; +} + +.campaign_map.stage_4 { + left: 832px; + top: 224px; +} + +.campaign_map.stage_4::before { + content: "4"; +} + +.campaign_map.stage_5 { + left: 909px; + top: 70px; +} + +.campaign_map.stage_5::before { + content: "5"; +} + +.campaign_map.stage_6 { + left: 1216px; + top: 221px; +} + +.campaign_map.stage_6::before { + content: "6"; +} + +.campaign_map.stage_7 { + left: 1116px; + top: 53px; +} + +.campaign_map.stage_7::before { + content: "7"; +} + +.campaign_map.stage_8 { + left: 1573px; + top: 100px; +} + +.campaign_map.stage_8::before { + content: "8"; +} + +.campaign_map.stage_9 { + left: 1675px; + top: 241px; +} + +.campaign_map.stage_9::before { + content: "9"; +} + +.campaign_map.stage_10 { + left: 1490px; + top: 377px; +} + +.campaign_map.stage_10::before { + content: "10"; +} + +.campaign_map.stage_11 { + left: 1291px; + top: 375px; +} + +.campaign_map.stage_11::before { + content: "11"; +} + +.campaign_map.stage_12 { + left: 1187px; + top: 432px; +} + +.campaign_map.stage_12::before { + content: "12"; +} + +.campaign_map.stage_13 { + left: 1541px; + top: 499px; +} + +.campaign_map.stage_13::before { + content: "13"; +} + +.campaign_map.stage_14 { + left: 1600px; + top: 717px; +} + +.campaign_map.stage_14::before { + content: "14"; +} + +.campaign_map.stage_15 { + left: 1429px; + top: 942px; +} + +.campaign_map.stage_15::before { + content: "15"; +} + +.campaign_map.stage_16 { + left: 1063px; + top: 957px; +} + +.campaign_map.stage_16::before { + content: "16"; +} + +.campaign_map.stage_17 { + left: 1194px; + top: 550px; +} + +.campaign_map.stage_17::before { + content: "17"; +} + +.campaign_map.stage_18 { + left: 1288px; + top: 653px; +} + +.campaign_map.stage_18::before { + content: "18"; +} + +.campaign_map.stage_19 { + left: 1336px; + top: 775px; +} + +.campaign_map.stage_19::before { + content: "19"; +} + +.campaign_map.stage_20 { + left: 1238px; + top: 930px; +} + +.campaign_map.stage_20::before { + content: "20"; +} + +.campaign_map.stage_21 { + left: 989px; + top: 586px; +} + +.campaign_map.stage_21::before { + content: "21"; +} + +.campaign_map.stage_22 { + left: 854px; + top: 526px; +} + +.campaign_map.stage_22::before { + content: "22"; +} + +.campaign_map.stage_23 { + left: 584px; + top: 516px; +} + +.campaign_map.stage_23::before { + content: "23"; +} + +.campaign_map.stage_24 { + left: 704px; + top: 588px; +} + +.campaign_map.stage_24::before { + content: "24"; +} + +.campaign_map.stage_25 { + left: 670px; + top: 724px; +} + +.campaign_map.stage_25::before { + content: "25"; +} + +.campaign_map.stage_26 { + left: 518px; + top: 971px; +} + +.campaign_map.stage_26::before { + content: "26"; +} + +.campaign_map.stage_27 { + left: 335px; + top: 1007px; +} + +.campaign_map.stage_27::before { + content: "27"; +} + +.campaign_map.stage_28 { + left: 455px; + top: 805px; +} + +.campaign_map.stage_28::before { + content: "28"; +} + +.campaign_map.stage_29 { + left: 238px; + top: 805px; +} + +.campaign_map.stage_29::before { + content: "29"; +} + +.campaign_map.stage_30 { + left: 349px; + top: 758px; +} + +.campaign_map.stage_30::before { + content: "30"; +} + +.campaign_map.stage_31 { + left: 496px; + top: 629px; +} + +.campaign_map.stage_31::before { + content: "31"; +} + +.campaign_map.stage_32 { + left: 225px; + top: 610px; +} + +.campaign_map.stage_32::before { + content: "32"; +} + +.campaign_map.stage_33 { + left: 357px; + top: 543px; +} + +.campaign_map.stage_33::before { + content: "33"; +} + +.hercules2014_collect .event_art { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/troopss_awarding_illustration_4d505c4.jpg) no-repeat 0 0; + width: 756px; + height: 425px; + position: relative; +} + +.hercules2014_collect .event_art .glow { + position: absolute; +} + +.hercules2014_collect .event_art .glow.unit_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat -756px 0; + width: 756px; + height: 425px; +} + +.hercules2014_collect .event_art .glow.unit_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat 0 -425px; + width: 756px; + height: 425px; +} + +.hercules2014_collect .event_art .glow.unit_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat -756px -425px; + width: 756px; + height: 425px; +} + +.hercules2014_collect .event_art .glow.unit_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat 0 0; + width: 756px; + height: 425px; +} + +.hercules2014_collect .event_art .glow.unit_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat 0 -850px; + width: 756px; + height: 425px; +} + +.hercules2014_collect .event_art .troops_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/collect_44007d1.png) no-repeat -756px -850px; + width: 122px; + height: 36px; + position: absolute; + bottom: 30px; + text-align: center; + font-weight: 600; + padding-top: 9px; + height: 25px; + line-height: 16px; + color: #ffc963; +} + +.hercules2014_collect .event_art .troops_box.unit_1 { + left: 45px; + bottom: 40px; +} + +.hercules2014_collect .event_art .troops_box.unit_2 { + left: 155px; +} + +.hercules2014_collect .event_art .troops_box.unit_3 { + left: 315px; + bottom: 20px; +} + +.hercules2014_collect .event_art .troops_box.unit_4 { + right: 200px; +} + +.hercules2014_collect .event_art .troops_box.unit_5 { + right: 70px; + bottom: 40px; +} + +.hercules2014_collect .event_art .tooltip_area { + position: absolute; + height: 322px; +} + +.hercules2014_collect .event_art .tooltip_area.unit_1 { + left: 28px; + width: 128px; + bottom: 52px; +} + +.hercules2014_collect .event_art .tooltip_area.unit_2 { + left: 162px; + width: 128px; + bottom: 42px; +} + +.hercules2014_collect .event_art .tooltip_area.unit_3 { + left: 318px; + width: 103px; + bottom: 37px; +} + +.hercules2014_collect .event_art .tooltip_area.unit_4 { + right: 211px; + width: 121px; + bottom: 44px; +} + +.hercules2014_collect .event_art .tooltip_area.unit_5 { + right: 30px; + width: 180px; + bottom: 52px; +} + +.hercules2014_collect .descr { + text-align: center; + padding: 10px; +} + +.hercules2014_collect .container { + width: 100%; + margin-bottom: 15px; + text-align: center; +} + +.hercules2014_collect .container>div { + margin: auto; +} + +.hercules2014_animation .animation_container { + width: 300px; + height: 450px; + position: absolute; + z-index: 210; + left: 50%; + top: 50%; + transform: translate(-50%,-50%); + margin-top: 50px; +} + +.hercules2014_animation .animation_container>div { + position: absolute; +} + +.hercules2014_animation .fabric_2 { + top: 270px; + left: 54px; + z-index: -1; +} + +.hercules2014_animation .spear_1, +.hercules2014_animation .spear_2 { + top: -53px; + left: 54px; +} + +.hercules2014_animation .spear_1 { + -webkit-animation: spear1 1s ease; + -ms-animation: spear1 1s ease; + animation: spear1 1s ease; +} + +.hercules2014_animation .spear_2 { + -webkit-animation: spear2 1s ease; + -ms-animation: spear2 1s ease; + animation: spear2 1s ease; +} + +.hercules2014_animation .fabric_1 { + top: 210px; + left: 50px; +} + +.hercules2014_animation .shield { + top: 0; + left: 0; +} + +@-webkit-keyframes spear1 { + from { + top: 500px; + left: -290px; + } +} + +@-ms-keyframes spear1 { + from { + top: 500px; + left: -290px; + } +} + +@keyframes spear1 { + from { + top: 500px; + left: -290px; + } +} + +@-webkit-keyframes spear2 { + from { + top: 500px; + left: 290px; + } +} + +@-ms-keyframes spear2 { + from { + top: 500px; + left: 290px; + } +} + +@keyframes spear2 { + from { + top: 500px; + left: 290px; + } +} + +.campaign_fight_result.gp_window>.content { + overflow: visible; +} + +.campaign_fight_result.gp_window>.buttons { + z-index: 100; +} + +.hercules2014_fight_result.victory { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -493px 0; + height: 490px; + width: 493px; +} + +.hercules2014_fight_result.victory .btn_retry { + display: none; +} + +.hercules2014_fight_result.defeat { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 0; + height: 490px; + width: 493px; +} + +.hercules2014_fight_result.defeat .reward_iks { + display: inline-block; +} + +.hercules2014_fight_result { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 0; + width: 493px; + height: 490px; + overflow: hidden; +} + +.hercules2014_fight_result .banner { + position: relative; + margin: 0 auto; + text-align: center; + overflow: hidden; +} + +.hercules2014_fight_result .banner h3 { + color: #ffc144; + line-height: 50px; + font-size: 24px; + margin-top: 18px; +} + +.hercules2014_fight_result .reward { + overflow: visible; +} + +.hercules2014_fight_result .reward.enabled { + top: -116px; +} + +.hercules2014_fight_result .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -341px -170px; + width: 150px; + height: 150px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 -588px; + width: 119px; + height: 118px; + position: relative; + top: -15px; + left: 120px; + -webkit-animation: fadeInOutIn 5s ease infinite; + -ms-animation: fadeInOutIn 5s ease infinite; + animation: fadeInOutIn 5s ease infinite; +} + +.hercules2014_fight_result .reward_icon_box { + margin: 5px auto 0 auto; +} + +.hercules2014_fight_result .reward_iks { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -175px -620px; + width: 47px; + height: 47px; + display: none; + position: relative; + top: 5px; +} + +.hercules2014_fight_result .bottom_line { + font-size: 11px; + text-align: center; + margin: 0 25px; +} + +.hercules2014_fight_result .button_retry_container { + position: relative; + text-align: center; + overflow: hidden; + height: 40px; +} + +.hercules2014_fight_result .button_retry_container .button_new .caption { + padding: 0 30px; +} + +.hercules2014_fight_result .button_retry_container { + top: -4px; +} + +.hercules2014_fight_result .box_enemy_army, +.hercules2014_fight_result .box_my_army { + width: 400px; + margin: 0 auto; + height: 110px; +} + +.hercules2014_fight_result .hercules2014_mercenaries_box { + text-align: center; +} + +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary { + width: 53px; + height: auto; + display: inline-block; + float: none; + margin: 1px 7px; +} + +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .button_container, +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .buy_unit, +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .healthy { + display: none; +} + +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .ct_top { + overflow: hidden; +} + +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .ct_left, +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .ct_right { + float: none; +} + +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .ct_left .wounded, +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .ct_right .wounded { + padding: 0; + margin-top: 1px; + line-height: 12px; + height: 12px; +} + +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .ct_right { + width: auto; + height: 12px; +} + +.hercules2014_fight_result .hercules2014_mercenaries_box .mercenary .ct_left { + margin: 0; +} + +.hercules2014_fight_result .honor_point_animation { + display: none; + opacity: 0; + position: absolute; + z-index: 10; + top: 30px; + left: 100px; +} + +.hercules2014_fight_result .honor_point_animation div { + display: inline-block; +} + +.hercules2014_fight_result .honor_point_animation .scroll_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_left_17e1209.png) no-repeat 0 0; + width: 37px; + height: 70px; +} + +.hercules2014_fight_result .honor_point_animation .scroll_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_right_d103e71.png) no-repeat 0 0; + width: 37px; + height: 70px; + margin-left: -12px; +} + +.hercules2014_fight_result .honor_point_animation .scroll_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_middle_dc72eed.png) no-repeat 0 0; + width: 200px; + height: 70px; + margin-left: -11px; +} + +.hercules2014_fight_result .honor_point_animation .glow { + opacity: 0; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/glow_e9ec524.png) no-repeat 0 0; + width: 119px; + height: 118px; + left: 41px; + bottom: -20px; +} + +.hercules2014_fight_result .honor_point_animation .honor_points { + opacity: 0; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/harmony_72a2556.png) no-repeat 0 0; + width: 55px; + height: 58px; + top: 0; + left: 75px; +} + +.hercules2014_fight_result .honor_point_animation .honor_points .value { + color: #fff; + font-weight: 600; + position: absolute; + bottom: 2px; + width: 22px; + line-height: 22px; + left: 17px; + vertical-align: middle; + text-align: center; +} + +.campaign_sub_window_last_stage_info.gp_window>.content { + overflow: visible; +} + +.campaign_last_stage_info { + margin-top: -14px; + width: 514px; + height: 453px; + overflow: hidden; +} + +.campaign_last_stage_info .curtain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/last_stage_1010df0.png) no-repeat 0 0; + width: 514px; + height: 453px; + position: absolute; + top: 0; + left: 7px; + z-index: 1; + overflow: hidden; +} + +.campaign_last_stage_info .content_viewport { + position: relative; + margin-top: 90px; + text-align: center; +} + +.campaign_last_stage_info .background { + margin: 0 21px; + position: relative; + overflow: hidden; + text-align: center; +} + +.campaign_last_stage_info.nohero .background { + padding: 40px 0 0; + height: 144px; +} + +.campaign_last_stage_info.hero .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/background_hero_1a95f42.jpg) no-repeat 0 0; + width: 472px; + height: 208px; +} + +.campaign_last_stage_info.nohero .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/background_nohero_74b07fb.jpg) no-repeat 0 0; + width: 472px; + height: 208px; +} + +.campaign_last_stage_info h3 { + color: #ffc144; + line-height: 30px; + font-size: 20px; + text-align: center; + padding-left: 181px; + padding-top: 6px; + margin-bottom: 9px; + max-width: 140px; +} + +.campaign_last_stage_info .speechbubble { + width: 310px; + overflow: visible; + position: relative; + margin-top: 20px; + margin-left: 130px; +} + +.campaign_last_stage_info .speechbubble .content { + padding-bottom: 4px; + text-align: left; +} + +.campaign_last_stage_info .speechbubble .speechbubble_arrow_l { + left: -6px; +} + +.campaign_last_stage_info .rewards { + position: relative; + overflow: hidden; + display: inline-block; +} + +.campaign_last_stage_info .rewards h3 { + color: #000; + font-size: 12px; + line-height: 18px; + font-weight: 600; + margin: 0; + padding: 0; + max-width: none; +} + +.campaign_last_stage_info .rewards .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -811px -519px; + width: 158px; + height: 1px; + margin: 3px auto 0 auto; +} + +.campaign_last_stage_info .rewards .scroll { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/last_stage_1010df0.png) no-repeat -514px 0; + width: 207px; + height: 92px; + margin: 0 auto; + position: relative; + overflow: visible; +} + +.campaign_last_stage_info .rewards .scroll .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -341px -170px; + width: 150px; + height: 150px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat 0 -588px; + width: 119px; + height: 118px; + margin: 0 auto; + top: -18px; + position: relative; + padding-top: 35px; + height: 83px; +} + +.campaign_last_stage_info .rewards .scroll .icon { + margin: 0 auto; +} + +.campaign_last_stage_info .rewards .scroll .icon.hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -119px -620px; + width: 56px; + height: 57px; + padding-top: 3px; + height: 55px; + margin-top: -6px; +} + +.campaign_last_stage_info .rewards .scroll .icon.culture_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -735px -356px; + width: 31px; + height: 43px; +} + +.campaign_last_stage_info.hero .reward { + width: 230px; + float: left; +} + +.campaign_last_stage_info .btn_ok { + width: 230px; + margin-top: 3px; +} + +.campaign_last_stage_info.nohero .btn_ok { + margin-top: 15px; +} + +.campaign_last_stage_info .rewards_fix { + position: absolute; + top: 294px; + left: 0; + right: 0; + bottom: 10px; + text-align: center; + z-index: 10; +} + +.hercules2014_explanation { + width: 470px; +} + +.hercules2014_explanation li { + display: none; +} + +.hercules2014_explanation li .descr { + margin: 0 15px 0 10px; + height: 70px; +} + +.hercules2014_explanation li .image_container { + margin-top: 10px; + margin-left: -40px; + width: 470px; +} + +.hercules2014_explanation li .info_image { + margin: auto; + width: 375px; + height: 207px; +} + +.hercules2014_explanation li .info_1 { + background-image: url(https://gpfr.innogamescdn.com/images/game/events/hercules2014/info_window_image_step1.jpg); +} + +.hercules2014_explanation li .info_2 { + background-image: url(https://gpfr.innogamescdn.com/images/game/events/hercules2014/info_window_image_step2.jpg); +} + +.hercules2014_explanation li .info_3 { + background-image: url(https://gpfr.innogamescdn.com/images/game/events/hercules2014/info_window_image_step3.png); + width: 398px; + height: 217px; +} + +.hercules2014_explanation li .info_4 { + background-image: url(https://gpfr.innogamescdn.com/images/game/events/hercules2014/info_window_image_step4.jpg); +} + +.hercules2014_explanation li .info_5 { + background-image: url(https://gpfr.innogamescdn.com/images/game/events/hercules2014/info_window_image_step5.jpg); +} + +.hercules2014_explanation li .section_2_action, +.hercules2014_explanation li .section_3_action { + display: none; + position: absolute; + left: 0; + right: 0; +} + +.hercules2014_explanation li .section_2_action { + top: 100px; +} + +.hercules2014_explanation li .section_2_action .title { + text-align: center; + font-size: 12px; +} + +.hercules2014_explanation li .section_3_action { + top: 100px; +} + +.hercules2014_explanation li .section_3_action .title { + color: #ffc144; + line-height: 27px; + font-size: 24px; + text-align: center; +} + +.hercules2014_explanation li .section_3_action .subtitle { + color: #fec463; + font-size: 10px; + line-height: 13px; + font-weight: 600; + margin-top: 10px; + text-align: center; +} + +.hercules2014_explanation li .navi { + margin: 10px 0 55px 0; +} + +.hercules2014_explanation li .navi .arrow_prev { + float: left; + margin-left: 10px; + cursor: pointer; +} + +.hercules2014_explanation li .navi .text_prev { + float: left; + margin-top: 5px; + margin-left: 10px; +} + +.hercules2014_explanation li .navi .text_next { + margin-top: 5px; + margin-right: 10px; + float: right; +} + +.hercules2014_explanation li .navi .arrow_next { + display: inline-block; + margin-right: 40px; + float: right; + cursor: pointer; +} + +.hercules2014_tutorial .tutorial_image { + text-align: center; +} + +.hercules2014_tutorial ._tutorial_image { + width: 375px; + height: 207px; + margin: 0 auto; +} + +.hercules2014_tutorial.tutorial_battleground .tutorial_image { + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_1_70e6a5c.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.hercules2014_tutorial.tutorial_attacking .tutorial_image { + width: 375px; + height: 207px; + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_2_029ef7f.png) no-repeat 0 0; + width: 398px; + height: 217px; +} + +.hercules2014_tutorial.tutorial_attack_again .tutorial_image { + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_3_74f42dc.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.hercules2014_tutorial.tutorial_wounded_units .tutorial_image { + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_4_2618609.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.hercules2014_tutorial.tutorial_wounded_units .tutorial_image .image_text { + position: absolute; + top: 195px; + left: 168px; + width: 200px; +} + +.hercules2014_tutorial.tutorial_collect_troops .tutorial_image { + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_5_a512e57.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.hercules2014_tutorial.tutorial_you_won .tutorial_image { + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_6_f99035a.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.hercules2014_tutorial.tutorial_honor_points .tutorial_image { + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_7_8de1996.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.hercules2014_tutorial.tutorial_ranking .tutorial_image { + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/tutorial/info_8_9ffea52.png) no-repeat 0 0; + width: 375px; + height: 207px; +} + +.hercules2014_tutorial .leader { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/vitellus_58842b1.png) no-repeat 0 0; + width: 770px; + height: 537px; + position: absolute; + margin-left: 4px; + margin-top: 4px; + bottom: 4px; +} + +.hercules2014_tutorial .tutorial_container { + position: absolute; + top: 10px; + left: 330px; +} + +.hercules2014_tutorial .tutorial_container.larger { + bottom: 150px; +} + +.hercules2014_tutorial .button_container { + width: 100%; + text-align: center; + margin-top: 10px; +} + +.hercules2014_tutorial .btn_wnd.close { + top: 4px; + right: 4px; + position: absolute; +} + +.hercules2014_tutorial .speechbubble_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/speechbubble_middle_a1b602b.png) no-repeat 0 0; + width: 402px; + height: 10px; + background-repeat: repeat-y; + height: 100%; +} + +.hercules2014_tutorial .speechbubble_middle .fight_image { + background-image: url(https://gpfr.innogamescdn.com/images/game/events/hercules2014/battle_wallpaper.jpg); + width: 390px; + height: 223px; + margin-left: 5px; + margin-top: -5px; + border: 1px solid #000; +} + +.hercules2014_tutorial .speechbubble_arrow { + position: absolute; + bottom: -17px; + left: 20px; +} + +.hercules2014_tutorial .tutorial_text { + padding: 20px 0 15px 0; + margin: 0 auto; + width: 375px; +} + +.hercules2014_tutorial .hero_box { + width: 148px; + min-height: 121px; + display: inline-block; + margin-bottom: 15px; +} + +.hercules2014_tutorial .hero_box .title { + display: inherit; +} + +.hercules2014_tutorial .hero_box .exclusive { + display: none; +} + +.empty_window { + top: 0; + left: 0; + bottom: 0; + right: 0; +} + +.empty_window .background, +.empty_window .border, +.empty_window .buttons, +.empty_window .corner, +.empty_window .decoration, +.empty_window .title { + display: none; +} + +.empty_window .content { + position: absolute; + top: 0; + left: 7px; + bottom: 0; + right: 0; + overflow: hidden; +} + +.dialog.hercules2014 .window_content, +.dialog.hercules2014_end_interstitial .window_content { + padding: 0; + overflow: hidden; +} + +.dialog.hercules2014 .window_content .yellowBox, +.dialog.hercules2014_end_interstitial .window_content .yellowBox { + left: 282px; + width: 420px; +} + +.dialog.hercules2014 div.btn_start, +.dialog.hercules2014_end_interstitial div.btn_start { + width: 260px; +} + +.welcome_window_container.hercules2014, +.welcome_window_container.hercules2014_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/single_images/interstitial_9759130.jpg) no-repeat 0 0; + width: 727px; + height: 380px; +} + +.hercules2014 .ranking { + position: absolute; + left: 0; + display: inline-block; + width: 240px; +} + +.hercules2014 .ranking .btn_ranking_info { + position: absolute; + top: 5px; + right: 25px; +} + +.hercules2014 .ranking .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 -300px; + width: 106px; + height: 149px; + position: absolute; + top: 0; + left: 0; +} + +.hercules2014 .ranking .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/single_images/ranking_bg_middle_96af2b6.png) no-repeat 0 0; + width: 4px; + height: 149px; + position: absolute; + top: 0; + left: 106px; + right: 106px; + background-repeat: repeat-x; + width: auto; +} + +.hercules2014 .ranking .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -106px -300px; + width: 106px; + height: 149px; + position: absolute; + top: 0; + right: 0; +} + +.hercules2014 .ranking .content { + position: relative; + height: 126px; + padding: 0 20px 0 7px; +} + +.hercules2014 .ranking .content .title_table { + display: table; + height: 34px; + margin: 11px 0 3px 0; + width: 100%; +} + +.hercules2014 .ranking .content .title_table .title { + display: table-cell; + vertical-align: middle; + text-align: center; + color: #fdce64; + font-size: 12px; +} + +.hercules2014 .ranking .content .title_table .cooldown { + color: #fff; + font-size: 10px; +} + +.hercules2014 .ranking .content .list { + width: 213px; +} + +.hercules2014 .ranking .content .list .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: absolute; + bottom: 0; + left: 50%; + margin-left: -80px; +} + +.hercules2014 .ranking .content .list .icon { + display: inline-block; +} + +.hercules2014 .ranking .content .list th.name { + text-align: center; + position: relative; +} + +.hercules2014 .ranking .content .list .icon.points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -390px -300px; + width: 27px; + height: 23px; + position: absolute; + right: 3px; + top: 0; +} + +.hercules2014 .ranking .content .list .icon.position { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -417px -300px; + width: 21px; + height: 17px; + position: absolute; + left: 3px; + top: 3px; +} + +.hercules2014 .ranking .content .list td { + line-height: 15px; +} + +.hercules2014 .ranking .content .list td.position { + padding-left: 4px; +} + +.hercules2014 .ranking .content .list td.points { + text-align: right; + padding-right: 6px; +} + +.hercules2014 .ranking .content .list td.no_results { + text-align: center; + height: 50px; +} + +.hercules2014 .ranking .content .list td.ranking_not_active { + text-align: center; + height: 82px; +} + +.hercules2014 .ranking .content .list .selected { + font-weight: 600; +} + +.hercules2014 .ranking .content .list .fix_no_wrap { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.hercules2014 .ranking .content .list .fix_no_wrap .gp_player_link.is_player { + color: #000; +} + +.hercules2014 .ranking.daily { + top: 68px; +} + +.hercules2014 .ranking.overall { + top: 212px; +} + +#wmap { + touch-action: none; + -ms-touch-action: none; +} + +.ui_advisors { + background: 0 0; + height: 24px; + overflow: hidden; + width: 133px; + position: absolute; + top: 119px; + left: 2px; + cursor: pointer; +} + +.ui_advisors .advisor_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -582px -118px; + width: 25px; + height: 25px; + position: absolute; +} + +.ui_advisors .advisor_frame.curator { + left: 0; +} + +.ui_advisors .advisor_frame.trader { + left: 27px; +} + +.ui_advisors .advisor_frame.priest { + left: 54px; +} + +.ui_advisors .advisor_frame.commander { + left: 81px; +} + +.ui_advisors .advisor_frame.captain { + left: 108px; +} + +.ui_advisors .advisor { + width: 22px; + height: 22px; + position: relative; + top: 1px; + left: 0; +} + +.toolbar_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -713px -550px; + width: 28px; + height: 28px; + position: relative; + display: inline-block; + overflow: hidden; + cursor: pointer; + vertical-align: middle; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + float: left; +} + +.toolbar_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -466px; + width: 28px; + height: 28px; +} + +.toolbar_button .icon { + width: 28px; + height: 26px; + position: relative; +} + +.toolbar_button .icon .caption { + position: absolute; + color: #fff; + text-shadow: #000 1px 1px; + font-weight: 700; + font-family: Arial; + font-size: 12px; + left: 1px; + top: -1px; +} + +.toolbar_button.inventory .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -635px -497px; + width: 28px; + height: 26px; +} + +.toolbar_button.inventory.full .icon .caption { + color: red; +} + +.toolbar_button.notepad .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -525px; + width: 28px; + height: 26px; +} + +.toolbar_button.premium { + height: 28px; +} + +.toolbar_button.premium .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -497px; + width: 28px; + height: 28px; +} + +.toolbar_button.flashing:before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -466px; + width: 28px; + height: 28px; + opacity: 0; + position: absolute; + top: 0; + left: 0; + -webkit-animation: fadeInOutIn 2s ease infinite; + -ms-animation: fadeInOutIn 2s ease infinite; + animation: fadeInOutIn 2s ease infinite; +} + +.circle_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -84px; + width: 32px; + height: 33px; + position: relative; + display: inline-block; + overflow: hidden; + cursor: pointer; + vertical-align: middle; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.circle_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -117px; + width: 32px; + height: 33px; +} + +.circle_button.checked, +.circle_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -84px; + width: 32px; + height: 33px; +} + +.circle_button .icon, +.circle_button .pointer { + margin-top: 1px; +} + +.circle_button.checked .pointer, +.circle_button:active .icon, +.circle_button:active .pointer { + margin-top: 2px; +} + +.circle_button.strategic_map .icon, +.circle_button.strategic_map .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -404px; + width: 32px; + height: 31px; +} + +.circle_button.island_view .icon, +.circle_button.island_view .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -342px; + width: 32px; + height: 31px; +} + +.circle_button.city_overview .icon, +.circle_button.city_overview .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -342px; + width: 32px; + height: 31px; +} + +.circle_button.jump_to_town .icon, +.circle_button.jump_to_town .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -373px; + width: 32px; + height: 31px; +} + +.circle_button.save_location .icon, +.circle_button.save_location .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -435px; + width: 32px; + height: 31px; +} + +.circle_button.jump_to_coordination .icon, +.circle_button.jump_to_coordination .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -373px; + width: 32px; + height: 31px; +} + +.circle_button.settings .icon, +.circle_button.settings .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -435px; + width: 32px; + height: 31px; +} + +.circle_button_small.audio_toggle .icon, +.circle_button_small.audio_toggle .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -582px -167px; + width: 24px; + height: 24px; +} + +.muted .circle_button_small.audio_toggle .icon, +.muted .circle_button_small.audio_toggle .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -455px -345px; + width: 24px; + height: 24px; +} + +.circle_button_small.wiki .icon, +.circle_button_small.wiki .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -580px -479px; + width: 24px; + height: 24px; +} + +.circle_button.logout .icon, +.circle_button.logout .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -404px; + width: 32px; + height: 31px; +} + +.circle_button.spells .icon, +.circle_button.spells .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -466px; + width: 32px; + height: 31px; +} + +.circle_button_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -716px -612px; + width: 24px; + height: 24px; + position: relative; + display: inline-block; + overflow: hidden; + cursor: pointer; + vertical-align: middle; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.circle_button_small:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -455px -393px; + width: 24px; + height: 24px; +} + +.circle_button_small:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -582px -143px; + width: 24px; + height: 24px; +} + +.circle_button_small .icon { + margin-top: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -455px -369px; + width: 24px; + height: 24px; +} + +.circle_button_small.info .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -581px -430px; + width: 24px; + height: 24px; +} + +.circle_button_small:active .icon { + margin-top: 2px; +} + +.button_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -160px; + width: 14px; + height: 22px; + position: relative; + display: inline-block; + overflow: hidden; + cursor: pointer; + vertical-align: middle; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.button_arrow.left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -160px; + width: 14px; + height: 22px; +} + +.button_arrow.left:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -691px; + width: 14px; + height: 22px; +} + +.button_arrow.left:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -182px; + width: 14px; + height: 22px; +} + +.button_arrow.left.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -204px; + width: 14px; + height: 22px; + cursor: default; +} + +.button_arrow.right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -14px -691px; + width: 14px; + height: 22px; +} + +.button_arrow.right:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -56px -691px; + width: 14px; + height: 22px; +} + +.button_arrow.right:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -28px -691px; + width: 14px; + height: 22px; +} + +.button_arrow.right.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -42px -691px; + width: 14px; + height: 22px; + cursor: default; +} + +.slide_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -722px -647px; + width: 20px; + height: 17px; + cursor: pointer; +} + +.slide_button.disabled, +.slide_button.disabled:active, +.slide_button.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -722px -647px; + width: 20px; + height: 17px; + cursor: default; +} + +.slide_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -70px -671px; + width: 20px; + height: 17px; +} + +.slide_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -50px -671px; + width: 20px; + height: 17px; +} + +.container_hidden .slide_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -711px -466px; + width: 20px; + height: 17px; +} + +.container_hidden .slide_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -581px -454px; + width: 20px; + height: 17px; +} + +.container_hidden .slide_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -584px -368px; + width: 20px; + height: 17px; +} + +#ui_box { + width: 100%; + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + overflow: hidden; + height: auto; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.window_content #ui_box { + position: static; +} + +.nui_toolbar { + position: absolute; + top: 0; + left: 0; + right: 0; + height: 64px; + z-index: 5; +} + +.nui_toolbar .left { + position: absolute; + top: 0; + left: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -64px; + width: 444px; + height: 64px; +} + +.nui_toolbar .right { + position: absolute; + top: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 0; + width: 488px; + height: 64px; +} + +.nui_toolbar .middle { + position: absolute; + top: 0; + right: 488px; + left: 444px; + height: 64px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/layout_toolbar_repeatable_2.48.png) repeat-x 0 0; +} + +.nui_left_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -128px; + width: 145px; + height: 191px; + height: 63px; + position: absolute; + padding-top: 95px; + top: 64px; + left: 0; + z-index: 6; +} + +.nui_left_box .server_time_area { + color: #ecddbc; + font-size: 10px; + font-family: Verdana; + margin-right: 7px; + text-align: center; + cursor: default; +} + +.nui_main_menu { + width: 145px; + height: auto; + position: absolute; + top: 222px; + left: 0; + z-index: 5; + overflow: visible; +} + +.nui_main_menu .top { + position: absolute; + top: 0; + left: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -423px -558px; + width: 145px; + height: 8px; +} + +.nui_main_menu .middle { + width: 145px; + margin: 8px 0 37px 0; + -webkit-transition: all .4s; + -moz-transition: all .4s; + -ms-transition: all .4s; + transition: all .4s; +} + +.nui_main_menu.main_menu_hidden .middle { + margin-top: -3px; + overflow: hidden; +} + +.nui_main_menu .middle .border { + position: absolute; + right: 5px; + top: 8px; + bottom: 37px; + width: 9px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/layout_borders.png) repeat-y 0 0; +} + +.nui_main_menu .bottom { + position: absolute; + bottom: 0; + left: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -435px -479px; + width: 145px; + height: 37px; +} + +.nui_main_menu .leaves { + bottom: 13px; + right: -4px; +} + +.nui_main_menu.convoluted .middle { + height: 0; +} + +.nui_main_menu.convoluted .bottom { + bottom: 2px; +} + +.nui_right_box { + position: absolute; + top: 146px; + right: 0; + z-index: 5; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -430px; + width: 145px; + height: 94px; +} + +.leaves { + position: absolute; + z-index: 5; +} + +.leaves.type1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -341px; + width: 70px; + height: 65px; +} + +.leaves.type2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px 0; + width: 64px; + height: 65px; +} + +.leaves.type3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -485px; + width: 30px; + height: 65px; +} + +.leaves.type4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -436px; + width: 40px; + height: 49px; +} + +.leaves.type5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px 0; + width: 71px; + height: 52px; +} + +.leaves.type6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -52px; + width: 70px; + height: 49px; +} + +.leaves.top_left { + top: -2px; + left: -38px; +} + +.leaves.top_left_below { + top: 26px; + left: -23px; +} + +.leaves.top_left_right_part1 { + top: 26px; + left: 94px; +} + +.leaves.top_left_right_part2 { + top: 6px; + left: 90px; +} + +.leaves.top_right { + top: 0; + right: -41px; +} + +.leaves.top_right_below { + right: -20px; + top: 127px; +} + +.leaves.top_right_left { + top: 112px; + right: 104px; +} + +#ui_box .toolbar_buttons { + position: absolute; + top: 3px; + left: 138px; + height: 26px; + width: auto; + z-index: 7; + text-align: left; +} + +#ui_box .btn_strategic_map { + position: absolute; + top: 21px; + left: 3px; +} + +#ui_box .btn_island_view { + position: absolute; + top: 3px; + left: 35px; +} + +#ui_box .btn_town_overview { + position: absolute; + top: 3px; + left: 71px; +} + +#ui_box .btn_jump_to_town { + position: absolute; + top: 19px; + left: 103px; +} + +#ui_box .btn_save_location { + position: absolute; + top: 2px; + left: 4px; +} + +#ui_box .btn_jump_to_coordination { + position: absolute; + top: 2px; + right: 5px; +} + +#ui_box .wgt_coordinates { + position: absolute; + top: 9px; + left: 35px; +} + +#ui_box .btn_change_colors { + position: absolute; + top: 33px; + left: 57px; +} + +#ui_box .layer_over_change_colors_button_part1 { + top: 40px; + left: 57px; + background-position: -515px -120px; +} + +#ui_box .layer_over_change_colors_button_part2 { + top: 40px; + left: 78px; + background-position: -536px -120px; +} + +#overviews_link_hover_menu { + top: 29px; + left: 156px; + margin-left: 0; +} + +#ui_box .tb_activities { + position: absolute; + top: 3px; + left: 220px; + z-index: 6; +} + +#ui_box .rb_map { + position: absolute; + width: 67px; + height: 55px; + left: 2px; + top: 0; +} + +#ui_box .rb_map .option.island_view { + position: absolute; + top: 1px; + left: 33px; +} + +#ui_box .rb_map .option.strategic_map { + position: absolute; + top: 19px; + left: 1px; +} + +#ui_box .rb_map .option.city_overview { + position: absolute; + top: 1px; + left: 69px; +} + +#ui_box .topleft_navigation_area { + position: absolute; + overflow: visible; + top: 2px; + left: 0; + z-index: 7; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -319px; + width: 164px; + height: 111px; +} + +#ui_box .topleft_navigation_area .bull_eye_buttons { + position: absolute; + top: 2px; + left: 0; + width: 138px; + height: 72px; +} + +#ui_box .topleft_navigation_area .bull_eye_buttons { + z-index: 7; +} + +#ui_box .topleft_navigation_area .coords_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -295px -479px; + width: 140px; + height: 41px; + position: absolute; + top: 85px; + z-index: 5; + left: 0; + overflow: hidden; +} + +#ui_box .nui_grepo_score { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -352px -430px; + width: 149px; + height: 46px; + top: 112px; + left: 0; + position: absolute; + z-index: 6; +} + +#ui_box .nui_grepo_score .grepo_score_container { + position: relative; + top: 18px; + left: 0; + margin: 0 40px 0 53px; + font-size: 9px; + line-height: 15px; +} + +#ui_box .nui_grepo_score .btn_grepo_score_container { + position: absolute; + left: 22px; + top: 10px; + height: 32px; + width: 32px; +} + +#ui_box .nui_grepo_score .btn_grepo_score { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -150px; + width: 32px; + height: 32px; + position: absolute; + cursor: pointer; +} + +#ui_box .nui_grepo_score .btn_grepo_score:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -117px; + width: 32px; + height: 32px; +} + +#ui_box .nui_grepo_score .btn_grepo_score:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -150px; + width: 32px; + height: 32px; +} + +#ui_box .nui_grepo_score .grepo_score { + color: #fc6; +} + +#ui_box .nui_grepo_score .indicator { + width: 8px; + cursor: pointer; +} + +#ui_box #minimized_windows_area { + position: absolute; + bottom: 14px; + width: 624px; + margin-left: -312px; + left: 50%; + z-index: 20; +} + +#ui_box #minimized_windows_area.instant_buy { + width: 800px; + margin-left: -400px; +} + +#ui_box .minimized_windows_area .windows_box .box { + margin: 4px 1px 0 0; + width: 202px; +} + +#ui_box .minimized_windows_area .box .caption { + max-width: 75px; +} + +#ui_box .btn_close_all_windows { + bottom: auto; + top: 71px; + right: 148px; + left: auto; + position: absolute; +} + +#ui_box.gods_spells_active .btn_close_all_windows { + bottom: auto; + top: 71px; + right: 290px; + left: auto; +} + +#ui_box .ocean_number_box { + position: absolute; + top: 65px; + left: 44px; + width: 58px; + height: 20px; +} + +#ui_box .ocean_number_box .ocean_number { + position: relative; + top: 1px; + left: 23px; + width: 30px; + font-size: 13px; + font-weight: 700; + text-align: center; + font-family: Arial; + color: #ecb44d; +} + +#toolbar_activity_commands_list, +#toolbar_activity_recruits_list, +#toolbar_activity_trades_list { + z-index: 900; + overflow: auto; +} + +#toolbar_activity_commands_list.fast { + left: 312px; + position: absolute; + top: 29px; + overflow: hidden; + display: none; +} + +#toolbar_activity_commands_list.fast .js-dropdown-item-list>div { + visibility: hidden; + margin-right: 15px; +} + +#toolbar_activity_commands_list.fast .js-dropdown-item-list>div.arrived { + display: none; +} + +#toolbar_activity_commands_list.fast .js-dropdown-list { + display: block; +} + +#toolbar_activity_commands_list.fast .js-dropdown-list .processing_movements { + display: none; + position: relative; + margin: 5px 10px; +} + +#toolbar_activity_commands_list.fast .js-dropdown-list .processing_movements .amount, +#toolbar_activity_commands_list.fast .js-dropdown-list .processing_movements .text { + display: inline-block; +} + +#toolbar_activity_commands_list.fast .js-dropdown-list .processing_movements.show { + display: block; +} + +#toolbar_activity_commands_list.fast .js-dropdown-list .icon .arrow_left, +#toolbar_activity_commands_list.fast .js-dropdown-list .icon .arrow_right { + cursor: default; +} + +#toolbar_activity_commands_list.fast .js-dropdown-list .content { + will-change: scroll-position,content; +} + +#toolbar_activity_commands_list.fast .js-dropdown-item-list div.visible { + visibility: visible; +} + +#toolbar_activity_commands_list.fast .remove { + visibility: hidden; +} + +#toolbar_activity_commands_list.fast .remove.cancelable { + visibility: visible; +} + +#toolbar_activity_recruits_list .content.instant_buy { + overflow: visible; +} + +#toolbar_activity_recruits_list .content { + max-height: 350px; +} + +.item.town_group_town, +.sandy-box .item, +.sandy-box .item_no_results { + height: 27px; + line-height: 27px; + font-size: 10px; + font-family: Verdana; + color: #423515; + font-weight: 700; + position: relative; + border-bottom: 0; +} + +.item.town_group_town { + background: url(https://gpfr.innogamescdn.com/images/game/box/sandy/nui_sandy_box_rows.png) repeat-x 0 0; +} + +.sandy-box .item.bookmark { + cursor: pointer; + text-align: left; + padding-left: 4px; + padding-right: 22px; + white-space: nowrap; +} + +.sandy-box .item_no_results { + cursor: default; + text-align: center; +} + +.sandy-box .item.odd { + background-position: 0 54px; +} + +.sandy-box .item.even { + background-position: 0 0; +} + +.sandy-box .item:hover { + background-position: 0 -54px; +} + +.sandy-box .item.command:hover, +.sandy-box .item.recruit:hover, +.sandy-box .item.trade:hover, +.sandy-box .item.unit_movements:hover { + background-position: 0 0; +} + +.sandy-box .item.bookmark .remove { + position: absolute; + top: 2px; + right: 2px; +} + +.sandy-box .item.recruit { + height: 50px; + padding: 0 40px 0 53px; +} + +.sandy-box .content.buildtime_reduction .item.recruit .icon { + position: absolute; + top: 5px; + left: 5px; + border: 1px solid #000; +} + +.sandy-box .content.buildtime_reduction .item.recruit .time { + text-align: left; + line-height: 50px; +} + +.sandy-box .content.buildtime_reduction .item.recruit .icon .count { + position: absolute; + bottom: 1px; + right: 2px; + font-size: 12px; + line-height: 14px; +} + +.sandy-box .content.buildtime_reduction .item.recruit .reduction { + position: absolute; + top: 2px; + right: 2px; +} + +.sandy-box .content.buildtime_reduction .item.recruit .remove { + position: absolute; + top: 26px; + right: 2px; +} + +.trade_icon { + width: 40px; + height: 40px; + background-position: 0 0; + background-repeat: no-repeat; +} + +.sandy-box .item.trade .trade_icon.colossus_of_rhodes { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.sandy-box .item.trade .trade_icon.great_pyramid_of_giza { + background-position: -32px -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.sandy-box .item.trade .trade_icon.hanging_gardens_of_babylon { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.sandy-box .item.trade .trade_icon.lighthouse_of_alexandria { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.sandy-box .item.trade .trade_icon.mausoleum_of_halicarnassus { + background-position: -64px 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.sandy-box .item.trade .trade_icon.statue_of_zeus_at_olympia { + background-position: -64px -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.sandy-box .item.trade .trade_icon.temple_of_artemis_at_ephesus { + background-position: -32px 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/ww_trade_2.70.png); + background-repeat: no-repeat; + width: 32px; + height: 32px; +} + +.trade_icon.res { + background-image: url(https://gpfr.innogamescdn.com/images/game/unit_overview/trade.png); +} + +.sandy-box .item.command, +.sandy-box .item.trade { + height: 47px; + padding: 0 35px 0 63px; + line-height: 14px; + text-align: left; + width: auto; + overflow: hidden; +} + +.sandy-box .item.command .icon, +.sandy-box .item.trade .icon { + width: 33px; + height: 33px; +} + +.sandy-box .item.command .time, +.sandy-box .item.trade .time { + padding: 10px 0 0 0; + position: relative; + display: inline-block; +} + +.sandy-box .item.command .details_wrapper { + position: relative; + display: inline-block; + margin-right: 10px; +} + +.sandy-box .item.command .town_link, +.sandy-box .item.trade .town_link { + white-space: nowrap; + position: relative; +} + +.sandy-box .item.command .icon, +.sandy-box .item.trade .icon { + position: absolute; + top: 7px; + left: 14px; + z-index: 1; +} + +.sandy-box .item.command .icon { + cursor: pointer; +} + +.sandy-box .item.revolts .icon, +.sandy-box .item.spy_movements .icon { + cursor: default; +} + +.sandy-box .item.revolts .arrow_left, +.sandy-box .item.revolts .arrow_right { + visibility: hidden; +} + +.sandy-box .item.command .arrow_left, +.sandy-box .item.command .arrow_right, +.sandy-box .item.trade .arrow_left, +.sandy-box .item.trade .arrow_right { + width: 11px; + height: 32px; + background-position: 0 0; + background-repeat: no-repeat; + position: absolute; + top: 0; +} + +.sandy-box .item.command .arrow_left, +.sandy-box .item.trade .arrow_left { + background-image: url(https://gpfr.innogamescdn.com/images/game/unit_overview/arrow_left.png); + left: -12px; + display: none; +} + +.sandy-box .item.command .attack .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -725px -152px; + width: 11px; + height: 32px; + left: -12px; + display: none; +} + +.sandy-box .item.trade .arrow_right { + background-image: url(https://gpfr.innogamescdn.com/images/game/unit_overview/arrow_right.png); + right: -11px; +} + +.sandy-box .item.command .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -128px; + width: 11px; + height: 32px; + right: -11px; +} + +.sandy-box .item.command .arrow_right { + right: -12px; +} + +.sandy-box .item.command .returning .arrow_left, +.sandy-box .item.trade .returning .arrow_left { + display: block; +} + +.sandy-box .item.command .returning .arrow_right, +.sandy-box .item.trade .returning .arrow_right { + display: none; +} + +.sandy-box .item.command .button_new.remove, +.sandy-box .item.trade .button_new.remove { + position: absolute; + top: 13px; +} + +.sandy-box .item.trade .button_new.remove { + right: 5px; +} + +.sandy-box .item.command .button_new.remove { + right: 0; +} + +body.plugin_area .nui_main_menu { + top: 345px; +} + +body.plugin_area .nui_left_box { + top: 154px; +} + +.ui_heroes_overview_container { + display: none; +} + +body.has_heroes .ui_heroes_overview_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -479px; + width: 150px; + height: 42px; + position: absolute; + top: 93px; + right: 0; + display: block; +} + +.ui_heroes_overview { + background: 0 0; + height: 25px; + overflow: hidden; + width: 133px; + margin: 5px 0 0 16px; +} + +.ui_heroes_overview .heroes_info { + width: 140px; + height: 25px; + margin-right: -7px; + position: relative; +} + +.ui_heroes_overview .hero_in_town { + height: 26px; + position: relative; + overflow: hidden; +} + +.ui_heroes_overview .asclepius_snake_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -584px -341px; + width: 18px; + height: 23px; + cursor: pointer; + position: absolute; + left: 108px; + top: 3px; +} + +.ui_heroes_overview .hero_in_town .hero_icon_border { + cursor: pointer; + top: 0; + left: 1px; +} + +.ui_heroes_overview .hero_in_town .golden_border { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -590px; + width: 24px; + height: 24px; +} + +.ui_heroes_overview .hero_in_town .hero_icon_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -388px; + width: 22px; + height: 22px; + position: relative; + margin: 1px 0 0 1px; +} + +.ui_heroes_overview .hero_in_town .hero_icon { + width: 22px; + height: 22px; +} + +.ui_heroes_overview .single-progressbar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -562px -590px; + width: 77px; + height: 24px; + position: absolute; + top: 0; + left: 28px; + cursor: pointer; +} + +.ui_heroes_overview .single-progressbar .body, +.ui_heroes_overview .single-progressbar .border_l, +.ui_heroes_overview .single-progressbar .border_r { + display: none; +} + +.ui_heroes_overview .single-progressbar .progress { + top: 1px; + left: 1px; + right: 1px; + height: 22px; +} + +.ui_heroes_overview .single-progressbar .progress .indicator { + height: 22px; +} + +.ui_heroes_overview .single-progressbar.experience .progress .indicator { + background-position: 0 -751px; +} + +.ui_heroes_overview .single-progressbar.regeneration .progress .indicator { + background-position: 0 -773px; +} + +.ui_heroes_overview .single-progressbar.assigning .progress .indicator { + background-position: 0 -795px; +} + +.ui_heroes_overview .single-progressbar .caption { + color: #f7c664; + font-weight: 700; + font-size: 10px; + line-height: 18px; +} + +.ui_heroes_overview .btn_cancel_town_travel, +.ui_heroes_overview .btn_experience, +.ui_heroes_overview .btn_regeneration, +.ui_heroes_overview .sword_icon_border { + position: absolute; + top: 0; + left: 108px; +} + +.ui_heroes_overview .sword_icon_border { + display: none; + width: 24px; + height: 24px; +} + +.ui_heroes_overview .sword_icon { + padding-top: 5px; +} + +.ui_heroes_overview .btn_no_hero_in_town { + position: absolute; + top: -1px; + left: 28px; + width: 104px; +} + +.ui_heroes_overview .teaser.hide { + display: none; +} + +.ui_heroes_overview .teaser { + position: absolute; + top: -2px; + left: 50%; + width: 141px; + height: 38px; + line-height: 28px; + text-align: center; + margin-left: -74px; + cursor: pointer; + z-index: 3; +} + +@-webkit-keyframes heroes_teaser { + 0% { + opacity: 0; + width: 56px; + margin-left: -28px; + } + + 40% { + opacity: 0; + width: 56px; + margin-left: -28px; + } + + 50% { + opacity: 1; + } + + 100% { + width: 141px; + margin-left: -74px; + } +} + +@-moz-keyframes heroes_teaser { + 0% { + opacity: 0; + width: 56px; + margin-left: -28px; + } + + 40% { + opacity: 0; + width: 56px; + margin-left: -28px; + } + + 50% { + opacity: 1; + } + + 100% { + width: 141px; + margin-left: -74px; + } +} + +@keyframes heroes_teaser { + 0% { + opacity: 0; + width: 56px; + margin-left: -28px; + } + + 40% { + opacity: 0; + width: 56px; + margin-left: -28px; + } + + 50% { + opacity: 1; + } + + 100% { + width: 141px; + margin-left: -74px; + } +} + +.ui_heroes_overview .teaser_l { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 51%; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/teaser.png) no-repeat 0 0; +} + +.ui_heroes_overview .teaser .content { + position: absolute; + top: 0; + bottom: 0; + left: 10px; + right: 10px; + z-index: 1; + text-align: center; + white-space: nowrap; + overflow: hidden; + color: #fd9; + text-shadow: 1px 1px #000; +} + +.ui_heroes_overview .teaser_r { + position: absolute; + top: 0; + bottom: 0; + right: 0; + width: 50%; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/teaser.png) no-repeat 100% -38px; +} + +.ui_hero_tooltip_small { + line-height: 13px; + width: 210px; +} + +.ui_hero_tooltip_small .icon_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -152px; + width: 54px; + height: 56px; + float: left; + margin: 0 3px 3px 0; +} + +.ui_hero_tooltip_small .icon_border .icon { + margin: 3px 0 0 2px; +} + +.ui_hero_tooltip_small .h3 { + font-weight: 700; +} + +.nui_main_menu .content ul, +.nui_main_menu .content ul li { + list-style: none; + padding: 0; + margin: 0; + display: block; +} + +.nui_main_menu .content ul li { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -353px -255px; + width: 134px; + height: 34px; + position: relative; + font-size: 10px; + font-weight: 700; + color: #ecb44d; + vertical-align: center; + text-shadow: #000 0 0 2px; + cursor: pointer; + padding-right: 5px; +} + +.nui_main_menu .content ul li.active, +.nui_main_menu .content ul li:active, +.nui_main_menu .content ul li:hover { + color: #edb; +} + +.nui_main_menu .content ul li.disabled { + cursor: default!important; + color: #ecb44d; +} + +.nui_main_menu .content ul li .button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -182px; + width: 32px; + height: 32px; + position: absolute; + top: 1px; + left: 1px; + display: block; +} + +.nui_main_menu .content ul li .button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -244px; + width: 20px; + height: 34px; + top: 0; + left: 0; + display: block; + position: absolute; +} + +.nui_main_menu .button .icon { + display: block; + position: absolute; + width: 24px; + height: 21px; + top: 6px; + left: 6px; +} + +.nui_main_menu .messages .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -528px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .reports .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -624px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .alliance .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -582px -191px; + width: 24px; + height: 21px; +} + +.nui_main_menu .allianceforum .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -384px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .disabled.allianceforum .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -408px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .ranking .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -600px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .profile .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -576px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .invite_friends .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -504px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .chat .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -432px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .disabled.chat .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -456px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .forum .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -480px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .domination .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -719px -363px; + width: 22px; + height: 22px; + left: 5px; + top: 4px; +} + +.nui_main_menu .olympus .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -552px -647px; + width: 24px; + height: 21px; +} + +.nui_main_menu .world_wonders .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -648px -647px; + width: 24px; + height: 21px; + left: 5px; +} + +.nui_main_menu .content ul li:hover .button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -214px; + width: 32px; + height: 32px; + left: 1px; +} + +.nui_main_menu .content ul li.active .button, +.nui_main_menu .content ul li:active .button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -182px; + width: 32px; + height: 32px; +} + +.nui_main_menu .content ul li.disabled .button, +.nui_main_menu .content ul li.disabled.active .button, +.nui_main_menu .content ul li.disabled:active .button, +.nui_main_menu .content ul li.disabled:hover .button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -214px; + width: 32px; + height: 32px; +} + +.nui_main_menu .content ul li .name_wrapper { + display: table; + height: 100%; + margin-left: 34px; +} + +.nui_main_menu .content ul li .name_wrapper .name { + display: table-cell; + height: 100%; + width: 100%; + text-align: left; + vertical-align: middle; +} + +#ui_box .nui_grepo_score .indicator, +.nui_main_menu .content ul li .indicator { + display: none; + position: absolute; + bottom: 0; + right: -2px; + border: solid 1px #ffca4c; + background: url(https://gpfr.innogamescdn.com/images/game/layout/new_ui_main_menu_indicator_bg.png); + height: 12px; + color: #fff; + font-size: 9px; + border-radius: 9px; + padding: 0 3px 1px; + line-height: 13px; + font-weight: 400; +} + +.nui_main_menu .content ul li .indicator.has_annoucements { + background: #29421a; + background: -moz-linear-gradient(top,#29421a 0,#1d2d10 100%); + background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#29421a),color-stop(100%,#1d2d10)); + background: -webkit-linear-gradient(top,#29421a 0,#1d2d10 100%); + background: -o-linear-gradient(top,#29421a 0,#1d2d10 100%); + background: -ms-linear-gradient(top,#29421a 0,#1d2d10 100%); + background: linear-gradient(to bottom,#29421a 0,#1d2d10 100%); +} + +.nui_main_menu .content ul li.first { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -590px; + width: 134px; + height: 31px; + margin-top: -3px; +} + +.nui_main_menu .content ul li.first .button_wrapper { + top: -3px; +} + +.nui_main_menu .content ul li.first .name_wrapper { + margin-top: -3px; +} + +.nui_main_menu .content ul li.last { + height: 26px; +} + +.nui_main_menu .content ul li.last .name_wrapper { + height: 34px; +} + +.nui_main_menu .content ul li.last .name_wrapper .name { + position: relative; + top: -1px; +} + +.nui_main_menu .content ul li.last .button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -701px -485px; + width: 32px; + height: 36px; +} + +.nui_main_menu .slide_button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -612px; + width: 45px; + height: 24px; + position: absolute; + top: 2px; + left: 44px; +} + +.nui_main_menu .slide_button { + margin: 5px 0 0 15px; +} + +@media (hover:none) { + .nui_main_menu .content ul li:hover { + color: #ecb44d; + } + + .nui_main_menu .content ul li:hover .button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -182px; + width: 32px; + height: 32px; + left: 1px; + } +} + +.toolbar_activities { + width: auto; + height: 27px; + display: inline-block; +} + +.toolbar_activities .left, +.toolbar_activities .right { + height: 27px; + position: absolute; + top: 0; +} + +.toolbar_activities .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -568px -266px; + width: 26px; + height: 27px; + left: 0; +} + +.toolbar_activities .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -701px -521px; + width: 30px; + height: 27px; + right: 0; +} + +.toolbar_activities .middle { + height: 27px; + width: auto; + margin: 0 30px 0 26px; +} + +.toolbar_activities .middle .activity_wrap { + position: relative; + float: left; +} + +.toolbar_activities .middle .activity { + position: relative; + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -551px; + width: 26px; + height: 27px; + cursor: pointer; +} + +.toolbar_activities .middle .activity .hover_state { + width: 27px; + height: 26px; + overflow: visible; +} + +.toolbar_activities .middle .activity:hover .hover_state { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -635px -525px; + width: 27px; + height: 26px; +} + +.toolbar_activities .middle .activity.attack_indicator:hover .hover_state { + background: 0 0; +} + +.toolbar_activities .middle .activity .icon { + height: 27px; + width: 26px; + overflow: visible; +} + +.toolbar_activities .dropdown_box { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; +} + +.toolbar_activities .middle .activity .icon .count { + position: absolute; + color: #fff; + text-shadow: #000 1px 1px; + font-weight: 700; + font-family: Arial; + font-size: 12px; + left: 1px; + top: -1px; +} + +.toolbar_activities .middle .activity.attack_indicator.active .icon .count, +.toolbar_activities .middle .activity.commands.active .icon .count, +.toolbar_activities .middle .activity.temple_commands.has_attack .icon .count { + color: red; +} + +.toolbar_activities .middle .activity.attack_indicator .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -633px -551px; + width: 26px; + height: 27px; +} + +.toolbar_activities .middle .activity.attack_indicator.active .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -568px -212px; + width: 26px; + height: 27px; +} + +.toolbar_activities .middle .activity.recruits .icon, +.toolbar_activities .middle .activity.recruits.active .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -558px -341px; + width: 26px; + height: 27px; +} + +.toolbar_activities .middle .activity.commands .icon, +.toolbar_activities .middle .activity.commands.active .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -568px -239px; + width: 26px; + height: 27px; +} + +.toolbar_activities .middle .activity.trades .icon, +.toolbar_activities .middle .activity.trades .icon.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -558px -368px; + width: 26px; + height: 27px; +} + +.toolbar_activities .middle .activity.temple_commands .icon, +.toolbar_activities .middle .activity.temple_commands.active .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -455px -319px; + width: 26px; + height: 26px; +} + +.toolbar_activities .middle .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -736px -152px; + width: 2px; + height: 27px; + position: relative; + float: left; +} + +#toolbar_activity_recruits_list .content.instant_buy .item { + padding: 0; + line-height: 12px; + margin: 0; + height: 60px; +} + +#toolbar_activity_recruits_list .content.instant_buy .item .empty_slot { + display: none; +} + +#toolbar_activity_recruits_list .content.instant_buy .item.instant_buy { + line-height: 50px; +} + +#toolbar_activity_recruits_list .content.instant_buy .item.instant_buy>div { + width: auto; +} + +#toolbar_activity_recruits_list .content.instant_buy .ui_various_orders { + width: auto; +} + +#toolbar_activity_recruits_list .content.instant_buy .upgrade_levels { + background: 0 0; + text-align: right; + font-size: 12px; +} + +#toolbar_activity_recruits_list .content.instant_buy .ui_various_orders .queued_building_order .item_icon { + top: -3px; +} + +.gods_area { + position: absolute; + top: 90px; + right: 0; + z-index: 51; +} + +.gods_area.show_fury .gods_overlayer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -164px -319px; + width: 144px; + height: 111px; + right: -4px; + top: 28px; +} + +.gods_area.show_fury .gods_progress_fury_border { + display: block; + left: -91px; + top: -2px; +} + +.gods_area.show_fury .gods_favor_amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -300px; + width: 118px; + height: 41px; +} + +.gods_area.show_fury .gods_favor_button_area { + left: -103px; +} + +.gods_area.show_fury .gods_favor_amount { + right: 0; +} + +.gods_area.show_fury .gods_favor_amount .fury_amount { + left: -1px; + display: block; +} + +.gods_area.show_fury .gods_favor_amount .favor_amount { + right: -1px; +} + +.gods_area.show_fury .btn_gods_spells { + right: 43px; +} + +.gods_area.show_fury .gods_progress .fury_progress { + display: block; +} + +.gods_overlayer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -326px -128px; + width: 145px; + height: 112px; + width: 164px; + z-index: 6; + position: absolute; + top: 28px; + right: -22px; +} + +.gods_progress_fury_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -118px; + width: 94px; + height: 94px; + display: none; + position: absolute; + pointer-events: none; +} + +.gods_area .gods_area_buttons, +.gods_area .gods_area_buttons_background { + position: absolute; + top: 0; + right: 0; + width: 138px; + height: 66px; +} + +.gods_area .gods_area_buttons_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -524px; + width: 138px; + height: 66px; + z-index: 4; +} + +.gods_area .gods_area_buttons { + z-index: 10; +} + +.gods_favor_amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -501px -430px; + width: 80px; + height: 41px; + color: #fc6; + font-weight: 700; + font-size: 12px; + text-shadow: 1px 1px #000; +} + +.gods_favor_amount .favor_amount, +.gods_favor_amount .fury_amount { + position: absolute; + width: 50px; + top: 11px; +} + +.gods_favor_amount .favor_amount { + right: 0; + min-height: 15px; +} + +.gods_favor_amount .fury_amount { + display: none; +} + +.gods_favor_amount .max { + color: red; +} + +.gods_favor_button_area { + position: absolute; + top: 75px; + left: -85px; +} + +.gods_area .btn_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -444px -64px; + width: 26px; + height: 26px; +} + +.gods_area .btn_wrapper .icon { + top: 1px; + left: 1px; +} + +.gods_area .gods_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px -212px; + width: 80px; + height: 88px; + z-index: 8; + position: absolute; + top: 42px; + right: 28px; + cursor: pointer; +} + +.gods_progress .favor_progress, +.gods_progress .fury_progress { + position: absolute; +} + +.gods_progress .fury_progress { + display: none; +} + +.gods_progress .canvas { + display: none; + position: absolute; +} + +.gods_progress.god .favor_progress { + top: 0; + left: -89px; +} + +.gods_progress.god .fury_progress { + top: -5px; + left: -94px; +} + +#ui_box .btn_settings { + position: absolute; + top: 14px; + right: 103px; +} + +#ui_box .btn_logout { + position: absolute; + top: 14px; + right: 3px; +} + +#ui_box .btn_wiki { + position: absolute; + top: 3px; + right: 35px; +} + +#ui_box .btn_audio_toggle { + position: absolute; + top: 3px; + right: 77px; +} + +#ui_box .btn_gods_spells { + position: absolute; + top: 2px; + right: 43px; +} + +.gods_progress { + position: absolute; + z-index: 10; + top: 37px; + right: 23px; + cursor: pointer; +} + +.gods_spells_menu { + display: block; + width: 142px; + position: absolute; + top: 35px; + right: -10px; + z-index: 4; +} + +.gods_spells_menu .top { + position: absolute; + top: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -313px; + width: 138px; + height: 6px; + z-index: 5; +} + +.gods_spells_menu .header .btn_close { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -725px -184px; + width: 17px; + height: 20px; + position: absolute; + top: 29px; + left: 15px; + cursor: pointer; + width: 15px; +} + +.gods_spells_menu .header .btn_close:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -470px -90px; + width: 17px; + height: 20px; + width: 15px; +} + +.gods_spells_menu .header .btn_close:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -470px -64px; + width: 17px; + height: 20px; + width: 15px; +} + +.gods_spells_menu .content .god_containers { + display: none; +} + +.gods_spells_menu .middle { + position: relative; + z-index: 4; +} + +.gods_spells_menu .middle .left, +.gods_spells_menu .middle .right { + width: 6px; + top: 0; + bottom: 0; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/layout/layout_borders.png) repeat-y; +} + +.gods_spells_menu .middle .left { + left: 4px; + background-position: -10px 0; +} + +.gods_spells_menu .middle .right { + right: 0; + background-position: -17px 0; +} + +.gods_spells_menu .middle .content { + margin: 0 0 0 10px; +} + +.gods_spells_menu .content .header { + background: url(https://gpfr.innogamescdn.com/images/game/layout/layout_units_nav_bg.png); + height: 40px; + line-height: 40px; + text-align: center; + font-size: 10px; + font-weight: 700; + color: #ecb44d; + text-shadow: #000 0 0 2px; + padding-top: 20px; +} + +.gods_spells_menu .content .header .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + display: inline-block; + vertical-align: middle; +} + +.gods_spells_menu .bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -134px -590px; + width: 142px; + height: 28px; + position: absolute; + right: 0; +} + +.new_ui_power_icon { + margin: 7px 6px 9px; + display: block; + float: left; +} + +.gods_spells_menu .god_container .title { + color: #ecb44d; + font-size: 10px; + font-family: Arial; + background: url(https://gpfr.innogamescdn.com/images/game/layout/power_title_bg.png); + display: block; + text-align: center; + font-weight: 700; + padding: 1px 0 2px; +} + +.gods_spells_menu .powers_container { + background: url(https://gpfr.innogamescdn.com/images/game/layout/power_tile.png); + padding-left: 1px; +} + +.town_name_area { + padding-right: 14px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -255px; + width: 208px; + height: 58px; + width: 194px; + position: absolute; + top: 0; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + z-index: 5; +} + +.town_name_area .btn_prev_town { + position: absolute; + top: 4px; + left: 6px; +} + +.town_name_area .btn_next_town { + position: absolute; + top: 4px; + right: 7px; +} + +.town_name_area .town_groups_dropdown { + position: absolute; + top: 4px; + right: 23px; + z-index: 5; + width: 162px; + height: 23px; + cursor: pointer; +} + +.town_name_area .town_groups_dropdown .caption { + position: absolute; + top: 0; + left: 0; + right: 17px; + height: 23px; +} + +.town_name_area .town_groups_dropdown .caption .town_name { + display: inline-block; + color: #423515; + font-size: 13px; + line-height: 23px; + white-space: nowrap; + font-family: Verdana; +} + +input.rename_component_input { + position: absolute; + top: 1px; + left: 0; + right: 0; + background-color: #fff; + height: 21px; + padding: 0; + margin: 0; + border: 1px dashed #000; + line-height: 21px; + vertical-align: middle; + overflow: hidden; + display: block; + z-index: 2003; + color: #423515; + font-size: 13px; + text-align: center; + font-family: Verdana; +} + +.town_name_area .town_groups_dropdown .caption .town_name.smaller, +input.rename_component_input.smaller { + font-size: 10px; + line-height: 24px; +} + +.town_name_area .town_groups_dropdown .caption .town_name.smallest, +input.rename_component_input.smallest { + font-size: 7px; + line-height: 24px; +} + +.town_name_area .town_groups_dropdown .button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -70px -691px; + width: 14px; + height: 22px; + cursor: pointer; + float: right; +} + +.town_name_area .town_groups_dropdown .button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -112px -691px; + width: 14px; + height: 22px; +} + +.town_name_area .town_groups_dropdown .button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -84px -691px; + width: 14px; + height: 22px; +} + +.town_name_area .town_groups_dropdown .button.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -98px -691px; + width: 14px; + height: 22px; + cursor: default; +} + +.town_name_area .casted_powers_area { + position: absolute; + top: 29px; + left: 25px; + right: 23px; + height: 18px; +} + +.town_name_area .casted_powers_area .button { + position: absolute; + top: 5px; + cursor: pointer; +} + +.town_name_area .casted_powers_area .button.left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -101px; + width: 7px; + height: 9px; + left: 2px; +} + +.town_name_area .casted_powers_area .button.left:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -110px; + width: 7px; + height: 9px; +} + +.town_name_area .casted_powers_area .button.right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -119px; + width: 7px; + height: 9px; + right: 2px; +} + +.town_name_area .casted_powers_area .button.right:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -734px -128px; + width: 7px; + height: 9px; +} + +.town_name_area .casted_powers_area .js-list-viewport { + position: absolute; + top: 0; + left: 16px; + right: 16px; + height: 16px; + text-align: center; + overflow: hidden; +} + +.town_name_area .casted_powers_area .list { + width: 1000px; + height: 16px; + position: absolute; + top: 0; + left: 0; + text-align: left; +} + +.town_name_area .casted_powers_area .list .power_icon16x16 { + cursor: pointer; + display: block; + float: left; +} + +.town_name_area .culture_overview_wrapper { + position: relative; + top: 55px; +} + +.town_name_area .culture_overview_wrapper.container_hidden .culture_overview { + background-position-y: -452px; + height: 23px; +} + +.town_name_area .culture_overview_wrapper.container_hidden .btn_extend { + top: -1px; +} + +.town_name_area .culture_overview_wrapper.container_hidden .caption { + height: 0; +} + +.town_name_area .culture_overview_wrapper .culture_overview { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -430px; + width: 207px; + height: 49px; + position: absolute; + left: 1px; + overflow: hidden; + -webkit-transition: all .5s ease; + -moz-transition: all .5s ease; + -ms-transition: all .5s ease; + -o-transition: all .5s ease; + transition: all .5s ease; +} + +.town_name_area .culture_overview_wrapper .btn_extend { + position: relative; + top: 21px; + left: 94px; + -webkit-transition: top .5s ease; + -moz-transition: top .5s ease; + -ms-transition: top .5s ease; + -o-transition: top .5s ease; + transition: top .5s ease; +} + +.town_name_area .culture_overview_wrapper .caption { + position: relative; + top: -5px; + height: 25px; + text-align: center; + overflow: hidden; + -webkit-transition: height .5s ease; + -moz-transition: height .5s ease; + -ms-transition: height .5s ease; + -o-transition: height .5s ease; + transition: height .5s ease; +} + +.town_name_area .culture_overview_wrapper .icon { + display: inline-block; + vertical-align: middle; +} + +.town_name_area .culture_overview_wrapper .icon.town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -342px; + width: 32px; + height: 31px; +} + +.town_name_area .culture_overview_wrapper .icon.culture { + background-image: url(https://gpfr.innogamescdn.com/images/game/overviews/culture_25x25.png); + width: 25px; + height: 25px; +} + +.town_groups_list { + overflow: hidden; + z-index: 2001; + top: 2px; + left: 2px; + right: 11px; + bottom: 2px; + position: absolute; +} + +.town_groups_list .content { + position: absolute; +} + +.town_groups_list .town_group { + position: relative; + overflow: hidden; + margin: 0 -1px -1px 0; + border: 1px solid #000; + border-width: 0 1px 1px 0; +} + +.item.town_group_town, +.town_groups_list .town_group .group_name, +.town_groups_list .town_group .item { + height: 22px; + white-space: nowrap; + font-size: 11px; + line-height: 22px; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + overflow: hidden; + font-weight: 400; + position: relative; +} + +.town_groups_list .town_group .group_name { + font-weight: 700; + color: #804000; + text-align: left; + padding: 0 18px 0 17px; +} + +.town_groups_list .town_group .group_towns { + position: relative; + overflow-y: auto; + overflow-x: hidden; +} + +.town_groups_list .town_group .group_towns.draghovered { + background-color: #e6cd90; +} + +.town_groups_list .town_group .group_towns .inner_column { + position: absolute; +} + +.town_groups_list .town_group .group_name .icon, +.town_groups_list .town_group .group_name .toggle_group { + position: absolute; +} + +.town_groups_list .town_group .group_name .icon { + top: 5px; + left: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -731px -466px; + width: 9px; + height: 9px; +} + +.town_groups_list .town_group .group_name .toggle_group { + top: 7px; + right: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -733px -485px; + width: 9px; + height: 9px; + cursor: pointer; +} + +.town_groups_list .town_group .group_name .name { + cursor: pointer; +} + +.town_groups_list .town_group.collapsed { + height: 22px; +} + +.town_groups_list .town_group.collapsed .group_name .toggle_group { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -733px -278px; + width: 9px; + height: 9px; +} + +.item.town_group_town, +.town_groups_list .town_group .item { + cursor: pointer; + color: #423515; + font-weight: 700; +} + +.item.town_group_town.ui-draggable-dragging { + position: absolute; + z-index: 100000; + background-color: #fbe19d; +} + +.town_groups_list .town_group.selected .item { + color: #804000; +} + +.town_groups_list .town_group .item.selected .town_name { + text-decoration: underline; +} + +.town_groups_list .delete_town { + position: absolute; + top: 2px; + right: 1px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/town_list_btns.png) 0 -32px; + width: 16px; + height: 16px; + display: none; +} + +.town_groups_list .town_group .item:hover .delete_town { + display: block; +} + +.town_groups_list .delete_town:hover { + background-position: -16px -32px; +} + +.town_groups_list .attack_icon, +.town_groups_list .conquest_icon, +.town_groups_list .island_quest_icon, +.town_groups_list .revolt_arising_icon, +.town_groups_list .revolt_running_icon, +.town_groups_list .support_icon { + display: inline-block; + vertical-align: middle; +} + +.town_groups_list .island_quest_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -594px -266px; + width: 13px; + height: 16px; +} + +.town_groups_list .attack_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -594px -212px; + width: 13px; + height: 16px; +} + +.town_groups_list .support_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -148px -671px; + width: 13px; + height: 16px; +} + +.town_groups_list .revolt_running_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -135px -671px; + width: 13px; + height: 16px; +} + +.town_groups_list .revolt_arising_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -122px -671px; + width: 13px; + height: 16px; +} + +.town_groups_list .conquest_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -594px -239px; + width: 13px; + height: 16px; +} + +.town_groups_list .hidden { + display: none; +} + +.premium_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -145px -128px; + width: 181px; + height: 127px; + top: 0; + right: 0; + z-index: 5; + position: absolute; +} + +.premium_wrapper .gold_icon { + background: url(https://gpfr.innogamescdn.com/images/game/res/gold_40x40.png) no-repeat 0 0; + width: 40px; + height: 40px; + position: relative; + top: 12px; + right: 14px; +} + +.open_premium_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -128px -647px; + width: 128px; + height: 24px; + top: 60px; + left: 50px; + position: absolute; + cursor: pointer; +} + +.open_premium_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -647px; + width: 128px; + height: 24px; +} + +.open_premium_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -256px -647px; + width: 128px; + height: 24px; +} + +.open_premium_button .js-caption { + color: #fff; + text-shadow: 1px 1px 0 #000; + font-size: 12px; + font-weight: 600; + height: 24px; + line-height: 24px; +} + +.glare_wrapper { + position: absolute; + width: 123px; + height: 24px; + top: 60px; + left: 53px; + overflow: hidden; + pointer-events: none; + user-select: none; +} + +.glare_wrapper .glare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -607px -65px; + width: 56px; + height: 19px; + position: relative; + top: 2px; + animation: glare 120s infinite linear; +} + +@keyframes glare { + 0% { + left: -100%; + } + + 2% { + left: 100%; + } + + 100% { + left: 100%; + } +} + +.premium_wrapper .gold_amount { + font-weight: 700; + color: #ecb44d; + position: absolute; + text-align: center; + top: 20px; + width: 74px; + left: 96px; + height: 24px; + line-height: 24px; + font-size: 16px; +} + +.ui_quickbar { + position: absolute; + z-index: 5; + top: 33px; + left: 137px; + right: 135px; + height: 22px; +} + +.ui_quickbar .quickbar_settings_button { + position: absolute; + top: 3px; + left: 23px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -424px -621px; + width: 22px; + height: 15px; + cursor: pointer; +} + +.ui_quickbar .quickbar_settings_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -446px -621px; + width: 22px; + height: 15px; +} + +.ui_quickbar .left, +.ui_quickbar .right { + position: absolute; + top: 0; + width: 50%; + height: 22px; +} + +.ui_quickbar .left { + left: 0; +} + +.ui_quickbar .right { + right: 0; +} + +.ui_quickbar .container { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; +} + +.ui_quickbar .left .container { + left: 47px; + right: 93px; +} + +.ui_quickbar .right .container { + left: 93px; + right: 32px; +} + +.ui_quickbar .container .option { + width: 33%; + float: left; + height: 15px; + padding: 3px 0 4px 0; + text-align: center; + cursor: pointer; +} + +.ui_quickbar .container .option .caption { + color: #ecb44d; + font-weight: 700; + font-size: 10px; + line-height: 17px; + display: inline-block; + position: relative; + white-space: nowrap; +} + +.ui_quickbar .container .option.quickbar_dropdown .caption { + padding-right: 12px; +} + +.ui_quickbar .container .option:hover .caption { + color: #edb; +} + +.ui_quickbar .option .dropdown_indicator { + position: absolute; + top: 5px; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -731px -475px; + width: 9px; + height: 7px; +} + +.ui_quickbar .option:hover .caption .dropdown_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -733px -494px; + width: 9px; + height: 7px; +} + +.dropdown-list.quickbar .option { + cursor: pointer; +} + +#quickbar { + position: static; + background-position: 0 bottom; +} + +ul.toolbar { + height: 22px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/layout_toolbar_repeatable_2.48.png) repeat-x 0 bottom; + position: relative; + top: 35px; + width: 562px; + padding: 3px 6px; + margin: 0 auto; + z-index: 1; + color: #ecb44d; + font-size: 10px; +} + +ul.toolbar .arrow { + position: absolute; + top: 5px; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -733px -501px; + width: 9px; + height: 7px; +} + +ul.toolbar li { + float: left; + margin-right: 15px; + position: relative; +} + +ul.toolbar li a { + top: 2px; + position: relative; + margin-right: 12px; + color: #fc6; +} + +ul.toolbar li img { + vertical-align: middle; + border-top: 1px solid #21170b; + border-right: 1px solid #604420; + border-bottom: 1px solid #855d2b; + border-left: 1px solid #312210; +} + +#ui_box.city-overview-enabled .nui_units_box { + top: 260px; +} + +.nui_units_box { + top: 282px; +} + +body.has_heroes .nui_units_box { + top: 348px; +} + +body.has_heroes #ui_box.city-overview-enabled .nui_units_box { + top: 327px; +} + +.nui_units_box { + width: 142px; + position: absolute!important; + right: 0; + z-index: 5; + min-height: 8px; +} + +.nui_units_box .top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -283px -313px; + width: 138px; + height: 6px; + position: absolute; + top: 0; + right: 0; +} + +.nui_units_box .middle { + position: relative; +} + +.nui_units_box .middle .left, +.nui_units_box .middle .right { + width: 6px; + top: 0; + bottom: 0; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/layout/layout_borders.png) repeat-y; +} + +.nui_units_box .middle .left { + left: 4px; + background-position: -10px 0; +} + +.nui_units_box .middle .right { + right: 0; + background-position: -17px 0; +} + +.nui_units_box .middle .content { + margin: 6px 0 6px 10px; + padding-top: 4px; +} + +.nui_units_box .bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -308px -420px; + width: 142px; + height: 9px; + position: absolute; + right: 0; + height: 8px; + bottom: -7px; +} + +.nui_units_box .bottom_ornament { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -276px -590px; + width: 142px; + height: 28px; + position: absolute; + right: 0; + bottom: -20px; + z-index: 16; +} + +.nui_units_box .units_land, +.nui_units_box .units_naval { + position: relative; +} + +.nui_units_box .js-scrollbar-content { + padding-bottom: 30px; +} + +.nui_units_box .js-scrollbar-content .bottom_ornament { + bottom: 8px; +} + +.nui_units_box .units_land .content .units_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/layout/unit_land_tile.png); +} + +.nui_units_box .units_naval .content .units_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/layout/unit_naval_tile.png); +} + +.nui_units_box .unit { + width: 39px; + height: 14px; + padding-top: 26px; + padding-right: 1px; + position: relative; + display: block; + float: left; + text-align: right; + font-family: Verdana; + font-weight: 700; + font-size: 12px; + margin: 1px; + color: #fff; + text-shadow: 1px 1px 0 #000; + cursor: pointer; + overflow: visible; + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; +} + +.nui_units_box .unit.selected .selected_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -550px; + width: 42px; + height: 42px; + position: absolute; + top: -1px; + left: -1px; +} + +.nui_units_box .nav { + background: url(https://gpfr.innogamescdn.com/images/game/layout/layout_units_nav_bg.png); + position: relative; + margin-top: 1px; + width: 127px; + min-height: 23px; +} + +.nui_units_box .nav .border_top { + background: url(https://gpfr.innogamescdn.com/images/game/layout/layout_units_nav_border.png); + position: relative; + top: -1px; + height: 1px; +} + +.nui_units_box .nav .bottom_link { + display: block; + text-align: center; + font-size: 10px; + font-weight: 700; + color: #ecb44d; + text-shadow: #000 0 0 2px; + padding: 4px 0 6px; + width: 105px; +} + +.nui_units_box .nav .bottom_link.link_active { + cursor: pointer; +} + +.nui_units_box .nav .bottom_link:hover { + color: #edb; +} + +.nui_units_box .slide_button { + position: absolute; + right: 3px; + top: 3px; +} + +.nui_units_box .hero_unit { + color: #f8d257; +} + +.nui_units_box .js-scrollbar-viewport { + height: 210px; + overflow: hidden; + position: relative; +} + +.nui_units_box .js-scrollbar-content { + text-align: center; + position: absolute; +} + +.nui_units_box .scrollbar { + visibility: hidden; +} + +.nui_units_time_box_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -144px -621px; + width: 150px; + height: 22px; + position: absolute; + top: 120px; + right: 0; +} + +body.has_heroes .nui_units_time_box_container { + top: 187px; +} + +#ui_box.city-overview-enabled .nui_units_time_box_container { + display: none; +} + +.nui_units_time_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -353px -289px; + width: 133px; + height: 24px; + overflow: hidden; + width: 112px; + color: #edb; + font-size: 10px; + font-weight: 700; + text-align: center; + white-space: nowrap; + padding-left: 23px; + margin: 2px 0 0 16px; +} + +.ui_resources_bar { + position: absolute; + top: 0; + right: 135px; + width: 300px; + height: 36px; + z-index: 5; +} + +.ui_resources_bar .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -208px; + width: 68px; + height: 36px; + position: absolute; + top: 0; + cursor: pointer; +} + +.ui_resources_bar .indicator .wrapper { + width: 100%; + height: 100%; +} + +.ui_resources_bar .indicator.wood { + right: 217px; +} + +.ui_resources_bar .indicator.stone { + right: 146px; +} + +.ui_resources_bar .indicator.iron { + right: 77px; +} + +.ui_resources_bar .indicator.population { + right: 7px; +} + +.ui_resources_bar .indicator .icon { + width: 25px; + height: 20px; + position: absolute; + top: 6px; + left: 6px; +} + +.ui_resources_bar .indicator.wood .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -25px -671px; + width: 25px; + height: 20px; +} + +.ui_resources_bar .indicator.stone .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -671px; + width: 25px; + height: 20px; +} + +.ui_resources_bar .indicator.iron .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -672px -647px; + width: 25px; + height: 20px; +} + +.ui_resources_bar .indicator.population .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -697px -647px; + width: 25px; + height: 20px; +} + +.ui_resources_bar .indicator .amount { + position: absolute; + top: 8px; + right: 3px; + color: #ecb44d; + font-family: Arial; + font-size: 13px; + font-weight: 700; +} + +.ui_resources_bar .indicator canvas { + position: absolute; + top: 1px; + left: 3px; +} + +.ui_resources_bar .indicator .amount.limit_reached, +.ui_resources_bar .indicator .amount.negative { + color: #e72200; +} + +.ui_resources_bar .indicator .res_plenty, +.ui_resources_bar .indicator .res_rare { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_deposit.png) no-repeat 0 0; + width: 10px; + height: 10px; + position: absolute; + top: 4px; + left: 21px; +} + +.ui_resources_bar .indicator .res_plenty { + background-position: 0 0; +} + +.ui_resources_bar .indicator .res_rare { + background-position: 0 -10px; +} + +.ui_city_overview { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 2; + background-color: #000; + display: none; +} + +.ui_city_overview.construction_mode .half_transparent { + display: block; + opacity: .5; +} + +.ui_city_overview .blocking_layer { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 1001; + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_40.png) repeat 0 0; + display: none; +} + +.ui_city_overview .half_transparent { + display: none; +} + +.ui_city_overview .viewport { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; +} + +.ui_city_overview .town_background { + position: absolute; + width: 1920px; + height: 1200px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/town_overview_noships.jpg) no-repeat 0 0; + top: 0; + left: 0; + z-index: 1; + cursor: move; +} + +.ui_city_overview.night .town_background { + background: url(https://gpfr.innogamescdn.com/images/game/layout/city_overview/town_overview_noships_night.jpg) no-repeat 0 0; +} + +.ui_city_overview .not_draggable_cursor { + cursor: auto; +} + +.ui_city_overview .city_overview_building, +.ui_city_overview .city_overview_building_animation, +.ui_city_overview .environment_animation { + position: absolute; +} + +.ui_city_overview .city_overview_building.blessed_town_place { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/building_place_blessed_animation_23497c9.png) no-repeat 0 -78px; + width: 65px; + height: 79px; + top: 544px; + left: 1120px; +} + +.ui_city_overview .city_overview_building_animation.blessed_town_place_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/city_overview/building_place_blessed_animation_23497c9.png) no-repeat 0 0; + width: 66px; + height: 78px; + -webkit-animation: fadeInOutIn 3s ease infinite; + -ms-animation: fadeInOutIn 3s ease infinite; + animation: fadeInOutIn 3s ease infinite; + top: 544px; + left: 1120px; +} + +.ui_city_overview .empty { + z-index: 16; + width: 1920px; + height: 1200px; +} + +.ui_city_overview area { + cursor: pointer; +} + +.ui_city_overview #index_map_image { + touch-action: none; + -ms-touch-action: none; +} + +.ui_city_overview #index_map_image.area_hover { + cursor: pointer; +} + +.ui_city_overview .environment_animation.paused { + -webkit-animation-play-state: paused; + -moz-animation-play-state: paused; + -o-animation-play-state: paused; + animation-play-state: paused; +} + +.ui_city_overview .environment_animation.clouds { + z-index: 15; + position: relative; +} + +@-webkit-keyframes moveClouds { + from { + -webkit-transform: translate(0,0); + -ms-transform: translate(0,0); + -o-transform: translate(0,0); + transform: translate(0,0); + } + + to { + -webkit-transform: translate(3840px,0); + -ms-transform: translate(3840px,0); + -o-transform: translate(3840px,0); + transform: translate(3840px,0); + } +} + +@-ms-keyframes moveClouds { + from { + -webkit-transform: translate(0,0); + -ms-transform: translate(0,0); + -o-transform: translate(0,0); + transform: translate(0,0); + } + + to { + -webkit-transform: translate(3840px,0); + -ms-transform: translate(3840px,0); + -o-transform: translate(3840px,0); + transform: translate(3840px,0); + } +} + +@keyframes moveClouds { + from { + -webkit-transform: translate(0,0); + -ms-transform: translate(0,0); + -o-transform: translate(0,0); + transform: translate(0,0); + } + + to { + -webkit-transform: translate(3840px,0); + -ms-transform: translate(3840px,0); + -o-transform: translate(3840px,0); + transform: translate(3840px,0); + } +} + +.ui_city_overview .environment_animation.clouds .cloud { + position: absolute; +} + +.ui_city_overview .environment_animation.clouds .fast_1, +.ui_city_overview .environment_animation.clouds .fast_2, +.ui_city_overview .environment_animation.clouds .slow_1, +.ui_city_overview .environment_animation.clouds .slow_2 { + position: absolute; + top: 0; + width: 1920px; + height: 1200px; + left: -1920px; +} + +.ui_city_overview .environment_animation.clouds .slow_1, +.ui_city_overview .environment_animation.clouds .slow_2 { + opacity: .4; +} + +.ui_city_overview .environment_animation.clouds .fast_1, +.ui_city_overview .environment_animation.clouds .fast_2 { + opacity: .6; +} + +.ui_city_overview .environment_animation.clouds .slow_1 { + -webkit-animation: moveClouds 310s linear -155s infinite; + -ms-animation: moveClouds 310s linear -155s infinite; + animation: moveClouds 310s linear -155s infinite; +} + +.ui_city_overview .environment_animation.clouds .slow_2 { + -webkit-animation: moveClouds 310s linear infinite; + -ms-animation: moveClouds 310s linear infinite; + animation: moveClouds 310s linear infinite; +} + +.ui_city_overview .environment_animation.clouds .fast_1 { + -webkit-animation: moveClouds 186s linear -93s infinite; + -ms-animation: moveClouds 186s linear -93s infinite; + animation: moveClouds 186s linear -93s infinite; +} + +.ui_city_overview .environment_animation.clouds .fast_2 { + -webkit-animation: moveClouds 186s linear infinite; + -ms-animation: moveClouds 186s linear infinite; + animation: moveClouds 186s linear infinite; +} + +@-webkit-keyframes moveShip { + from { + -webkit-transform: translate(0,-2px) rotate(-.5deg); + -ms-transform: translate(0,-2px) rotate(-.5deg); + -o-transform: translate(0,-2px) rotate(-.5deg); + transform: translate(0,-2px) rotate(-.5deg); + } + + to { + -webkit-transform: rotate(.5deg) translate(0,1px); + -ms-transform: rotate(.5deg) translate(0,1px); + -o-transform: rotate(.5deg) translate(0,1px); + transform: rotate(.5deg) translate(0,1px); + } +} + +@-ms-keyframes moveShip { + from { + -webkit-transform: translate(0,-2px) rotate(-.5deg); + -ms-transform: translate(0,-2px) rotate(-.5deg); + -o-transform: translate(0,-2px) rotate(-.5deg); + transform: translate(0,-2px) rotate(-.5deg); + } + + to { + -webkit-transform: rotate(.5deg) translate(0,1px); + -ms-transform: rotate(.5deg) translate(0,1px); + -o-transform: rotate(.5deg) translate(0,1px); + transform: rotate(.5deg) translate(0,1px); + } +} + +@keyframes moveShip { + from { + -webkit-transform: translate(0,-2px) rotate(-.5deg); + -ms-transform: translate(0,-2px) rotate(-.5deg); + -o-transform: translate(0,-2px) rotate(-.5deg); + transform: translate(0,-2px) rotate(-.5deg); + } + + to { + -webkit-transform: rotate(.5deg) translate(0,1px); + -ms-transform: rotate(.5deg) translate(0,1px); + -o-transform: rotate(.5deg) translate(0,1px); + transform: rotate(.5deg) translate(0,1px); + } +} + +.ui_city_overview .city_overview_building.animated.boat1, +.ui_city_overview .city_overview_building.animated.boat2, +.ui_city_overview .city_overview_building.animated.boat3, +.ui_city_overview .city_overview_building.animated.boat5, +.ui_city_overview .city_overview_building.animated.boat6, +.ui_city_overview .city_overview_building.animated.ship_1, +.ui_city_overview .city_overview_building.animated.trader_1 { + -webkit-animation: moveShip 2s alternate infinite; + -ms-animation: moveShip 2s alternate infinite; + animation: moveShip 2s alternate infinite; + -webkit-transform-origin: 180px 100px; + transform-origin: 180px 100px; +} + +.ui_city_overview .city_overview_building.animated.boat2 { + -webkit-animation-delay: 1s; + -ms-animation-delay: 1s; + animation-delay: 1s; +} + +.ui_city_overview .city_overview_building.animated.ship_1 { + -webkit-transform-origin: 180px 100px; + transform-origin: 180px 100px; + -webkit-animation-delay: 2s; + -ms-animation-delay: 2s; + animation-delay: 2s; +} + +.ui_city_overview .city_overview_building.animated.trader_1 { + -webkit-animation-delay: 2.2s; + -ms-animation-delay: 2.2s; + animation-delay: 2.2s; +} + +.ui_city_overview .city_overview_building.animated.boat1 { + -webkit-animation-delay: 2.5s; + -ms-animation-delay: 2.5s; + animation-delay: 2.5s; +} + +.ui_city_overview .city_overview_building.animated.boat6 { + -webkit-animation-delay: 3.5s; + -ms-animation-delay: 3.5s; + animation-delay: 3.5s; +} + +.ui_construction_queue { + position: absolute; + bottom: -3px; + left: 50%; + margin-left: -317px; + height: 92px; + width: 648px; + z-index: 20; + font-weight: 700; + font-size: 9px; + display: none; +} + +.ui_construction_queue.minimized_windows { + bottom: 31px; +} + +.ui_construction_queue .advisor_container .queue_advisor-banner-BG { + display: block; +} + +.ui_construction_queue .construction_queue_frame { + position: absolute; +} + +.ui_construction_queue .construction_queue_frame .queue_BG_slice-middle { + background: url(https://gpfr.innogamescdn.com/images/game/layout/construction_queue/queue_BG_slice-middle.png) repeat-x; + background-position: 0 0; + width: 61px; + height: 92px; +} + +.ui_construction_queue .construction_queue_order_container { + position: absolute; + left: 94px; + top: 19px; +} + +.ui_construction_queue .queue_BG_slice-left, +.ui_construction_queue .queue_BG_slice-middle, +.ui_construction_queue .queue_BG_slice-right { + float: left; +} + +.ui_various_orders { + width: 520px; + height: 58px; + font-size: 9px; + font-weight: 700; + text-align: center; +} + +.ui_various_orders .empty_slot { + height: 40px; + width: 40px; + margin: 9px 17px 9px 17px; +} + +.ui_various_orders .empty_slot, +.ui_various_orders .queued_building_order { + display: block; + float: left; + position: relative; +} + +.ui_various_orders .queued_building_order { + height: 58px; + width: 69px; + margin-right: 5px; +} + +.ui_various_orders .queued_building_order .frame { + margin-top: 11px; +} + +.ui_various_orders .queued_building_order .item_icon { + top: 3px; + left: 1px; +} + +.ui_various_orders .queued_building_order .unit_count { + position: absolute; + bottom: 1px; + right: 1px; + font-size: 12px; + line-height: 14px; + height: 14px; +} + +.ui_various_orders .queued_building_order .btn_cancel_order, +.ui_various_orders .queued_building_order .btn_time_reduction { + top: 4px; + left: 2px; +} + +.ui_various_orders .queued_building_order .countdown { + float: left; + width: 46px; +} + +.ui_various_orders .queued_building_order .actions { + float: right; + width: 25px; + margin-top: -4px; +} + +.ui_various_orders .queued_building_order .actions .main_tasks_cancel, +.ui_various_orders .queued_building_order .actions .main_tasks_finish { + display: block; + position: static; +} + +.ui_various_orders .queued_building_order .upgrade_levels { + width: 41px; + height: 11px; + position: absolute; + left: 2px; + bottom: 3px; + color: #fff; + background-color: rgba(0,0,0,.4); + font-size: 10px; + line-height: 11px; +} + +.ui_various_orders .queued_building_order .upgrade_levels .arrow_green { + position: relative; + top: 2px; + display: inline-block; +} + +.ui_various_orders .queued_building_order .upgrade_levels .green { + color: #87b320; +} + +.ui_various_orders .queued_building_order .upgrade_levels .red { + color: red; +} + +.ui_various_orders .queued_building_order .upgrade_levels.first_item { + height: 19px; +} + +.ui_various_orders .queued_building_order .divider_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -309px -287px; + width: 46px; + height: 47px; + position: absolute; + bottom: 9px; + left: 2px; + height: 2px; + width: 42px; + overflow: hidden; + border-bottom: 1px solid; +} + +.ui_various_orders .queued_building_order .divider_frame.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_various_orders .queued_building_order .single-progressbar { + position: absolute; + bottom: 4px; + left: 2px; + width: 42px; +} + +.ui_various_orders .queued_building_order .tear_down { + position: absolute; + top: 8px; + left: 6px; +} + +.ui_various_orders.type_research_queue .queued_building_order .upgrade_levels, +.ui_various_orders.type_research_queue.type_instant_buy .queued_building_order .upgrade_levels { + height: 7px; +} + +.ui_various_orders.type_research_queue .empty_slot, +.ui_various_orders.type_research_queue.type_instant_buy .empty_slot { + background-position: -148px -92px; + width: 40px; + height: 40px; +} + +.ui_various_orders.type_unit_queue.barracks .empty_slot, +.ui_various_orders.type_unit_queue.type_instant_buy.barracks .empty_slot { + background-position: -188px -92px; + width: 40px; + height: 40px; +} + +.ui_various_orders.type_unit_queue.docks .empty_slot, +.ui_various_orders.type_unit_queue.type_instant_buy.docks .empty_slot { + background-position: -228px -92px; + width: 40px; + height: 40px; +} + +.instant_buy .ui_various_orders .empty_slot { + margin-left: 10px; + margin-right: 10px; +} + +.instant_buy .ui_various_orders.empty_queue .empty_slot { + margin-left: 30px; + margin-right: 0; +} + +.instant_buy .ui_various_orders.curator_not_active .empty_slot { + margin-left: 30px; + margin-right: 30px; +} + +.instant_buy .ui_various_orders.curator_not_active.one_order .empty_slot { + margin-left: 7px; + margin-right: 7px; +} + +.instant_buy .ui_various_orders .queued_building_order { + height: 48px; + margin-top: 7px; + width: 47px; + margin-left: 8px; +} + +.instant_buy .ui_various_orders .queued_building_order .single-progressbar { + width: 73px; +} + +.instant_buy .ui_various_orders .queued_building_order .item_icon { + left: 0; +} + +.instant_buy .ui_various_orders .queued_building_order .button_new { + position: absolute; +} + +.instant_buy .ui_various_orders .queued_building_order .btn_cancel_order { + top: 0; + left: 47px; +} + +.instant_buy .ui_various_orders .queued_building_order .btn_time_reduction { + top: 24px; + left: 47px; +} + +.instant_buy .ui_various_orders .queued_building_order .btn_time_reduction .caption { + padding: 0 6px; +} + +.instant_buy .ui_various_orders .queued_building_order .countdown { + display: none; +} + +.instant_buy .ui_various_orders .queued_building_order .frame { + margin-top: 0; +} + +.instant_buy .ui_various_orders .queued_building_order .building_level { + position: absolute; + bottom: 0; + left: 0; + right: 0; + color: #9ab140; + text-align: right; + background-color: rgba(0,0,0,.4); + height: 11px; + padding: 0 2px; +} + +.instant_buy .ui_various_orders .queued_building_order .building_level span { + display: inline-block; +} + +.instant_buy .ui_various_orders .queued_building_order.tearing_down .building_level { + color: #d55e21; +} + +.instant_buy .ui_various_orders .queued_building_order.first_order { + width: 120px; +} + +.instant_buy .ui_various_orders .queued_building_order.first_order .single-progressbar { + top: 0; + left: 47px; + bottom: auto; +} + +.instant_buy .ui_various_orders .queued_building_order.first_order .btn_cancel_order { + left: 120px; + top: 0; +} + +.instant_buy .ui_various_orders .queued_building_order.first_order .btn_time_reduction { + top: 24px; + width: 73px; +} + +.instant_buy .ui_various_orders .queued_building_order.only_order .btn_time_reduction { + width: 73px; + left: 47px; +} + +.instant_buy .ui_various_orders .queued_building_order.last_order { + margin-right: 23px; +} + +.construction_queue_build_button { + position: absolute; + left: 21px; + top: 17px; + cursor: pointer; +} + +.construction_queue_build_button .queue_button:hover { + background-position: -293px -135px; + width: 59px; + height: 59px; +} + +.construction_queue_build_button .queue_button.active { + background-position: -352px -135px; + width: 59px; + height: 59px; +} + +.construction_queue_sprite.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.various_orders_queue .various_orders_background { + position: relative; +} + +.various_orders_queue .various_orders_left, +.various_orders_queue .various_orders_middle, +.various_orders_queue .various_orders_right { + position: absolute; + overflow: hidden; + top: 0; + bottom: 0; +} + +.various_orders_queue .various_orders_left { + width: 209px; + left: 0; +} + +.various_orders_queue .various_orders_right { + width: 208px; + right: 0; +} + +.various_orders_queue .various_orders_middle { + background: url(https://gpfr.innogamescdn.com/images/game/layout/construction_queue/queue_bg_senate_middle.png) repeat 0 0; + left: 209px; + right: 208px; +} + +.various_orders_queue .various_orders_content { + position: relative; +} + +.advisor_container { + position: absolute; + width: 294px; + margin-left: 162px; + height: 60px; + padding-left: 61px; + text-align: center; + top: 0; + right: 2px; + line-height: 12px; +} + +.advisor_container .queue_advisor-banner-BG { + position: absolute; + left: 0; + top: -1px; + display: none; +} + +.advisor_container .frame { + left: 9px; + position: absolute; + top: 6px; +} + +.advisor_container .curator { + margin: 3px; + cursor: pointer; +} + +.advisor_container .text { + font-size: 10px; + z-index: 1; + position: absolute; + font-weight: 700; + top: 6px; + left: 61px; + right: 10px; + bottom: 10px; +} + +.advisor_container .btn_activate_curator { + margin-top: 32px; + z-index: 1; +} + +.instant_buy .advisor_container { + width: 244px; +} + +.building_queue_item_instant_buy_tooltip { + font-size: 12px; + line-height: 16px; + max-width: 265px; +} + +.building_queue_item_instant_buy_tooltip h3 { + font-weight: 700; + margin: 5px 0; + font-size: 12px; + line-height: 16px; +} + +.building_queue_item_instant_buy_tooltip .table { + position: relative; + display: table; + width: 100%; +} + +.building_queue_item_instant_buy_tooltip .row { + display: table-row; +} + +.building_queue_item_instant_buy_tooltip .cell { + vertical-align: middle; + display: table-cell; + text-align: left; + padding: 0 4px; +} + +.building_queue_item_instant_buy_tooltip .hint { + font-size: 9px; + margin-top: 6px; +} + +.building_queue_item_instant_buy_tooltip .warrnings { + position: relative; + text-align: left; + padding: 0 4px; +} + +.building_queue_item_instant_buy_tooltip .warrnings .warrning { + color: red; +} + +.building_queue_item_instant_buy_tooltip .btn_instant_buy { + margin-top: 5px; +} + +.building_queue_item_instant_buy_tooltip .buy_message { + font-size: 13px; + font-weight: 700; + padding: 2px 0; +} + +.building_queue_item_instant_buy_tooltip .single-progressbar { + font-size: 9px; + font-weight: 400; +} + +.construction_overlay_frame_instant_buy { + padding-bottom: 24px; + height: 43px; + z-index: 20; + position: absolute; +} + +.construction_overlay_frame_instant_buy .item { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -309px -287px; + width: 46px; + height: 47px; + display: inline-block; + margin-left: 1px; +} + +.construction_overlay_frame_instant_buy .item.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.construction_overlay_frame_instant_buy .item .icon { + margin: 3px 1px 1px 1px; +} + +.construction_overlay_frame_instant_buy .item .icon .unit_count { + position: absolute; + bottom: 1px; + right: 1px; + font-size: 12px; + line-height: 14px; + height: 14px; +} + +.construction_overlay_frame_instant_buy .item .icon .building_level { + position: absolute; + bottom: 0; + left: 0; + right: 0; + color: #9ab140; + text-align: right; + background-color: rgba(0,0,0,.4); + height: 11px; + padding: 0 2px; + font-size: 9px; + font-weight: 700; +} + +.construction_overlay_frame_instant_buy .item .icon .building_level.tearing_down { + color: #d55e21; +} + +.construction_overlay_frame_instant_buy .item .icon .building_level span { + display: inline-block; +} + +.construction_overlay_frame_instant_buy .item .small_progressbar { + width: 46px; + height: 8px; + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_40.png) repeat 0 0; + position: absolute; + top: -9px; +} + +.construction_overlay_frame_instant_buy .item .small_progressbar .info, +.construction_overlay_frame_instant_buy .item .small_progressbar .timer_output, +.construction_overlay_frame_instant_buy .item .small_progressbar .value_container { + display: none; +} + +.construction_overlay_frame_instant_buy .item .small_progressbar .progress { + top: 1px; + bottom: 1px; + left: 1px; + right: 1px; + z-index: 1; + background: 0 0; + width: auto; + position: absolute; +} + +.construction_overlay_frame_instant_buy .item .small_progressbar .indicator { + position: relative; + height: 6px; + top: 0; +} + +.construction_overlay_frame_instant_buy .item .small_progressbar.type_unit_queue .indicator { + background-color: #1484b5; +} + +.construction_overlay_frame_instant_buy .item .small_progressbar.type_building_queue .indicator, +.construction_overlay_frame_instant_buy .item .small_progressbar.type_research_queue .indicator { + background-color: #a5b324; +} + +.construction_overlay_frame_instant_buy .item .small_progressbar.tearing_down .indicator { + background-color: #bf3318; +} + +.construction_overlay_frame_instant_buy .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -326px -194px; + position: absolute; + bottom: 0; + width: 35px; + height: 24px; + left: 50%; + margin-left: -17px; +} + +.construction_overlay_frame_instant_buy .arrow.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.construction_overlay_frame_instant_buy.single { + width: 46px; + margin-left: -23px; +} + +.construction_overlay_frame_instant_buy.double { + width: 94px; + margin-left: -47px; +} + +.ui_city_overview .city_overview_overlay { + position: absolute; + top: -30px; + z-index: 20; + font-weight: 700; + white-space: nowrap; + font-size: 12px; +} + +.ui_city_overview .city_overview_overlay.dimmed { + opacity: .6; +} + +.ui_city_overview .city_overview_overlay .center_frame { + display: none; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow { + margin: auto; + position: relative; + z-index: 1; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .level_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + display: inline-block; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .level_arrow.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .row { + position: relative; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .btn_premium_action, +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .single-progressbar { + display: none; + float: left; + margin-top: 3px; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .btn_premium_action { + margin-left: 1px; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .btn_premium_action .caption { + padding: 0 6px; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .green { + color: green; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .green .level_arrow { + background-position: -422px -101px; + width: 10px; + height: 6px; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .red { + color: red; +} + +.ui_city_overview .city_overview_overlay .tooltip_with_arrow .red .level_arrow { + background-position: -427px -92px; + width: 10px; + height: 6px; +} + +.ui_city_overview .city_overview_overlay .button_area { + margin-top: -10px; + position: relative; + z-index: 2; +} + +.ui_city_overview .city_overview_overlay .button_line { + width: 100%; + height: 35px; +} + +.ui_city_overview .city_overview_overlay .building_content_container .button_line { + margin-top: -47px; + position: relative; +} + +.ui_city_overview .city_overview_overlay .button_container { + margin: auto; + overflow: auto; +} + +.ui_city_overview .city_overview_overlay .button_container>div { + float: left; +} + +.ui_city_overview .city_overview_overlay .button_container.two { + width: 80px; +} + +.ui_city_overview .city_overview_overlay .button_container.one { + width: 40px; + margin-left: 63px; +} + +.ui_city_overview .city_overview_overlay .close_container, +.ui_city_overview .city_overview_overlay .open_container { + cursor: pointer; +} + +.ui_city_overview .city_overview_overlay .close_container .caption, +.ui_city_overview .city_overview_overlay .open_container .caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; +} + +.ui_city_overview .city_overview_overlay .close_container .caption.queue_advisor-banner-BG, +.ui_city_overview .city_overview_overlay .open_container .caption.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .build_button { + cursor: pointer; + margin-right: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -222px -347px; + width: 37px; + height: 37px; +} + +.ui_city_overview .city_overview_overlay .build_button.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .build_button:hover { + background-position: -185px -347px; + width: 37px; + height: 37px; +} + +.ui_city_overview .city_overview_overlay .build_button.disabled { + background-position: -348px -92px!important; + width: 37px!important; + height: 37px!important; + cursor: default; +} + +.ui_city_overview .city_overview_overlay .reduce_cost { + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -355px -287px; + width: 37px; + height: 37px; +} + +.ui_city_overview .city_overview_overlay .reduce_cost.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .reduce_cost:hover { + background-position: -148px -347px; + width: 37px; + height: 37px; +} + +.ui_city_overview .city_overview_overlay .reduce_cost.disabled { + background-position: -74px -347px!important; + width: 37px!important; + height: 37px!important; + cursor: default; +} + +.ui_city_overview .city_overview_overlay .open_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -259px -347px; + width: 37px; + height: 37px; +} + +.ui_city_overview .city_overview_overlay .open_container.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .open_container:hover { + background-position: -385px -92px; + width: 37px; + height: 37px; +} + +.ui_city_overview .city_overview_overlay .close_container { + position: relative; + margin: 0 auto 0 auto; + top: -19px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: 0 -347px; + width: 37px; + height: 37px; +} + +.ui_city_overview .city_overview_overlay .close_container.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .divider_city_overlay { + background-color: #f0cf83; + height: 100px; + display: inline-block; + width: 1px; + position: relative; + top: -5px; + margin-left: 2px; +} + +.ui_city_overview .city_overview_overlay .special_deco_shadow { + position: relative; + top: -1px; + left: 0; + margin-left: auto; + margin-right: auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -209px -287px; + width: 100px; + height: 50px; +} + +.ui_city_overview .city_overview_overlay .special_deco_shadow.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .special_deco { + position: relative; + margin: 0 auto 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + background-position: -293px -219px; + width: 89px; + height: 5px; +} + +.ui_city_overview .city_overview_overlay .special_deco.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .special_gradient { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/construction_queue/construction_queue_2.74.png) no-repeat; + top: -17px; + bottom: -2px; +} + +.ui_city_overview .city_overview_overlay .special_gradient.queue_advisor-banner-BG { + position: relative; + left: 252px; + top: 18px; +} + +.ui_city_overview .city_overview_overlay .special_gradient.left { + background-position: -74px 0; + width: 74px; + height: 135px; + left: 3px; + height: auto; +} + +.ui_city_overview .city_overview_overlay .special_gradient.right { + background-position: 0 0; + width: 74px; + height: 135px; + right: 6px; + height: auto; +} + +.ui_city_overview .city_overview_overlay .countdown { + font-weight: 400; +} + +.ui_city_overview .city_overview_overlay.special1_container .twa_content, +.ui_city_overview .city_overview_overlay.special2_container .twa_content { + height: 98px; + margin: 20px 0 23px 0; +} + +.ui_city_overview .city_overview_overlay.special1_container .twa_content .building_content_container, +.ui_city_overview .city_overview_overlay.special2_container .twa_content .building_content_container { + display: inline-block; + width: 120px; + position: relative; + height: 109px; + overflow: hidden; +} + +.ui_city_overview .city_overview_overlay.special1_container .twa_content .building_content_container .center_frame, +.ui_city_overview .city_overview_overlay.special2_container .twa_content .building_content_container .center_frame { + width: 100%; +} + +.ui_city_overview .city_overview_overlay.special1_container .twa_content .building_content_container .center_frame .construction_queue_sprite.frame, +.ui_city_overview .city_overview_overlay.special2_container .twa_content .building_content_container .center_frame .construction_queue_sprite.frame { + margin: auto; +} + +.ui_city_overview .city_overview_overlay.special1_container .twa_content .building_content_container .building_icon40x40, +.ui_city_overview .city_overview_overlay.special2_container .twa_content .building_content_container .building_icon40x40 { + top: 3px; +} + +.ui_city_overview .city_overview_overlay.special1_container .twa_content .building_content_container .button_line .button_container.one, +.ui_city_overview .city_overview_overlay.special2_container .twa_content .building_content_container .button_line .button_container.one { + width: 40px; + margin-left: auto; +} + +.ui_city_overview .city_overview_overlay .btn_close_container { + display: none; +} + +.ui_city_overview .city_overview_overlay.special1_container .btn_close_container, +.ui_city_overview .city_overview_overlay.special2_container .btn_close_container { + display: block; +} + +.ui_city_overview .city_overview_overlay.special1_container .center_frame, +.ui_city_overview .city_overview_overlay.special2_container .center_frame { + display: block; +} + +.ui_city_overview .city_overview_overlay.special1_container .btn_open_container, +.ui_city_overview .city_overview_overlay.special2_container .btn_open_container { + display: none; +} + +.ui_city_overview .city_overview_overlay.special1_container .arrow, +.ui_city_overview .city_overview_overlay.special2_container .arrow { + display: none; +} + +.happening_large_icon_container { + right: 64px; + bottom: 25px; + position: absolute; + z-index: 4; + display: inline-block; + text-align: center; +} + +.happening_large_icon_container.red .crm_icon .timer, +.happening_large_icon_container.red .external_survey_icon .timer { + color: #e72200; +} + +.happening_large_icon_container.orange .crm_icon .timer, +.happening_large_icon_container.orange .external_survey_icon .timer { + color: #ff4500; +} + +.happening_large_icon_container #happening_large_icon, +.happening_large_icon_container #special_offer_icon { + position: relative; + margin: auto; +} + +.happening_large_icon_container #happening_large_icon:hover, +.happening_large_icon_container #special_offer_icon:hover { + cursor: pointer; +} + +.happening_large_icon_container .timer_box { + display: none; +} + +.happening_large_icon_container .timer_box:before { + content: ""; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -932px -330px; + width: 20px; + height: 41px; +} + +.happening_large_icon_container .timer_box:after { + content: ""; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -378px; + width: 20px; + height: 41px; +} + +.happening_large_icon_container .timer_box .middle { + display: inline-block; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/interstitials/special_offer/countdown_box_m.png); + vertical-align: top; + line-height: 41px; + color: #ffc76e; + font-weight: 600; + min-width: 80px; +} + +.happening_large_icon_container .external_survey_icon { + position: relative; + min-width: 154px; +} + +.happening_large_icon_container .external_survey_icon:hover .hide_button { + -webkit-transition: opacity .5s; + -moz-transition: opacity .5s; + -ms-transition: opacity .5s; + transition: opacity .5s; + opacity: 1; +} + +.happening_large_icon_container .external_survey_icon .icon { + cursor: pointer; + left: 50%; + position: relative; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/survey/icons_b582679.png) no-repeat 0 0; + width: 78px; + height: 98px; +} + +.happening_large_icon_container .external_survey_icon .icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/survey/icons_b582679.png) no-repeat -78px 0; + width: 78px; + height: 98px; +} + +.happening_large_icon_container .external_survey_icon .middle { + margin: 0 -4px; +} + +.happening_large_icon_container .external_survey_icon .hide_button { + -webkit-transition: opacity .5s; + -moz-transition: opacity .5s; + -ms-transition: opacity .5s; + transition: opacity .5s; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -189px -150px; + position: absolute; + top: 0; + right: 15px; + width: 16px; + height: 16px; + cursor: pointer; + opacity: 0; +} + +.happening_large_icon_container .external_survey_icon .hide_button:hover { + background-position: -189px -166px; +} + +.happening_large_icon_container #happening_large_icon.with_countdown+.timer_box { + display: inline-block; +} + +.happening_large_icon_container #happening_large_icon .glow { + position: absolute; + opacity: 0; + -webkit-animation: fadeInOutIn 12s ease infinite; + -ms-animation: fadeInOutIn 12s ease infinite; + animation: fadeInOutIn 12s ease infinite; +} + +.happening_large_icon_container #happening_large_icon .amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -892px -289px; + width: 36px; + height: 36px; + top: 24px; + right: 15px; + position: absolute; + display: none; + color: #fff; + line-height: 30px; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_incantation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -534px -455px; + width: 110px; + height: 90px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_incantation:hover { + top: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -644px -455px; + width: 110px; + height: 90px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_incantation:hover .glow { + top: -29px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_incantation .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -308px -455px; + width: 120px; + height: 123px; + top: -27px; + left: -5px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_demeter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 -1076px; + width: 113px; + height: 125px; + margin-bottom: -37px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_demeter:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -113px -1076px; + width: 113px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_demeter .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -427px -913px; + width: 130px; + height: 140px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_easter_hen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -226px; + width: 100px; + height: 100px; + bottom: -14px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_easter_hen:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -326px; + width: 100px; + height: 100px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_easter_hen:hover .glow { + top: -17px; + left: -10px; +} + +.happening_large_icon_container #happening_large_icon.easter.easter_skin_easter_hen .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px 0; + width: 120px; + height: 120px; + top: -17px; + left: -10px; +} + +.happening_large_icon_container #happening_large_icon.easter:hover .glow { + top: -25px; +} + +.happening_large_icon_container #happening_large_icon.easter .amount { + top: -2px; + right: 60px; +} + +.happening_large_icon_container #happening_large_icon.easter .glow { + top: -25px; + left: -8px; +} + +.happening_large_icon_container #happening_large_icon.halloween { + background: url(https://gpfr.innogamescdn.com/images/game/events/halloween/large_icon2.png) 0 -94px; + width: 82px; + height: 94px; + margin-bottom: -8px; +} + +.happening_large_icon_container #happening_large_icon.halloween:hover { + background-position: 0 0; +} + +.happening_large_icon_container #happening_large_icon.missions.missions_dionysia, +.happening_large_icon_container #happening_large_icon.missionsshop.missions_dionysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1541px -611px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.missions.missions_dionysia:hover, +.happening_large_icon_container #happening_large_icon.missionsshop.missions_dionysia:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1884px -1224px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.missions.missions_dionysia .glow, +.happening_large_icon_container #happening_large_icon.missionsshop.missions_dionysia .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -611px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.blackfridaysale { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat 0 0; + width: 125px; + height: 125px; + top: 13px; + left: 3px; +} + +.happening_large_icon_container #happening_large_icon.blackfridaysale:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat 0 -125px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.blackfridaysale .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat -125px 0; + width: 125px; + height: 125px; +} + +.happening_large_icon_container .hercules2014 { + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -898px -424px; + width: 113px; + height: 125px; + overflow: visible; +} + +.happening_large_icon_container .hercules2014.with_countdown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -898px -424px; + width: 113px; + height: 125px; + top: 22px; +} + +.happening_large_icon_container .hercules2014.with_countdown:hover, +.happening_large_icon_container .hercules2014:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -592px -170px; + width: 113px; + height: 125px; +} + +.happening_large_icon_container .hercules2014.with_countdown .timer_box { + position: absolute; + bottom: 16px; + width: 80px; + text-align: center; + left: 50%; + margin-left: -40px; + color: #ffc76e; + font-size: 11px; + font-weight: 700; + display: block; +} + +.happening_large_icon_container .hercules2014 .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px -424px; + width: 125px; + height: 136px; + position: absolute; + opacity: 0; + -webkit-animation: fadeInOutIn 12s ease infinite; + -ms-animation: fadeInOutIn 12s ease infinite; + animation: fadeInOutIn 12s ease infinite; + top: -8px; + left: -6px; +} + +.happening_large_icon_container .hercules2014 .notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -1018px -465px; + width: 53px; + height: 73px; + margin: auto; + top: 35px; + position: relative; + display: none; +} + +.happening_large_icon_container .hercules2014 .amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -892px -289px; + width: 36px; + height: 36px; + top: 24px; + right: 15px; + position: absolute; + display: none; + color: #fff; + line-height: 30px; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; +} + +.happening_large_icon_container .hercules2014.with_countdown .glow { + top: -8px; + left: -6px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/index_873bf0d.png) no-repeat -773px -424px; + width: 125px; + height: 136px; +} + +.happening_large_icon_container .turn_over_tokens_assassins { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/event_icon_465f646.png) no-repeat 0 0; + width: 125px; + height: 125px; + display: block; + overflow: visible; + left: 0; + bottom: -22px; +} + +.happening_large_icon_container .turn_over_tokens_assassins:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/event_icon_465f646.png) no-repeat 0 -125px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container .turn_over_tokens_assassins:hover .glow { + display: none; +} + +.happening_large_icon_container .turn_over_tokens_assassins .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/event_icon_465f646.png) no-repeat -125px 0; + width: 125px; + height: 125px; + position: absolute; + opacity: 0; + -webkit-animation: fadeInOutIn 12s ease infinite; + -ms-animation: fadeInOutIn 12s ease infinite; + animation: fadeInOutIn 12s ease infinite; +} + +.happening_large_icon_container .turn_over_tokens_slingers { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/event_icon_3c08ea6.png) no-repeat 0 0; + width: 114px; + height: 124px; + display: block; + overflow: visible; + left: 0; + bottom: -22px; +} + +.happening_large_icon_container .turn_over_tokens_slingers:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/event_icon_3c08ea6.png) no-repeat -228px 0; + width: 114px; + height: 124px; + bottom: -22px; + left: 0; +} + +.happening_large_icon_container .turn_over_tokens_slingers:hover .glow { + display: none; +} + +.happening_large_icon_container .turn_over_tokens_slingers .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/event_icon_3c08ea6.png) no-repeat -114px 0; + width: 114px; + height: 124px; + position: absolute; + opacity: 0; + -webkit-animation: fadeInOutIn 12s ease infinite; + -ms-animation: fadeInOutIn 12s ease infinite; + animation: fadeInOutIn 12s ease infinite; +} + +.happening_large_icon_container #happening_large_icon.grepolympia, +.happening_large_icon_container #happening_large_icon.grepolympiashop { + display: block; + overflow: visible; + left: 1px; + bottom: 0; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_summer, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_summer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -888px; + width: 93px; + height: 99px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_summer:after, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_summer:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -468px -888px; + width: 93px; + height: 99px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_summer.hover, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_summer.hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -888px; + width: 93px; + height: 99px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_winter, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_winter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -468px -888px; + width: 93px; + height: 99px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_winter:after, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_winter:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -375px -888px; + width: 93px; + height: 99px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_winter.hover, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_winter.hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -468px -888px; + width: 93px; + height: 99px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_worldcup, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_worldcup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -682px -1095px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_worldcup:after, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_worldcup:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -557px -1095px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_worldcup:hover, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_worldcup:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -682px -1095px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.grepolympia_worldcup:hover .glow, +.happening_large_icon_container #happening_large_icon.grepolympiashop.grepolympia_worldcup:hover .glow { + display: none; +} + +.happening_large_icon_container #happening_large_icon.grepolympia:after, +.happening_large_icon_container #happening_large_icon.grepolympiashop:after { + content: ''; + position: absolute; + top: 0; + left: 0; + opacity: 0; + -webkit-animation: fadeInOutIn 12s ease infinite; + -ms-animation: fadeInOutIn 12s ease infinite; + animation: fadeInOutIn 12s ease infinite; +} + +.happening_large_icon_container #happening_large_icon.grepolympia:hover .glow, +.happening_large_icon_container #happening_large_icon.grepolympiashop:hover .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/single_images/grepolympia_flame_icon_0f7332a.gif) no-repeat 0 0; + width: 14px; + height: 29px; + position: absolute; + top: 6px; + left: 25px; + display: block; + z-index: 1; +} + +.happening_large_icon_container #happening_large_icon.grepolympia:hover:after, +.happening_large_icon_container #happening_large_icon.grepolympiashop:hover:after { + -webkit-animation: none; + -ms-animation: none; + animation: none; + opacity: 1; +} + +.happening_large_icon_container #happening_large_icon.grepolympia .glow, +.happening_large_icon_container #happening_large_icon.grepolympiashop .glow { + display: none; +} + +.happening_large_icon_container #happening_large_icon.grepolympia.with_countdown, +.happening_large_icon_container #happening_large_icon.grepolympiashop.with_countdown { + margin-bottom: -5px; +} + +.happening_large_icon_container .flippingimages { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_event_icon_fbbd8f5.png) no-repeat 0 0; + width: 113px; + height: 125px; + display: block; + overflow: visible; + left: -2px; + bottom: -12px; +} + +.happening_large_icon_container .flippingimages:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_event_icon_fbbd8f5.png) no-repeat -226px 0; + width: 113px; + height: 125px; + bottom: -12px; + left: -2px; +} + +.happening_large_icon_container .flippingimages:hover .glow { + display: none; +} + +.happening_large_icon_container .flippingimages .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_event_icon_fbbd8f5.png) no-repeat -113px 0; + width: 113px; + height: 125px; + position: absolute; + opacity: 0; + -webkit-animation: fadeInOutIn 12s ease infinite; + -ms-animation: fadeInOutIn 12s ease infinite; + animation: fadeInOutIn 12s ease infinite; +} + +.happening_large_icon_container.small { + transform: scale(.8); + transform-origin: bottom right; +} + +body.small_ui .happening_large_icon_container { + transform: scale(.8); + transform-origin: bottom right; +} + +.happening_large_icon_container.collision_with_right_menu { + right: 205px; +} + +.happening_large_icon_container.collision_with_gods_spells_menu { + right: 315px; +} + +.city-overview-enabled .happening_large_icon_container.collision_with_right_menu { + bottom: 87px; +} + +.nui_coins_container { + display: none; +} + +body.has_heroes .nui_coins_container { + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat 0 -621px; + width: 144px; + height: 26px; + position: absolute; + top: 135px; + font-size: 10px; + font-weight: 700; + line-height: 18px; + color: #ecb44d; +} + +body.has_heroes .nui_coins_container .war_coins_box, +body.has_heroes .nui_coins_container .wisdom_coins_box { + padding-top: 5px; + position: absolute; + width: 60px; + text-align: right; +} + +body.has_heroes .nui_coins_container .war_coins_box:before, +body.has_heroes .nui_coins_container .wisdom_coins_box:before { + content: ""; + position: absolute; + left: 0; +} + +body.has_heroes .nui_coins_container .wisdom_coins_box { + left: 80px; +} + +body.has_heroes .nui_coins_container .wisdom_coins_box:before { + background-position: 0 -145px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 18px; + height: 17px; +} + +body.has_heroes .nui_coins_container .war_coins_box { + left: 10px; +} + +body.has_heroes .nui_coins_container .war_coins_box:before { + background-position: 0 -128px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 18px; + height: 17px; +} + +.nui_battlepoints_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -418px -590px; + width: 144px; + height: 26px; + position: absolute; + top: 94px; + font-size: 10px; + font-weight: 700; + line-height: 18px; + color: #ecb44d; +} + +.nui_battlepoints_container .points { + text-align: right; + position: absolute; + right: 35px; + top: 5px; + width: 55px; + height: 17px; +} + +.nui_battlepoints_container .bp_icon { + background-position: 0 -162px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 18px; + height: 17px; + position: absolute; + left: 40px; + top: 4px; +} + +body.has_heroes .nui_battlepoints_container { + top: 161px; +} + +.cors_error_message { + border: 2px solid #000; + padding: 10px; + color: #e72200; +} + +body.animate .effect_blink, +body.animate .helpers.animate.blink { + -webkit-animation: fadeOutIn 1s ease-in-out infinite alternate; + -ms-animation: fadeOutIn 1s ease-in-out infinite alternate; + animation: fadeOutIn 1s ease-in-out infinite alternate; +} + +body.animate .effect_single_blink, +body.animate .helpers.animate.single_blink { + -webkit-animation: fadeInOutIn 1.5s ease-in-out linear 1 alternate; + -ms-animation: fadeInOutIn 1.5s ease-in-out linear 1 alternate; + animation: fadeInOutIn 1.5s ease-in-out linear 1 alternate; +} + +body.animate .effect_bounce, +body.animate .helpers.animate.bounce { + -webkit-animation: bounceTop .75s ease-out infinite alternate; + -ms-animation: bounceTop .75s ease-out infinite alternate; + animation: bounceTop .75s ease-out infinite alternate; +} + +body.animate .helpers.animate.bounce.d_w { + -webkit-animation-name: bounceRight; + -ms-animation-name: bounceRight; + -o-animation-name: bounceRight; + animation-name: bounceRight; +} + +body.animate .helpers.animate.bounce.d_e { + -webkit-animation-name: bounceLeft; + -ms-animation-name: bounceLeft; + -o-animation-name: bounceLeft; + animation-name: bounceLeft; +} + +body.animate .helpers.animate.bounce.d_n { + -webkit-animation-name: bounceBottom; + -ms-animation-name: bounceBottom; + -o-animation-name: bounceBottom; + animation-name: bounceBottom; +} + +body.animate .helpers.animate.bounce.d_s { + -webkit-animation-name: bounceTop; + -ms-animation-name: bounceTop; + -o-animation-name: bounceTop; + animation-name: bounceTop; +} + +body.animate .helpers.animate.bounce.d_nw { + -webkit-animation-name: bounceBottomRight; + -ms-animation-name: bounceBottomRight; + -o-animation-name: bounceBottomRight; + animation-name: bounceBottomRight; +} + +body.animate .helpers.animate.bounce.d_ne { + -webkit-animation-name: bounceBottomLeft; + -ms-animation-name: bounceBottomLeft; + -o-animation-name: bounceBottomLeft; + animation-name: bounceBottomLeft; +} + +body.animate .helpers.animate.bounce.d_sw { + -webkit-animation-name: bounceTopRight; + -ms-animation-name: bounceTopRight; + -o-animation-name: bounceTopRight; + animation-name: bounceTopRight; +} + +body.animate .helpers.animate.bounce.d_se { + -webkit-animation-name: bounceTopLeft; + -ms-animation-name: bounceTopLeft; + -o-animation-name: bounceTopLeft; + animation-name: bounceTopLeft; +} + +body.animate.is_firefox .helpers.animate.bounce.d_w, +body.animate.is_ipad .helpers.animate.bounce.d_w { + -webkit-animation-name: bounceRightNoGPU; + -ms-animation-name: bounceRightNoGPU; + -o-animation-name: bounceRightNoGPU; + animation-name: bounceRightNoGPU; +} + +body.animate.is_firefox .helpers.animate.bounce.d_e, +body.animate.is_ipad .helpers.animate.bounce.d_e { + -webkit-animation-name: bounceLeftNoGPU; + -ms-animation-name: bounceLeftNoGPU; + -o-animation-name: bounceLeftNoGPU; + animation-name: bounceLeftNoGPU; +} + +body.animate.is_firefox .helpers.animate.bounce.d_n, +body.animate.is_ipad .helpers.animate.bounce.d_n { + -webkit-animation-name: bounceBottomNoGPU; + -ms-animation-name: bounceBottomNoGPU; + -o-animation-name: bounceBottomNoGPU; + animation-name: bounceBottomNoGPU; +} + +body.animate.is_firefox .helpers.animate.bounce.d_s, +body.animate.is_ipad .helpers.animate.bounce.d_s { + -webkit-animation-name: bounceTopNoGPU; + -ms-animation-name: bounceTopNoGPU; + -o-animation-name: bounceTopNoGPU; + animation-name: bounceTopNoGPU; +} + +body.animate.is_firefox .helpers.animate.bounce.d_nw, +body.animate.is_ipad .helpers.animate.bounce.d_nw { + -webkit-animation-name: bounceBottomRightNoGPU; + -ms-animation-name: bounceBottomRightNoGPU; + -o-animation-name: bounceBottomRightNoGPU; + animation-name: bounceBottomRightNoGPU; +} + +body.animate.is_firefox .helpers.animate.bounce.d_ne, +body.animate.is_ipad .helpers.animate.bounce.d_ne { + -webkit-animation-name: bounceBottomLeftNoGPU; + -ms-animation-name: bounceBottomLeftNoGPU; + -o-animation-name: bounceBottomLeftNoGPU; + animation-name: bounceBottomLeftNoGPU; +} + +body.animate.is_firefox .helpers.animate.bounce.d_sw, +body.animate.is_ipad .helpers.animate.bounce.d_sw { + -webkit-animation-name: bounceTopRightNoGPU; + -ms-animation-name: bounceTopRightNoGPU; + -o-animation-name: bounceTopRightNoGPU; + animation-name: bounceTopRightNoGPU; +} + +body.animate.is_firefox .helpers.animate.bounce.d_se, +body.animate.is_ipad .helpers.animate.bounce.d_se { + -webkit-animation-name: bounceTopLeftNoGPU; + -ms-animation-name: bounceTopLeftNoGPU; + -o-animation-name: bounceTopLeftNoGPU; + animation-name: bounceTopLeftNoGPU; +} + +.helper_arrow { + position: absolute; + width: 83px; + height: 52px; + background: url(https://gpfr.innogamescdn.com/images/game/helpers/arrow_sprite_2.67.png) no-repeat 0 0; + z-index: 1001; + cursor: default; + pointer-events: none; +} + +.helper_arrow.d_w { + background-position: 0 -83px; +} + +.helper_arrow.d_e { + background-position: 0 -31px; +} + +.helper_arrow.d_n, +.helper_arrow.d_s { + width: 52px; + height: 83px; +} + +.helper_arrow.d_n { + background-position: -83px 0; +} + +.helper_arrow.d_s { + background-position: -83px -83px; +} + +.helper_arrow.d_ne, +.helper_arrow.d_nw, +.helper_arrow.d_se, +.helper_arrow.d_sw { + width: 78px; + height: 77px; +} + +.helper_arrow.d_nw { + background-position: -135px 0; +} + +.helper_arrow.d_ne { + background-position: -213px 0; +} + +.helper_arrow.d_sw { + background-position: -135px -83px; +} + +.helper_arrow.d_se { + background-position: -213px -83px; +} + +body.animate .helper_highlight.animate.blink { + -webkit-animation-iteration-count: 7; + -moz-animation-iteration-count: 7; + -ms-animation-iteration-count: 7; + -o-animation-iteration-count: 7; + animation-iteration-count: 7; +} + +.helper_highlight { + position: absolute; +} + +.helper_highlight>div { + background: url(https://gpfr.innogamescdn.com/images/game/quests/highlighting_frame.png) repeat 0 0; + position: absolute; + width: 38px; + height: 38px; +} + +.helper_highlight .t1 { + top: -38px; + left: -38px; + background-position: 0 0; +} + +.helper_highlight .t2 { + width: 100%; + top: -38px; + background: url(https://gpfr.innogamescdn.com/images/game/quests/highlighting_frame_horizontal_middle.png) repeat-x 0 0; +} + +.helper_highlight .t3 { + top: -38px; + right: -38px; + background-position: 100% 0; +} + +.helper_highlight .b1 { + bottom: -38px; + left: -38px; + background-position: 0 100%; +} + +.helper_highlight .b2 { + width: 100%; + bottom: -38px; + background: url(https://gpfr.innogamescdn.com/images/game/quests/highlighting_frame_horizontal_middle.png) repeat-x 0 0; +} + +.helper_highlight .b3 { + bottom: -38px; + right: -38px; + background-position: 100% 100%; +} + +.helper_highlight .l1, +.helper_highlight .r1 { + height: 100%; + background: url(https://gpfr.innogamescdn.com/images/game/quests/highlighting_frame_vertical_middle.png) repeat-y 0 0; + top: 0; + left: -38px; +} + +.helper_highlight .r1 { + left: auto; + right: -38px; +} + +.hiddenByGameHelpers { + display: none; +} + +#quest_welcome { + margin: -15px; + padding: 15px; + min-height: 400px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/background_town_2.53.jpg) no-repeat 100% 100%; + -webkit-box-shadow: inset 0 15px 15px -11px #000; + box-shadow: inset 0 15px 15px -11px #000; +} + +#quest_welcome .guide { + position: absolute; + bottom: 0; + left: 0; + width: 337px; + height: 344px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/hermes.2.33.1.png) no-repeat 0 100%; + z-index: 4; +} + +.yellowBox { + position: absolute; + top: 20px; + bottom: 20px; + left: 275px; + right: 20px; +} + +.yellowBox .border_b, +.yellowBox .border_t { + position: absolute; + left: 14px; + right: 14px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/yellow_box_horizontal.png) repeat-x 0 0; + height: 9px; + z-index: 1; +} + +.yellowBox .border_t { + top: 0; +} + +.yellowBox .border_b { + bottom: 0; +} + +.yellowBox .border_l, +.yellowBox .border_r { + position: absolute; + top: 9px; + bottom: 9px; + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/yellow_box_sprite.png) repeat-y -14px 0; + z-index: 1; +} + +.yellowBox .border_l { + left: 3px; +} + +.yellowBox .border_r { + right: 3px; + background-position: -25px 0; +} + +.yellowBox .corner_bl, +.yellowBox .corner_br, +.yellowBox .corner_tl, +.yellowBox .corner_tr { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/yellow_box_sprite.png) no-repeat 0 0; + z-index: 2; +} + +.yellowBox .corner_tl, +.yellowBox .corner_tr { + width: 14px; + height: 16px; + top: 0; +} + +.yellowBox .corner_tl { + left: 0; +} + +.yellowBox .corner_tr { + right: 0; + background-position: -36px 0; +} + +.yellowBox .corner_bl, +.yellowBox .corner_br { + width: 14px; + height: 16px; + bottom: 0; +} + +.yellowBox .corner_bl { + left: 0; + background-position: 0 -16px; +} + +.yellowBox .corner_br { + right: 0; + background-position: -36px -16px; +} + +.yellowBox .content_box { + position: absolute; + top: 7px; + bottom: 7px; + left: 12px; + right: 12px; + overflow-x: hidden; + overflow-y: auto; + text-align: left; + padding: 15px 20px 5px; + background: #ffecc3; + background: #ffe6ae; + background: -moz-linear-gradient(left,#ffe6ae 0,#ffecc3 20%,#ffecc3 80%,#ffe6ae 100%); + background: -webkit-gradient(linear,left top,right top,color-stop(0,#ffe6ae),color-stop(20%,#ffecc3),color-stop(80%,#ffecc3),color-stop(100%,#ffe6ae)); + background: -webkit-linear-gradient(left,#ffe6ae 0,#ffecc3 20%,#ffecc3 80%,#ffe6ae 100%); + background: -o-linear-gradient(left,#ffe6ae 0,#ffecc3 20%,#ffecc3 80%,#ffe6ae 100%); + background: -ms-linear-gradient(left,#ffe6ae 0,#ffecc3 20%,#ffecc3 80%,#ffe6ae 100%); + background: linear-gradient(to right,#ffe6ae 0,#ffecc3 20%,#ffecc3 80%,#ffe6ae 100%); +} + +.yellowBox .content { + position: relative; + z-index: 5; + height: 100%; +} + +#quest_welcome .description { + padding-top: 40px; +} + +#quest_welcome .description:before { + position: absolute; + left: -50px; + right: -50px; + top: 20px; + content: ' '; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/yellow_box_horizontal.png) no-repeat 50% -9px; +} + +#quest_welcome .buttons { + margin-top: 20px; + text-align: center; + position: relative; +} + +#quest_welcome .buttons:before { + position: absolute; + left: -50px; + right: -50px; + top: 100%; + margin-top: -21px; + content: ' '; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/yellow_box_horizontal.png) no-repeat 50% -9px; +} + +#quest_welcome .buttons .button_new { + min-width: 200px; +} + +#quest_welcome .buttons .button_new+.button_new { + margin-top: 6px; +} + +#quest_welcome .disable_tutorial_text { + padding-top: 20px; +} + +#quest_welcome .disable_tutorial_button { + display: block; + max-width: 200px; + margin: 20px auto; +} + +#heroes_welcome { + margin: -15px; + padding: 15px; + min-height: 400px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/background_fight_2.jpg) no-repeat 100% 100%; + -webkit-box-shadow: inset 0 15px 15px -11px #000; + box-shadow: inset 0 15px 15px -11px #000; +} + +#heroes_welcome .buttons { + padding: 20px 0; + text-align: center; + position: relative; +} + +#heroes_welcome .buttons .button_new { + min-width: 200px; +} + +#heroes_welcome .background_container { + background: url(https://gpfr.innogamescdn.com/images/game/heroes_welcome/heroes_welcome_sprite.png) no-repeat 0 -67px; + height: 75px; + width: 382px; + position: relative; + overflow: hidden; + margin: 12px 0 0 -16px; +} + +#heroes_welcome .quest_progress_container { + width: 220px; + height: 61px; + margin: 6px auto 0; + position: relative; +} + +#heroes_welcome .portrait_continer { + width: 80px; + height: 61px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes_welcome/heroes_welcome_sprite.png) no-repeat 0 0; + position: absolute; + top: 2px; + right: 5px; +} + +#heroes_welcome .portrait { + position: absolute; + top: 5px; + right: 2px; +} + +#heroes_welcome .pb_quests_progress { + width: 164px; + position: absolute; + top: 17px; + right: 58px; +} + +#heroes_welcome .yellowBox .content_box { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + -moz-box-shadow: inset 0 0 105px #fce3a3; + -webkit-box-shadow: inset 0 0 105px #fce3a3; + box-shadow: inset 0 0 105px #fce3a3; +} + +.devbox { + display: block; + position: relative; + margin: 10px; + padding: 10px; + border: 1px dashed #666; + background: rgba(204,204,204,.6); +} + +.devbox:before { + position: absolute; + bottom: 5px; + right: 5px; + content: "Dev Box"; + z-index: -1; + font-size: 1.6em; + font-weight: 700; + color: red; +} + +.unit_info20x20 { + width: 20px; + height: 20px; +} + +.unit_info20x20.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) 0 0 no-repeat; +} + +.unit_info20x20.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -20px 0 no-repeat; +} + +.unit_info20x20.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) 0 -20px no-repeat; +} + +.unit_info20x20.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -20px -20px no-repeat; +} + +.unit_info20x20.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -40px 0 no-repeat; +} + +.unit_info20x20.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -40px -20px no-repeat; +} + +.unit_info20x20.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) 0 -40px no-repeat; +} + +.unit_info20x20.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -20px -40px no-repeat; +} + +.unit_info20x20.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -40px -40px no-repeat; +} + +.unit_info20x20.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -60px 0 no-repeat; +} + +.unit_info20x20.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -60px -20px no-repeat; +} + +.unit_info20x20.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -60px -40px no-repeat; +} + +.unit_info20x20.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) 0 -60px no-repeat; +} + +.unit_info20x20.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -20px -60px no-repeat; +} + +.unit_info20x20.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -40px -60px no-repeat; +} + +.unit_info20x20.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -60px -60px no-repeat; +} + +.unit_info20x20.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -80px 0 no-repeat; +} + +.unit_info20x20.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -80px -20px no-repeat; +} + +.unit_info20x20.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -80px -40px no-repeat; +} + +.unit_info20x20.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -80px -60px no-repeat; +} + +.unit_info20x20.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) 0 -80px no-repeat; +} + +.unit_info20x20.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -20px -80px no-repeat; +} + +.unit_info20x20.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -40px -80px no-repeat; +} + +.unit_info20x20.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_20x20_990810f.png) -60px -80px no-repeat; +} + +.unit_info22x22 { + width: 22px; + height: 22px; +} + +.unit_info22x22.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) 0 0 no-repeat; +} + +.unit_info22x22.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px 0 no-repeat; +} + +.unit_info22x22.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) 0 -22px no-repeat; +} + +.unit_info22x22.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px -22px no-repeat; +} + +.unit_info22x22.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -44px 0 no-repeat; +} + +.unit_info22x22.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -44px -22px no-repeat; +} + +.unit_info22x22.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) 0 -44px no-repeat; +} + +.unit_info22x22.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px -44px no-repeat; +} + +.unit_info22x22.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -44px -44px no-repeat; +} + +.unit_info22x22.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -66px 0 no-repeat; +} + +.unit_info22x22.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -66px -22px no-repeat; +} + +.unit_info22x22.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -66px -44px no-repeat; +} + +.unit_info22x22.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) 0 -66px no-repeat; +} + +.unit_info22x22.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px -66px no-repeat; +} + +.unit_info22x22.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -44px -66px no-repeat; +} + +.unit_info22x22.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -66px -66px no-repeat; +} + +.unit_info22x22.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -88px 0 no-repeat; +} + +.unit_info22x22.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -88px -22px no-repeat; +} + +.unit_info22x22.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -88px -44px no-repeat; +} + +.unit_info22x22.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -88px -66px no-repeat; +} + +.unit_info22x22.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) 0 -88px no-repeat; +} + +.unit_info22x22.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px -88px no-repeat; +} + +.unit_info22x22.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -44px -88px no-repeat; +} + +.unit_info22x22.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -66px -88px no-repeat; +} + +.unit_info30x30 { + width: 30px; + height: 30px; +} + +.unit_info30x30.all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 0 no-repeat; +} + +.unit_info30x30.att_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px 0 no-repeat; +} + +.unit_info30x30.att_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -30px no-repeat; +} + +.unit_info30x30.att_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -30px no-repeat; +} + +.unit_info30x30.booty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px 0 no-repeat; +} + +.unit_info30x30.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -30px no-repeat; +} + +.unit_info30x30.def_distance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -60px no-repeat; +} + +.unit_info30x30.def_hack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -60px no-repeat; +} + +.unit_info30x30.def_pierce { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -60px no-repeat; +} + +.unit_info30x30.flying { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px 0 no-repeat; +} + +.unit_info30x30.function_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -30px no-repeat; +} + +.unit_info30x30.function_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -60px no-repeat; +} + +.unit_info30x30.hero_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -90px no-repeat; +} + +.unit_info30x30.mythological_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -90px no-repeat; +} + +.unit_info30x30.mythological_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -90px no-repeat; +} + +.unit_info30x30.passive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -90px no-repeat; +} + +.unit_info30x30.regular_ground { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px 0 no-repeat; +} + +.unit_info30x30.regular_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -30px no-repeat; +} + +.unit_info30x30.self_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -60px no-repeat; +} + +.unit_info30x30.ship_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -120px -90px no-repeat; +} + +.unit_info30x30.ship_capacity { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) 0 -120px no-repeat; +} + +.unit_info30x30.ship_defense { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -30px -120px no-repeat; +} + +.unit_info30x30.speed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -60px -120px no-repeat; +} + +.unit_info30x30.wall_destruct { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_30x30_2921e48.png) -90px -120px no-repeat; +} + +.barracks.window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/barracks_97ee9a2.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +.docks.window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/docks_ffe8717.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +.barracks .commander_icon, +.docks .commander_icon { + cursor: pointer; +} + +.barracks .units_tabs, +.docks .units_tabs { + margin: 10px 10px 0 10px; + position: relative; + overflow: hidden; + z-index: 2; +} + +.barracks .units_tabs .unit, +.docks .units_tabs .unit { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/unit_bg.png) 0 0 no-repeat; + position: relative; + float: left; + width: 58px; + height: 101px; + cursor: pointer; + margin: 0; +} + +.barracks .hide, +.docks .hide { + display: none; +} + +.barracks .units_tabs .unit.selected, +.docks .units_tabs .unit.selected { + background-position: -58px 0; +} + +.barracks .units_tabs .unit .max_order_count, +.barracks .units_tabs .unit .total_amount, +.docks .units_tabs .unit .max_order_count, +.docks .units_tabs .unit .total_amount { + line-height: 14px; + text-align: center; + font-weight: 700; + padding-top: 3px; +} + +.barracks .units_tabs .unit .unit_icon, +.docks .units_tabs .unit .unit_icon { + border: 1px solid #431; + display: block; + margin: 0 3px; +} + +.barracks .units_tabs .unit .unit_icon .count, +.docks .units_tabs .unit .unit_icon .count { + color: #fff; + text-shadow: 1px 1px 0 #000; + filter: dropshadow(color=#000000, offX=1, offY=1); + position: absolute; + bottom: 2px; + right: 2px; + letter-spacing: -1px; + font-size: 15px; + font-weight: 700; +} + +.barracks .game_border, +.docks .game_border { + z-index: 1; + margin: 10px 10px 0 10px; +} + +.barracks .game_border.has_building, +.docks .game_border.has_building { + margin-top: -10px; +} + +.barracks .btn_toggle_invisible_units, +.docks .btn_toggle_invisible_units { + position: relative; + float: left; + margin: 48px 0 0 2px; + cursor: pointer; +} + +.barracks .unit_details, +.docks .unit_details { + position: relative; + overflow: hidden; +} + +.barracks .unit_details h4, +.docks .unit_details h4 { + margin-bottom: 3px; +} + +.barracks .unit_details .buy_box, +.barracks .unit_details .costs_box, +.barracks .unit_details .details_box, +.docks .unit_details .buy_box, +.docks .unit_details .costs_box, +.docks .unit_details .details_box { + float: left; + position: relative; + overflow: hidden; + padding: 8px 2px 8px 7px; +} + +.barracks .unit_costs_table, +.docks .unit_costs_table { + border: 1px solid #e1af55; + border-collapse: collapse; + padding: 2px; + height: 90px; + position: relative; + width: 300px; + white-space: nowrap; +} + +.barracks .unit_costs_table td, +.docks .unit_costs_table td { + background: #ffe2a1; + border: 1px solid #e1af55; + text-align: center; + min-width: 95px; + line-height: 24px; + background-position: 4px 0; + background-repeat: no-repeat; + padding: 2px 2px 2px 38px; +} + +.barracks .unit_costs_table .favor, +.docks .unit_costs_table .favor { + min-width: 134px; +} + +.barracks .unit_costs_table td.buildtime, +.docks .unit_costs_table td.buildtime { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/time.png); +} + +.barracks .unit_costs_table td.population, +.docks .unit_costs_table td.population { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/pop.png); +} + +.barracks .unit_costs_table td.iron, +.docks .unit_costs_table td.iron { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/iron.png); +} + +.barracks .unit_costs_table td.stone, +.docks .unit_costs_table td.stone { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/stone.png); +} + +.barracks .unit_costs_table td.favor, +.docks .unit_costs_table td.favor { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/favor.png); +} + +.barracks .unit_costs_table td.wood, +.docks .unit_costs_table td.wood { + background-image: url(https://gpfr.innogamescdn.com/images/game/res/wood.png); +} + +.barracks .unit_details .buy_box .unit_order, +.docks .unit_details .buy_box .unit_order { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/count.png) no-repeat 0 0; + height: 94px; + width: 234px; + position: relative; + overflow: hidden; +} + +.barracks .unit_details .buy_box .unit_order .icon, +.docks .unit_details .buy_box .unit_order .icon { + position: absolute; + top: 1px; + left: 1px; +} + +.barracks .btn_max, +.barracks .btn_min, +.docks .btn_max, +.docks .btn_min { + background: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_passive.png) no-repeat 0 0; + width: 52px; + height: 23px; + text-align: center; + color: #f9e09d; + line-height: 22px; + position: absolute; + font-weight: 700; + cursor: pointer; +} + +.barracks .btn_max:hover, +.barracks .btn_min:hover, +.docks .btn_max:hover, +.docks .btn_min:hover { + background-image: url(https://gpfr.innogamescdn.com/images/game/barracks/minmax_active.png); +} + +.barracks .unit_details .buy_box .unit_order .btn_min, +.docks .unit_details .buy_box .unit_order .btn_min { + top: 10px; + left: 100px; +} + +.barracks .unit_details .buy_box .unit_order .btn_max, +.docks .unit_details .buy_box .unit_order .btn_max { + top: 10px; + left: 170px; +} + +.barracks .unit_details .buy_box .unit_order .sl_order_units, +.docks .unit_details .buy_box .unit_order .sl_order_units { + position: absolute; + top: 34px; + left: 93px; + width: 69px; +} + +.barracks .unit_details .buy_box .unit_order .txt_order_units, +.docks .unit_details .buy_box .unit_order .txt_order_units { + position: absolute; + top: 60px; + left: 132px; + width: 58px; +} + +.barracks .unit_details .buy_box .unit_order .txt_order_units input, +.docks .unit_details .buy_box .unit_order .txt_order_units input { + text-align: center; +} + +.barracks .unit_details .buy_box .unit_order .btn_accept_order, +.docks .unit_details .buy_box .unit_order .btn_accept_order { + position: absolute; + top: 60px; + left: 202px; +} + +.barracks .unit_details .details_box, +.docks .unit_details .details_box { + width: 185px; +} + +.barracks .unit_details_table, +.docks .unit_details_table { + border: 1px solid #deb25a; + border-collapse: collapse; + background-color: #f7dca2; +} + +.barracks .unit_details_table td, +.docks .unit_details_table td { + border: 1px solid #deb25a; + text-align: center; + padding: 2px; + width: 92px; + line-height: 24px; + white-space: nowrap; + overflow: hidden; + position: relative; +} + +.barracks .unit_details_table td .icon, +.docks .unit_details_table td .icon { + float: left; +} + +.barracks .unit_details_table .def_hack .icon, +.docks .unit_details_table .def_hack .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px -44px no-repeat; +} + +.barracks .unit_details_table .def_pierce .icon, +.docks .unit_details_table .def_pierce .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -44px -44px no-repeat; +} + +.barracks .unit_details_table .def_distance .icon, +.docks .unit_details_table .def_distance .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) 0 -44px no-repeat; +} + +.barracks .unit_details_table .att_pierce .icon, +.docks .unit_details_table .att_pierce .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px -22px no-repeat; +} + +.barracks .unit_details_table .att_hack .icon, +.docks .unit_details_table .att_hack .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) 0 -22px no-repeat; +} + +.barracks .unit_details_table .att_distance .icon, +.docks .unit_details_table .att_distance .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px 0 no-repeat; +} + +.barracks .unit_details_table .booty .icon, +.docks .unit_details_table .booty .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -44px 0 no-repeat; +} + +.barracks .unit_details_table .speed .icon, +.docks .unit_details_table .speed .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -44px -88px no-repeat; +} + +.barracks .unit_details_table .ship_attack .icon, +.docks .unit_details_table .ship_attack .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -88px -66px no-repeat; +} + +.barracks .unit_details_table .ship_defense .icon, +.docks .unit_details_table .ship_defense .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) -22px -88px no-repeat; +} + +.barracks .unit_details_table .ship_capacity .icon, +.docks .unit_details_table .ship_capacity .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/unit_info/unit_info_22x22_b53c4ea.png) 0 -88px no-repeat; +} + +.barracks .requirements, +.docks .requirements { + float: none; + padding: 10px 10px 0; +} + +.barracks .requirements ul, +.docks .requirements ul { + list-style: none; + padding: 0; + margin: 0; +} + +.barracks .requirements li, +.docks .requirements li { + color: red; + padding: 0; + margin: 0; + line-height: 16px; +} + +.barracks .unit_orders, +.docks .unit_orders { + padding: 10px; + position: relative; + overflow: hidden; +} + +.barracks .unit_orders h4, +.docks .unit_orders h4 { + padding-bottom: 9px; +} + +.barracks .unit_orders .order, +.docks .unit_orders .order { + position: relative; + height: 102px; + width: 79px; + float: left; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/task.png) no-repeat 0 0; +} + +.barracks .unit_orders .order.finished, +.docks .unit_orders .order.finished { + opacity: .5; +} + +.barracks .unit_orders .order.first, +.docks .unit_orders .order.first { + width: 82px; + background-image: url(https://gpfr.innogamescdn.com/images/game/barracks/current.png); +} + +.barracks .unit_orders .border_right, +.docks .unit_orders .border_right { + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/barracks/task_right.png) no-repeat 0 0; + width: 4px; + height: 102px; +} + +.barracks .unit_orders .btn_cancel, +.docks .unit_orders .btn_cancel { + position: absolute; + top: 52px; + left: 56px; +} + +.barracks .unit_orders .first .btn_cancel, +.docks .unit_orders .first .btn_cancel { + left: 58px; +} + +.barracks .unit_orders .btn_recruit_time_reduction, +.docks .unit_orders .btn_recruit_time_reduction { + position: absolute; + top: 23px; + left: 56px; +} + +.barracks .unit_orders .first .btn_recruit_time_reduction, +.docks .unit_orders .first .btn_recruit_time_reduction { + left: 58px; +} + +.barracks .unit_orders .icon, +.docks .unit_orders .icon { + position: absolute; + top: 24px; + left: 4px; +} + +.barracks .unit_orders .progress, +.docks .unit_orders .progress { + position: relative; + width: 50px; + height: 50px; + overflow: hidden; +} + +.barracks .unit_orders .first .icon, +.docks .unit_orders .first .icon { + left: 6px; +} + +.barracks .unit_orders .first .progress, +.docks .unit_orders .first .progress { + background: url(https://gpfr.innogamescdn.com/images/game/order/order_layer.png) no-repeat 0 0; +} + +.barracks .unit_orders .first .time, +.docks .unit_orders .first .time { + left: 4px; +} + +.barracks .unit_orders .time, +.docks .unit_orders .time { + position: absolute; + top: 6px; + left: 4px; + width: 76px; + text-align: center; +} + +.barracks .unit_orders .first .time, +.docks .unit_orders .first .time { + left: 4px; +} + +.barracks .unit_orders .count_left, +.docks .unit_orders .count_left { + position: absolute; + top: 78px; + left: 4px; + width: 74px; + text-align: center; + font-weight: 700; +} + +.barracks #barracks_commander_hint, +.docks #barracks_commander_hint { + float: left; + margin-bottom: 10px; +} + +.barracks #barracks_commander_hint a.advisor_icon, +.docks #barracks_commander_hint a.advisor_icon { + left: 0; + cursor: pointer; +} + +.barracks #barracks_commander_hint .advisor_hint, +.docks #barracks_commander_hint .advisor_hint { + padding-left: 72px; + text-align: center; +} + +.barracks .no_barracks, +.docks .no_barracks { + margin-bottom: 7px; +} + +.barracks .no_barracks .game_body, +.docks .no_barracks .game_body { + padding: 9px; +} + +.barracks .no_barracks .building_icon40x40, +.docks .no_barracks .building_icon40x40 { + float: left; + width: 40px; + height: 40px; +} + +.barracks .no_barracks .building_descr, +.docks .no_barracks .building_descr { + margin-left: 60px; +} + +.docks #unit_order_ph_background { + position: relative; + margin: 10px 0 10px 10px; + width: 446px; + height: 92px; + background-image: url(https://gpfr.innogamescdn.com/images/game/barracks/ph_background-2.66.jpg); +} + +.docks #unit_order_ph_text { + position: absolute; + left: 91px; + top: 3px; + width: 340px; + height: 85px; + padding-left: 8px; +} + +.docks .btn_open_pt_wnd { + position: absolute; + bottom: 0; + left: 6px; + max-width: 335px; + bottom: 4px; + right: 6px; +} + +.docks .gold_ph_button { + background: url(https://gpfr.innogamescdn.com/images/game/button/gold_small.png) no-repeat; + width: 18px; + height: 16px; + top: 3px; + float: left; + position: relative; +} + +.docks .call1 { + margin-top: 5px; +} + +.docks .call2 { + margin-top: 20px; +} + +.senate .window_background { + background: url(https://gpfr.innogamescdn.com/images/game/buildings2/main.jpg) no-repeat right bottom; +} + +.senate .techtree { + position: relative; + overflow: hidden; + height: 526px; +} + +.senate .main_arrow { + position: absolute; + top: 74px; + width: 154px; + height: 41px; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 0; +} + +.senate .main_arrow.left { + left: 145px; + background-position: 0 -103px; +} + +.senate .main_arrow.right { + left: 481px; + background-position: 0 -144px; +} + +.senate .buildings { + margin-top: 50px; + position: relative; +} + +.senate .building { + position: absolute; + width: 176px; + height: 47px; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 0; + overflow: visible; +} + +.senate .building .icon { + position: absolute; + top: 3px; + left: 3px; + display: block; +} + +.senate .building .caption { + position: absolute; + top: 3px; + left: 45px; + right: 3px; + display: block; + height: 19px; + text-align: center; +} + +.senate .building .gp_link_fake { + font-size: 11px; + line-height: 19px; +} + +.senate .building .level { + font-weight: 700; + color: #fff; + position: absolute; + right: 3px; + bottom: 1px; + text-shadow: #000 1px 1px; +} + +.senate .construct_building { + height: 18px; + width: 128px; + text-align: center; + line-height: 19px; + white-space: nowrap; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -48px; + position: absolute; + top: 25px; + left: 45px; + cursor: pointer; + color: #fc6; + font-size: 11px; + font-weight: 700; +} + +.senate .construct_building:hover { + background-position: 0 -66px; +} + +.senate .construct_building.disabled { + background-position: 0 -84px; + cursor: default; + color: #ccb; +} + +.senate .building .arrow { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/main/senate_sprite_2.37.png) no-repeat 0 -185px; + width: 22px; + height: 13px; + left: 125px; + bottom: -14px; +} + +.senate .academy .arrow, +.senate .barracks .arrow, +.senate .farm .arrow, +.senate .hide .arrow, +.senate .market .arrow, +.senate .storage .arrow { + left: 29px; +} + +.senate .building.main { + top: 9px; + left: 302px; +} + +.senate .building.lumber { + top: 65px; + left: 20px; +} + +.senate .building.ironer { + top: 126px; + left: 20px; +} + +.senate .building.docks { + top: 187px; + left: 20px; +} + +.senate .building.farm { + top: 65px; + left: 208px; +} + +.senate .building.barracks { + top: 126px; + left: 208px; +} + +.senate .building.academy { + top: 187px; + left: 208px; +} + +.senate .building.stoner { + top: 65px; + left: 396px; +} + +.senate .building.temple { + top: 126px; + left: 396px; +} + +.senate .building.wall { + top: 187px; + left: 396px; +} + +.senate .building.storage { + top: 65px; + left: 584px; +} + +.senate .building.market { + top: 126px; + left: 584px; +} + +.senate .building.hide { + top: 187px; + left: 584px; +} + +.five_digit_number .place_unit_black, +.five_digit_number .place_unit_hero, +.five_digit_number .place_unit_white { + font-size: 7px; + right: 0; +} + +.five_digit_number.unit_icon40x40 span { + font-size: 12px; + bottom: 0; + right: 0; +} + +.five_digit_number.unit_icon40x40 { + font-size: 10px; +} + +#report_report .five_digit_number.unit_icon40x40 .place_unit_black, +#report_report .five_digit_number.unit_icon40x40 .place_unit_hero, +#report_report .five_digit_number.unit_icon40x40 .place_unit_white, +.espionage_report .five_digit_number.unit_icon40x40 .place_unit_black, +.espionage_report .five_digit_number.unit_icon40x40 .place_unit_hero, +.espionage_report .five_digit_number.unit_icon40x40 .place_unit_white, +.five_digit_number.unit_icon40x40 .caption, +.five_digit_number.unit_icon40x40 .shadow, +.report_side_attacker .five_digit_number.unit_icon40x40 .place_unit_black, +.report_side_attacker .five_digit_number.unit_icon40x40 .place_unit_hero, +.report_side_attacker .five_digit_number.unit_icon40x40 .place_unit_white, +.report_side_defender .five_digit_number.unit_icon40x40 .place_unit_black, +.report_side_defender .five_digit_number.unit_icon40x40 .place_unit_hero, +.report_side_defender .five_digit_number.unit_icon40x40 .place_unit_white { + font-size: 11px; + bottom: 1px; + right: 0; +} + +#report_report .five_digit_number.unit_icon40x40 .place_unit_black, +.espionage_report .five_digit_number.unit_icon40x40 .place_unit_black, +.five_digit_number.unit_icon40x40 .shadow, +.report_side_attacker .five_digit_number.unit_icon40x40 .place_unit_black, +.report_side_defender .five_digit_number.unit_icon40x40 .place_unit_black { + right: 1px; +} + +#town_units_overview .unit_icon25x25 { + font-size: 10px; +} + +#town_units_overview .unit_icon25x25.four_digit_number, +.command_overview_units .unit_icon25x25.four_digit_number { + font-size: 8px; + right: 0; +} + +.unit_icon25x25.four_digit_number .count { + font-size: 8px; +} + +.unit_icon25x25.five_digit_number .count { + font-size: 7px; +} + +.inventory .scrollbar { + right: 6px; + z-index: 2; +} + +.inventory .window_content { + overflow: hidden; +} + +.inventory .inventory_bg { + background-image: url(https://gpfr.innogamescdn.com/images/game/windows/inventory/stone_frame_middle.jpg); + width: 792px; +} + +.inventory .inventory_bg:after { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 0; + width: 791px; + height: 8px; + display: block; + margin-top: 15px; +} + +.inventory .fade_to_black { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -153px; + width: 791px; + height: 67px; + position: absolute; + bottom: 0; + z-index: 1; +} + +.inventory .slots { + position: relative; + padding: 5px 9px; + z-index: 1; +} + +.inventory .gp_inventory_link { + display: block; + width: 60px; + height: 60px; +} + +.inventory .regular_inventory { + position: relative; + height: 240px; +} + +.inventory .regular_inventory:before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -38px; + width: 791px; + height: 36px; + display: block; +} + +.inventory .regular_inventory h1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -111px; + width: 766px; + height: 42px; + margin: -29px auto 0 auto; + text-align: center; + font-size: 1.3em; + color: #fff; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; +} + +.inventory .regular_inventory .slot { + position: relative; + float: left; + text-align: center; + margin: 3px 0 0 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -291px; + width: 74px; + height: 73px; +} + +.inventory .regular_inventory .slot>.icon { + position: relative; + margin: 8px auto 0 auto; + z-index: 10; +} + +.inventory .regular_inventory .slot.empty .icon { + background-color: transparent; + opacity: 1; +} + +.inventory .regular_inventory .slot.disabled>.icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -220px; + width: 72px; + height: 71px; + margin: 1px; +} + +.inventory .regular_inventory .slot.disabled>.icon .button_new { + margin-top: 60px; +} + +.inventory .regular_inventory .slot.disabled>.icon .button_new .caption { + padding: 0 3px; + font-size: .8em; + font-weight: 400; +} + +.inventory .regular_inventory .slot.disabled>.icon .button_new .icon { + top: 4px; +} + +.inventory .premium_inventory { + position: relative; + overflow: hidden; + display: none; +} + +.inventory .premium_inventory:before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -74px; + width: 790px; + height: 37px; + display: block; +} + +.inventory .premium_inventory .headline { + text-align: center; + margin-top: -35px; +} + +.inventory .premium_inventory .headline .middle { + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/headline_banner_blue.png) no-repeat 0 -36px; + width: 111px; + height: 36px; + background-repeat: repeat-x; + width: initial; + vertical-align: top; + line-height: 40px; + margin-top: -1px; +} + +.inventory .premium_inventory .headline .left { + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/headline_banner_blue.png) no-repeat 0 0; + width: 111px; + height: 36px; +} + +.inventory .premium_inventory .headline .right { + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/headline_banner_blue.png) no-repeat 0 -72px; + width: 111px; + height: 36px; +} + +.inventory .premium_inventory .headline span { + text-align: center; + color: #ecb44d; + font-size: 13px; + font-weight: 700; +} + +.inventory .premium_inventory .slot { + position: relative; + float: left; + margin: 3px 0 0 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/windows/inventory/inventory_2.77.png) no-repeat 0 -291px; + width: 74px; + height: 73px; +} + +.inventory .premium_inventory .slot .icon { + margin: auto; + position: absolute; + top: 7px; + left: 7px; + bottom: 0; + right: 0; +} + +.inventory .premium_inventory .badge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -444px -90px; + width: 26px; + height: 26px; + position: absolute; + top: 3px; + right: 3px; + text-align: center; + line-height: 26px; + color: #ecb44d; +} + +.inventory .with_scrollbar.window_content { + margin-bottom: 7px; +} + +.inventory .with_scrollbar .inventory_bg:after { + margin-top: 45px; +} + +.slot .icon.coins_of_war, +.slot .icon.coins_of_wisdom { + background-image: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png); +} + +.slot .icon.coins_of_wisdom { + background-position: -123px -157px; +} + +.slot .icon.coins_of_war { + background-position: -184px -157px; +} + +#quest_progress_container { + top: 75px; + left: 150px; + position: absolute; +} + +#icons_container_left #quest_progress_container { + position: static; + top: 0; + left: 0; + margin-left: 0; +} + +.quest_progressbar_tooltip { + max-width: 350px; +} + +.quest_progressbar_tooltip .rewards { + margin: 5px 2px; +} + +.quest_progressbar_tooltip .rewards li { + margin-bottom: 2px; + clear: left; + padding-top: 5px; +} + +.quest_progressbar_tooltip .rewards .icon { + display: block; + float: left; + width: 24px; + height: 25px; + margin-right: 5px; +} + +#icons_container_left .quest_progress { + position: relative; + top: 252px; + height: 37px; + background: url(https://gpfr.innogamescdn.com/images/game/quests/quests_progress.png) no-repeat 0 0; +} + +.has_heroes #tutorial_quest_container .quest_progress { + top: 299px; +} + +#icons_container_left .quest_progress, +.has_heroes #tutorial_quest_container .quest_progress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -101px; + width: 63px; + height: 51px; + top: -15px; + left: 9px; + z-index: 3; +} + +.quest_progress .chest { + position: absolute; + z-index: 2; +} + +.has_heroes .quest_progress .chest, +.quest_progress .chest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -639px -310px; + width: 32px; + height: 32px; + top: 14px; + left: 15px; +} + +.quest_progress .single-progressbar2 { + z-index: 1; + top: 0; + left: 2px; + width: 56px; + height: 11px; +} + +.quest_progress .single-progressbar2 .body { + background-image: none; +} + +.quest_progress .single-progressbar2 .border_l, +.quest_progress .single-progressbar2 .border_r { + display: none; +} + +.quest_progress .progress .indicator { + background-position: 100% -386px; +} + +#icons_container_left .quest_progress .caption { + font-size: 8px; + top: 0; + line-height: 15px; +} + +body.animate .quest_progress.finished .chest { + -webkit-animation: .75s wiggle 2; + -moz-animation: .75s wiggle 2; + animation: .75s wiggle 2; +} + +#quest_inspector { + position: relative; + padding: 20px 0 30px 0; + font-size: 12px; +} + +#quest_inspector.quest_progress { + padding-top: 40px; +} + +#quest_inspector.quest .switch_sniff { + position: absolute; + top: 13px; + right: 10px; +} + +#quest_inspector.quest.yellow>.advisor_icon { + background-position: 0 0; +} + +#quest_inspector.quest.green>.advisor_icon { + background-position: 0 -90px; +} + +#quest_inspector.quest.red>.advisor_icon { + background-position: 0 -180px; +} + +#quest_inspector.quest.blue>.advisor_icon { + background-position: 0 -270px; +} + +#quest_inspector.quest.hermes>.advisor_icon { + background-position: -271px 0; +} + +#quest_inspector.quest.helen>.advisor_icon { + background-position: -271px -90px; +} + +#quest_inspector h4 { + text-align: center; +} + +#quest_inspector .quest_frame { + z-index: 2; + position: relative; +} + +#quest_inspector .tasks { + text-align: left; + position: relative; + margin-top: 10px; +} + +#quest_inspector .tasks li { + display: table; + position: relative; + margin: 3px 0 0 10px; + padding: 0 50px; + overflow: auto; + line-height: 16px; + width: 310px; + height: 48px; +} + +#quest_inspector .tasks li.divider { + padding: 0; + text-align: center; + background: 0 0; + margin-left: 57px; + height: 12px; +} + +#quest_inspector .tasks li.divider:after, +#quest_inspector .tasks li.divider:before { + width: 35%; + height: 1px; + background: #cf8933; + content: ''; + position: absolute; + top: 50%; +} + +#quest_inspector .tasks li.divider:before { + left: 0; +} + +#quest_inspector .tasks li.divider:after { + right: 0; +} + +#quest_inspector .tasks .icon { + width: 40px; + height: 40px; +} + +#quest_inspector .tasks .icon.default { + background: url(https://gpfr.innogamescdn.com/images/game/units/units_sprite_50x50_2.72.jpg) no-repeat -300px -100px; +} + +#quest_inspector .tasks .quest_sprite_40x40.renamed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -88px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.validated { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -132px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.edited { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -88px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.loadClaimed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -88px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.conquered { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -44px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.attack_enemy_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -44px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.win_attack_on_enemy_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -220px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.join_ally { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px 0; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.trade_with_farm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -220px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.trade_with_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -220px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.ask_for_res { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -88px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.pillage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -176px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.build_time_reduction { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px 0; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.conquer_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px 0; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.take_over { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -176px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.found_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -132px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.control_village { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -44px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.culture_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -88px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.cast_spell { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -44px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.choose_god { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -88px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.games { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -44px -176px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.party { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -220px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.phoenician { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -176px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.spy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -88px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.store_iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -132px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.friend_invite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -132px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.hero_assign { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -88px -132px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.hero_train { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -132px -220px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.cross_browser { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -132px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.island_quest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px -44px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.attack_bandits_camp { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -176px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.unlock_farmtown, +#quest_inspector .tasks .quest_sprite_40x40.upgrade_farmtown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -220px 0; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.triumph { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -220px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.land_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px 0; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.land_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat -176px -44px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .quest_sprite_40x40.naval_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/quest_type/quest_type_6a0aa5b.png) no-repeat 0 -176px; + width: 44px; + height: 44px; +} + +#quest_inspector .tasks .description { + display: table-cell; + vertical-align: top; +} + +#quest_inspector .tasks .status { + position: absolute; + right: 10px; + top: 50%; + height: 22px; + margin-top: -15px; + line-height: 22px; + font-size: 10px; + text-align: right; +} + +#quest_inspector .rewards .status, +#quest_inspector .tasks .satisfied .status { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -68px -176px; + width: 38px; + height: 32px; + overflow: hidden; +} + +#quest_inspector .rewards { + text-align: center; + clear: both; +} + +#quest_inspector .rewards h5 { + margin: 10px; + padding: 0; + font-weight: 700; +} + +#quest_inspector .scroll { + margin: 0 auto; +} + +#quest_inspector .rewards ul { + display: block; +} + +#quest_inspector .rewards li { + display: inline-block; + padding: 2px 5px; +} + +#quest_inspector .rewards li .count { + margin-top: 2px; +} + +#quest_inspector .rewards .unit_icon50x50 { + box-shadow: inset 0 0 4px #000; +} + +#quest_inspector .rewards li>span.power_icon { + margin: -8px 0; +} + +#quest_inspector .rewards .resources { + display: inline-block; +} + +#quest_inspector .rewards .favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -50px 0; + width: 50px; + height: 50px; + display: inline-block; +} + +#quest_inspector .rewards .resources.wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -100px -50px; + width: 50px; + height: 50px; +} + +#quest_inspector .rewards .resources.stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -100px 0; + width: 50px; + height: 50px; +} + +#quest_inspector .rewards .resources.iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -50px -50px; + width: 50px; + height: 50px; +} + +#quest_inspector .rewards .resources.culture { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -210px; + width: 30px; + height: 30px; +} + +#quest_inspector .rewards .coins { + width: 57px; + height: 57px; + display: inline-block; +} + +#quest_inspector .rewards .coins.coins_of_war { + background-image: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png); + background-position: -184px -157px; +} + +#quest_inspector .rewards .coins.coins_of_wisdom { + background-image: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png); + background-position: -123px -157px; +} + +#quest_inspector .buttons { + margin: 20px 0 -10px 0; + text-align: center; +} + +.progressables_overview .quest .icon_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/quests/quest_advisers_sprite.2.41.jpg) no-repeat -180px 0; +} + +.progressables_overview .quest.yellow .icon_wrapper { + background-position: -180px 0; +} + +.progressables_overview .quest.green .icon_wrapper { + background-position: -180px -90px; +} + +.progressables_overview .quest.red .icon_wrapper { + background-position: -180px -180px; +} + +.progressables_overview .quest.blue .icon_wrapper { + background-position: -180px -270px; +} + +.progressables_overview .island_quest .icon, +.progressables_overview .island_quest .icon_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/progressables/island_quests_overview_icons_2.60.jpg) no-repeat 0 0; +} + +.progressables_overview .island_quest.TheLonePilgrim .icon { + background-position: 0 0; +} + +.progressables_overview .island_quest.TheDestroyedShrine .icon { + background-position: -46px 0; +} + +.progressables_overview .island_quest.TheStrandedCaptain .icon { + background-position: -92px 0; +} + +.progressables_overview .island_quest.TearOffThePast .icon { + background-position: -138px 0; +} + +.progressables_overview .island_quest.TheBrothel .icon { + background-position: -184px 0; +} + +.progressables_overview .island_quest.CampOfTheDesperate .icon { + background-position: -230px 0; +} + +.progressables_overview .island_quest.RefugeesOrPrey .icon { + background-position: -276px 0; +} + +.progressables_overview .island_quest.CaravanWithoutProtection .icon { + background-position: -322px 0; +} + +.progressables_overview .island_quest.CelebrationsOfARuler .icon { + background-position: -368px 0; +} + +.progressables_overview .island_quest.TheTournamentOfTheChariots .icon { + background-position: -414px 0; +} + +.progressables_overview .island_quest.IntrigueOfMerchants .icon { + background-position: 0 -46px; +} + +.progressables_overview .island_quest.TheEpidemicPlague .icon { + background-position: -46px -46px; +} + +.progressables_overview .island_quest.ChildOfTheGods .icon { + background-position: -92px -46px; +} + +.progressables_overview .island_quest.TheDesperateVillage .icon { + background-position: -138px -46px; +} + +.progressables_overview .island_quest.AllJustAnExploit .icon { + background-position: -184px -46px; +} + +.progressables_overview .island_quest.QuestionOfMathematics .icon { + background-position: -230px -46px; +} + +.progressables_overview .island_quest.RiddanceOfThePoor .icon { + background-position: -276px -46px; +} + +.progressables_overview .island_quest.HolyHauntedForest .icon { + background-position: -322px -46px; +} + +.progressables_overview .island_quest.Crusade .icon { + background-position: -368px -46px; +} + +.progressables_overview .island_quest.HeroOfThePopulace .icon { + background-position: -414px -46px; +} + +.progressables_overview .island_quest.ThreatFromOutside .icon { + background-position: 0 -92px; +} + +.progressables_overview .island_quest.LeonidasPlea .icon { + background-position: -46px -92px; +} + +.progressables_overview .island_quest.ReinforcementOfSparta .icon { + background-position: -92px -92px; +} + +.progressables_overview .island_quest.BuildingTheDefenseLine .icon { + background-position: -138px -92px; +} + +.progressables_overview .island_quest.FirstWave .icon { + background-position: -184px -92px; +} + +.progressables_overview .island_quest.Distraction .icon { + background-position: -230px -92px; +} + +.progressables_overview .island_quest.DefeatThePersians .icon { + background-position: -276px -92px; +} + +.progressables_overview .island_quest.CareForTheWounded .icon { + background-position: -322px -92px; +} + +.progressables_overview .island_quest.PromisingMessage .icon { + background-position: -368px -92px; +} + +.progressables_overview .island_quest.LastPreparations .icon { + background-position: -414px -92px; +} + +.progressables_overview .island_quest.LetTheCelebrationBegin .icon { + background-position: 0 -138px; +} + +.progressables_overview .island_quest.Avowals .icon { + background-position: -46px -138px; +} + +.progressables_overview .island_quest.OwingGratitude .icon { + background-position: -92px -138px; +} + +.progressables_overview .island_quest.MurderInTheSenate .icon { + background-position: -138px -138px; +} + +.progressables_sprite .quest_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/progressables_2.83.png) no-repeat 0 0; + width: 46px; + height: 46px; +} + +.heroes .grepo_box { + margin: 21px 22px 0 22px; + min-height: 467px; +} + +.heroes .overview_exchange_currency { + min-width: 394px; +} + +.heroes .gp_window_curtain { + position: absolute; + top: 0; + bottom: 8px; + left: 7px; + right: 7px; + background-color: #000; + opacity: .4; + z-index: 100; +} + +.heroes .gp_window.grepo_box { + min-height: 0; +} + +.heroes .grepo_curtain { + position: absolute; + top: 43px; + left: 16px; + right: 16px; +} + +.heroes .grepo_bordure.top { + position: absolute; + top: 32px; + left: 7px; + right: 7px; +} + +.heroes .grepo_bordure.bottom { + position: absolute; + top: 506px; + left: 7px; + right: 7px; +} + +.heroes .hero_empty_slot, +.heroes .hero_slot { + height: 86px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat 0 -914px; + position: relative; +} + +.heroes .hero_slot .hero_type { + width: 45px; + height: 44px; + position: relative; + left: 103px; + top: -4px; + background: url(https://gpfr.innogamescdn.com/images/game/box/corners_2.77.png) no-repeat -193px -56px; + z-index: 1; +} + +.heroes .hero_slot .hero_type .war, +.heroes .hero_slot .hero_type .wisdom { + background-image: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png); + background-repeat: no-repeat; + width: 43px; + height: 43px; + margin: 0 1px; +} + +.heroes .hero_slot .hero_type .wisdom { + background-position: -69px -95px; +} + +.heroes .hero_slot .hero_type .war { + background-position: -6px -95px; +} + +.heroes .hero_empty_slot .decoration, +.heroes .hero_locked_slot .decoration, +.heroes .hero_slot .decoration { + width: 38px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_train_sprite_2.54.png) no-repeat; + height: 25px; + position: relative; +} + +.heroes .hero_empty_slot .decoration-bottom, +.heroes .hero_locked_slot .decoration-bottom, +.heroes .hero_slot .decoration-bottom { + background-position: -45px -14px; + left: 126px; +} + +.heroes .hero_slot .decoration-bottom { + top: -8px; +} + +.heroes .hero_empty_slot .decoration-bottom { + top: 37px; +} + +.heroes .hero_locked_slot .decoration-bottom { + top: -5px; +} + +.heroes .hero_empty_slot .decoration-top, +.heroes .hero_locked_slot .decoration-top, +.heroes .hero_slot .decoration-top { + background-position: -4px -38px; + top: 0; + left: 118px; +} + +.heroes .hero_locked_slot { + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat 0 -1007px; + height: 86px; + line-height: 14px; + position: relative; + text-align: center; + font-weight: 700; + font-size: 11px; +} + +.heroes .hero_locked_slot .border { + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat 0 0; +} + +.heroes .hero_locked_slot .chains, +.not_owned_overlay.exclusive .chains { + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat 0 0; + width: 123px; + height: 84px; + float: left; +} + +.heroes .portrait, +.heroes_train .portrait { + position: absolute; + top: 0; + left: 0; +} + +.heroes .portrait .level, +.heroes_train .portrait .level { + height: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_40.png) repeat 0 0; + position: absolute; + bottom: 0; + left: 0; + right: 0; + color: #fff; + font-weight: 700; + font-size: 11px; + line-height: 19px; + padding: 0 5px; + white-space: nowrap; +} + +.level.level_change_indicator.label_animation { + white-space: nowrap; +} + +.heroes .hero_caption { + position: absolute; + top: 1px; + left: 124px; + height: 21px; + right: 1px; + padding: 5px 0; + font-weight: 700; + font-size: 12px; + line-height: 16px; + width: 340px; + text-align: center; +} + +.heroes .btn_buy_premium_slot { + margin-top: -17px; + width: 222px; +} + +.heroes .btn_buy_premium_slot, +.heroes .slot_choice { + margin-left: 150px; +} + +.heroes .open_slot_descr { + padding: 15px 10px 12px; + font-weight: 700; +} + +.heroes .locations { + position: absolute; + top: 30px; + left: 126px; + width: 338px; + height: 52px; + font-weight: 700; + font-size: 12px; + z-index: 1; + text-align: center; +} + +.heroes a.gp_player_link, +.heroes a.gp_town_link { + color: #fc6; +} + +.heroes a.gp_player_link:hover, +.heroes a.gp_town_link:hover { + color: #fff; +} + +.heroes .locations .attacks_town, +.heroes .locations .hero_not_assigned, +.heroes .locations .in_town { + padding: 5px; +} + +.heroes .locations .attacks_town { + display: table-cell; + vertical-align: middle; + width: 327px; + height: 45px; +} + +.heroes .locations .hero_not_assigned { + font-weight: 400; + text-align: center; + padding-top: 20px; +} + +.heroes .locations .btn_hero_not_assigned, +.heroes .locations .btn_hero_unassign, +.heroes .locations .btn_recruit { + width: 160px; +} + +.heroes .info { + position: absolute; + top: 1px; + left: 467px; + width: 183px; + height: 82px; + z-index: 1; +} + +.heroes .info .pb_on_the_way_town, +.heroes .info .pb_regeneration, +.heroes .info .pb_transfer_to_game, +.heroes .info .pb_transfer_to_master { + position: absolute; + top: 13px; + left: 3px; + width: 150px; +} + +.heroes .info .pb_exp { + position: absolute; + top: 44px; + left: 3px; + width: 150px; +} + +.heroes .info .pb_exp.centered { + top: 29px; +} + +.heroes .info .btn_reduct_time { + position: absolute; + left: 157px; + top: 15px; +} + +.heroes .info .btn_send_resources { + position: absolute; + left: 157px; + top: 47px; +} + +.heroes .info .btn_send_resources.centered { + top: 32px; +} + +.heroes .pb_regeneration .progress .indicator { + background-position: 0 -674px; +} + +.heroes .pb_exp .progress .indicator { + background-position: 0 -693px; +} + +.heroes .on_the_way_town { + margin: 0 auto; + width: 227px; +} + +.heroes .on_the_way_town .single-progressbar { + width: 205px; + float: left; +} + +.heroes .btn_cancel_town_travel { + float: left; + position: relative; + left: 3px; + top: 3px; +} + +.heroes .pb_on_the_way_town .progress .indicator { + background-position: 0 -731px; +} + +.heroes .pb_transfer_to_game .progress .indicator { + background-position: 0 -731px; +} + +.heroes_council .currency, +.heroes_overview .currency { + position: absolute; + top: 0; + left: 50%; + margin-left: -79px; +} + +.heroes_council .currency .coins, +.heroes_overview .currency .coins { + position: absolute; + top: 3px; + width: 70px; + height: 25px; + line-height: 24px; + font-weight: 700; + color: #fc6; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -546px -88px; + font-size: 11px; +} + +.heroes_council .currency .coins.coins_of_war, +.heroes_overview .currency .coins.coins_of_war { + left: 0; +} + +.heroes_council .currency .coins.coins_of_wisdom, +.heroes_overview .currency .coins.coins_of_wisdom { + right: 0; + text-align: right; + background-position: -616px -88px; +} + +.heroes_council .currency .exchange_currency, +.heroes_overview .currency .exchange_currency { + margin: 4px 68px 0; +} + +.heroes_council .currency .icon, +.heroes_overview .currency .icon { + width: 21px; + height: 21px; + margin: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat 0 0; +} + +.heroes_council .currency .coins_of_war .icon, +.heroes_overview .currency .coins_of_war .icon { + float: left; + background-position: -147px -93px; +} + +.heroes_council .currency .coins_of_wisdom .icon, +.heroes_overview .currency .coins_of_wisdom .icon { + float: right; + background-position: -124px -93px; +} + +.classic_window.heroes_train .heroes_train { + color: #000; +} + +.classic_window.heroes_train .heroes_train .portrait { + position: static; +} + +.classic_window.heroes_train .heroes_train .hero_caption { + height: 21px; + font-weight: 700; + font-size: 12px; + line-height: 16px; + text-align: center; +} + +.classic_window.heroes_train .heroes_train .inner_page_border { + width: 400px; + margin: 53px auto 0; +} + +.classic_window.heroes_train .heroes_train .hero_slot { + height: 86px; + width: 205px; + position: absolute; + top: -42px; + z-index: 1; + left: 0; + right: 0; + margin: auto; +} + +.classic_window.heroes_train .heroes_train .portrait_border { + width: 123px; + margin: 0; + float: left; +} + +.classic_window.heroes_train .heroes_train .decoration { + width: 38px; + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_train_sprite_2.54.png) no-repeat; + height: 22px; + margin-top: 20px; +} + +.classic_window.heroes_train .heroes_train .decoration-left { + background-position: -4px -14px; +} + +.classic_window.heroes_train .heroes_train .decoration-right { + background-position: -46px -14px; +} + +.classic_window.heroes_train .heroes_train .middle_border { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) 0 0 repeat; + padding-top: 50px; +} + +.classic_window.heroes_train .heroes_train .stats_border { + width: 350px; + margin: 0 auto 24px; +} + +.classic_window.heroes_train .heroes_train .inner_border { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat; + padding: 0 3px 27px; +} + +.classic_window.heroes_train .heroes_train .inner_border .caption { + text-align: center; + font-weight: 600; + line-height: 30px; +} + +.classic_window.heroes_train .heroes_train .statistics { + font-weight: 600; + width: 100%; +} + +.classic_window.heroes_train .heroes_train .statistics td { + line-height: 16px; + width: 50%; + vertical-align: top; +} + +.classic_window.heroes_train .heroes_train .statistics td .icon { + margin: 0 10px; +} + +.classic_window.heroes_train .heroes_train .hero_effect { + width: 100%; + font-weight: 600; + text-align: center; +} + +.classic_window.heroes_train .heroes_train .hero_effect .bonus_changes { + vertical-align: middle; +} + +.classic_window.heroes_train .heroes_train .hero_effect .bonus_description { + margin: auto; +} + +.classic_window.heroes_train .heroes_train .stats_changed { + color: #94c023; +} + +.classic_window.heroes_train .heroes_train .green_arrow:after { + color: #94c023; + font-size: 20px; + line-height: 20px; + top: 3px; + position: relative; + content: "\2023"; +} + +.classic_window.heroes_train .heroes_train .pb_exp { + position: absolute; + width: 129px; + margin: auto; + bottom: 74px; + z-index: 1; + left: 0; + right: 0; +} + +.classic_window.heroes_train .heroes_train .pb_exp .progress .indicator { + background-position: 0 -693px; +} + +.classic_window.heroes_train .heroes_train .spend_coins_slider_area { + width: 180px; + margin: 0 auto 24px; +} + +.classic_window.heroes_train .heroes_train .spend_coins_slider_area .coins_of_x_icon, +.classic_window.heroes_train .heroes_train .spend_coins_slider_area .slider { + float: left; +} + +.classic_window.heroes_train .heroes_train .spend_coins_slider_area .slider { + width: 66px; + top: 7px; + padding: 10px 16px; +} + +.classic_window.heroes_train .heroes_train .spend_coins_slider_area .slider .js-button-left, +.classic_window.heroes_train .heroes_train .spend_coins_slider_area .slider .js-button-right { + display: none; +} + +.classic_window.heroes_train .heroes_train .spend_coins_slider_area .textbox { + float: right; + width: 50px; + top: 9px; +} + +.classic_window.heroes_train .heroes_train .spend_coins_slider_area input { + text-align: center; + font-weight: 700; +} + +.classic_window.heroes_train .heroes_train .button_new.use_coins { + position: relative; + bottom: 18px; + z-index: 1; + width: 221px; + display: block; + margin: auto; +} + +.classic_window.heroes_train .heroes_train .max_level_reached { + text-align: center; + padding: 5px 5px 30px 5px; +} + +.classic_window.heroes_train .heroes_train .icon { + display: inline-block; + vertical-align: middle; + overflow: hidden; +} + +.heroes_overview { + min-height: 525px; + overflow: hidden; +} + +.heroes_overview .title { + padding: 0 0 0 6px; +} + +.heroes_overview .very_top { + top: 8px; +} + +.heroes_overview .scrollbar { + right: 4px; +} + +.heroes_overview .grepo_bordure.top { + top: 45px; +} + +.heroes_overview .grepo_bordure.bottom { + top: 506px; +} + +.heroes_overview .hero123x87 { + height: 84px; +} + +.heroes_overview .overview_viewport { + position: relative; + overflow: hidden; + height: 430px; +} + +.heroes_overview .overview_content { + width: 652px; +} + +.heroes_overview .sword_icon { + padding-top: 7px; +} + +.heroes_overview #dd_sort_heroes { + float: right; + width: 180px; +} + +.heroes .details_window .spend_resources .portrait { + border: 1px solid #eba141; + position: relative; +} + +.heroes .details_window.overview_send_resources .spend_resources { + padding: 0; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.details_window.overview_send_resources .spend_resources .sr_col1 { + float: left; + width: 125px; + padding: 30px 30px 10px 30px; +} + +.details_window.overview_send_resources .spend_resources .sr_col2 { + float: left; + width: 250px; + padding: 23px 0 0 0; + text-align: center; +} + +.details_window.overview_send_resources .spend_resources .sr_col2 .btn_send { + float: none; + margin-top: 4px; +} + +.details_window.overview_send_resources .spend_resources .sr_col2 .res_icons, +.details_window.overview_send_resources .spend_resources .sr_col2 .spinners { + padding-top: 1px; + text-align: center; + width: 253px; +} + +.details_window.overview_send_resources .spend_resources .sr_col2 .res_icons { + padding-top: 4px; +} + +.details_window.overview_send_resources { + width: 478px; + min-height: 187px; +} + +.details_window.overview_send_resources .spend_resources .res_icons .icon { + margin: 0 5px 0 11px; +} + +.details_window.overview_send_resources .ratio_info { + position: relative; + text-align: left; + margin: 0 30px 25px; + clear: both; + padding-top: 7px; +} + +.details_window.overview_send_resources .ratio_info h3 { + font-size: 12px; + margin: 0 0 2px 0; +} + +.details_window.overview_send_resources .ratio_info p { + margin: 4px 0; +} + +.details_window.overview_send_resources .ratio_info .icon { + width: 12px; + height: 13px; + position: relative; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/arrows_small.2.41.png) no-repeat -12px -26px; + top: 2px; +} + +.instant_buy .hero_slot .info .pb_exp, +.instant_buy .hero_slot .info .pb_on_the_way_town, +.instant_buy .hero_slot .info .pb_regeneration, +.instant_buy .hero_slot .info .pb_transfer_to_game, +.instant_buy .hero_slot .info .pb_transfer_to_master { + width: 127px; +} + +.instant_buy .hero_slot .info .btn_send_resources { + left: 134px; +} + +.instant_buy .hero_slot .info .btn_instant_buy { + position: absolute; + left: 134px; + top: 15px; + width: 46px; +} + +.heroes_instant_buy_tooltip { + font-size: 12px; + line-height: 16px; + max-width: 300px; +} + +.heroes_instant_buy_tooltip h3 { + font-weight: 700; + margin: 5px 0; + font-size: 12px; + line-height: 16px; +} + +.heroes_instant_buy_tooltip .table { + position: relative; + display: table; + width: 100%; +} + +.heroes_instant_buy_tooltip .row { + display: table-row; +} + +.heroes_instant_buy_tooltip .cell { + vertical-align: middle; + display: table-cell; + text-align: left; + white-space: nowrap; + padding: 0 4px; +} + +.heroes_instant_buy_tooltip .hint { + font-size: 9px; + margin-top: 6px; + max-width: 300px; +} + +.heroes_instant_buy_tooltip .buy_message { + font-size: 13px; + font-weight: 700; + padding: 2px 0; +} + +.heroes_instant_buy_tooltip .single-progressbar { + font-size: 9px; + font-weight: 400; +} + +.heroes_council { + min-height: 525px; + overflow: hidden; +} + +.heroes_council .grepo_curtain { + position: absolute; + top: 43px; + left: 16px; + right: 16px; +} + +.heroes_council .grepo_bordure.top { + position: absolute; + top: 8px; + left: 7px; + right: 7px; +} + +.heroes_council .grepo_bordure.top2 { + position: absolute; + top: 45px; + left: 7px; + right: 7px; +} + +.heroes_council .grepo_bordure.bottom { + position: absolute; + top: 506px; + left: 7px; + right: 7px; +} + +.heroes_council .grepo_box { + min-height: 467px; + margin-top: 34px; +} + +.heroes_council .hero_card .portrait { + margin: 34px 0 0 0; + width: 256px; + height: auto; + min-height: 0; + overflow: visible; +} + +.heroes_council .hero_card .hero_info { + margin: 21px 21px 0 10px; +} + +.heroes_council .hero_card .deco_statue_facewithwings { + margin-left: -95px; +} + +.heroes_council .hero_card { + width: 269px; +} + +.heroes_council .council_info { + width: 190px; + float: left; + margin: 34px 0 0 16px; + min-height: 292px; +} + +.heroes_council .council_overview { + width: 525px; + float: right; + margin-left: 0; + margin-right: 18px; + min-height: 450px; +} + +.heroes_council .available_heroes { + width: 538px; + float: right; + min-height: 467px; + margin-right: 5px; +} + +.heroes_council .available_heroes>li { + float: left; +} + +.heroes_council .council_info .description { + border-left: 0 none; + border-right: 0 none; + padding: 5px; + color: #000; + max-height: 284px; + overflow: visible; +} + +.heroes_council .council_info .timer_box { + border-width: 0; + border-bottom-width: 2px; + padding: 5px; + text-align: center; +} + +.heroes_council .council_info .lbl_next_call { + font-weight: 700; + font-size: 12px; + line-height: 16px; + padding-bottom: 3px; +} + +.heroes_council .btn_call_for_gold { + margin: 5px; + width: 156px; +} + +.heroes_council .council_overview .no_heroes_background { + width: 500px; + height: 413px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat 0 -223px; + position: relative; +} + +.heroes_council .council_overview .description { + font-weight: 700; + margin: 25% 15%; + padding: 10px; + text-align: center; +} + +.heroes_council .council_overview .shadow_box { + height: 111px; + width: 350px; + position: absolute; + left: 50%; + margin-left: -175px; + bottom: 20px; +} + +.heroes_council .council_overview .shadow_box .angel { + left: 50%; + margin-left: -90px; + position: absolute; + top: -13px; + z-index: 6; +} + +.heroes_council .council_overview .shadow_box .content { + padding: 36px 11px 0; + text-align: center; +} + +.heroes_council .deco_fireplace { + position: absolute; + bottom: 7px; + left: 15px; +} + +.heroes_council .available_heroes .hero_info .description { + height: 89px; + overflow: hidden; + position: relative; +} + +.heroes_council .available_heroes .hero_info .description_scroller { + padding: 5px 18px 0 5px; + font-size: .9em; +} + +.heroes_council .available_heroes .hire_hero { + float: right; + max-width: 130px; + display: block; +} + +.overview_exchange_currency .content { + color: #000; +} + +.overview_exchange_currency .decoration { + display: none; +} + +.overview_exchange_currency .background_default { + padding: 10px; +} + +.overview_exchange_currency .description { + text-align: center; + margin-bottom: 5px; + max-width: 350px; +} + +.overview_exchange_currency .ratio { + text-align: center; + font-weight: 700; + margin-bottom: -22px; +} + +.overview_exchange_currency .current_value { + float: left; + margin-bottom: -28px; +} + +.overview_exchange_currency .type_wisdom { + float: right; +} + +.overview_exchange_currency .current_value, +.overview_exchange_currency .textbox { + width: 60px; +} + +.overview_exchange_currency .textbox input { + text-align: center; +} + +.overview_exchange_currency .exchange_diff.textbox input { + color: green; +} + +.overview_exchange_currency .exchange_diff.textbox.negative input { + color: red; +} + +.coins_of_x_icon, +.overview_exchange_currency .icon { + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -124px -121px; + vertical-align: middle; + margin-top: 5px; + float: right; +} + +.coins_of_x_icon.wisdom { + background-position: -124px -121px; +} + +.coins_of_x_icon.war { + background-position: -165px -121px; +} + +.overview_exchange_currency .type_war .icon { + float: left; + background-position: -165px -121px; +} + +.overview_exchange_currency .exchange_slider { + clear: both; + margin: 5px 35px; +} + +.overview_exchange_currency .save_exchange { + display: block; + position: relative; + left: 50%; + width: 160px; + margin: 10px 0 10px -80px; +} + +.heroes_assign { + min-height: 550px; + overflow: hidden; +} + +.heroes_assign .grepo_box.main { + width: 520px; + height: 450px; + margin-left: 112px; +} + +.heroes_assign .grepo_box.main>.grepo_box_content { + height: 425px; +} + +.heroes_assign .hero_wrapper { + width: 49%; + float: left; + clear: both; + text-align: center; + margin-top: 11px; +} + +.heroes_assign .heroes_wrapper>div:nth-child(2n) { + float: right; + clear: none; +} + +.heroes_assign .assign_hero { + text-align: left; + width: 219px; + min-height: 0; + margin: 10px auto; +} + +.heroes_assign .assign_hero .grepo_box { + margin: 0; +} + +.heroes_assign .assign_hero .grepo_box { + min-height: 0; +} + +.heroes_assign .assign_hero .content, +.heroes_assign .assign_hero .icon { + margin: -2px; + width: 199px; + height: 140px; + overflow: hidden; +} + +.heroes_assign .assign_hero .icon .caption { + height: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_40.png) repeat 0 0; + position: absolute; + left: 2px; + right: 2px; + font-size: 11px; + line-height: 19px; + padding: 0 5px; + white-space: nowrap; + text-align: left; +} + +.heroes_assign .hero_picker.no_hero .icon .caption { + display: none; +} + +.heroes_assign .assign_hero .btn_add { + top: 50%; + left: 50%; + margin: -11px; +} + +.heroes_assign .assign_hero .buttons { + position: absolute; + bottom: 26px; + right: 18px; + width: 40px; + z-index: 2; + opacity: .3; + padding: 2px; + -webkit-transition: all .2s ease; + -moz-transition: all .2s ease; + -ms-transition: all .2s ease; + -o-transition: all .2s ease; + transition: all .2s ease; +} + +.heroes_assign .assign_hero:hover .buttons { + opacity: 1; +} + +.heroes_assign .hero_picker.no_hero .buttons { + display: none; +} + +.heroes_assign .hero_picker>.content .background:before { + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -425px -90px; + width: 115px; + height: 100px; + margin: -50px 0 0 -58px; +} + +.heroes_assign .laurels { + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -425px -90px; + width: 115px; + height: 100px; + margin: 10px auto 0 auto; +} + +.heroes_assign .on_the_way_town { + width: 199px; + height: 50px; + margin: -10px 0 0 22px; + overflow: hidden; +} + +.heroes_assign .on_the_way_town .pb_on_the_way_town { + width: 199px; + margin-top: 10px; + z-index: 1; +} + +.heroes_assign .description { + position: relative; + margin: 30px 60px 0; + font-weight: 700; + font-size: 12px; + text-align: center; +} + +.heroes_assign .townlink { + text-align: center; + height: 20px; + line-height: 20px; + white-space: nowrap; + color: #fc6; +} + +.heroes_assign .townlink a { + color: #fc6; +} + +.heroes_assign .deco_fireplace { + position: absolute; + bottom: 22px; + z-index: 10; + margin-left: -112px; + left: 50%; +} + +.heroes_collection { + min-height: 525px; + overflow: hidden; +} + +.heroes_collection .header { + text-align: center; + color: #fc6; + font-size: 14px; + font-weight: 700; + line-height: 16px; + margin: 14px 0 10px 0; +} + +.heroes_collection .vertical_line { + position: relative; + height: 1px; + background-color: #f7e9cb; + border-bottom: 1px solid #3b2a0b; +} + +.heroes_collection .heroes_list { + position: relative; + height: 389px; + overflow: hidden; + padding: 0 52px; +} + +.heroes_collection .heroes_list .scrollbar.vertical { + right: 3px; + top: 3px; + bottom: 3px; +} + +.heroes_collection .heroes_list .js-scrollbar-viewport { + height: 389px; + width: 659px; +} + +.heroes_collection .heroes_list .hero_box { + float: left; + margin: 23px; +} + +.heroes_collection .box_border.border_b { + text-align: center; +} + +.heroes_collection .pgr_all_heroes { + margin-top: 5px; +} + +.heroes_collection .grepo_box.hero_box { + width: 148px; + min-height: 121px; +} + +.heroes_collection .not_owned_overlay { + width: 123px; + height: 89px; + background: url(https://gpfr.innogamescdn.com/images/game/1x1_black_60.png) repeat 0 0; + position: absolute; + top: 30px; + left: 13px; +} + +.heroes_collection .owned .not_owned_overlay { + display: none; +} + +.heroes_collection .grepo_box.hero_box .title { + text-align: center; +} + +.heroes_collection .grepo_box_content.first { + overflow: hidden; + height: 395px; +} + +.heroes_collection .laurel { + position: absolute; + width: 344px; + height: 277px; + top: 50%; + left: 50%; + margin-top: -98px; + margin-left: -172px; + background: url(https://gpfr.innogamescdn.com/images/game/common/laurels_2.56_compressed.png) no-repeat 0 0; +} + +.hero_type_indicator { + width: 45px; + height: 44px; + background: url(https://gpfr.innogamescdn.com/images/game/box/corners_2.77.png) no-repeat -193px -56px; + position: absolute; + bottom: -17px; + left: 50%; + margin-left: -22px; + z-index: 6; +} + +.hero_type_indicator .hero_type { + width: 43px; + height: 43px; + margin: 0 1px; + background-image: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png); + background-repeat: no-repeat; +} + +.hero_type_indicator .hero_type.wisdom { + background-position: -69px -95px; +} + +.hero_type_indicator .hero_type.war { + background-position: -6px -95px; +} + +.hero_card, +.unit_card { + position: relative; + width: 252px; +} + +.hero_card .portrait, +.unit_card .portrait { + position: relative; +} + +.hero_card .portrait .grepo_box_content div, +.unit_card .portrait .grepo_box_content div { + box-shadow: 0 0 30px 2px #000; +} + +.hero_card .hire_hero, +.unit_card .hire_hero { + display: none; +} + +.hero_card .deco_statue_facewithwings, +.unit_card .deco_statue_facewithwings { + position: absolute; + z-index: 8; + top: 185px; + left: 50%; + margin-left: -87px; +} + +.hero_card .hero_type, +.hero_card .unit_type, +.unit_card .hero_type, +.unit_card .unit_type { + width: 43px; + height: 43px; + margin: 0 1px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -6px -95px; +} + +.hero_card.category_wisdom .hero_type, +.unit_card.category_wisdom .hero_type { + background-position: -69px -95px; +} + +.hero_card .hero_info, +.hero_card .unit_info, +.unit_card .hero_info, +.unit_card .unit_info { + position: relative; + margin: 21px 10px 0 10px; + box-shadow: 0 0 30px 2px #000; +} + +.hero_card .hero_info.unit_info_icons, +.hero_card .unit_info.unit_info_icons, +.unit_card .hero_info.unit_info_icons, +.unit_card .unit_info.unit_info_icons { + box-shadow: none; +} + +.hero_card .hero_info:before, +.hero_card .unit_info:before, +.unit_card .hero_info:before, +.unit_card .unit_info:before { + left: 50px; +} + +.hero_card .hero_info:after, +.hero_card .unit_info:after, +.unit_card .hero_info:after, +.unit_card .unit_info:after { + right: 50px; +} + +.hero_card .hero_info.show_chains:after, +.hero_card .hero_info.show_chains:before, +.hero_card .unit_info.show_chains:after, +.hero_card .unit_info.show_chains:before, +.unit_card .hero_info.show_chains:after, +.unit_card .hero_info.show_chains:before, +.unit_card .unit_info.show_chains:after, +.unit_card .unit_info.show_chains:before { + content: ''; + display: block; + position: absolute; + top: -24px; + width: 18px; + height: 22px; + background: url(https://gpfr.innogamescdn.com/images/game/common/lines_vertical.png) repeat 0 0; +} + +.hero_card .unit_card_amount, +.unit_card .unit_card_amount { + position: absolute; + text-align: right; + bottom: 5px; + right: 15px; + z-index: 5; + font-size: 17px; +} + +.hero_card .statistics, +.unit_card .statistics { + display: block; + overflow: hidden; + color: #fc6; + font-weight: 700; +} + +.hero_card .statistics>:nth-child(4n+1), +.hero_card .statistics>:nth-child(4n+2), +.unit_card .statistics>:nth-child(4n+1), +.unit_card .statistics>:nth-child(4n+2) { + background-color: rgba(163,119,73,.3); +} + +.hero_card .statistics>:nth-child(4n), +.hero_card .statistics>:nth-child(4n-1), +.unit_card .statistics>:nth-child(4n), +.unit_card .statistics>:nth-child(4n-1) { + background-color: rgba(97,61,23,.3); +} + +.hero_card .statistics li, +.unit_card .statistics li { + display: block; + width: 50%; + float: left; + height: 30px; + line-height: 30px; + margin-bottom: 1px; + box-shadow: 0 1px 2px -1px #000; +} + +.hero_card .statistics li.single_column, +.unit_card .statistics li.single_column { + width: 100%; + text-align: center; +} + +.hero_card .statistics li.single_column .population_icon, +.unit_card .statistics li.single_column .population_icon { + position: relative; + vertical-align: middle; + display: inline-block; + margin-right: 5px; + margin-bottom: 2px; +} + +.hero_card .statistics .icon, +.unit_card .statistics .icon { + margin: 0 5px 0 10px; +} + +.hero_card .description, +.unit_card .description { + border-left: 0 none; + border-right: 0 none; + padding: 10px; +} + +.hero_card .requirements_wrapper, +.unit_card .requirements_wrapper { + overflow: hidden; + color: #fc6; + font-weight: 700; +} + +.hero_card .requirements, +.unit_card .requirements { + min-height: 30px; + line-height: 30px; + float: left; + overflow: hidden; + padding-left: 5px; +} + +.hero_card .requirements .text, +.unit_card .requirements .text { + font-size: 10px; +} + +.hero_card .requirements .coin .icon, +.unit_card .requirements .coin .icon { + display: inline-block; + width: 30px; + height: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -125px -121px; + vertical-align: middle; + margin-left: 4px; + position: relative; + top: -3px; +} + +.hero_card.category_war .requirements .coin .icon, +.unit_card.category_war .requirements .coin .icon { + background-position: -165px -121px; +} + +.hero_card.category_wisdom .requirements .coin .icon, +.unit_card.category_wisdom .requirements .coin .icon { + background-position: -125px -121px; +} + +.hero_card .requirements li, +.unit_card .requirements li { + float: left; + font-size: 17px; +} + +.hero_card .requirements .cost, +.unit_card .requirements .cost { + padding-left: 30px; +} + +.hero_card .requirements .award, +.unit_card .requirements .award { + display: inline-block; + width: 24px; + height: 24px; + text-indent: -1000em; + overflow: hidden; + margin: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -662px -113px; +} + +.unit_card .deco_statue { + position: absolute; + z-index: 8; + top: 176px; + left: 50%; + margin-left: -91px; +} + +.unit_card.naval .deco_statue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat 0 -65px; + width: 181px; + height: 65px; +} + +.unit_card.land .deco_statue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat 0 0; + width: 181px; + height: 65px; +} + +.unit_card.mythical .deco_statue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/grepo_box_silver_2.85.png) no-repeat -181px 0; + width: 181px; + height: 65px; +} + +.unit_card .portrait .unit_info_icons { + position: absolute; + right: 12px; + padding: 0; + margin: 0; + z-index: 5; + top: 6px; + height: 22px; +} + +#popup_div .hero_card .portrait { + margin-top: 0; +} + +body.small_ui .unit_card { + -webkit-transform: scale(.8); + -ms-transform: scale(.8); + -o-transform: scale(.8); + transform: scale(.8); + font-size: 12px; +} + +.gp_window.details_window .spend_resources { + color: #fc6; + padding: 28px; +} + +.gp_window.details_window .spend_resources .res_row, +.gp_window.details_window .spend_resources .send_row { + position: relative; + overflow: hidden; + height: 28px; +} + +.gp_window.details_window .spend_resources .label { + text-align: right; + padding: 7px 0 0 0; + font-weight: 700; + font-size: 11px; +} + +.gp_window.details_window .spend_resources .label, +.gp_window.details_window .spend_resources .spinners { + width: 270px; + float: left; + padding-right: 6px; +} + +.gp_window.details_window .spend_resources .spinners { + text-align: right; + padding-top: 4px; +} + +.gp_window.details_window .spend_resources .spinner_horizontal { + width: 80px; + margin-right: 6px; +} + +.gp_window.details_window .spend_resources .btn_send, +.gp_window.details_window .spend_resources .single-progressbar { + float: left; + width: 212px; +} + +.gp_window.details_window .spend_resources .res_icons { + height: 30px; + width: 270px; + padding-right: 6px; + text-align: right; +} + +.gp_window.details_window .spend_resources .res_icons .icon { + width: 28px; + height: 41px; + display: inline-block; + cursor: pointer; +} + +.gp_window.details_window .spend_resources .res_icons .icon.wood { + background: url(https://gpfr.innogamescdn.com/images/game/res/wood.png) no-repeat 0 0; + margin-right: 58px; +} + +.gp_window.details_window .spend_resources .res_icons .icon.stone { + background: url(https://gpfr.innogamescdn.com/images/game/res/stone.png) no-repeat 0 0; + margin-right: 58px; +} + +.gp_window.details_window .spend_resources .res_icons .icon.iron { + background: url(https://gpfr.innogamescdn.com/images/game/res/iron.png) no-repeat 0 0; + margin-right: 32px; +} + +.gp_window.details_window .spend_resources .single-progressbar .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/layout/progressbars-sprite_2.90_compressed.png) no-repeat 0 0; + margin-top: 1px; +} + +.gp_window.details_window .spend_resources .single-progressbar .caption { + top: 4px; +} + +.gp_window.details_window .spend_resources .pb_send_wood .indicator { + background-position: right -620px; +} + +.gp_window.details_window .spend_resources .pb_send_stone .indicator { + background-position: right -638px; +} + +.gp_window.details_window .spend_resources .pb_send_iron .indicator { + background-position: right -656px; +} + +.gp_window.details_window .details_window { + min-height: 240px; +} + +.window_confirm { + position: relative; + overflow: hidden; + margin: 18px 20px; + text-align: center; +} + +.window_confirm .question { + text-align: center; + padding: 0 0; +} + +.window_confirm #btn_decision_cancel, +.window_confirm #btn_decision_confirm { + width: 116px; + margin-top: 10px; +} + +.window_buy_gold { + position: relative; + overflow: hidden; + text-align: center; +} + +.window_buy_gold h3 { + color: #c00; +} + +.dialog td { + vertical-align: middle; +} + +.dialog .btn_confirm { + float: right; + margin-top: 4px; +} + +.dialog .textbox { + width: 100%; +} + +.dialog .confirmation { + position: relative; + padding-bottom: 30px; +} + +.dialog .confirmation .btn_confirm { + float: none; + margin-top: 0; +} + +.dialog .confirmation .question { + text-align: center; + padding: 30px 30px 14px; +} + +.dialog .confirmation .additional_question { + text-align: center; + padding: 10px 30px 14px; +} + +.dialog .confirmation .buttons { + position: relative; + overflow: hidden; + text-align: center; +} + +.dialog .confirmation .button_new { + min-width: 116px; +} + +.dialog .confirmation hr { + margin-left: 28px; + margin-right: 28px; +} + +.dialog .confirmation .checkbox_container { + text-align: center; +} + +.dialog .confirmation .tip { + font-size: 11px; + margin-top: 20px; +} + +.dialog .goto_page { + position: relative; + overflow: hidden; + margin: 13px 13px 9px; +} + +.dialog .goto_page .spinner { + width: auto; +} + +.dialog .save_coordinates { + position: relative; + overflow: hidden; + margin: 13px 13px 9px; +} + +.confirmation .rewards { + width: auto; + margin-left: 50px; + margin-right: 50px; +} + +.confirmation .scroll { + padding-top: 21px; + height: 89px; + text-align: center; +} + +.confirmation .rewards ul { + display: block; +} + +.confirmation .rewards li { + display: inline-block; + line-height: 98px; + padding: 2px 5px; +} + +.confirmation .rewards li { + line-height: normal; +} + +.confirmation .rewards li>span { + vertical-align: middle; + margin-right: 5px; +} + +.confirmation .rewards .unit_icon40x40 { + border: 1px solid #83642c; +} + +.confirmation .rewards li>span.power_icon { + margin: -8px 0; +} + +.confirmation .rewards .resources { + width: 30px; + height: 30px; + display: inline-block; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 0; +} + +.confirmation .rewards .favor_img { + display: inline-block; +} + +.confirmation .rewards .resources.wood { + background-position: 0 0; +} + +.confirmation .rewards .resources.stone { + background-position: 0 -30px; +} + +.confirmation .rewards .resources.iron { + background-position: 0 -60px; +} + +.confirmation .rewards .resources.culture { + background-position: 0 -210px; +} + +.confirmation .rewards .resources.all { + background-position: 0 -90px; +} + +.confirmation .rewards .resources.favor { + background-position: 0 -150px; +} + +.confirmation .rewards .resources.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -90px 0; + width: 30px; + height: 30px; +} + +.confirmation .rewards .coins { + width: 30px; + height: 30px; + display: inline-block; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat 0 0; +} + +.confirmation .rewards .coins.coins_of_war { + background-position: -165px -121px; +} + +.confirmation .rewards .coins.coins_of_wisdom { + background-position: -124px -121px; +} + +.confirmation .cancel { + display: inline-block; + margin-top: 3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -711px -436px; + width: 29px; + height: 30px; +} + +.info_dialog { + padding: 15px; +} + +.info_dialog.info_attack_planer .info_text_container { + max-height: 350px; + overflow: auto; +} + +.info_dialog.info_attack_planer ul { + margin: 10px; + padding: 10px; + list-style: disc; +} + +.welcome_window_container { + height: 377px; +} + +.welcome_window_container .buttons { + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 40px; +} + +.welcome_window_container .buttons .vertical_divider { + position: absolute; + top: 10px; + left: 0; + right: 0; +} + +.welcome_window_container .buttons .btn_start { + position: absolute; + top: 2px; + min-width: 215px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.welcome_window_container .sale_banner, +.welcome_window_container .slideshow { + display: none; +} + +.welcome_window_container .description_text { + overflow: auto; + max-height: none; + width: 350px; +} + +.welcome_window_container .scrolled { + margin-top: 15px; + height: 224px; + overflow: hidden; +} + +.welcome_window_container .scrollbox { + position: relative; + height: 100%; +} + +.welcome_window_container .scrollable { + margin-right: 35px; +} + +.welcome_window_container .scrollable .header { + margin: 0 0 1em 0; +} + +.welcome_window_container .scrollable .description_text { + width: 320px; +} + +.js-window-content .support_overview { + position: relative; + margin: 10px; +} + +.support_overview .supporters_list { + height: 487px; + overflow: auto; +} + +.support_overview .support_row { + position: relative; + overflow: hidden; + border-width: 1px; +} + +.support_overview .support_row .title { + position: relative; + overflow: hidden; + padding: 5px 8px 0; +}.support_overview .support_row .units_list { + position: relative; + overflow: hidden; + padding: 6px; +} + +.support_overview .support_row .units_list .count { + position: absolute; + bottom: 1px; + right: 2px; +} + +.support_overview .sort_box { + background: url(https://gpfr.innogamescdn.com/images/game/border/brown.png) repeat 0 0; + height: 23px; + padding: 5px; + border-bottom: 1px solid #d0be97; +} + +.support_overview #dd_support_sort_by { + min-width: 150px; + margin-left: 5px; +} + +.support_overview .unit_icon40x40 { + border: 1px solid #724b08; + cursor: pointer; +} + +.support_overview .send_back_container { + width: 28px; + height: 43px; + display: inline-block; + vertical-align: middle; + position: relative; + float: left; + margin: 4px 0 0 4px; +} + +.support_overview .btn_send_back_all, +.support_overview .btn_show_send_back_part { + background: url(https://gpfr.innogamescdn.com/images/game/place/sendback_2.44.png); + height: 21px; + width: 28px; + cursor: pointer; +} + +.support_overview .btn_send_back_all { + background-position: -29px 0; +} + +.support_overview .btn_send_back_all:hover { + background-position: -29px -21px; +} + +.support_overview .btn_send_back_all:active { + background-position: -29px -42px; +} + +.support_overview .btn_send_back_all.disabled { + background-position: -29px -63px; +} + +.support_overview .btn_show_send_back_part { + background-position: 0 0; +} + +.support_overview .btn_show_send_back_part:hover { + background-position: 0 -21px; +} + +.support_overview .btn_show_send_back_part:active { + background-position: 0 -42px; +} + +.support_overview .btn_show_send_back_part.disabled { + background-position: 0 -63px; +} + +.support_overview .btn_return_all_units { + float: right; + margin: 2px; +} + +.support_overview .outer_troops_send_part { + position: relative; + margin-left: 6px; + display: none; +} + +.support_overview .outer_troops_send_part .spinner { + width: 42px; +} + +.support_overview .units_list .clear_both { + clear: both; +} + +.support_overview .units_list .slot_wrapper { + position: relative; + float: left; +} + +.support_overview .units_list .slot_wrapper .unit_icon40x40 { + margin: 5px; +} + +.support_overview .units_list .spinner_horizontal { + width: 80px; + margin-right: 9px; + display: none; +} + +.support_overview .capacity_container { + position: relative; + padding: 3px 0 4px; +} + +.support_overview .capacity_container .pb_capacity { + width: 460px; + display: inline-block; + vertical-align: middle; +} + +.support_overview .support_row_no_results .title { + padding: 5px 8px; +} + +.support_overview .duration_container, +.support_overview .duration_error_container { + display: none; +} + +.support_overview .duration_container, +.support_overview .duration_error_container, +.support_overview .ship_container { + clear: both; + width: 450px; +} + +.support_overview .duration_error_container .duration_error_text { + width: 400px; +} + +.support_overview .btn_send_back_part { + margin: 5px 0; +} + +.daily_bonus .broken_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat 0 -368px; + width: 159px; + height: 138px; +} + +.daily_bonus .broken_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -159px -506px; + width: 159px; + height: 138px; +} + +.daily_bonus .broken_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat 0 -506px; + width: 159px; + height: 138px; +} + +.daily_bonus .broken_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -318px -368px; + width: 159px; + height: 138px; +} + +.daily_bonus .broken_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -159px -368px; + width: 159px; + height: 138px; +} + +.daily_bonus .broken_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -633px 0; + width: 159px; + height: 138px; +} + +.daily_bonus .broken_box_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -633px -138px; + width: 159px; + height: 138px; +} + +.daily_bonus .broken_box_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -422px -184px; + width: 159px; + height: 138px; +} + +.daily_bonus .glow_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -211px 0; + width: 211px; + height: 184px; +} + +.daily_bonus .glow_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat 0 -184px; + width: 211px; + height: 184px; +} + +.daily_bonus .glow_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat 0 0; + width: 211px; + height: 184px; +} + +.daily_bonus .glow_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -211px -184px; + width: 211px; + height: 184px; +} + +.daily_bonus .glow_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -422px 0; + width: 211px; + height: 184px; +} + +.daily_bonus .mystery_box_without_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -633px -276px; + width: 159px; + height: 138px; +} + +.daily_bonus .favor_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -477px -368px; + width: 79px; + height: 69px; +} + +.daily_bonus .favor_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -502px -322px; + width: 40px; + height: 31px; +} + +.daily_bonus .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -556px -437px; + width: 62px; + height: 62px; +} + +.daily_bonus .icon_favour { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -477px -437px; + width: 79px; + height: 69px; +} + +.daily_bonus .icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -477px -506px; + width: 62px; + height: 62px; +} + +.daily_bonus .icon_mysterybox { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -318px -506px; + width: 159px; + height: 138px; +} + +.daily_bonus .icon_res { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -539px -506px; + width: 76px; + height: 59px; +} + +.daily_bonus .mysterybox_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -422px -322px; + width: 40px; + height: 31px; +} + +.daily_bonus .progress_day_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -633px -414px; + width: 94px; + height: 75px; +} + +.daily_bonus .progress_day_big_current { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -727px -414px; + width: 63px; + height: 64px; +} + +.daily_bonus .progress_day_big_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -556px -368px; + width: 63px; + height: 64px; +} + +.daily_bonus .progress_day_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -581px -184px; + width: 45px; + height: 46px; +} + +.daily_bonus .progress_day_small_current { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -581px -230px; + width: 45px; + height: 46px; +} + +.daily_bonus .progress_day_small_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -581px -276px; + width: 45px; + height: 46px; +} + +.daily_bonus .resources_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -615px -506px; + width: 76px; + height: 59px; +} + +.daily_bonus .resources_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -462px -322px; + width: 40px; + height: 31px; +} + +.window_storage_wrapper { + height: 500px; + padding: 10px; +} + +.window_storage_wrapper .storage_resbars { + width: 340px; + float: left; + z-index: 11; +} + +.window_storage_wrapper #storage_wood { + background-position: 0 0; +} + +.window_storage_wrapper #storage_stone { + background-position: 0 -18px; +} + +.window_storage_wrapper #storage_iron { + background-position: 0 -36px; +} + +.window_storage_wrapper #storage_ironicon, +.window_storage_wrapper #storage_stoneicon, +.window_storage_wrapper #storage_woodicon { + position: absolute; + top: 0; + left: 0; + width: 30px; + height: 30px; + margin: 8px 0 0 8px; +} + +.window_storage_wrapper #storage_woodicon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 0; +} + +.window_storage_wrapper #storage_favoricon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -150px; +} + +.window_storage_wrapper #storage_stoneicon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -30px; +} + +.window_storage_wrapper #storage_ironicon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 -60px; +} + +.window_storage_wrapper .storage_hide_marker { + background: url(https://gpfr.innogamescdn.com/images/game/storage/marker.png) no-repeat; + height: 20px; + position: relative; + top: 24px; + width: 16px; + z-index: 5; +} + +.window_storage_wrapper .storage_full_at { + margin-bottom: 20px; +} + +.window_storage_wrapper #storage_list { + left: 365px; + float: left; + z-index: 10; +} + +.window_storage_wrapper div.storage_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/storage_8f07d95.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + z-index: 0; +} + +.window_storage_wrapper div.storage_resbars span { + position: relative; +} + +.window_storage_wrapper #storage_trader_hint { + width: 400px; + margin-top: 15px; +} + +.window_storage_wrapper .storage_bar { + position: relative; + top: 5px; + left: 45px; +} + +.window_storage_wrapper .storage_bar .caption { + position: relative; + top: -17px; + text-align: center; + color: #fff; +} + +.window_storage_wrapper .storage_wood .indicator { + background-position: 0 0; +} + +.window_storage_wrapper .storage_stone .indicator { + background-position: 0 -18px; +} + +.window_storage_wrapper .storage_iron .indicator { + background-position: 0 -36px; +} + +.window_storage_wrapper .storage_resbar { + cursor: pointer; +} + +.window_storage_wrapper .storage_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/storage_8f07d95.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +.daily_login_wrapper { + height: 484px; + position: relative; + background-image: url(https://gpfr.innogamescdn.com/images/game/daily_bonus/BG.jpg); +} + +.daily_login_wrapper .best_series { + position: absolute; + width: 91px; + height: 130px; + top: 0; + left: 0; + z-index: 1; +} + +.daily_login_wrapper .best_series .amount { + position: absolute; + top: 18px; + left: 29px; + width: 58px; + height: 43px; + padding: 20px 0 0; + text-align: center; + color: #fc6; +} + +.daily_login_wrapper .description_text { + height: 60px; + padding-top: 30px; + text-align: center; + width: 400px; + margin: auto; +} + +.daily_login_wrapper .rewards_box { + width: 486px; + height: 290px; + position: absolute; + top: 98px; + left: 82px; +} + +.daily_login_wrapper .rewards_box .rewards { + width: 400px; + position: absolute; + top: 14px; + left: 43px; + height: 247px; +} + +.daily_login_wrapper .rewards_box .rewards .reward { + position: absolute; + width: 126px; + height: 74px; + text-align: center; + padding-top: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/daily_bonus/daily_bonus_button_modi.png) no-repeat 0 0; + cursor: pointer; +} + +.daily_login_wrapper .rewards_box .rewards .reward.mystery_box { + display: inline-block; + top: 7px; + left: 112px; + width: 176px; + height: 100px; + line-height: 100px; + padding-top: 0; + background: url(https://gpfr.innogamescdn.com/images/game/daily_bonus/daily_bonus_button_30thday_2.27.png) no-repeat -16px -208px; +} + +.daily_login_wrapper .rewards_box .rewards .reward.mystery_box:hover { + background-position: -16px -100px; +} + +.daily_login_wrapper .rewards_box .rewards .reward.mystery_box.open:hover { + background-position: -16px -208px; + cursor: default; +} + +.daily_login_wrapper .rewards_box .rewards .reward.mystery_box.open:hover .mystery_box_reward { + cursor: pointer; +} + +.daily_login_wrapper .rewards_box .rewards .reward .amount { + width: 100%; + height: 20px; + margin: 18px auto; + text-align: center; + color: #fc6; + font-weight: 700; + display: none; + position: absolute; + line-height: 20px; + bottom: -15px; + pointer-events: none; +} + +.daily_login_wrapper .rewards_box .rewards .reward:hover { + background-position: -256px 0; +} + +.daily_login_wrapper .rewards_box .rewards .reward.disabled { + background-position: -128px 0; + cursor: default; +} + +.daily_login_wrapper .rewards_box .rewards .reward.disabled .res.resources { + color: gray; +} + +.daily_login_wrapper .rewards_box .rewards .reward.disabled .res.resources .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -615px -506px; + width: 76px; + height: 59px; +} + +.daily_login_wrapper .rewards_box .rewards .reward.disabled .res.favor { + color: gray; +} + +.daily_login_wrapper .rewards_box .rewards .reward.disabled .res.favor .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -477px -368px; + width: 79px; + height: 69px; +} + +.daily_login_wrapper .rewards_box .rewards .reward.resources { + bottom: 3px; + left: 18px; +} + +.daily_login_wrapper .rewards_box .rewards .reward.favor { + bottom: 3px; + left: 257px; +} + +.daily_login_wrapper .rewards_box .rewards .reward .res { + width: 76px; + height: 79px; + color: #fc6; + text-align: center; + display: inline-block; + font-size: 11px; + margin: 0 2px; +} + +.daily_login_wrapper .rewards_box .rewards .reward .res.resources .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -539px -506px; + width: 76px; + height: 59px; +} + +.daily_login_wrapper .rewards_box .rewards .reward .res.resources .res_value { + margin-top: -6px; +} + +.daily_login_wrapper .rewards_box .rewards .reward .res.favor .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -477px -437px; + width: 79px; + height: 69px; +} + +.daily_login_wrapper .rewards_box .rewards .reward .res.favor .res_value { + margin-top: -16px; +} + +.daily_login_wrapper .rewards_box .rewards .reward .res.mystery_box { + width: 100%; + height: 100%; + overflow: hidden; +} + +.daily_login_wrapper .rewards_box .rewards .reward .res.mystery_box .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -318px -506px; + width: 159px; + height: 138px; + margin: -18px auto 0 auto; +} + +.daily_login_wrapper .reward.mystery_box.open .mystery_box_animation { + display: block; +} + +.daily_login_wrapper .reward.mystery_box.open .glow_5 { + opacity: .4; +} + +.daily_login_wrapper .reward.mystery_box.open .mystery_box_reward { + opacity: 1; +} + +.daily_login_wrapper .timeline_viewport { + width: 550px; + height: 106px; + position: absolute; + bottom: 0; + left: 53px; + overflow: hidden; +} + +.daily_login_wrapper .timeline_viewport .timeline { + width: 424px; + height: 20px; + position: absolute; + top: 44px; + left: 46px; +} + +.daily_login_wrapper .timeline_viewport .timeline .timeline_part { + width: 69px; + height: 100%; + float: left; + background: url(https://gpfr.innogamescdn.com/images/game/daily_bonus/progress_fill.png) repeat-x 0 0; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper { + height: 75px; + width: 480px; + position: absolute; + bottom: 13px; + left: 36px; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -581px -184px; + width: 45px; + height: 46px; + float: left; + margin-top: 15px; + margin-right: 22px; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_small:nth-child(6) { + margin-right: 2px; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_small.current { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -581px -230px; + width: 45px; + height: 46px; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_small.current .day_num { + color: #fff; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_small.past { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -581px -276px; + width: 45px; + height: 46px; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_small .day_num { + width: 100%; + height: 100%; + text-align: center; + color: #fc6; + font-weight: 700; + line-height: 40px; + cursor: default; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -633px -414px; + width: 94px; + height: 75px; + float: left; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_big .day_num { + width: 75px; + height: 100%; + text-align: center; + color: #fc6; + font-weight: 700; + line-height: 71px; + float: right; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_big:after { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -556px -368px; + width: 63px; + height: 64px; + position: absolute; + top: 3px; + right: 10px; + opacity: 0; + -webkit-animation: fadeInOutIn 10s ease infinite; + -ms-animation: fadeInOutIn 10s ease infinite; + animation: fadeInOutIn 10s ease infinite; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_big.current .day_num { + color: #fff; +} + +.daily_login_wrapper .timeline_viewport .days_wrapper .day_big.current:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -727px -414px; + width: 63px; + height: 64px; + opacity: 1; + -webkit-animation: none; + -ms-animation: none; + animation: none; +} + +.daily_login_wrapper .mystery_box_animation { + top: 0; + left: 0; + width: 176px; + height: 100px; + position: absolute; + display: none; +} + +.daily_login_wrapper .mystery_box_animation .mystery_box_without_glow { + position: absolute; + top: -18px; + left: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -633px -276px; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .mystery_box_reward { + top: 20px; + opacity: 0; +} + +.daily_login_wrapper .mystery_box_animation .broken { + width: 159px; + height: 138px; + position: absolute; + top: -18px; + left: 11px; + opacity: 0; +} + +.daily_login_wrapper .mystery_box_animation .broken_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat 0 -368px; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .broken_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -159px -506px; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .broken_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat 0 -506px; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .broken_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -318px -368px; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .broken_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -159px -368px; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .broken_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -633px 0; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .broken_box_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -633px -138px; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .broken_box_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -422px -184px; + width: 159px; + height: 138px; +} + +.daily_login_wrapper .mystery_box_animation .glow { + width: 211px; + height: 184px; + position: absolute; + top: -43px; + left: -15px; + opacity: 0; +} + +.daily_login_wrapper .mystery_box_animation .glow_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -211px 0; + width: 211px; + height: 184px; +} + +.daily_login_wrapper .mystery_box_animation .glow_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat 0 -184px; + width: 211px; + height: 184px; +} + +.daily_login_wrapper .mystery_box_animation .glow_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat 0 0; + width: 211px; + height: 184px; +} + +.daily_login_wrapper .mystery_box_animation .glow_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -211px -184px; + width: 211px; + height: 184px; +} + +.daily_login_wrapper .mystery_box_animation .glow_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -422px 0; + width: 211px; + height: 184px; +} + +.tooltip_reward_day { + width: 320px; +} + +.tooltip_reward_day .reward_day { + font-weight: 700; + text-align: center; + padding-top: 5px; +} + +.tooltip_reward_day .description { + text-align: center; + margin: 5px auto 0 auto; +} + +.tooltip_reward_day .reward_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0 transparent; + margin: 15px 5px auto; + border: 1px solid #e0af53; +} + +.tooltip_reward_day .reward_wrapper.only_rewards { + padding-top: 10px; +} + +.tooltip_reward_day .reward_row { + height: 33px; + position: relative; + display: table; +} + +.tooltip_reward_day .reward_row .icon { + width: 40px; + height: 31px; + position: relative; + top: 5px; + left: 5px; +} + +.tooltip_reward_day .reward_row .reward_text { + width: 162px; + display: table-cell; + vertical-align: middle; + padding-left: 10px; +} + +.tooltip_reward_day .reward_row.res .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -462px -322px; + width: 40px; + height: 31px; +} + +.tooltip_reward_day .reward_row.favor .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -502px -322px; + width: 40px; + height: 31px; +} + +.tooltip_reward_day .reward_row.mystery_box { + display: block; +} + +.tooltip_reward_day .reward_row.mystery_box .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -422px -322px; + width: 40px; + height: 31px; + margin-left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.tooltip_reward_day .reward_row .power_icon30x30 { + margin: 0 8px; +} + +.tooltip_reward_day .reward_row .name { + display: table-cell; +} + +#icons_container_left { + position: absolute; + top: 75px; + left: 150px; + width: 80px; + bottom: auto; + z-index: 3; +} + +#daily_login_icon { + display: none; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -556px -437px; + width: 62px; + height: 62px; + margin: 11px; +} + +#daily_login_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/daily_bonus/daily_bonus_dabf00b.png) no-repeat -477px -506px; + width: 62px; + height: 62px; +} + +.world_wonders_welcome .wonders_picture { + float: left; + margin: 20px 20px 10px 20px; + width: 215px; + height: 170px; + position: relative; + border-top: 1px solid #c8a05c; + border-right: 1px solid #7f653a; + border-bottom: 1px solid #514023; + border-left: 1px solid #af8b4e; + background: url(https://gpfr.innogamescdn.com/images/game/wonders/word_wonders_hint.png) no-repeat 0 0; +} + +.world_wonders_welcome .button_box { + position: relative; + text-align: center; + margin-bottom: 10px; +} + +.world_wonders_welcome p { + margin: 20px; +} + +.world_wonders_welcome hr { + margin: 0 20px; +} + +.world_wonders_welcome .btn_lets_go { + margin-top: 10px; + min-width: 120px; +} + +.phoenician_salesman_welcome .wrapper_box { + text-align: center; + padding: 10px; +} + +.phoenician_salesman_welcome .wrapper_box h4 { + margin: 13px 0; +} + +.phoenician_salesman_welcome .wrapper_box hr { + margin: 10px; +} + +.phoenician_salesman_welcome .wrapper_box .ph_image { + background: url(https://gpfr.innogamescdn.com/images/game/phoenician_salesman/hint_picture_01-2.66.jpg) no-repeat 0 0; + width: 190px; + height: 114px; + display: inline-block; + border-top: 1px solid #c8a05c; + border-right: 1px solid #7f653a; + border-bottom: 1px solid #514023; + border-left: 1px solid #af8b4e; +} + +.phoenician_salesman_welcome .wrapper_box .descr { + width: 410px; + margin: 10px auto; +} + +.phoenician_salesman_welcome .wrapper_box .btn_go_to_ps_main_window { + margin: 0 auto; + position: relative; + margin-bottom: 10px; + min-width: 250px; +} + +.militia_welcome .wrapper_box { + background: url(https://gpfr.innogamescdn.com/images/game/layout/militia_bg_illu.png) no-repeat 50% 100%; + width: 508px; + height: 379px; +} + +.militia_welcome .wrapper_box .descr { + padding: 4px 20px; +} + +.militia_welcome .wrapper_box .descr .unit_icon40x40 { + float: left; + margin-right: 10px; + border-top: 1px solid #c8a05c; + border-right: 1px solid #7f653a; + border-bottom: 1px solid #514023; + border-left: 1px solid #af8b4e; +} + +.militia_welcome .wrapper_box .button_box { + position: relative; + text-align: center; +} + +.militia_welcome .wrapper_box hr { + margin: 10px 20px; +} + +#daily_reward { + width: 410px; + margin: 0 auto; +} + +#daily_reward .reward_icons a.confirm { + position: absolute; + right: 0; + bottom: -15px; + margin: 0; +} + +#daily_reward .reward_icons { + display: inline-block; + position: relative; + min-height: 90px; +} + +#daily_reward .box_given_out_hero { + margin-top: 26px; + margin-bottom: 13px; +} + +#daily_reward_progress_labels { + position: relative; + bottom: -32px; + left: -4px; +} + +#daily_reward_progress_labels div { + position: absolute; + top: 0; +} + +#daily_reward .reward_number { + float: left; + position: relative; + top: 10px; + min-width: 36px; + min-height: 17px; +} + +#daily_reward .reward_icons .button { + margin-top: 25px; +} + +#daily_reward_progress_bar { + width: 404px; + position: relative; +} + +#daily_reward_progress_wrapper { + background-image: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_build_bar.jpg); + width: 404px; + height: 26px; + padding: 3px; +} + +#daily_reward_progress { + position: absolute; + height: 26px; + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/farm_build_bar_progress.jpg) center right no-repeat; +} + +#daily_reward_rewards { + position: relative; + padding: 0 10px 20px; + text-align: center; + vertical-align: middle; +} + +#daily_reward_level_indicator { + position: absolute; + width: 13px; + margin: 0 0 0 -13px; + height: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) -285px -33px; + bottom: -9px; + z-index: 2; +} + +#daily_reward .res_large+.res_large, +#daily_reward .res_large+.res_large+res_large { + margin: 0 0 0 -45px; +} + +#daily_reward .res_large span { + position: absolute; + bottom: -17px; + left: 0; + right: 0; + text-align: center; +} + +#daily_reward div.temple_god_power { + margin: 10px 0 -10px; +} + +#daily_reward .btn_get_gift { + cursor: pointer; +} + +.gifts_welcome_new.interstitials_special_offer .main_banner { + top: 50px; + z-index: 10; +} + +.gifts_welcome_new.interstitials_special_offer .main_banner .banner_middle { + width: 23px; +} + +.gifts_welcome_new.interstitials_special_offer .main_banner .banner_middle .chest { + position: relative; + top: -70px; + left: -50px; +} + +.gifts_welcome_new .button_box.centering_box { + width: 383px; + margin-top: -5px; +} + +.gifts_welcome_new .grepo_box { + width: 320px; + height: 180px; +} + +.gifts_welcome_new .vertical_decoration_divider { + top: 30px; +} + +.gifts_welcome_new .gold_amount { + font-size: 60px; + display: inline-block; +} + +.gifts_welcome_new .res_large.gold { + position: relative; + top: 20px; + left: 10px; +} + +.gifts_welcome_new .speechbubble { + margin: 40px auto 90px auto; + width: 375px!important; + min-height: 60px!important; + right: -20px; +} + +.gifts_welcome_new .speechbubble .speechbubble_arrow_l { + top: 50px!important; +} + +.gifts_welcome_new .bottom_container { + position: absolute; + width: 100%; + text-align: center; + bottom: 15px; +} + +.gifts_welcome_new .bottom_container>div { + margin-left: auto; + margin-right: auto; +} + +.gifts_welcome_new .reward_power { + margin-top: 30px; +} + +.gifts_welcome_new .reward_gold { + margin-top: 10px; +} + +.gifts_welcome_new .hero_box { + margin-top: 30px; +} + +.gifts_welcome_new .hero_box .hero_name { + margin-top: 5px; +} + +.gifts_welcome_new .temple_god_power { + float: none; + margin-top: 10px; +} + +.world_end_welcome .wrapper_box { + width: 508px; + height: 381px; + background: url(https://gpfr.innogamescdn.com/images/game/hints/world_closing_bg.png) no-repeat 0 0; +} + +.world_end_welcome .wrapper_box .descr { + position: absolute; + top: 35px; + left: 68px; + width: 389px; + height: 154px; + color: #fc6; + display: table; +} + +.world_end_welcome .wrapper_box .descr .table-faker { + display: table-cell; + vertical-align: middle; +} + +.world_end_welcome .wrapper_box .btn_continue_fighting, +.world_end_welcome .wrapper_box .btn_new_worlds { + width: 206px; + position: absolute; + top: 331px; +} + +.world_end_welcome .wrapper_box .btn_new_worlds { + left: 274px; +} + +.world_end_welcome .wrapper_box .btn_continue_fighting { + left: 43px; +} + +.academy .academy_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/academy_677645d.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +.academy .tech_tree_box { + margin: 12px auto; + width: 782px; + overflow: hidden; + z-index: 2; +} + +.academy .tech_tree_box .game_border { + overflow: visible; +} + +.academy .tech_tree_box .game_inner_body { + height: 326px; + position: relative; +} + +.academy .tech_tree_box .bar_wrapper { + background-color: #000; + position: absolute; + height: 6px; + left: 0; + top: 0; + right: 0; + z-index: 1; +} + +.academy .tech_tree_box .bar_wrapper .bar { + width: 637px; + background-color: #36a; + position: absolute; + height: 4px; + left: 0; + top: 0; +} + +.academy .tech_tree_box .bar_wrapper .pointer { + left: 637px; + top: -6px; + margin: 0 0 0 -9px; + position: absolute; + width: 18px; + height: 28px; + z-index: 5; + background: url(https://gpfr.innogamescdn.com/images/game/academy/pointer.png) no-repeat 0 0; +} + +.academy .tech_tree_box .bar_wrapper .game_border_bottom { + bottom: -1px; + left: 0; + right: 0; +} + +.academy .tech_tree_box .column { + width: 77px; + height: 299px; + padding-top: 27px; + float: left; + margin: 0 0 0 -2px; + border-left: 2px groove #d6b468; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) 0 0 repeat; + position: relative; +} + +.academy .tech_tree_box .column.last { + width: 75px; +} + +.academy .tech_tree_box .column .levels { + width: 60px; + height: 16px; + font-weight: 700; + position: absolute; + top: 6px; + left: 1px; +} + +.academy .tech_tree_box .column .levels .level { + position: absolute; + top: 0; + width: 20px; + margin-left: -10px; + text-align: center; +} + +.academy .tech_tree_box .column .levels .level.number { + left: 19px; + padding-right: 3px; + width: 17px; +} + +.academy .tech_tree_box .column .levels .level.dot1 { + left: 38px; +} + +.academy .tech_tree_box .column .levels .level.dot2 { + left: 57px; +} + +.academy .tech_tree_box .column.inactive { + background-image: url(https://gpfr.innogamescdn.com/images/game/border/brown.png); +} + +.academy .tech_tree_box .column.inactive .research_box { + opacity: .5; +} + +.academy .tech_tree_box .research_box { + background: url(https://gpfr.innogamescdn.com/images/game/academy/tech_frame.png) no-repeat 0 0; + width: 58px; + height: 59px; + position: relative; + margin: 4px auto 0; +} + +.academy .tech_tree_box .research_box .research_icon { + position: absolute; + top: 0; + left: 0; + margin: 4px; +} + +.academy .tech_tree_box .button_downgrade, +.academy .tech_tree_box .button_upgrade { + width: 20px; + height: 20px; + position: absolute; + bottom: 4px; + right: 3px; + cursor: pointer; +} + +.academy .tech_tree_box .button_upgrade { + background: url(https://gpfr.innogamescdn.com/images/game/academy/up.png) no-repeat 0 0; +} + +.academy .tech_tree_box .button_downgrade { + background: url(https://gpfr.innogamescdn.com/images/game/academy/down.png) no-repeat 0 0; +} + +.academy .tech_tree_box .button_downgrade:hover, +.academy .tech_tree_box .button_upgrade:hover { + background-position: 0 -20px; +} + +.academy .researches_queue_box { + margin: 12px 0 62px 18px; + position: relative; + display: inline-block; + z-index: 2; +} + +.academy .research_points_box { + background-image: url(https://gpfr.innogamescdn.com/images/game/academy/points.png); + background-repeat: no-repeat; + background-position: center 22px; + position: absolute; + width: 170px; + height: 94px; + right: 30px; + text-align: center; + font-weight: 700; + bottom: 65px; +} + +.academy .research_points_box .research_points { + position: absolute; + color: #fc6; + left: 0; + right: 0; + top: 58px; + height: 15px; + font-size: 9px; + text-align: center; + padding-right: 3px; + line-height: 11px; +} + +.academy .tech_tree_box.extended_world_features .column { + width: 64px; +} + +.academy .tech_tree_box.extended_world_features .column.last { + width: 64px; +} + +.academy .tech_tree_box.extended_world_features .column .levels .level.number { + left: 15px; +} + +.academy .tech_tree_box.extended_world_features .column .levels .level.dot1 { + left: 30px; +} + +.academy .tech_tree_box.extended_world_features .column .levels .level.dot2 { + left: 45px; +} + +.gold_trade_interstitial_content { + width: 678px; + position: relative; + overflow: hidden; +} + +.gold_trade_interstitial_content.locked { + background: url(https://gpfr.innogamescdn.com/images/game/interstitials/gold_trade/marketplace_interstitial_locked.jpg) no-repeat 0 0; +} + +.gold_trade_interstitial_content.unlocked { + background: url(https://gpfr.innogamescdn.com/images/game/interstitials/gold_trade/marketplace_interstitial_unlocked.jpg) no-repeat 0 0; +} + +.gold_trade_interstitial_content .unlock_level { + display: inline-block; + position: absolute; + font-size: 2em; + font-weight: 700; + color: #fff; + text-shadow: 2px 2px #000; + right: 485px; + top: 150px; +} + +.gold_trade_interstitial_content .title { + position: relative; + margin-top: 313px; +} + +.gold_trade_interstitial_content .descr { + padding: 0 40px; +} + +.gold_trade_interstitial_content .vertical_decoration_divider { + position: absolute; + z-index: 1; + left: 50%; + margin-left: -191px; + top: 13px; +} + +.gold_trade_interstitial_content .button_box { + margin-top: 12px; +} + +.gold_trade_interstitial_content .btn_go_to_market { + z-index: 2; +} + +.attack_support_window .troops_from_this_town { + padding: 6px 32px 6px 6px; + position: relative; +} + +.attack_support_window .support_details_box { + margin-top: 8px; + display: inline-block; + min-width: 380px; +} + +.attack_support_window .game_border { + min-height: 62px; +} + +.attack_support_window .no_results { + vertical-align: middle; + line-height: 27px; +} + +.attack_support_window .btn_open_support_window { + position: absolute; + top: 8px; + right: 6px; +} + +.attack_support_window .breaker { + position: relative; +} + +.attack_support_window .units_list { + display: inline-block; +} + +.attack_support_window .unit_icon25x25 { + border: 1px solid #6e4b0b; + margin-right: 2px; +} + +.attack_support_window .count { + position: absolute; + bottom: 1px; + right: 1px; + font-size: 10px; +} + +.attack_support_window .additional_info_wrapper .town_info_duration_pos_alt { + width: 550px; + min-height: 30px; +} + +.attack_support_window .additional_info_wrapper .town_info_duration_pos { + float: left; + max-width: 440px; + min-height: 30px; +} + +.attack_support_window .additional_info_wrapper div.duration_container { + position: relative; + float: none; + width: 440px; +} + +.attack_support_window .additional_info_wrapper .nightbonus:before { + content: ''; + background: transparent url(https://gpfr.innogamescdn.com/images/game/report/fight_report_icons.png) no-repeat -60px 0; + height: 18px; + width: 20px; + display: inline-block; + position: relative; + top: 3px; +} + +.attack_support_window .additional_info_wrapper .nightbonus { + background: inherit; + padding: inherit; + left: 10px; + top: -2px; + display: none; +} + +.attack_support_window .duration_error_text { + display: block; + width: 100%; + text-align: left; +} + +.attack_support_window .heroes_pickup .icon_border { + width: 40px; + height: 40px; + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg) repeat 0 0; + margin: 5px 0 0 6px; + border-top: 1px solid #c8a05c; + border-right: 1px solid #7f653a; + border-bottom: 1px solid #514023; + border-left: 1px solid #af8b4e; + position: relative; +} + +.attack_support_window .heroes_pickup .icon { + z-index: 1; + width: 40px; + height: 40px; + position: relative; +} + +.attack_support_window .heroes_pickup .laurels { + position: absolute; + top: 5px; + left: 3px; + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -597px -113px; +} + +.attack_support_window .heroes_pickup .cbx_include_hero { + text-align: center; + margin-top: 5px; + margin-left: 4px; +} + +.attack_support_window .heroes_pickup .cbx_include_hero .cbx_icon { + display: inline-block; +} + +.attack_support_window .tab_type_support #btn_runtime { + margin-top: -1px; +} + +.attack_support_window .tab_type_attack #btn_runtime { + margin-top: 0; +} + +.attack_support_window #btn_runtime { + margin-left: 5px; + width: 23px; +} + +.attack_support_window .attack_type_wrapper { + margin-top: 5px; +} + +.attack_support_window .attack_type_wrapper .attack_table_box { + text-align: center; +} + +.attack_support_window .town_units_wrapper { + text-align: center; +} + +.attack_support_window .town_units_wrapper .ship_count, +.attack_support_window .town_units_wrapper .town_info_units, +.attack_support_window .town_units_wrapper .unit_wrapper { + display: inline-block; +} + +.attack_support_window .town_units_wrapper .capacity_progressbar { + margin: auto; + width: 466px; +} + +.attack_support_window .town_units_wrapper .ship_count { + vertical-align: middle; + margin-left: 15px; +} + +.attack_support_window .town_units_wrapper .units_info { + text-align: left; +} + +.attack_support_window .town_units_wrapper .select_all_units { + vertical-align: middle; +} + +.attack_support_window .button_wrapper { + text-align: center; +} + +.attack_support_window .attack_table_box .title { + position: absolute; + display: block; + width: 100%; + height: 18px; + bottom: 0; + font-weight: 600; + text-align: center; +} + +.attack_support_window .attack_table_box .body { + height: 60px; +} + +.attack_support_window .attack_table_box .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + bottom: 2px; + right: 8px; + z-index: 3; +} + +.attack_support_window .attack_table_box .wrap { + display: table; + width: 100%; +} + +.attack_support_window .attack_table_box .attack_content { + width: 100%; + display: table-cell; + text-align: center; +} + +.attack_support_window .attack_table_box .attack_content .attack_strategy, +.attack_support_window .attack_table_box .attack_content .attack_type { + display: inline-block; + margin: 5px; + float: none; + width: 46px; + height: 47px; + cursor: pointer; +} + +.attack_support_window .attack_table_box .attack_content .spells { + margin-top: 5px; + margin-bottom: 5px; + cursor: pointer; +} + +.attack_support_window .attack_table_box .attack_content .spells.no_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -96px -45px; + width: 45px; + height: 45px; +} + +.attack_support_window .attack_table_box .attack_content .spells.no_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -48px -48px; + width: 45px; + height: 45px; +} + +.attack_support_window .attack_table_box .attack_content .spells.no_power.pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat 0 -96px; + width: 45px; + height: 45px; +} + +.attack_support_window .attack_table_box .attack_content .attack_strategy.regular { + display: none; +} + +.hero_picker { + position: relative; + padding: 5px; +} + +.hero_picker>.content { + position: relative; +} + +.hero_picker>.content .background { + margin: 0; +} + +.hero_picker>.content .background:before { + content: ''; + position: absolute; + width: 34px; + height: 28px; + top: 50%; + left: 50%; + margin: -14px 0 0 -17px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -597px -113px; +} + +.hero_picker>.content .icon { + position: absolute; + top: 1px; + left: 1px; + z-index: 1; + cursor: pointer; +} + +.hero_picker.no_hero>.content .icon { + background: 0 0!important; +} + +.hero_picker>.content .caption { + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 16px; + text-align: right; + padding: 0 2px 2px; + font-weight: 700; + font-size: 15px; + line-height: 16px; + color: #fff; + text-shadow: 1px 1px 0 #000; + filter: dropshadow(color=#000000, offX=1, offY=1); +} + +.hero_picker>.content .caption.level { + color: #fd9; +} + +.hero_picker .content>.list { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 2; + cursor: pointer; +} + +.hero_picker .btn_add { + position: absolute; + top: 10px; + left: 10px; + z-index: 3; +} + +.hero_picker .btn_add.disabled { + display: none; +} + +.hero_picker>.buttons { + position: relative; + z-index: 3; + margin: 5px -3px 0; + height: 23px; +} + +.hero_picker>.buttons .btn_change { + position: absolute; + bottom: 0; + left: 0; +} + +.hero_picker>.buttons .btn_remove { + position: absolute; + bottom: 0; + right: 0; +} + +.map_coordinates_widget { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -671px -592px; + width: 69px; + height: 20px; + position: relative; + display: inline-block; + overflow: hidden; + cursor: pointer; + vertical-align: middle; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.map_coordinates_widget .coord { + position: absolute; + top: 3px; + height: 14px; + width: 23px; +} + +.map_coordinates_widget .coord_x { + left: 3px; +} + +.map_coordinates_widget .coord_y { + left: 29px; + width: 24px; +} + +.map_coordinates_widget .button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -659px -551px; + width: 12px; + height: 14px; + position: absolute; + top: 3px; + right: 2px; +} + +.map_coordinates_widget .button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -468px -621px; + width: 12px; + height: 14px; +} + +.map_coordinates_widget .button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -471px -226px; + width: 12px; + height: 14px; +} + +.map_coordinates_widget .dd_coordinates { + position: absolute; + bottom: 1px; + left: 1px; + width: 67px; + height: 18px; +} + +.map_coordinates_widget input { + background-color: transparent; + width: 100%; + height: 14px; + padding: 0; + margin: 0; + border: 0; + display: block; + position: relative; + line-height: 14px; + color: #000; + font-size: 10px; + font-family: Verdana,Arial,Helvetica,sans-serif; + overflow: hidden; + text-align: center; +} + +.dropdown-list-coordinates { + position: absolute; + overflow: hidden; + z-index: 2020; + display: none; + background-color: #ffefca; + border: 1px solid #444; + border-width: 1px 1px 1px 2px; + border-color: #afafaf #444 #444 #afafaf; +} + +.dropdown-list-coordinates .item-list { + position: relative; + overflow: auto; + max-height: 150px; +} + +.dropdown-list-coordinates .option { + cursor: pointer; + text-align: left; + color: #000; + padding: 0 3px; + line-height: 14px; + font-size: 11px; +} + +.dropdown-list-coordinates .option.selected, +.dropdown-list-coordinates .option:hover { + color: #fff; + background-color: #237bd9; +} + +.dropdown-list-coordinates .option:hover { + cursor: pointer; +} + +.dropdown-list-coordinates .option.disabled, +.dropdown-list-coordinates .option.selected { + cursor: default; +} + +.two_parts_progressbar { + width: 90px; + height: 350px; + padding: 30px 0; +} + +.two_parts_progressbar .reward_container { + position: relative; +} + +.two_parts_progressbar .reward { + position: absolute; + left: 11px; + top: -25px; +} + +.two_parts_progressbar .progress_bar_background { + margin: -20px 0 30px 31px; + position: relative; + width: 30px; + height: 100px; +} + +.two_parts_progressbar .item_counter { + margin: -28px 0 0 5px; + padding-left: 8px; + padding-top: 6px; + width: 66px; + height: 30px; + position: relative; +} + +.two_parts_progressbar .item_counter .icon { + position: absolute; + top: 2px; + left: 3px; +} + +.two_parts_progressbar .item_counter .amount { + top: 2px; + right: 2px; + color: #f8c75c; + font-weight: 700; + text-align: center; +} + +.two_parts_progressbar .item_counter .max_amount, +.two_parts_progressbar .item_counter .slash { + display: none; +} + +.two_parts_progressbar .progress { + position: absolute; + top: 6px; + left: 0; + bottom: 5px; + right: 0; +} + +.two_parts_progressbar .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/widgets/two_parts_progressbar/progress_bar_filling.png) repeat-y 0 0; + position: absolute; + bottom: 0; + left: 5px; + right: 2px; +} + +.two_parts_progressbar .indicator .value { + display: none; +} + +.js-list-viewport { + position: absolute; + overflow: hidden; +} + +.js-list-viewport .js-list { + position: absolute; + overflow: visible; +} + +.js-list-viewport .js-list>* { + display: inline-block; + float: left; +} + +.settings-container #player_settings ul { + list-style: disc; + margin: 5px 0 15px 35px; + width: 490px; +} + +.crm_campaign_screen_sprite .bg_black { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat 0 0; + width: 970px; + height: 607px; +} + +.crm_campaign_screen_sprite .bg_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -970px 0; + width: 970px; + height: 607px; +} + +.crm_campaign_screen_sprite .bg_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px 0; + width: 612px; + height: 612px; +} + +.crm_campaign_screen_sprite .bg_green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat 0 -607px; + width: 970px; + height: 607px; +} + +.crm_campaign_screen_sprite .bg_purple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -970px -607px; + width: 970px; + height: 607px; +} + +.crm_campaign_screen_sprite .bg_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat 0 -1214px; + width: 970px; + height: 607px; +} + +.crm_campaign_screen_sprite .close { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2491px -612px; + width: 24px; + height: 24px; +} + +.crm_campaign_screen_sprite .merchant1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2226px -612px; + width: 203px; + height: 463px; +} + +.crm_campaign_screen_sprite .merchant2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -612px; + width: 286px; + height: 477px; +} + +.crm_campaign_screen_sprite .price_tag_blue_lower_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -612px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_blue_lower_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -673px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_blue_upper_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -734px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_blue_upper_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -795px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_green_lower_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -856px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_green_lower_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -917px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_green_upper_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -978px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_green_upper_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2381px -1089px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_purple_lower_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2443px -1089px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_purple_lower_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2381px -1177px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_purple_upper_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2443px -1177px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_purple_upper_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2381px -1265px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_red_lower_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2443px -1265px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_red_lower_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1469px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_red_upper_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2002px -1469px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .price_tag_red_upper_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2064px -1469px; + width: 62px; + height: 61px; +} + +.crm_campaign_screen_sprite .shop_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1089px; + width: 441px; + height: 88px; +} + +.crm_campaign_screen_sprite .shop_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1177px; + width: 441px; + height: 88px; +} + +.crm_campaign_screen_sprite .shop_button_press { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1265px; + width: 441px; + height: 88px; +} + +.crm_campaign_screen_sprite .tag_wide_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1353px; + width: 224px; + height: 58px; +} + +.crm_campaign_screen_sprite .tag_wide_green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2164px -1353px; + width: 224px; + height: 58px; +} + +.crm_campaign_screen_sprite .tag_wide_purple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1411px; + width: 224px; + height: 58px; +} + +.crm_campaign_screen_sprite .tag_wide_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2164px -1411px; + width: 224px; + height: 58px; +} + +.crm_campaign_screen_single_images .price_tag_blue_bottom_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_bottom_center_e5bfeef.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_campaign_screen_single_images .price_tag_blue_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_center_3132ff9.png) repeat 0 0; + min-width: 1px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_blue_left_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_left_center_820cd33.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_blue_right_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_right_center_4d6a0bf.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_blue_top_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_top_center_d9f953e.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_campaign_screen_single_images .price_tag_green_bottom_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_bottom_center_f859c7b.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_campaign_screen_single_images .price_tag_green_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_center_e30d471.png) repeat 0 0; + min-width: 1px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_green_left_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_left_center_214a2b6.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_green_right_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_right_center_3c6bfc4.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_green_top_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_top_center_3e8bf00.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_campaign_screen_single_images .price_tag_purple_bottom_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_bottom_center_30c3318.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_campaign_screen_single_images .price_tag_purple_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_center_b0767f6.png) repeat 0 0; + min-width: 1px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_purple_left_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_left_center_310520f.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_purple_right_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_right_center_b87acdc.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_purple_top_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_top_center_6207878.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_campaign_screen_single_images .price_tag_red_bottom_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_bottom_center_a2dae12.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_campaign_screen_single_images .price_tag_red_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_center_e707a3c.png) repeat 0 0; + min-width: 1px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_red_left_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_left_center_05a0b7d.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_red_right_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_right_center_6b7d501.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_campaign_screen_single_images .price_tag_red_top_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_top_center_a94f5e7.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_campaign { + width: 635px; + height: 460px; + cursor: pointer; +} + +.happening_large_icon_container .crm_icon .special_offer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -129px -621px; + width: 154px; + height: 106px; + position: relative; + display: inline-block; +} + +.happening_large_icon_container .crm_icon .special_offer:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -283px -621px; + width: 154px; + height: 106px; +} + +.happening_large_icon_container .crm_icon .glow { + position: absolute; + display: inline-block; + margin: auto; + -webkit-animation: fadeInOutIn 12s ease infinite; + -ms-animation: fadeInOutIn 12s ease infinite; + animation: fadeInOutIn 12s ease infinite; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -678px 0; + width: 154px; + height: 154px; +} + +.happening_large_icon_container .crm_icon .timer_box .middle { + display: inline-block; + margin: 0 -5px; +} + +.happening_large_icon_container .crm_icon .icon_wrapper { + position: relative; +} + +.happening_large_icon_container .crm_icon:hover { + cursor: pointer; +} + +.happening_large_icon_container .crm_icon[data-type=gold_bundle_offer_icon] .special_offer, +.happening_large_icon_container .crm_icon[data-type=one_time_bonus_icon] .special_offer { + top: 15px; + left: 14px; +} + +.happening_large_icon_container .crm_icon[data-type=gold_bundle_offer_icon] .glow, +.happening_large_icon_container .crm_icon[data-type=one_time_bonus_icon] .glow { + top: 5px; +} + +.happening_large_icon_container .crm_icon[data-type=package_offer_icon] .glow, +.happening_large_icon_container .crm_icon[data-type=package_offer_icon] .special_offer { + top: 33px; +} + +.happening_large_icon_container .crm_icon[data-type=package_offer_icon] .special_offer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -678px -154px; + width: 154px; + height: 154px; + left: 4px; +} + +.happening_large_icon_container .crm_icon[data-type=package_offer_icon] .special_offer:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -678px -462px; + width: 154px; + height: 154px; +} + +.happening_large_icon_container .crm_icon[data-type=package_offer_icon] .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -678px -308px; + width: 154px; + height: 154px; + -webkit-transform: translateX(4px); + -ms-transform: translateX(4px); + -o-transform: translateX(4px); + transform: translateX(4px); +} + +.happening_large_icon_container .crm_icon[data-type=black_friday_2018_icon] .glow, +.happening_large_icon_container .crm_icon[data-type=black_friday_2018_icon] .special_offer { + top: 14px; +} + +.happening_large_icon_container .crm_icon[data-type=black_friday_2018_icon] .special_offer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat 0 0; + width: 125px; + height: 125px; +} + +.happening_large_icon_container .crm_icon[data-type=black_friday_2018_icon] .special_offer:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat 0 -125px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container .crm_icon[data-type=black_friday_2018_icon] .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat -125px 0; + width: 125px; + height: 125px; +} + +.crm_screen { + overflow: visible; +} + +.crm_screen .btn_wnd.close { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2491px -612px; + width: 24px; + height: 24px; + position: absolute; + right: 215px; + top: 80px; +} + +.crm_screen .banner_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -970px 0; + width: 970px; + height: 607px; + position: absolute; + overflow: hidden; +} + +.crm_screen .banner_bg.blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -970px 0; + width: 970px; + height: 607px; +} + +.crm_screen .banner_bg.green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat 0 -607px; + width: 970px; + height: 607px; +} + +.crm_screen .banner_bg.purple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -970px -607px; + width: 970px; + height: 607px; +} + +.crm_screen .banner_bg.red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat 0 -1214px; + width: 970px; + height: 607px; +} + +.crm_screen .banner_bg.black { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat 0 0; + width: 970px; + height: 607px; +} + +.crm_screen .god_ray_animation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px 0; + width: 612px; + height: 612px; + position: absolute; + left: 145px; + top: -20px; + -webkit-animation: god_ray_animation 70s linear infinite; + -ms-animation: god_ray_animation 70s linear infinite; + animation: god_ray_animation 70s linear infinite; +} + +@keyframes god_ray_animation { + from { + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + -o-transform: rotate(0); + transform: rotate(0); + } + + to { + -webkit-transform: rotate(360deg); + -ms-transform: rotate(360deg); + -o-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.crm_screen .title_text { + position: absolute; + top: 100px; + left: 225px; + width: 520px; + font-size: 18px; + font-weight: 600; +} + +.crm_screen .tag_banner { + position: absolute; + top: 140px; + left: 220px; +} + +.crm_screen .tag_banner .text { + position: relative; + color: #fff; + margin: 0 20px; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); +} + +.crm_screen .tag_banner.blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1353px; + width: 224px; + height: 58px; +} + +.crm_screen .tag_banner.green { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2164px -1353px; + width: 224px; + height: 58px; +} + +.crm_screen .tag_banner.purple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1411px; + width: 224px; + height: 58px; +} + +.crm_screen .tag_banner.red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2164px -1411px; + width: 224px; + height: 58px; +} + +.crm_screen .price_tag_container { + position: absolute; + top: 150px; + left: 590px; + width: 240px; + text-align: center; +} + +.crm_screen .price_tag_wrapper { + -webkit-transform: rotate(5deg); + -ms-transform: rotate(5deg); + -o-transform: rotate(5deg); + transform: rotate(5deg); + height: 121px; + min-width: 123px; + display: inline-block; +} + +.crm_screen .price_tag_wrapper .text_wrapper { + position: relative; + top: 50%; + transform: translateY(-50%); + padding: 0 20px 7px; +} + +.crm_screen .price_tag_wrapper .strikethrough_text, +.crm_screen .price_tag_wrapper .text { + padding: 2px 0; +} + +.crm_screen .price_tag_wrapper .strikethrough_text>span, +.crm_screen .price_tag_wrapper .text>span { + position: relative; + color: #fff; +} + +.crm_screen .price_tag_wrapper .strikethrough_text>span { + font-size: 14px; +} + +.crm_screen .price_tag_wrapper .strikethrough_text>span:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + right: 0; + border-top: 2px solid; + border-color: #fff; + -webkit-transform: rotate(-7deg); + -ms-transform: rotate(-7deg); + -o-transform: rotate(-7deg); + transform: rotate(-7deg); +} + +.crm_screen .price_tag_wrapper .text>span { + font-size: 16px; + font-weight: 600; +} + +.crm_screen .price_tag_wrapper .bottom, +.crm_screen .price_tag_wrapper .top { + height: 61px; +} + +.crm_screen .price_tag_wrapper .center { + margin: 0 -1px; +} + +.crm_screen .price_tag_wrapper .bottom, +.crm_screen .price_tag_wrapper .middle, +.crm_screen .price_tag_wrapper .top { + min-width: 123px; +} + +.crm_screen .price_tag_wrapper .bottom div, +.crm_screen .price_tag_wrapper .middle div, +.crm_screen .price_tag_wrapper .top div { + position: absolute; +} + +.crm_screen .price_tag_wrapper .bottom .left, +.crm_screen .price_tag_wrapper .middle .left, +.crm_screen .price_tag_wrapper .top .left { + left: 0; +} + +.crm_screen .price_tag_wrapper .bottom .right, +.crm_screen .price_tag_wrapper .middle .right, +.crm_screen .price_tag_wrapper .top .right { + right: 0; +} + +.crm_screen .price_tag_wrapper .bottom .center, +.crm_screen .price_tag_wrapper .middle .center, +.crm_screen .price_tag_wrapper .top .center { + left: 62px; + right: 62px; +} + +.crm_screen .price_tag_wrapper .bottom div { + bottom: 0; +} + +.crm_screen .price_tag_wrapper .price_tag { + position: absolute; + width: 100%; + height: 100%; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .top .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -734px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .top .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_top_center_d9f953e.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .top .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -795px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .middle .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_left_center_820cd33.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .middle .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_center_3132ff9.png) repeat 0 0; + min-width: 1px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .middle .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_right_center_4d6a0bf.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .bottom .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -612px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .bottom .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_blue_bottom_center_e5bfeef.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.blue .bottom .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -673px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .top .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -978px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .top .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_top_center_3e8bf00.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .top .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2381px -1089px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .middle .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_left_center_214a2b6.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .middle .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_center_e30d471.png) repeat 0 0; + min-width: 1px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .middle .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_right_center_3c6bfc4.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .bottom .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -856px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .bottom .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_green_bottom_center_f859c7b.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.green .bottom .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2429px -917px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .top .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2443px -1177px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .top .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_top_center_6207878.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .top .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2381px -1265px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .middle .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_left_center_310520f.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .middle .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_center_b0767f6.png) repeat 0 0; + min-width: 1px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .middle .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_right_center_b87acdc.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .bottom .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2443px -1089px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .bottom .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_purple_bottom_center_30c3318.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.purple .bottom .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2381px -1177px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .top .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2002px -1469px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .top .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_top_center_a94f5e7.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .top .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2064px -1469px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .middle .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_left_center_05a0b7d.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .middle .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_center_e707a3c.png) repeat 0 0; + min-width: 1px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .middle .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_right_center_6b7d501.png) repeat 0 0; + min-width: 62px; + min-height: 1px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .bottom .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2443px -1265px; + width: 62px; + height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .bottom .center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/screen/single_images/price_tag_red_bottom_center_a2dae12.png) repeat 0 0; + min-width: 1px; + min-height: 61px; +} + +.crm_screen .price_tag_wrapper .price_tag.red .bottom .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1469px; + width: 62px; + height: 61px; +} + +.crm_screen .body_content { + position: absolute; + top: 200px; + left: 275px; + width: 420px; + color: #fff; +} + +.crm_screen .body_content .countdown, +.crm_screen .body_content .headline_text { + font-size: 16px; + font-weight: 600; +} + +.crm_screen .body_content .countdown { + margin-top: 10px; +} + +.crm_screen .body_content .headline_text { + margin: 5px 0; +} + +.crm_screen .btn_confirm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1089px; + width: 441px; + height: 88px; + position: absolute; + bottom: 69px; + left: 265px; + cursor: pointer; + user-select: none; + font-weight: 600; +} + +.crm_screen .btn_confirm:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1177px; + width: 441px; + height: 88px; +} + +.crm_screen .btn_confirm:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -1265px; + width: 441px; + height: 88px; +} + +.crm_screen .character.left:before { + content: ""; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2226px -612px; + width: 203px; + height: 463px; + left: 30px; + bottom: 10px; +} + +.crm_screen .character.right:after { + content: ""; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -612px; + width: 286px; + height: 477px; + right: -20px; + bottom: 10px; +} + +.crm_screen .character.both:before { + content: ""; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -2226px -612px; + width: 203px; + height: 463px; + left: 30px; + bottom: 10px; +} + +.crm_screen .character.both:after { + content: ""; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/crm_campaign/crm_campaign_screen_e30306a.png) no-repeat -1940px -612px; + width: 286px; + height: 477px; + right: -20px; + bottom: 10px; +} + +.crm_screen .btn_confirm { + margin: 0 auto; + line-height: 91px; + color: #fff; + font-size: 18px; +} + +.crm_screen img { + max-width: 420px; + max-height: 150px; +} + +.interstitials_special_offer.background_illustration { + width: 678px; + height: 455px; + background-image: url(https://gpfr.innogamescdn.com/images/game/interstitials/special_offer/illustration_2.69.jpg); + overflow: hidden; +} + +.interstitials_special_offer .deco_top, +.interstitials_special_offer .deco_top_green { + position: absolute; +} + +.interstitials_special_offer .deco_top .main_headline, +.interstitials_special_offer .deco_top_green .main_headline { + text-align: center; + font-size: 18px; +} + +.interstitials_special_offer .offer_type_icon { + position: absolute; + right: 20px; + top: 30px; +} + +.interstitials_special_offer .centered_content { + margin-top: 40px; + text-align: center; +} + +.interstitials_special_offer .centered_content>div { + margin: auto; +} + +.interstitials_special_offer .centered_content .box, +.interstitials_special_offer .centered_content .box_green { + margin-top: 60px; +} + +.interstitials_special_offer .clock:before { + content: ""; + background-image: url(https://gpfr.innogamescdn.com/images/game/res/time.png); + background-repeat: no-repeat; + width: 30px; + height: 30px; + display: inline-block; + margin-bottom: -2px; +} + +.interstitials_special_offer .banner.hide_timer { + display: none; +} + +.interstitials_special_offer .banner:before { + content: ""; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -125px; + width: 109px; + height: 41px; +} + +.interstitials_special_offer .banner:after { + content: ""; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -207px; + width: 109px; + height: 41px; +} + +.interstitials_special_offer .banner .middle { + display: inline-block; + height: 30px; + vertical-align: top; + background-image: url(https://gpfr.innogamescdn.com/images/game/interstitials/special_offer/banner_middle_stretchable.png); + padding-bottom: 11px; +} + +.interstitials_special_offer .banner .content { + line-height: 26px; + margin-top: 3px; +} + +.interstitials_special_offer .speechbubble { + position: relative; + width: 355px; + min-height: 40px; +} + +.interstitials_special_offer .speechbubble .box_headline { + text-align: center; + font-size: 16px; + font-weight: 700; +} + +.interstitials_special_offer .speechbubble .box_text { + padding: 5px; + text-align: center; +} + +.interstitials_special_offer .speechbubble .speechbubble_arrow_l { + top: 20px; + left: -6px; +} + +.interstitials_special_offer .speechbubble .speechbubble_arrow_l.hide_timer { + top: 30px; +} + +.interstitials_special_offer .speechbubble.hide_timer { + margin-top: 65px; +} + +.interstitials_special_offer .main_banner { + width: 412px; + position: relative; + top: 84px; +} + +.interstitials_special_offer .main_banner>div { + display: inline-block; +} + +.interstitials_special_offer .main_banner .banner_left, +.interstitials_special_offer .main_banner .banner_left_green, +.interstitials_special_offer .main_banner .banner_middle, +.interstitials_special_offer .main_banner .banner_middle_green { + margin-right: -5px; +} + +.interstitials_special_offer .main_banner.hide_timer { + margin-top: -8px; +} + +.interstitials_special_offer .chest { + position: relative; + top: -250px; +} + +.interstitials_special_offer .box .illustration_gold, +.interstitials_special_offer .box_green .illustration_gold { + position: relative; + top: 34px; + left: 15px; +} + +.interstitials_special_offer .box .discount, +.interstitials_special_offer .box_green .discount { + text-align: center; + color: #fde9ca; + margin-left: 120px; + font-size: 40px; +} + +.interstitials_special_offer .box .subline, +.interstitials_special_offer .box_green .subline { + font-size: 17px; + color: #ffdd5e; +} + +.interstitials_special_offer .button_container { + position: absolute; + bottom: 17px; + height: 20px; + width: 600px; + left: 50px; +} + +.interstitials_special_offer .button_container .btn_accept { + width: 230px; + margin-top: 0; +} + +.speechbubble { + padding: 10px 20px 20px 10px; +} + +.speechbubble>div { + position: absolute; +} + +.speechbubble .speechbubble_tl { + top: 0; + left: 0; +} + +.speechbubble .speechbubble_tr { + top: 0; + right: 0; +} + +.speechbubble .speechbubble_bl { + bottom: 0; + left: 0; +} + +.speechbubble .speechbubble_br { + bottom: 0; + right: 0; +} + +.speechbubble .speechbubble_b, +.speechbubble .speechbubble_t { + height: 26px; +} + +.speechbubble .speechbubble_l, +.speechbubble .speechbubble_r { + width: 26px; +} + +.speechbubble .speechbubble_b { + background: url(https://gpfr.innogamescdn.com/images/game/common/speechbubble/speechbubble_b.png) repeat-x; + bottom: 0; + left: 26px; + right: 26px; +} + +.speechbubble .speechbubble_r { + background: url(https://gpfr.innogamescdn.com/images/game/common/speechbubble/speechbubble_r.png) repeat-y; + right: 0; + top: 26px; + bottom: 26px; +} + +.speechbubble .speechbubble_l { + background: url(https://gpfr.innogamescdn.com/images/game/common/speechbubble/speechbubble_l.png) repeat-y; + left: 0; + top: 26px; + bottom: 26px; +} + +.speechbubble .speechbubble_t { + background: url(https://gpfr.innogamescdn.com/images/game/common/speechbubble/speechbubble_t.png) repeat-x; + top: 0; + left: 26px; + right: 26px; +} + +.speechbubble .speechbubble_m { + background: url(https://gpfr.innogamescdn.com/images/game/common/speechbubble/speechbubble_m.png) repeat; + top: 26px; + left: 26px; + right: 26px; + bottom: 26px; +} + +.speechbubble .content { + position: relative; + left: 5px; + top: 5px; +} + +.event_tutorial_controls { + height: 31px; + position: relative; + margin-bottom: 15px; +} + +.event_tutorial_controls .arrow_next, +.event_tutorial_controls .arrow_prev, +.event_tutorial_controls .tutorial_arrow_close { + position: absolute; + top: 0; +} + +.event_tutorial_controls .arrow_prev { + left: 0; +} + +.event_tutorial_controls .arrow_next, +.event_tutorial_controls .tutorial_arrow_close { + right: 0; +} + +.event_tutorial_controls .tutorial_arrow_close, +.event_tutorial_controls .tutorial_arrow_next, +.event_tutorial_controls .tutorial_arrow_prev { + position: absolute; + top: 0; + line-height: 20px; + height: 26px; + padding-top: 5px; + cursor: pointer; +} + +.event_tutorial_controls .tutorial_arrow_close, +.event_tutorial_controls .tutorial_arrow_next { + right: 50px; + padding-right: 35px; +} + +.event_tutorial_controls .tutorial_arrow_prev { + left: 50px; + padding-left: 35px; +} + +.event_tutorial_controls .tutorial_arrow_close { + display: none; +} + +.fight_report_classic.conquest.published .report_units_overview { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) 0 0 repeat; +} + +.fight_report_classic.conquest.published .report_units { + width: 40%; +} + +.fight_report_classic.conquest.published .report_side_defender { + width: 60%; + height: 260px; + overflow-y: scroll; + padding: 0; + margin: 0; +} + +.fight_report_classic.conquest.published .report_side_attacker { + border-right: none; +} + +.fight_report_classic.conquest.published .report_side_attacker_unit { + padding: 2px 6px; +} + +.fight_report_classic.conquest.published .bordered { + border-bottom: 1px solid #ca8; + text-align: left; + padding-left: 10px; +} + +.fight_report_classic.conquest.published li.incoming { + text-align: left; +} + +.fight_report_classic.conquest.published ul#unit_movements li { + width: 99%; + height: auto; + min-height: 50px; +} + +.fight_report_classic.conquest.published p { + margin: 5px 0 0 10px; +} + +.published_report_header .gp_town_link { + padding-left: 5px; +} + +#report_report .wonder_max_built .wonder_image, +#report_report .wonder_won .wonder_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -202px -501px; + width: 200px; + height: 130px; +} + +#report_report #wonder_report { + text-align: center; + margin: 0 auto 10px; +} + +#report_report #wonder_report.background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat 0 0; + width: 465px; + height: 210px; +} + +#report_report #wonder_report #name { + padding-top: 2px; + line-height: 30px; +} + +#report_report #wonder_report #name, +#report_report #wonder_report #name>* { + color: #fc6; + font-weight: 700; + font-size: 13px; +} + +#report_report .wonder_image { + display: inline-block; + margin-top: 20px; + position: relative; +} + +#report_report .wonder_image:before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat 0 -210px; + width: 231px; + height: 161px; + content: ''; + position: absolute; + left: -14px; + top: -8px; +} + +#report_report .temple_of_artemis_at_ephesus.wonder_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat 0 -501px; + width: 202px; + height: 130px; +} + +#report_report .temple_of_artemis_at_ephesus.wonder_image_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -478px -557px; + width: 76px; + height: 56px; +} + +#report_report .colossus_of_rhodes.wonder_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -231px -210px; + width: 202px; + height: 130px; +} + +#report_report .colossus_of_rhodes.wonder_image_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -465px -260px; + width: 76px; + height: 56px; +} + +#report_report .great_pyramid_of_giza.wonder_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -465px 0; + width: 202px; + height: 130px; +} + +#report_report .great_pyramid_of_giza.wonder_image_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -541px -260px; + width: 76px; + height: 56px; +} + +#report_report .hanging_gardens_of_babylon.wonder_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -465px -130px; + width: 202px; + height: 130px; +} + +#report_report .hanging_gardens_of_babylon.wonder_image_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -402px -501px; + width: 76px; + height: 56px; +} + +#report_report .lighthouse_of_alexandria.wonder_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat 0 -371px; + width: 202px; + height: 130px; +} + +#report_report .lighthouse_of_alexandria.wonder_image_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -478px -501px; + width: 76px; + height: 56px; +} + +#report_report .mausoleum_of_halicarnassus.wonder_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -202px -371px; + width: 202px; + height: 130px; +} + +#report_report .mausoleum_of_halicarnassus.wonder_image_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -554px -501px; + width: 76px; + height: 56px; +} + +#report_report .statue_of_zeus_at_olympia.wonder_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -404px -371px; + width: 202px; + height: 130px; +} + +#report_report .statue_of_zeus_at_olympia.wonder_image_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -402px -557px; + width: 76px; + height: 56px; +} + +.notes .tabs_container .tab .middle { + max-width: 115px; + overflow: hidden; + text-overflow: ellipsis; +} + +.notes .window_content .exceeded { + color: red; +} + +.notes .window_content .sub_window_delete_note .input_data_box, +.notes .window_content .sub_window_new_note .input_data_box, +.notes .window_content .sub_window_rename_note .input_data_box { + margin-top: 45px; +} + +.notes .window_content .sub_window_delete_note .txt_note_name, +.notes .window_content .sub_window_new_note .txt_note_name, +.notes .window_content .sub_window_rename_note .txt_note_name { + width: 148px; + margin-left: 3px; +} + +.notes .window_content .sub_window_delete_note .note_buttons_box, +.notes .window_content .sub_window_new_note .note_buttons_box, +.notes .window_content .sub_window_rename_note .note_buttons_box { + margin-top: 15px; +} + +.notes .window_content .sub_window_delete_note .button_new, +.notes .window_content .sub_window_new_note .button_new, +.notes .window_content .sub_window_rename_note .button_new { + min-width: 116px; +} + +.notes .window_content .notes_container { + padding: 6px 6px 28px 6px; + position: relative; + overflow: hidden; + height: 321px; +} + +.notes .window_content .notes_container .bb_button_wrapper { + float: none; +} + +.notes .window_content .notes_container .preview_box { + border: 1px solid #000; + overflow-y: auto; + overflow-x: hidden; + word-wrap: break-word; + height: 300px; + text-align: left; + padding: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0 transparent; +} + +.notes .window_content .notes_container .buttons_box { + position: absolute; + bottom: 5px; + right: 6px; +} + +.notes .window_content .notes_container textarea { + margin-top: 6px; + width: 745px; +} + +#memo_preview_text, +#memo_text_area { + border: 1px solid #000; + overflow-y: auto; + overflow-x: hidden; +} + +#memo_text_area { + width: 99%; +} + +#memo_preview_text { + margin: 0; + text-align: left; + padding: 3px 6px; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat scroll 0 0 transparent; + white-space: break-word; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 30px; +} + +div.memo_buttons { + position: absolute; + bottom: 1px; + right: 1px; +} + +.crafting_shared_images .box_common { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 -342px; + width: 138px; + height: 165px; +} + +.crafting_shared_images .box_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -276px -342px; + width: 138px; + height: 165px; +} + +.crafting_shared_images .box_uncommon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -138px -342px; + width: 138px; + height: 165px; +} + +.crafting_shared_images .buy_recipe_bottom_line { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 -507px; + width: 535px; + height: 33px; +} + +.crafting_shared_images .eggs_counter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -499px -175px; + width: 56px; + height: 34px; +} + +.crafting_shared_images .radio_off { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -573px -175px; + width: 18px; + height: 18px; +} + +.crafting_shared_images .radio_on { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -555px -175px; + width: 18px; + height: 18px; +} + +.crafting_shared_images .ranking_header1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -205px -226px; + width: 168px; + height: 57px; +} + +.crafting_shared_images .ranking_header2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -373px -226px; + width: 64px; + height: 54px; +} + +.crafting_shared_images .ranking_window_bg1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 -113px; + width: 355px; + height: 113px; +} + +.crafting_shared_images .ranking_window_bg2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 -226px; + width: 205px; + height: 116px; +} + +.crafting_shared_images .ranking_window_bg3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 0; + width: 631px; + height: 113px; +} + +.crafting_shared_images .recipes_book_bg_scroll { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -355px -113px; + width: 209px; + height: 62px; +} + +.crafting_shared_images .recipes_feed_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -355px -175px; + width: 48px; + height: 48px; +} + +.crafting_shared_images .recipes_feed_idle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -403px -175px; + width: 48px; + height: 48px; +} + +.crafting_shared_images .recipes_feed_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -451px -175px; + width: 48px; + height: 48px; +} + +.crafting_shared_images .reward_teaser { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -564px -113px; + width: 62px; + height: 58px; +} + +.easter_alchemy { + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/bg_main_0d5cfda.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_alchemy .countdown_box { + position: absolute; + top: 0; +} + +.easter_alchemy .pb_rewards { + top: 19px; + right: 22px; + position: absolute; +} + +.easter_alchemy .progressbar_container .item_counter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -499px -175px; + width: 56px; + height: 34px; + position: absolute; + font-weight: 700; + margin: 0; + padding: 14px 0 0 0; + text-align: center; + top: 304px; + left: 18px; +} + +.easter_alchemy .progressbar_container .item_counter .icon { + display: none; +} + +.easter_alchemy .progressbar_container .item_counter .amount { + color: #fc6; + top: 0; + left: 0; + display: inline-block; +} + +.easter_alchemy .progressbar_container .item_counter .slash { + display: inline-block; + color: #fc6; +} + +.easter_alchemy .progressbar_container .item_counter .max_amount { + display: inline-block; + color: #fc6; +} + +.easter_alchemy .progressbar_container .progress_bar_background { + background-position: 0 -181px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/widgets/two_parts_progressbar_2.82.png); + width: 29px; + height: 85px; +} + +.easter_alchemy .progressbar_container .glow:after { + content: ''; + position: absolute; + top: -18px; + left: -18px; +} + +.easter_alchemy .daily_progress { + position: absolute; + right: 85px; + top: 0; + padding-left: 36px; +} + +.easter_alchemy .daily_progress .step { + display: block; + margin: 2px 5px 0 0; + float: left; +} + +.easter_alchemy .btn_info_overlay { + position: absolute; + bottom: 1px; + left: 50%; + margin-left: -13px; +} + +.easter_alchemy .brew_table { + width: 460px; + height: 200px; + position: absolute; + top: 203px; + left: 245px; +} + +.easter_alchemy .brew_table .brew_slot { + width: 80px; + height: 200px; + position: absolute; + bottom: 3px; +} + +.easter_alchemy .brew_table .brew_slot.brew_slot_1 { + left: 91px; +} + +.easter_alchemy .brew_table .brew_slot.brew_slot_2 { + left: 187px; +} + +.easter_alchemy .brew_table .brew_slot.brew_slot_3 { + left: 283px; +} + +.easter_alchemy .brew_table .base { + position: absolute; + bottom: 0; + left: 0; + width: 80px; + height: 125px; +} + +.easter_alchemy .brew_table .base .glow { + position: absolute; + opacity: 0; + top: 5px; + right: -17px; + -webkit-transition: opacity 1s; + -moz-transition: opacity 1s; + -ms-transition: opacity 1s; + transition: opacity 1s; +} + +.easter_alchemy .brew_table .base .easter_ingredient { + position: absolute; + bottom: 50px; + left: 3px; +} + +.easter_alchemy .brew_table .base.contains_ingredient .glow { + opacity: 1; +} + +.easter_alchemy .button_remove_from_table { + background: url(https://gpfr.innogamescdn.com/images/game/common/context_menu/icons_50x50_2.67.png) no-repeat -400px 0; + width: 50px; + height: 50px; + cursor: pointer; +} + +.easter_alchemy .btn_remove_from_table { + position: absolute; + bottom: 2px; + right: 11px; + z-index: 2; + display: none; +} + +.easter_alchemy .base.contains_ingredient:hover .btn_remove_from_table { + display: block; +} + +.easter_alchemy .btn_buy_by_gold { + width: 82px; + margin: 5px 0 0 -1px; + position: absolute; + bottom: -27px; +} + +.easter_alchemy .btn_buy_by_gold .caption { + font-size: 11px; +} + +.easter_alchemy .ingredients_box { + position: absolute; + bottom: 11px; + left: -1px; + right: 10px; + height: 107px; +} + +.easter_alchemy .ingredients_box.disabled .easter_ingredient { + filter: url("data:image/svg+xml;utf8,#grayscale"); + filter: gray; + -webkit-filter: grayscale(100%); + opacity: .7; + cursor: default; +} + +.easter_alchemy .ingredient_box { + width: 80px; + position: relative; + height: 80px; + float: left; + margin-left: 13px; +} + +.easter_alchemy .ingredient_box .amount { + height: 17px; + font-size: 15px; + line-height: 17px; + text-align: right; + color: #fff; + font-weight: 700; + position: absolute; + bottom: 0; + right: 4px; + font-family: Verdana; +} + +.easter_alchemy .ingredient_box .greyscale .amount { + color: grey; +} + +.easter_alchemy .easter_ingredient { + cursor: move; + top: auto; + bottom: 15px; +} + +.easter_alchemy .brew_box { + position: absolute; + top: 12px; + left: 337px; + width: 268px; + opacity: 0; + display: none; + -webkit-transition: opacity 1s; + -moz-transition: opacity 1s; + -ms-transition: opacity 1s; + transition: opacity 1s; +} + +.easter_alchemy .brew_box .btn_brew { + position: absolute; + top: 163px; + left: 50%; + width: 210px; + margin-left: -105px; +} + +.easter_alchemy .brew_box .predicted_reward { + position: absolute; + opacity: .5; +} + +.easter_alchemy .brew_box .predicted_reward.question_mark_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -564px -113px; + width: 62px; + height: 58px; + top: 76px; + left: 103px; +} + +.easter_alchemy .brew_box .predicted_reward.power_icon60x60 { + top: 76px; + left: 104px; +} + +.easter_alchemy .brew_box.show { + opacity: 1; +} + +.easter_alchemy .harmony_box { + position: absolute; + left: 436px; + top: 57px; + display: none; + -webkit-transition: opacity 1s; + -moz-transition: opacity 1s; + -ms-transition: opacity 1s; + transition: opacity 1s; + opacity: 0; +} + +.easter_alchemy .harmony_box .harmony_points .points { + color: #fff; + text-align: center; + display: block; + padding-top: 37px; + padding-left: 2px; +} + +.easter_alchemy .harmony_box.show { + opacity: 1; +} + +.easter_alchemy .recipes_book { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -355px -113px; + width: 209px; + height: 62px; + position: absolute; + bottom: 122px; +} + +.easter_alchemy .recipes_book .recipes_count { + position: absolute; + left: 67px; + width: 66px; + top: 10px; + line-height: 24px; + text-align: center; + font-weight: 700; +} + +.easter_alchemy .recipes_book .btn_recipes { + position: absolute; + bottom: 2px; + left: 9px; + width: 179px; +} + +.easter_alchemy .reward_box { + position: absolute; + top: 51px; + left: 325px; + display: none; + -webkit-transition: opacity 1s; + -moz-transition: opacity 1s; + -ms-transition: opacity 1s; + transition: opacity 1s; + opacity: 0; +} + +.easter_alchemy .reward_box.show { + opacity: 1; +} + +.easter_alchemy .btn_reward { + position: relative; + top: 72px; + left: 110px; + width: 60px; + height: 60px; +} + +.easter_alchemy .egg_effect { + width: 457px; + height: 267px; + position: absolute; + top: 34px; + left: 245px; +} + +.easter_alchemy .egg_effect .egg, +.easter_alchemy .egg_effect .egg_beam, +.easter_alchemy .egg_effect .egg_crack, +.easter_alchemy .egg_effect .egg_open, +.easter_alchemy .egg_effect .egg_yolk { + position: absolute; + opacity: 0; +} + +.easter_alchemy .egg_effect .egg { + left: 155px; + top: 123px; +} + +.easter_alchemy .egg_effect .egg_open { + top: 104px; + left: 144px; +} + +.easter_alchemy .egg_effect .egg_beam { + top: 45px; + left: -14px; +} + +.easter_alchemy .egg_effect .egg_crack { + left: 144px; + top: 110px; +} + +.easter_alchemy .egg_effect .egg_yolk { + top: 32px; + left: 83px; +} + +.easter_alchemy .reward_overlay { + position: absolute; + z-index: 3; + top: 0; + left: 0; + right: 0; + bottom: 7px; + background-color: rgba(1,1,1,.8); + display: none; + color: #ffcb67; + text-align: center; +} + +.easter_alchemy .reward_overlay h3 { + font-weight: 700; + margin: 60px 0 0 0; + padding: 0; + display: inline-block; + font-size: 16px; + line-height: 18px; +} + +.easter_alchemy .reward_overlay h3:before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -348px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: -63px; + margin-top: -4px; +} + +.easter_alchemy .reward_overlay h3:after { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -306px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: 23px; + margin-top: -4px; +} + +.easter_alchemy .reward_overlay .reward_overlay_background { + position: relative; + margin-top: 21px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 0; + width: 758px; + height: 300px; +} + +.easter_alchemy .reward_overlay .icon { + position: absolute; + top: 80px; + left: 346px; +} + +.easter_alchemy .reward_overlay .descr, +.easter_alchemy .reward_overlay .name { + position: absolute; + text-align: center; + width: 400px; + left: 50%; + margin-left: -200px; + font-weight: 700; +} + +.easter_alchemy .reward_overlay .name { + top: 200px; + font-size: 15px; + line-height: 17px; + color: #ffcb67; +} + +.easter_alchemy .reward_overlay .descr { + font-size: 12px; + line-height: 14px; + top: 254px; +} + +.easter_alchemy .reward_overlay .btn_accept_reward { + margin-top: 45px; +} + +.easter_alchemy .ranking { + position: absolute; + left: 0; + display: inline-block; + width: 240px; +} + +.easter_alchemy .ranking .btn_ranking_info { + position: absolute; + top: 5px; + right: 25px; +} + +.easter_alchemy .ranking .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 -300px; + width: 106px; + height: 149px; + position: absolute; + top: 0; + left: 0; +} + +.easter_alchemy .ranking .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/single_images/ranking_bg_middle_96af2b6.png) no-repeat 0 0; + width: 4px; + height: 149px; + position: absolute; + top: 0; + left: 106px; + right: 106px; + background-repeat: repeat-x; + width: auto; +} + +.easter_alchemy .ranking .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -106px -300px; + width: 106px; + height: 149px; + position: absolute; + top: 0; + right: 0; +} + +.easter_alchemy .ranking .content { + position: relative; + height: 126px; + padding: 0 20px 0 7px; +} + +.easter_alchemy .ranking .content .title_table { + display: table; + height: 34px; + margin: 11px 0 3px 0; + width: 100%; +} + +.easter_alchemy .ranking .content .title_table .title { + display: table-cell; + vertical-align: middle; + text-align: center; + color: #fdce64; + font-size: 12px; +} + +.easter_alchemy .ranking .content .title_table .cooldown { + color: #fff; + font-size: 10px; +} + +.easter_alchemy .ranking .content .list { + width: 213px; +} + +.easter_alchemy .ranking .content .list .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: absolute; + bottom: 0; + left: 50%; + margin-left: -80px; +} + +.easter_alchemy .ranking .content .list .icon { + display: inline-block; +} + +.easter_alchemy .ranking .content .list th.name { + text-align: center; + position: relative; +} + +.easter_alchemy .ranking .content .list .icon.points { + position: absolute; + right: 3px; + top: 0; +} + +.easter_alchemy .ranking .content .list .icon.position { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -417px -300px; + width: 21px; + height: 17px; + position: absolute; + left: 3px; + top: 3px; +} + +.easter_alchemy .ranking .content .list td { + line-height: 15px; +} + +.easter_alchemy .ranking .content .list td.position { + padding-left: 4px; +} + +.easter_alchemy .ranking .content .list td.points { + text-align: right; + padding-right: 6px; +} + +.easter_alchemy .ranking .content .list td.no_results { + text-align: center; + height: 50px; +} + +.easter_alchemy .ranking .content .list td.ranking_not_active { + text-align: center; + height: 82px; +} + +.easter_alchemy .ranking .content .list .selected { + font-weight: 700; +} + +.easter_alchemy .ranking .content .list .fix_no_wrap { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.easter_alchemy .ranking .content .list .fix_no_wrap .gp_player_link.is_player { + color: #000; +} + +.easter_alchemy .ranking.daily { + top: 58px; +} + +.easter_alchemy .ranking.overall { + top: 202px; +} + +.easter_daily_progreess_tooltip { + width: auto; + text-align: center; +} + +.easter_daily_progreess_tooltip h3 { + padding-bottom: 3px; + text-align: center; + margin-bottom: 5px; +} + +.easter_daily_progreess_tooltip .ingredients_images { + margin-top: 5px; + position: relative; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet { + position: absolute; + bottom: 5px; + color: #fff; + font-weight: 700; + font-size: 11px; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient1 { + left: 41px; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient2 { + left: 98px; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient3 { + left: 155px; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient4 { + left: 212px; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient5 { + left: 269px; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient6 { + left: 326px; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient7 { + left: 383px; +} + +.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient8 { + left: 440px; +} + +.easter_daily_progreess_tooltip .descr { + padding-top: 10px; + text-align: left; + margin-left: 10px; +} + +.easter_daily_progreess_tooltip .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: relative; + margin: 3px auto 10px auto; +} + +.easter_daily_progreess_tooltip ul { + list-style: square; + display: inline-block; + margin-top: 10px; +} + +.easter_daily_progreess_tooltip ul li { + text-align: left; +} + +.easter_alchemy.ui-draggable-dragging .brew_table .base .glow { + opacity: .4; +} + +.easter_ingredient { + top: auto; + left: auto; + bottom: auto; + right: auto; + position: absolute; + cursor: default; + -webkit-transition: opacity 1s; + -moz-transition: opacity 1s; + -ms-transition: opacity 1s; + transition: opacity 1s; +} + +.easter_ingredient.hide { + opacity: 0; +} + +.easter_ingredient.ui-draggable-dragging { + position: absolute; + z-index: 100000; + cursor: pointer; +} + +.easter_ingredient.zero { + cursor: default; +} + +.classic_sub_window.daily_rewards, +.classic_sub_window.overall_rewards { + padding: 10px 10px; +} + +.classic_sub_window.daily_rewards h3, +.classic_sub_window.overall_rewards h3 { + font-size: 12px; + margin: 2px 0 0 0; + padding: 0; + text-align: center; + position: relative; +} + +.classic_sub_window.daily_rewards .divider, +.classic_sub_window.overall_rewards .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: relative; + margin: 3px auto; +} + +.classic_sub_window.daily_rewards .descr, +.classic_sub_window.overall_rewards .descr { + padding: 5px 0 25px; +} + +.classic_sub_window.daily_rewards .award_box, +.classic_sub_window.overall_rewards .award_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 -226px; + width: 205px; + height: 116px; + position: relative; + margin: 17px auto; + text-align: center; +} + +.classic_sub_window.daily_rewards .award_box.third_rewards_part, +.classic_sub_window.overall_rewards .award_box.third_rewards_part { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 0; + width: 631px; + height: 113px; +} + +.classic_sub_window.daily_rewards .award_box.medium, +.classic_sub_window.overall_rewards .award_box.medium { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 -113px; + width: 355px; + height: 113px; +} + +.classic_sub_window.daily_rewards .award_box .header, +.classic_sub_window.overall_rewards .award_box .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -205px -226px; + width: 168px; + height: 57px; + position: absolute; + top: -12px; + left: 50%; + margin-left: -84px; +} + +.classic_sub_window.daily_rewards .award_box .header .place, +.classic_sub_window.overall_rewards .award_box .header .place { + width: 24px; + height: 15px; + line-height: 15px; + position: absolute; + text-align: center; + top: 11px; + left: 50%; + margin-left: -12px; + color: #feca75; + font-size: 14px; + font-weight: 700; +} + +.classic_sub_window.daily_rewards .award_box .award, +.classic_sub_window.overall_rewards .award_box .award { + float: none; + display: inline-block; + margin-top: 35px; +} + +.classic_sub_window.daily_rewards .award_box .power_icon60x60, +.classic_sub_window.overall_rewards .award_box .power_icon60x60 { + margin-top: 36px; +} + +.classic_sub_window.daily_rewards .prize, +.classic_sub_window.overall_rewards .prize { + overflow: visible; + margin-bottom: 13px; +} + +.classic_sub_window.daily_rewards .prize .amount, +.classic_sub_window.overall_rewards .prize .amount { + text-align: center; + font-size: 12px; + color: #feca75; + line-height: 14px; + width: 60px; + height: 14px; + bottom: -14px; + position: absolute; +} + +.classic_sub_window.daily_rewards { + width: 590px; + height: 475px; +} + +.classic_sub_window.daily_rewards .reward_info { + text-align: center; + margin: 5px 0; +} + +.classic_sub_window.daily_rewards .award_box.first { + margin-bottom: 13px; +} + +.classic_sub_window.daily_rewards .ranking_viewport { + position: relative; + overflow: hidden; + height: 433px; +} + +.classic_sub_window.daily_rewards .rewards_list { + padding-right: 19px; + padding-left: 10px; +} + +.classic_sub_window.overall_rewards { + width: 679px; + height: 475px; +} + +.classic_sub_window.overall_rewards .ranking_viewport { + position: relative; + overflow: hidden; + height: 433px; +} + +.classic_sub_window.overall_rewards .award_box .award { + margin-top: 18px; + top: 11px; +} + +.classic_sub_window.overall_rewards .rewards_list { + padding-right: 28px; + padding-left: 10px; +} + +.classic_sub_window.overall_rewards .scrollbar-slider-container { + top: 0; + bottom: 0; + right: 5px; +} + +.classic_sub_window.overall_rewards .scrollbar { + right: 5px; +} + +.classic_sub_window.overall_rewards .scrollbar_not_active { + padding-right: 20px; +} + +.classic_sub_window.overall_rewards .second_rewards_part .header, +.classic_sub_window.overall_rewards .third_rewards_part .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -373px -226px; + width: 64px; + height: 54px; + position: absolute; + top: -12px; + left: 50%; + margin-left: -32px; +} + +.classic_sub_window.overall_rewards .second_rewards_part .header .place, +.classic_sub_window.overall_rewards .third_rewards_part .header .place { + top: 9px; +} + +.classic_sub_window.overall_rewards .second_rewards_part { + position: relative; + text-align: center; +} + +.classic_sub_window.overall_rewards .second_rewards_part .award_box { + display: inline-block; + margin-left: 2px; +} + +.classic_sub_window.overall_rewards .third_rewards_part { + text-align: center; +} + +.classic_sub_window.overall_rewards .third_rewards_part .reward_box { + position: relative; + width: 100px; + height: 150px; + display: inline-block; +} + +.easter_tutorial { + width: 486px; + min-height: 330px; +} + +.easter_tutorial ul { + margin: 25px; +} + +.easter_tutorial ul li .viewport { + position: relative; + overflow: hidden; + max-height: 100px; + margin-bottom: 10px; +} + +.easter_tutorial ul li .js-scrollbar-content { + margin: 0 30px; +} + +.easter_tutorial .chapter p { + margin: 0; +} + +.easter_tutorial .illustration { + margin: auto; + position: relative; + width: 387px; + height: 216px; +} + +.easter_tutorial .illustration .str1, +.easter_tutorial .illustration .str2, +.easter_tutorial .illustration .str3, +.easter_tutorial .illustration .str4 { + color: #f6c669; + position: absolute; + text-align: center; +} + +.easter_recipes { + position: relative; + overflow: hidden; +} + +.easter_recipes .filters_box { + width: 102px; + position: absolute; + top: 127px; + padding: 18px 18px 20px 16px; + word-break: break-word; +} + +.easter_recipes .filters_box .title { + color: #824101; + font-family: Verdana; + font-size: 13px; + font-weight: 600; + margin: 9px 9px 7px 9px; +} + +.easter_recipes .filters_box .filter { + width: 50px; + height: 58px; + position: relative; + float: left; + margin-bottom: 7px; +} + +.easter_recipes .filters_box .amount { + font-family: Verdana; + color: #824101; + font-size: 13px; + font-weight: 600; + position: absolute; + bottom: 0; + left: 6px; +} + +.easter_recipes .filters_box .checkbox_new { + width: 22px; + height: 23px; + position: absolute; + bottom: -7px; + right: 8px; + padding-left: 0; +} + +.easter_recipes .recipes_list_viewport { + width: 550px; + height: 419px; + position: absolute; + top: 107px; + left: 139px; + overflow: hidden; +} + +.easter_recipes .recipes_list { + padding: 10px 17px 30px 0; +} + +.easter_recipes .recipes_group { + position: relative; +} + +.easter_recipes .recipes_group .header { + position: relative; + overflow: hidden; +} + +.easter_recipes .recipes_group .header .power_icon60x60 { + position: absolute; + top: 14px; + left: 29px; +} + +.easter_recipes .recipes_group .header .reward_name { + position: relative; + margin: 29px 0 0 118px; + font-family: Verdana; + color: #824101; + font-size: 13px; + font-weight: 600; +} + +.easter_recipes .recipes_group .footer { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 -507px; + width: 535px; + height: 33px; + overflow: hidden; + text-align: center; +} + +.easter_recipes .recipes_group .middle { + position: relative; + overflow: hidden; +} + +.easter_recipes .recipes_group .border_left, +.easter_recipes .recipes_group .border_right { + position: absolute; + top: 0; + width: 4px; + bottom: 0; +} + +.easter_recipes .recipes_group .border_left { + left: 0; +} + +.easter_recipes .recipes_group .border_right { + right: 0; +} + +.easter_recipes .recipes_group .content { + position: relative; + overflow: visible; + margin: 4px 8px 0 8px; +} + +.easter_recipes .recipes_group .recipe { + position: relative; + overflow: hidden; + padding: 5px 0 10px 0; +} + +.easter_recipes .recipes_group .equals, +.easter_recipes .recipes_group .plus, +.easter_recipes .recipes_group .result { + position: relative; + float: left; +} + +.easter_recipes .recipes_group .plus { + background-position: -117px -667px; +} + +.easter_recipes .recipes_group .equals { + background-position: -99px -667px; +} + +.easter_recipes .recipes_group .result { + background-position: -135px -667px; +} + +.easter_recipes .button_brew { + float: left; + margin-top: 20px; + margin-left: 1px; + cursor: pointer; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -403px -175px; + width: 48px; + height: 48px; +} + +.easter_recipes .button_brew.enabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -355px -175px; + width: 48px; + height: 48px; +} + +.easter_recipes .button_brew.enabled:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -451px -175px; + width: 48px; + height: 48px; +} + +.easter_recipes .button_brew.disabled { + opacity: .5; +} + +.easter_recipes .button_goto_alchemy_tab { + position: absolute; + top: 13px; + left: 15px; + cursor: pointer; +} + +.easter_recipes .no_recipe { + font-family: Verdana; + color: #824101; + font-size: 13px; + padding: 10px; +} + +.easter_recipes .btn_buy_recipe { + top: 4px; + left: 5px; + width: auto; +} + +.easter_recipes .top_filters { + position: absolute; + top: 80px; + left: 140px; +} + +.easter_recipes .random_recipe_title { + display: none; + width: 520px; + font-size: 15px; + position: relative; + top: 30px; + left: 140px; +} + +.easter_recipes .radiobutton.easter_radiobutton .option { + line-height: 17px; +} + +.easter_recipes .radiobutton.easter_radiobutton .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -573px -175px; + width: 18px; + height: 18px; +} + +.easter_recipes .radiobutton.easter_radiobutton .checked .pointer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -555px -175px; + width: 18px; + height: 18px; +} + +.easter_recipes .scroll_gradient, +.easter_recipes .scroll_gradient_bottom { + position: absolute; + left: 115px; + right: 57px; + height: 27px; +} + +.easter_recipes .scroll_gradient { + top: 107px; +} + +.easter_recipes .scroll_gradient_bottom { + bottom: 0; +} + +.easter_recipes .no_results { + padding: 28px 28px 28px 10px; +} + +.easter_recipes .scrollbar { + z-index: 1; +} + +.easter_recipes .easter_button { + display: inline-block; + position: relative; + vertical-align: middle; +} + +.easter_recipes .easter_button .buy_recipe_button_bg-left { + position: absolute; + left: 0; + top: 0; +} + +.easter_recipes .easter_button .buy_recipe_button_bg-right { + position: absolute; + right: 0; + top: 0; +} + +.easter_recipes .easter_button .buy_recipe_button_bg-tile { + position: relative; + width: auto; + background-repeat: repeat-x; + margin-left: 14px; + margin-right: 33px; +} + +.easter_recipes .easter_button .buy_recipe_button_bg-tile>div { + margin-left: -15px; + margin-right: -24px; +} + +.single_recipe_box { + position: relative; + float: left; + margin: 0 5px; + overflow: visible; +} + +.single_recipe_box:hover { + background-position: -246px -667px; +} + +.single_recipe_box .power_icon60x60 { + position: absolute; + top: 13px; + left: 14px; +} + +.single_recipe_box .btn_buy_ingredient { + display: none; + z-index: 100; + position: absolute; + bottom: 0; + left: 50%; + margin-left: -42px; + width: 84px; +} + +.single_recipe_box:hover .btn_buy_ingredient { + display: block; +} + +.single_recipe_box .easter_ingredient, +.single_recipe_box .easter_ingredient:hover { + left: 3px; + opacity: .5; +} + +.single_recipe_box .easter_ingredient:hover { + opacity: 1; +} + +.single_recipe_box.full .easter_ingredient { + opacity: 1; +} + +.single_recipe_box.full, +.single_recipe_box.full:hover { + background-position: -155px -667px; +} + +.easter .power_icon60x60.big_population_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -6960px -60px; +} + +.easter .power_icon60x60.small_population_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_60x60_356c7f9.png) no-repeat -7020px -60px; +} + +.easter_welcome .window_content { + padding: 0; +} + +.easter_welcome_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/intersticial_bg_afa84d0.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.easter_welcome_container .buttons { + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 40px; +} + +.easter_welcome_container .buttons .vertical_divider { + position: absolute; + top: 10px; + left: 0; + right: 0; +} + +.easter_welcome_container .buttons .btn_start_easter { + position: absolute; + top: 2px; + width: 200px; + margin-left: -100px; + left: 50%; +} + +.column_window.easter .window_content, +.column_window.easter_end_interstitial .window_content { + padding: 0; +} + +.column_window.easter .welcome_window_container, +.column_window.easter_end_interstitial .welcome_window_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/intersticial_bg_afa84d0.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.easter_collect.easter_skin_incantation .single_recipe_box .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -80px -193px; + width: 78px; + height: 77px; +} + +.easter_collect.easter_skin_demeter .single_recipe_box .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 -337px; + width: 78px; + height: 77px; +} + +.easter_collect.easter_skin_easter_hen .single_recipe_box .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 -76px; + width: 78px; + height: 78px; +} + +.easter_collect_container { + text-align: center; + background-image: url(https://gpfr.innogamescdn.com/images/game/events/halloween/ingredients_awarding_bg.jpg); + width: 602px; + height: 497px; +} + +.easter_collect_container .ingredients_list { + padding: 30px 65px 0 65px; +} + +.easter_collect_container .single_recipe_box { + float: none; + display: inline-block; + margin: -10px -15px; +} + +.easter_collect_container .single_recipe_box.rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -276px -342px; + width: 138px; + height: 165px; +} + +.easter_collect_container .single_recipe_box.uncommon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -138px -342px; + width: 138px; + height: 165px; +} + +.easter_collect_container .single_recipe_box.common { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat 0 -342px; + width: 138px; + height: 165px; +} + +.easter_collect_container .single_recipe_box .easter_ingredient { + margin: 40px auto 0 auto; + left: 29px; +} + +.easter_collect_container .single_recipe_box .glow { + position: absolute; + left: 30px; + top: 25px; +} + +.easter_collect_container .single_recipe_box .amount { + line-height: 30px; + color: #f6c669; + margin-top: 104px; +} + +.easter_collect_container .single_recipe_box .ingredient_power { + position: absolute; + top: 5px; + right: 7px; + pointer-events: none; +} + +.easter_collect_container p { + padding: 0 70px 0 70px; + color: #f6c669; + text-shadow: 2px 2px #000; +} + +.easter_collect_container .btn_close_window { + width: 211px; + display: block; + position: absolute; + left: 50%; + margin-left: -105.5px; + bottom: 55px; +} + +.easter_collect_container .cbx_wrapper { + position: absolute; + bottom: 10px; + width: 100%; +} + +.easter_collect_container .single_recipe_box .easter_ingredient.got_ingredient { + opacity: 1; +} + +.easter_collect_container .easter_ingredient .amount { + position: absolute; + bottom: 0; + right: 3px; + font-weight: 600; + font-size: 13px; +} + +.easter_hen .egg_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -451px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -256px -570px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -384px -570px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_12 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -512px -570px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -640px -570px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_14 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -768px -570px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_15 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -689px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_16 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -128px -689px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -256px -689px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_18 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -384px -689px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_19 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -512px -689px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -128px -451px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_20 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -640px -689px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_21 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -768px -689px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_22 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -808px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_23 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -128px -808px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -256px -808px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -256px -451px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -384px -451px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -512px -451px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -640px -451px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -768px -451px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -570px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -128px -570px; + width: 128px; + height: 119px; +} + +.easter_hen .egg_beam { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 0; + width: 437px; + height: 173px; +} + +.easter_hen .egg_crack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -693px -173px; + width: 157px; + height: 109px; +} + +.easter_hen .egg_open { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -536px -173px; + width: 157px; + height: 115px; +} + +.easter_hen .egg_yolk { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -173px; + width: 268px; + height: 178px; +} + +.easter_hen .daily_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -536px -288px; + width: 404px; + height: 39px; +} + +.easter_hen .daily_slot_on { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1036px -511px; + width: 29px; + height: 27px; +} + +.easter_hen .easter_hen_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -326px; + width: 100px; + height: 100px; +} + +.easter_hen .easter_hen_icon_glow_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px 0; + width: 120px; + height: 120px; +} + +.easter_hen .easter_hen_icon_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -226px; + width: 100px; + height: 100px; +} + +.easter_hen .harmony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -709px; + width: 55px; + height: 58px; +} + +.easter_hen .harmony_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1036px -538px; + width: 27px; + height: 23px; +} + +.easter_hen .hen_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -511px; + width: 66px; + height: 66px; +} + +.easter_hen .hen_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -577px; + width: 66px; + height: 66px; +} + +.easter_hen .hen_icon_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -643px; + width: 66px; + height: 66px; +} + +.easter_hen .progress_bar_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1056px -426px; + width: 29px; + height: 85px; +} + +.easter_hen .progress_bar_fill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -767px; + width: 21px; + height: 75px; +} + +.easter_hen .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1076px -120px; + width: 14px; + height: 23px; +} + +.easter_hen .botborderwith_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -389px; + width: 533px; + height: 35px; +} + +.easter_hen .equalsto { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1070px -226px; + width: 15px; + height: 13px; +} + +.easter_hen .ingredientsbg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -426px; + width: 86px; + height: 85px; +} + +.easter_hen .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1065px -511px; + width: 21px; + height: 21px; +} + +.easter_hen .recipepage_bottomfade_shadow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -351px; + width: 588px; + height: 38px; +} + +.easter_hen .scroll_gradient { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -424px; + width: 567px; + height: 27px; +} + +.easter_hen .side_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1090px 0; + width: 4px; + height: 653px; +} + +.easter_hen .side_border_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1094px 0; + width: 4px; + height: 653px; +} + +.easter_hen .topborderwith_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -437px 0; + width: 533px; + height: 91px; +} + +.easter_hen .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -268px -173px; + width: 268px; + height: 178px; +} + +.easter_hen .reward_progress_glow_outside { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -120px; + width: 106px; + height: 106px; +} + +.easter_hen .tooltip_daily_ingredients { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -437px -91px; + width: 453px; + height: 56px; +} + +.easter_hen_single_images .bg_awarding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/bg_awarding_7e059fb.jpg) no-repeat 0 0; + width: 601px; + height: 497px; +} + +.easter_hen_single_images .bg_main { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/bg_main_0d5cfda.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_hen_single_images .bg_recipes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/bg_recipes_6fb8234.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_hen_single_images .intersticial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/intersticial_bg_afa84d0.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.easter_hen_single_images .intersticial_eggs { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/intersticial_eggs_2194f5e.png) no-repeat 0 0; + width: 229px; + height: 80px; +} + +.easter_hen_single_images .tutorial_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_1_0ee1ade.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_hen_single_images .tutorial_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_2_877c753.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_hen_single_images .tutorial_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_3_3e1d8de.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_hen_single_images .tutorial_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_4_3e6520a.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_hen_single_images .tutorial_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_5_1e98d40.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_hen_single_images .tutorial_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_6_78797c7.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_hen_ingredients_sprite .ingredient1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -79px -154px; + width: 79px; + height: 46px; +} + +.easter_hen_ingredients_sprite .ingredient1_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -47px -239px; + width: 46px; + height: 28px; +} + +.easter_hen_ingredients_sprite .ingredient2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -115px -63px; + width: 78px; + height: 51px; +} + +.easter_hen_ingredients_sprite .ingredient2_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 -239px; + width: 47px; + height: 31px; +} + +.easter_hen_ingredients_sprite .ingredient3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -197px -111px; + width: 80px; + height: 43px; +} + +.easter_hen_ingredients_sprite .ingredient3_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -147px -202px; + width: 50px; + height: 30px; +} + +.easter_hen_ingredients_sprite .ingredient4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -197px 0; + width: 83px; + height: 54px; +} + +.easter_hen_ingredients_sprite .ingredient4_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -100px -202px; + width: 47px; + height: 33px; +} + +.easter_hen_ingredients_sprite .ingredient5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 -154px; + width: 79px; + height: 48px; +} + +.easter_hen_ingredients_sprite .ingredient5_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -50px -202px; + width: 50px; + height: 35px; +} + +.easter_hen_ingredients_sprite .ingredient6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -158px -154px; + width: 78px; + height: 45px; +} + +.easter_hen_ingredients_sprite .ingredient6_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -197px -202px; + width: 49px; + height: 29px; +} + +.easter_hen_ingredients_sprite .ingredient7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -115px 0; + width: 82px; + height: 63px; +} + +.easter_hen_ingredients_sprite .ingredient7_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 -202px; + width: 50px; + height: 37px; +} + +.easter_hen_ingredients_sprite .ingredient8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -197px -54px; + width: 78px; + height: 57px; +} + +.easter_hen_ingredients_sprite .ingredient8_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -115px -114px; + width: 53px; + height: 38px; +} + +.easter_hen_ingredients_sprite .ingredient_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 0; + width: 115px; + height: 76px; +} + +.easter_hen_ingredients_sprite .ingredients_awarding_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 -76px; + width: 78px; + height: 78px; +} + +.easter_skin_easter_hen .easter_alchemy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/bg_main_0d5cfda.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_skin_easter_hen .easter_alchemy .daily_progress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -536px -288px; + width: 404px; + height: 39px; +} + +.easter_skin_easter_hen .easter_alchemy .daily_progress .step { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1036px -511px; + width: 29px; + height: 27px; +} + +.easter_skin_easter_hen .easter_alchemy .brew_table .base .easter_ingredient.ingredient7 { + bottom: 41px; +} + +.easter_skin_easter_hen .easter_alchemy .brew_table .base .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 0; + width: 115px; + height: 76px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -451px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -128px -451px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -256px -451px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -384px -451px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -512px -451px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -640px -451px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -768px -451px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -570px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -128px -570px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -256px -570px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -384px -570px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_12 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -512px -570px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -640px -570px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_14 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -768px -570px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_15 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -689px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_16 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -128px -689px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -256px -689px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_18 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -384px -689px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_19 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -512px -689px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_20 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -640px -689px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_21 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -768px -689px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_22 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -808px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_23 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -128px -808px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg.egg_24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -256px -808px; + width: 128px; + height: 119px; +} + +.easter_skin_easter_hen .easter_alchemy .egg_open { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -536px -173px; + width: 157px; + height: 115px; +} + +.easter_skin_easter_hen .easter_alchemy .egg_beam { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 0; + width: 437px; + height: 173px; +} + +.easter_skin_easter_hen .easter_alchemy .egg_crack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -693px -173px; + width: 157px; + height: 109px; +} + +.easter_skin_easter_hen .easter_alchemy .egg_yolk { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -173px; + width: 268px; + height: 178px; +} + +.easter_skin_easter_hen .easter_alchemy .easter_ingredient.ingredient7 { + bottom: 5px; +} + +.easter_skin_easter_hen .easter_alchemy .easter_ingredient.ingredient7 .amount { + bottom: -3px; + right: 7px; +} + +.easter_skin_easter_hen .easter_alchemy .ranking .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 -300px; + width: 106px; + height: 149px; +} + +.easter_skin_easter_hen .easter_alchemy .ranking .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/single_images/ranking_bg_middle_96af2b6.png) no-repeat 0 0; + width: 4px; + height: 149px; + left: 105px; + background-repeat: repeat-x; + width: auto; +} + +.easter_skin_easter_hen .easter_alchemy .ranking .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -106px -300px; + width: 106px; + height: 149px; +} + +.easter_skin_easter_hen .easter_alchemy .ranking .content .list .icon.points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1036px -538px; + width: 27px; + height: 23px; +} + +.easter_skin_easter_hen .easter_alchemy .ranking .content .list .icon.position { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -417px -300px; + width: 21px; + height: 17px; +} + +.easter_skin_easter_hen .easter_alchemy .progressbar_container .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -767px; + width: 21px; + height: 75px; +} + +.easter_skin_easter_hen .easter_alchemy .progressbar_container .progress_bar_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1056px -426px; + width: 29px; + height: 85px; +} + +.easter_skin_easter_hen .easter_alchemy .progressbar_container .glow:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -120px; + width: 106px; + height: 106px; +} + +.easter_skin_easter_hen .easter_alchemy .harmony_box .harmony_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -709px; + width: 55px; + height: 58px; +} + +.easter_skin_easter_hen.easter_daily_progreess_tooltip .ingredients_images { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -437px -91px; + width: 453px; + height: 56px; +} + +.easter_skin_easter_hen .button_goto_alchemy_tab { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -511px; + width: 66px; + height: 66px; +} + +.easter_skin_easter_hen .button_goto_alchemy_tab:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -577px; + width: 66px; + height: 66px; +} + +.easter_skin_easter_hen .easter_ingredient.ingredient1, +.easter_skin_easter_hen .easter_ingredient.ingredient1.zero:hover, +.easter_skin_easter_hen.easter_ingredient.ingredient1, +.easter_skin_easter_hen.easter_ingredient.ingredient1.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -79px -154px; + width: 79px; + height: 46px; +} + +.easter_skin_easter_hen .easter_ingredient.ingredient2, +.easter_skin_easter_hen .easter_ingredient.ingredient2.zero:hover, +.easter_skin_easter_hen.easter_ingredient.ingredient2, +.easter_skin_easter_hen.easter_ingredient.ingredient2.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -115px -63px; + width: 78px; + height: 51px; +} + +.easter_skin_easter_hen .easter_ingredient.ingredient3, +.easter_skin_easter_hen .easter_ingredient.ingredient3.zero:hover, +.easter_skin_easter_hen.easter_ingredient.ingredient3, +.easter_skin_easter_hen.easter_ingredient.ingredient3.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -197px -111px; + width: 80px; + height: 43px; +} + +.easter_skin_easter_hen .easter_ingredient.ingredient4, +.easter_skin_easter_hen .easter_ingredient.ingredient4.zero:hover, +.easter_skin_easter_hen.easter_ingredient.ingredient4, +.easter_skin_easter_hen.easter_ingredient.ingredient4.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -197px 0; + width: 83px; + height: 54px; +} + +.easter_skin_easter_hen .easter_ingredient.ingredient6, +.easter_skin_easter_hen .easter_ingredient.ingredient6.zero:hover, +.easter_skin_easter_hen.easter_ingredient.ingredient6, +.easter_skin_easter_hen.easter_ingredient.ingredient6.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -158px -154px; + width: 78px; + height: 45px; +} + +.easter_skin_easter_hen .easter_ingredient.ingredient5, +.easter_skin_easter_hen .easter_ingredient.ingredient5.zero:hover, +.easter_skin_easter_hen.easter_ingredient.ingredient5, +.easter_skin_easter_hen.easter_ingredient.ingredient5.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 -154px; + width: 79px; + height: 48px; +} + +.easter_skin_easter_hen .easter_ingredient.ingredient7, +.easter_skin_easter_hen .easter_ingredient.ingredient7.zero:hover, +.easter_skin_easter_hen.easter_ingredient.ingredient7, +.easter_skin_easter_hen.easter_ingredient.ingredient7.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -115px 0; + width: 82px; + height: 63px; +} + +.easter_skin_easter_hen .easter_ingredient.ingredient8, +.easter_skin_easter_hen .easter_ingredient.ingredient8.zero:hover, +.easter_skin_easter_hen.easter_ingredient.ingredient8, +.easter_skin_easter_hen.easter_ingredient.ingredient8.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -197px -54px; + width: 78px; + height: 57px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_1_0ee1ade.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_2_877c753.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_3_3e1d8de.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_4_3e6520a.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_5_1e98d40.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/tutorial_6_78797c7.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part2 .str1 { + width: 168px; + top: 17px; + left: 112px; + height: 22px; + line-height: 22px; + font-size: 10px; + font-weight: 600; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part3 .str1 { + top: 190px; + left: 115px; + width: 50px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part3 .str2 { + top: 190px; + left: 173px; + width: 50px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part3 .str3 { + top: 190px; + left: 231px; + width: 50px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part5 .str1, +.easter_skin_easter_hen .easter_tutorial .illustration.part5 .str2 { + top: 7px; + font-size: 7px; + color: #000; + text-align: right; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part5 .str1 { + left: 52px; + width: 95px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part5 .str2 { + left: 162px; + width: 125px; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part5 .str3 { + top: 60px; + left: 139px; + width: 150px; + color: #000; + font-weight: 600; + font-size: 8px; + text-align: left; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part5 .str4 { + top: 60px; + left: 10px; + width: 50px; + text-align: left; + font-size: 7px; + color: #774000; + font-weight: 600; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part6 .str1 { + left: 17px; + width: 185px; + top: 23px; + font-size: 12px; + font-weight: 600; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; + color: #f6c669; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part6 .str2 { + left: 17px; + width: 185px; + top: 174px; + font-size: 12px; + font-weight: 600; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; + color: #f6c669; +} + +.easter_skin_easter_hen .easter_tutorial .illustration.part6 .str3 { + top: 64px; + color: #000; + font-weight: 700; + left: 44px; + width: 130px; + overflow: hidden; +} + +.easter_skin_easter_hen .easter_recipes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/bg_recipes_6fb8234.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_skin_easter_hen .easter_recipes .scroll_gradient { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -424px; + width: 567px; + height: 27px; + top: 107px; +} + +.easter_skin_easter_hen .easter_recipes .scroll_gradient_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -351px; + width: 588px; + height: 38px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_list { + padding-bottom: 40px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -437px 0; + width: 533px; + height: 91px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .border_left { + top: -1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1094px 0; + width: 4px; + height: 653px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .border_right { + top: -1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1090px 0; + width: 4px; + height: 653px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .footer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat 0 -389px; + width: 533px; + height: 35px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .result { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1270px -404px; + width: 14px; + height: 23px; + margin-top: 32px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .single_recipe_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -970px -426px; + width: 86px; + height: 85px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1065px -511px; + width: 21px; + height: 21px; + margin-top: 32px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .equals { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/easter_hen_fd7c631.png) no-repeat -1070px -226px; + width: 15px; + height: 13px; + margin-top: 37px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .result { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1270px -404px; + width: 14px; + height: 23px; + margin-top: 32px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .button_brew { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -403px -175px; + width: 48px; + height: 48px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .button_brew.enabled:hover, +.easter_skin_easter_hen .easter_recipes .recipes_group .button_brew:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -355px -175px; + width: 48px; + height: 48px; +} + +.easter_skin_easter_hen .easter_recipes .recipes_group .button_brew.enabled:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -451px -175px; + width: 48px; + height: 48px; +} + +.easter_skin_easter_hen .easter_recipes .recipe .easter_ingredient { + bottom: 21px; +} + +.easter_skin_easter_hen .easter_recipes .recipe .easter_ingredient.ingredient7 { + bottom: 11px; +} + +.easter_skin_easter_hen .easter_recipes .recipe .easter_ingredient.ingredient2, +.easter_skin_easter_hen .easter_recipes .recipe .easter_ingredient.ingredient3, +.easter_skin_easter_hen .easter_recipes .recipe .easter_ingredient.ingredient6, +.easter_skin_easter_hen .easter_recipes .recipe .easter_ingredient.ingredient8 { + left: 6px; +} + +.easter_skin_easter_hen .easter_recipes .recipe .easter_ingredient.ingredient4, +.easter_skin_easter_hen .easter_recipes .recipe .easter_ingredient.ingredient5 { + left: 4px; +} + +.easter_skin_easter_hen .easter_recipes .random_recipe_title { + display: block; +} + +.easter_skin_easter_hen .easter_recipes .num_selected { + text-align: right; + color: #824101; + font-size: 13px; + font-weight: 700; + padding-right: 10px; +} + +.easter_skin_easter_hen .easter_recipes .icon { + bottom: 14px; +} + +.easter_skin_easter_hen .easter_recipes .icon.ingredient1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -47px -239px; + width: 46px; + height: 28px; + bottom: 18px; +} + +.easter_skin_easter_hen .easter_recipes .icon.ingredient2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 -239px; + width: 47px; + height: 31px; + bottom: 17px; +} + +.easter_skin_easter_hen .easter_recipes .icon.ingredient3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -147px -202px; + width: 50px; + height: 30px; + bottom: 18px; +} + +.easter_skin_easter_hen .easter_recipes .icon.ingredient4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -100px -202px; + width: 47px; + height: 33px; + bottom: 19px; +} + +.easter_skin_easter_hen .easter_recipes .icon.ingredient5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -50px -202px; + width: 50px; + height: 35px; +} + +.easter_skin_easter_hen .easter_recipes .icon.ingredient6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -197px -202px; + width: 49px; + height: 29px; + bottom: 18px; +} + +.easter_skin_easter_hen .easter_recipes .icon.ingredient7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat 0 -202px; + width: 50px; + height: 37px; +} + +.easter_skin_easter_hen .easter_recipes .icon.ingredient8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/sprite_images/ingredients_04172f7.png) no-repeat -115px -114px; + width: 53px; + height: 38px; + bottom: 15px; +} + +.easter_skin_easter_hen .easter_collect_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/bg_awarding_7e059fb.jpg) no-repeat 0 0; + width: 601px; + height: 497px; +} + +.column_window.easter_end_interstitial .easter_skin_easter_hen.welcome_window_container, +.column_window.easter_welcome .easter_skin_easter_hen.welcome_window_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/intersticial_bg_afa84d0.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.column_window.easter_end_interstitial .easter_skin_easter_hen.welcome_window_container .guide, +.column_window.easter_welcome .easter_skin_easter_hen.welcome_window_container .guide { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/easter_hen/single_images/intersticial_eggs_2194f5e.png) no-repeat 0 0; + width: 229px; + height: 80px; + position: absolute; + left: 210px; + bottom: 0; + z-index: 10; +} + +.incantation_single_images .bg_awarding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/bg_awarding_bd636d4.jpg) no-repeat 0 0; + width: 601px; + height: 497px; +} + +.incantation_single_images .bg_main { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/bg_main_ea90028.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.incantation_single_images .bg_recipes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/bg_recipes_87d5666.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.incantation_single_images .intersticial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/intersticial_bg_5f4a92f.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.incantation_single_images .ranking_bg_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/ranking_bg_middle_5e3bce4.png) no-repeat 0 0; + width: 4px; + height: 149px; +} + +.incantation_single_images .tutorial_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_1_14aa1a0.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.incantation_single_images .tutorial_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_2_e8e89c4.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.incantation_single_images .tutorial_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_3_436e909.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.incantation_single_images .tutorial_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_4_019c202.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.incantation_single_images .tutorial_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_5_40e3374.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.incantation_single_images .tutorial_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_6_272ddc8.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.incantation .circle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -360px; + width: 308px; + height: 250px; +} + +.incantation .ingredient_flame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -99px; + width: 89px; + height: 94px; +} + +.incantation .runes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -333px 0; + width: 465px; + height: 182px; +} + +.incantation .slot_consumed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px 0; + width: 89px; + height: 99px; +} + +.incantation .spirit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 0; + width: 333px; + height: 360px; +} + +.incantation .daily_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -308px -416px; + width: 404px; + height: 39px; +} + +.incantation .daily_slot_on { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -299px; + width: 23px; + height: 19px; +} + +.incantation .event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -534px -455px; + width: 110px; + height: 90px; +} + +.incantation .event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -308px -455px; + width: 120px; + height: 123px; +} + +.incantation .event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -644px -455px; + width: 110px; + height: 90px; +} + +.incantation .harmony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -609px; + width: 40px; + height: 57px; +} + +.incantation .harmony_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -344px; + width: 15px; + height: 21px; +} + +.incantation .hen_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -278px; + width: 66px; + height: 66px; +} + +.incantation .hen_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -344px; + width: 66px; + height: 66px; +} + +.incantation .hen_icon_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -410px; + width: 66px; + height: 66px; +} + +.incantation .progress_bar_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -476px; + width: 29px; + height: 85px; +} + +.incantation .progress_bar_fill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -666px; + width: 21px; + height: 75px; +} + +.incantation .ranking_bg_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -635px -182px; + width: 105px; + height: 149px; +} + +.incantation .ranking_bg_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -529px -182px; + width: 106px; + height: 149px; +} + +.incantation .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -318px; + width: 14px; + height: 23px; +} + +.incantation .botborder_no_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -701px; + width: 533px; + height: 35px; +} + +.incantation .button_recipe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -827px -476px; + width: 48px; + height: 48px; +} + +.incantation .button_recipe_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -561px; + width: 48px; + height: 48px; +} + +.incantation .equalsto { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -365px; + width: 17px; + height: 9px; +} + +.incantation .ingredientsbg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -193px; + width: 86px; + height: 85px; +} + +.incantation .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -278px; + width: 21px; + height: 21px; +} + +.incantation .recipepage_bottomfade_shadow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -763px; + width: 572px; + height: 27px; +} + +.incantation .recipepage_topfade_shadow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -736px; + width: 572px; + height: 27px; +} + +.incantation .side_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -887px 0; + width: 3px; + height: 653px; +} + +.incantation .topborderwith_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -610px; + width: 534px; + height: 91px; +} + +.incantation .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -333px -182px; + width: 196px; + height: 163px; +} + +.incantation .reward_progress_glow_outside { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -428px -455px; + width: 106px; + height: 106px; +} + +.incantation .tooltip_daily_ingredients { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -308px -360px; + width: 453px; + height: 56px; +} + +.incantation_ingredients_sprite .ingredient1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -103px 0; + width: 80px; + height: 80px; +} + +.incantation_ingredients_sprite .ingredient1_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -197px -193px; + width: 40px; + height: 40px; +} + +.incantation_ingredients_sprite .ingredient2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -183px 0; + width: 80px; + height: 80px; +} + +.incantation_ingredients_sprite .ingredient2_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -237px -193px; + width: 38px; + height: 39px; +} + +.incantation_ingredients_sprite .ingredient3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat 0 -113px; + width: 80px; + height: 80px; +} + +.incantation_ingredients_sprite .ingredient3_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -343px -37px; + width: 38px; + height: 31px; +} + +.incantation_ingredients_sprite .ingredient4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -160px -113px; + width: 80px; + height: 80px; +} + +.incantation_ingredients_sprite .ingredient4_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -38px -273px; + width: 41px; + height: 35px; +} + +.incantation_ingredients_sprite .ingredient5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -263px -80px; + width: 80px; + height: 80px; +} + +.incantation_ingredients_sprite .ingredient5_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -275px -193px; + width: 43px; + height: 34px; +} + +.incantation_ingredients_sprite .ingredient6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat 0 -193px; + width: 80px; + height: 80px; +} + +.incantation_ingredients_sprite .ingredient6_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -158px -193px; + width: 39px; + height: 43px; +} + +.incantation_ingredients_sprite .ingredient7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -263px 0; + width: 80px; + height: 80px; +} + +.incantation_ingredients_sprite .ingredient7_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat 0 -273px; + width: 38px; + height: 42px; +} + +.incantation_ingredients_sprite .ingredient8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -80px -113px; + width: 80px; + height: 80px; +} + +.incantation_ingredients_sprite .ingredient8_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -343px 0; + width: 38px; + height: 37px; +} + +.incantation_ingredients_sprite .ingredient_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat 0 0; + width: 103px; + height: 113px; +} + +.incantation_ingredients_sprite .ingredients_awarding_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -80px -193px; + width: 78px; + height: 77px; +} + +.easter_skin_incantation .easter_alchemy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/bg_main_ea90028.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_skin_incantation .easter_alchemy .daily_progress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -308px -416px; + width: 404px; + height: 39px; + z-index: 1; + right: 120px; + padding-left: 38px; + width: 368px; +} + +.easter_skin_incantation .easter_alchemy .daily_progress .step { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -299px; + width: 23px; + height: 19px; + margin: 3px 10.95px 0 0; +} + +.easter_skin_incantation .easter_alchemy .easter_ingredient { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.easter_skin_incantation .easter_alchemy .brew_table .brew_slot { + bottom: 41px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .brew_slot.brew_slot_1 { + left: 81px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .brew_slot.brew_slot_2 { + left: 178px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .brew_slot.brew_slot_3 { + left: 276px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .base .easter_ingredient { + left: 44px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .base .easter_ingredient.lich_dust { + top: initial; + bottom: -30px; +} + +.easter_skin_incantation .easter_alchemy .harmony_box { + left: 449px; + transform: translateY(-20px); +} + +.easter_skin_incantation .easter_alchemy .harmony_box.show { + transform: translateY(0); + transition: transform .8s; +} + +.easter_skin_incantation .easter_alchemy .harmony_box .harmony_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -609px; + width: 40px; + height: 57px; +} + +.easter_skin_incantation .easter_alchemy .harmony_box .harmony_points .points { + display: inline-block; + width: 40px; + padding: 0; + line-height: 70px; + font-weight: 700; + text-shadow: 1px 1px 0 #000; +} + +.easter_skin_incantation .easter_alchemy .recipes_book { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/common/sprite_images/crafting_shared_images_3fb7fe1.png) no-repeat -355px -113px; + width: 209px; + height: 62px; + position: absolute; + bottom: 122px; +} + +.easter_skin_incantation .easter_alchemy .recipes_book .recipes_count { + position: absolute; + left: 67px; + width: 66px; + top: 10px; + line-height: 24px; + text-align: center; + font-weight: 700; +} + +.easter_skin_incantation .easter_alchemy .recipes_book .btn_recipes { + position: absolute; + bottom: 2px; + left: 9px; + width: 179px; +} + +.easter_skin_incantation .easter_alchemy .btn_reward { + left: 116px; +} + +.easter_skin_incantation .easter_alchemy .reward_overlay { + position: absolute; + z-index: 3; + top: 0; + left: 0; + right: 0; + bottom: 7px; + background-color: rgba(1,1,1,.8); + display: none; + color: #ffcb67; + text-align: center; +} + +.easter_skin_incantation .easter_alchemy .reward_overlay h3 { + font-weight: 700; + margin: 60px 0 0 0; + padding: 0; + display: inline-block; + font-size: 16px; + line-height: 18px; +} + +.easter_skin_incantation .easter_alchemy .reward_overlay h3:before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -348px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: -63px; + margin-top: -4px; +} + +.easter_skin_incantation .easter_alchemy .reward_overlay h3:after { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -306px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: 23px; + margin-top: -4px; +} + +.easter_skin_incantation .easter_alchemy .reward_overlay .reward_overlay_background { + position: relative; + margin-top: 21px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 0; + width: 758px; + height: 300px; +} + +.easter_skin_incantation .easter_alchemy .ranking .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -635px -182px; + width: 105px; + height: 149px; +} + +.easter_skin_incantation .easter_alchemy .ranking .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/ranking_bg_middle_5e3bce4.png) no-repeat 0 0; + width: 4px; + height: 149px; + left: 105px; + background-repeat: repeat-x; + width: auto; +} + +.easter_skin_incantation .easter_alchemy .ranking .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -529px -182px; + width: 106px; + height: 149px; +} + +.easter_skin_incantation .easter_alchemy .ranking .content .list .icon.points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -344px; + width: 15px; + height: 21px; +} + +.easter_skin_incantation .easter_alchemy .ranking .content .list .icon.position { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -417px -300px; + width: 21px; + height: 17px; +} + +.easter_skin_incantation .easter_alchemy .ranking.daily { + top: 58px; +} + +.easter_skin_incantation .easter_alchemy .ranking.overall { + top: 202px; +} + +.easter_skin_incantation .easter_alchemy .progressbar_container .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -666px; + width: 21px; + height: 75px; + height: 0; +} + +.easter_skin_incantation .easter_alchemy .progressbar_container .progress_bar_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -476px; + width: 29px; + height: 85px; +} + +.easter_skin_incantation .easter_alchemy .progressbar_container .glow:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -428px -455px; + width: 106px; + height: 106px; +} + +.easter_skin_incantation .easter_alchemy .crafting_effect { + width: 457px; + height: 267px; + position: absolute; + top: 34px; + left: 245px; + display: none; +} + +.easter_skin_incantation .easter_alchemy .crafting_effect .circle, +.easter_skin_incantation .easter_alchemy .crafting_effect .runes, +.easter_skin_incantation .easter_alchemy .crafting_effect .spirit { + position: absolute; + opacity: 0; +} + +.easter_skin_incantation .easter_alchemy .crafting_effect .circle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -360px; + width: 308px; + height: 250px; + left: 62px; + top: 26px; +} + +.easter_skin_incantation .easter_alchemy .crafting_effect .spirit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 0; + width: 333px; + height: 360px; + left: 27px; + top: -71px; +} + +.easter_skin_incantation .easter_alchemy .crafting_effect .runes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -333px 0; + width: 465px; + height: 182px; + top: 155px; + left: -9px; +} + +.easter_skin_incantation .easter_alchemy .curtain { + width: 100%; + height: 100%; + background-color: #000; + opacity: 0; + display: none; +} + +.easter_skin_incantation .easter_alchemy .brew_table .fire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -99px; + width: 89px; + height: 94px; + position: absolute; + bottom: 50px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .fire.fire_slot_1 { + left: 81px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .fire.fire_slot_2 { + left: 178px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .fire.fire_slot_3 { + left: 276px; +} + +.easter_skin_incantation .easter_alchemy .brew_table .base .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat 0 0; + width: 103px; + height: 113px; +} + +.easter_skin_incantation .easter_alchemy .brew_slot.consumed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px 0; + width: 89px; + height: 99px; + bottom: 49px; +} + +.easter_skin_incantation .easter_alchemy .brew_slot.consumed .glow { + top: 11px; +} + +.easter_skin_incantation .easter_alchemy .brew_slot.consumed .easter_ingredient { + margin-top: 8px; +} + +.easter_skin_incantation .easter_alchemy .egg_effect { + display: none; +} + +.easter_skin_incantation .button_goto_alchemy_tab { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -278px; + width: 66px; + height: 66px; +} + +.easter_skin_incantation .button_goto_alchemy_tab:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -344px; + width: 66px; + height: 66px; +} + +.easter_skin_incantation .easter_ingredient.ingredient1, +.easter_skin_incantation .easter_ingredient.ingredient1.zero:hover, +.easter_skin_incantation.easter_ingredient.ingredient1, +.easter_skin_incantation.easter_ingredient.ingredient1.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -103px 0; + width: 80px; + height: 80px; +} + +.easter_skin_incantation .easter_ingredient.ingredient2, +.easter_skin_incantation .easter_ingredient.ingredient2.zero:hover, +.easter_skin_incantation.easter_ingredient.ingredient2, +.easter_skin_incantation.easter_ingredient.ingredient2.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -183px 0; + width: 80px; + height: 80px; +} + +.easter_skin_incantation .easter_ingredient.ingredient3, +.easter_skin_incantation .easter_ingredient.ingredient3.zero:hover, +.easter_skin_incantation.easter_ingredient.ingredient3, +.easter_skin_incantation.easter_ingredient.ingredient3.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat 0 -113px; + width: 80px; + height: 80px; +} + +.easter_skin_incantation .easter_ingredient.ingredient4, +.easter_skin_incantation .easter_ingredient.ingredient4.zero:hover, +.easter_skin_incantation.easter_ingredient.ingredient4, +.easter_skin_incantation.easter_ingredient.ingredient4.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -160px -113px; + width: 80px; + height: 80px; +} + +.easter_skin_incantation .easter_ingredient.ingredient5, +.easter_skin_incantation .easter_ingredient.ingredient5.zero:hover, +.easter_skin_incantation.easter_ingredient.ingredient5, +.easter_skin_incantation.easter_ingredient.ingredient5.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -263px -80px; + width: 80px; + height: 80px; +} + +.easter_skin_incantation .easter_ingredient.ingredient6, +.easter_skin_incantation .easter_ingredient.ingredient6.zero:hover, +.easter_skin_incantation.easter_ingredient.ingredient6, +.easter_skin_incantation.easter_ingredient.ingredient6.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat 0 -193px; + width: 80px; + height: 80px; +} + +.easter_skin_incantation .easter_ingredient.ingredient7, +.easter_skin_incantation .easter_ingredient.ingredient7.zero:hover, +.easter_skin_incantation.easter_ingredient.ingredient7, +.easter_skin_incantation.easter_ingredient.ingredient7.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -263px 0; + width: 80px; + height: 80px; +} + +.easter_skin_incantation .easter_ingredient.ingredient8, +.easter_skin_incantation .easter_ingredient.ingredient8.zero:hover, +.easter_skin_incantation.easter_ingredient.ingredient8, +.easter_skin_incantation.easter_ingredient.ingredient8.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -80px -113px; + width: 80px; + height: 80px; +} + +.easter_skin_incantation.easter_daily_progreess_tooltip .ingredients_images { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -308px -360px; + width: 453px; + height: 56px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_1_14aa1a0.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_2_e8e89c4.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_3_436e909.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_4_019c202.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_5_40e3374.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/tutorial_6_272ddc8.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part2 .str1 { + width: 201px; + top: 25px; + left: 94px; + height: 22px; + line-height: 22px; + font-size: 10px; + font-weight: 700; +} + +.easter_skin_incantation .easter_tutorial .illustration.part3 .str1 { + top: 190px; + left: 115px; + width: 50px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part3 .str2 { + top: 190px; + left: 173px; + width: 50px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part3 .str3 { + top: 190px; + left: 231px; + width: 50px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part5 .str1, +.easter_skin_incantation .easter_tutorial .illustration.part5 .str2 { + top: 7px; + font-size: 7px; + color: #000; + text-align: right; +} + +.easter_skin_incantation .easter_tutorial .illustration.part5 .str1 { + left: 52px; + width: 95px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part5 .str2 { + left: 162px; + width: 125px; +} + +.easter_skin_incantation .easter_tutorial .illustration.part5 .str3 { + top: 60px; + left: 139px; + width: 150px; + color: #000; + font-weight: 700; + font-size: 8px; + text-align: left; +} + +.easter_skin_incantation .easter_tutorial .illustration.part5 .str4 { + top: 60px; + left: 10px; + width: 50px; + text-align: left; + font-size: 7px; + color: #774000; + font-weight: 700; +} + +.easter_skin_incantation .easter_tutorial .illustration.part6 .str1 { + left: 17px; + width: 185px; + top: 31px; + font-size: 12px; + font-weight: 700; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; + color: #f6c669; +} + +.easter_skin_incantation .easter_tutorial .illustration.part6 .str2 { + left: 17px; + width: 185px; + top: 174px; + font-size: 12px; + font-weight: 700; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; + color: #f6c669; +} + +.easter_skin_incantation .easter_tutorial .illustration.part6 .str3 { + top: 64px; + color: #000; + font-weight: 700; + left: 88px; +} + +.easter_skin_incantation .easter_recipes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/bg_recipes_87d5666.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_skin_incantation .easter_recipes .recipes_list_viewport { + height: 419px; +} + +.easter_skin_incantation .easter_recipes .icon.ingredient1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -197px -193px; + width: 40px; + height: 40px; +} + +.easter_skin_incantation .easter_recipes .icon.ingredient2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -237px -193px; + width: 38px; + height: 39px; +} + +.easter_skin_incantation .easter_recipes .icon.ingredient3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -343px -37px; + width: 38px; + height: 31px; +} + +.easter_skin_incantation .easter_recipes .icon.ingredient4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -38px -273px; + width: 41px; + height: 35px; +} + +.easter_skin_incantation .easter_recipes .icon.ingredient5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -275px -193px; + width: 43px; + height: 34px; +} + +.easter_skin_incantation .easter_recipes .icon.ingredient6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -158px -193px; + width: 39px; + height: 43px; +} + +.easter_skin_incantation .easter_recipes .icon.ingredient7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat 0 -273px; + width: 38px; + height: 42px; +} + +.easter_skin_incantation .easter_recipes .icon.ingredient8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/ingredients/ingredients_d01779b.png) no-repeat -343px 0; + width: 38px; + height: 37px; +} + +.easter_skin_incantation .easter_recipes .random_recipe_title { + display: block; + top: 27px; + left: 155px; + width: 490px; + font-size: 13px; +} + +.easter_skin_incantation .easter_recipes .filters_box { + background: 0 0; + top: 230px; + padding: 0; + left: 17px; + height: initial; +} + +.easter_skin_incantation .easter_recipes .filters_box .title { + position: absolute; + top: -110px; + margin: 0; + height: 85px; + width: 110px; + word-wrap: break-word; +} + +.easter_skin_incantation .easter_recipes .top_filters { + top: 70px; + left: 155px; +} + +.easter_skin_incantation .easter_recipes .scroll_gradient, +.easter_skin_incantation .easter_recipes .scroll_gradient_bottom { + left: 132px; + right: 77px; +} + +.easter_skin_incantation .easter_recipes .single_recipe_box, +.easter_skin_incantation .easter_recipes .single_recipe_box.full { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -193px; + width: 86px; + height: 85px; +} + +.easter_skin_incantation .easter_recipes .button_brew { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -827px -476px; + width: 48px; + height: 48px; +} + +.easter_skin_incantation .easter_recipes .button_brew.enabled:active, +.easter_skin_incantation .easter_recipes .button_brew.enabled:hover, +.easter_skin_incantation .easter_recipes .button_brew:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -798px -561px; + width: 48px; + height: 48px; +} + +.easter_skin_incantation .easter_recipes .btn_buy_recipe { + top: 17px; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.easter_skin_incantation .easter_recipes .easter_button .buy_recipe_button_bg-tile>div { + margin: 0 0 0 16px; +} + +.easter_skin_incantation .easter_recipes .scroll_gradient { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -736px; + width: 572px; + height: 27px; + top: 101px; +} + +.easter_skin_incantation .easter_recipes .scroll_gradient_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -763px; + width: 572px; + height: 27px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -610px; + width: 534px; + height: 91px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .border_left, +.easter_skin_incantation .easter_recipes .recipes_group .border_right { + top: -1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -887px 0; + width: 3px; + height: 653px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .border_left { + left: 1px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .border_right { + right: 1px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .border_left, +.easter_skin_incantation .easter_recipes .recipes_group .border_right { + top: -1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -887px 0; + width: 3px; + height: 653px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .footer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat 0 -701px; + width: 533px; + height: 35px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .result { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -318px; + width: 14px; + height: 23px; + margin-top: 32px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -278px; + width: 21px; + height: 21px; + margin-top: 32px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .equals { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/sprite_images/incantation_7433320.png) no-repeat -864px -365px; + width: 17px; + height: 9px; + margin-top: 37px; +} + +.easter_skin_incantation .easter_recipes .recipes_group .header .power_icon60x60 { + top: 16px; + left: 26px; +} + +.easter_skin_incantation .easter_collect_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/bg_awarding_bd636d4.jpg) no-repeat 0 0; + width: 601px; + height: 497px; +} + +.easter_skin_incantation .easter_collect_container p { + padding: 40px 70px 0 70px; + color: initial; + text-shadow: initial; +} + +.easter_skin_incantation .easter_collect_container .single_recipe_box .easter_ingredient { + margin: 24px auto 0 auto; +} + +.column_window.easter_end_interstitial .easter_skin_incantation.welcome_window_container, +.column_window.easter_welcome .easter_skin_incantation.welcome_window_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/incantation/single_images/intersticial_bg_5f4a92f.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.column_window.easter_end_interstitial .easter_skin_incantation.welcome_window_container .guide, +.column_window.easter_welcome .easter_skin_incantation.welcome_window_container .guide { + background: 0 0; +} + +.demeter_single_images .bg_awarding { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/bg_awarding_7e059fb.jpg) no-repeat 0 0; + width: 601px; + height: 497px; +} + +.demeter_single_images .bg_main { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/bg_main_57e9ea1.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.demeter_single_images .bg_recipes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/bg_recipes_bfd7e28.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.demeter_single_images .intersticial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/intersticial_bg_4aff4e1.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.demeter_single_images .ranking_bg_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/ranking_bg_middle_894a4b7.png) no-repeat 0 0; + width: 4px; + height: 149px; +} + +.demeter_single_images .tutorial_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_1_6ec96a4.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.demeter_single_images .tutorial_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_2_0727252.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.demeter_single_images .tutorial_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_3_d233768.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.demeter_single_images .tutorial_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_4_24d67ac.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.demeter_single_images .tutorial_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_5_a92df0e.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.demeter_single_images .tutorial_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_6_ecf2403.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.demeter .anim_glow1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -137px -913px; + width: 145px; + height: 148px; +} + +.demeter .anim_glow2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -282px -913px; + width: 145px; + height: 145px; +} + +.demeter .anim_paticle1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -755px; + width: 54px; + height: 48px; +} + +.demeter .reward_plate { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 -913px; + width: 137px; + height: 163px; +} + +.demeter .reward_plate_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -795px 0; + width: 389px; + height: 227px; +} + +.demeter .reward_plate_smoke { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -274px -624px; + width: 201px; + height: 246px; +} + +.demeter .daily_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -475px -806px; + width: 404px; + height: 39px; +} + +.demeter .daily_slot_on { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1250px -489px; + width: 31px; + height: 31px; +} + +.demeter .event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 -1076px; + width: 113px; + height: 125px; +} + +.demeter .event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -427px -913px; + width: 130px; + height: 140px; +} + +.demeter .event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -113px -1076px; + width: 113px; + height: 125px; +} + +.demeter .guest1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -795px -227px; + width: 274px; + height: 319px; +} + +.demeter .guest2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -459px -309px; + width: 335px; + height: 308px; +} + +.demeter .guest3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 -305px; + width: 417px; + height: 319px; +} + +.demeter .guest4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 0; + width: 459px; + height: 305px; +} + +.demeter .guest5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 -624px; + width: 274px; + height: 289px; +} + +.demeter .guest6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -459px 0; + width: 336px; + height: 309px; +} + +.demeter .harmony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -687px; + width: 63px; + height: 68px; +} + +.demeter .harmony_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1250px -520px; + width: 22px; + height: 21px; +} + +.demeter .hen_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -489px; + width: 66px; + height: 66px; +} + +.demeter .hen_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -555px; + width: 66px; + height: 66px; +} + +.demeter .hen_icon_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -621px; + width: 66px; + height: 66px; +} + +.demeter .progress_bar_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -803px; + width: 29px; + height: 85px; +} + +.demeter .progress_bar_fill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -888px; + width: 21px; + height: 75px; +} + +.demeter .ranking_bg_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -149px; + width: 105px; + height: 149px; +} + +.demeter .ranking_bg_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px 0; + width: 106px; + height: 149px; +} + +.demeter .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1270px -404px; + width: 14px; + height: 23px; +} + +.demeter .botborderwith_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -475px -771px; + width: 533px; + height: 35px; +} + +.demeter .button_recipe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1238px -755px; + width: 48px; + height: 48px; +} + +.demeter .button_recipe_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1213px -803px; + width: 48px; + height: 48px; +} + +.demeter .equalsto { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1270px -427px; + width: 15px; + height: 13px; +} + +.demeter .filterborder { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1069px -227px; + width: 113px; + height: 304px; +} + +.demeter .ingredientsbg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -404px; + width: 86px; + height: 85px; +} + +.demeter .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1250px -555px; + width: 21px; + height: 21px; +} + +.demeter .recipepage_bottomfade_shadow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -557px -913px; + width: 572px; + height: 27px; +} + +.demeter .recipepage_topfade_shadow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -274px -870px; + width: 572px; + height: 27px; +} + +.demeter .side_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1290px 0; + width: 4px; + height: 653px; +} + +.demeter .side_border_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1294px 0; + width: 4px; + height: 653px; +} + +.demeter .topborderwith_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -475px -624px; + width: 533px; + height: 91px; +} + +.demeter .reward_progress_glow_outside { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -298px; + width: 106px; + height: 106px; +} + +.demeter .tooltip_daily_ingredients { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -475px -715px; + width: 453px; + height: 56px; +} + +.demeter_ingredients_sprite .ingredient1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -79px -258px; + width: 79px; + height: 79px; +} + +.demeter_ingredients_sprite .ingredient1_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 -172px; + width: 102px; + height: 86px; +} + +.demeter_ingredients_sprite .ingredient1_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -78px -375px; + width: 44px; + height: 38px; +} + +.demeter_ingredients_sprite .ingredient2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -306px -155px; + width: 79px; + height: 79px; +} + +.demeter_ingredients_sprite .ingredient2_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -102px 0; + width: 102px; + height: 86px; +} + +.demeter_ingredients_sprite .ingredient2_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -298px -337px; + width: 44px; + height: 38px; +} + +.demeter_ingredients_sprite .ingredient3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -204px -172px; + width: 79px; + height: 79px; +} + +.demeter_ingredients_sprite .ingredient3_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -102px -86px; + width: 102px; + height: 86px; +} + +.demeter_ingredients_sprite .ingredient3_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -254px -337px; + width: 44px; + height: 38px; +} + +.demeter_ingredients_sprite .ingredient4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -306px -76px; + width: 79px; + height: 79px; +} + +.demeter_ingredients_sprite .ingredient4_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -204px 0; + width: 102px; + height: 86px; +} + +.demeter_ingredients_sprite .ingredient4_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -166px -337px; + width: 44px; + height: 38px; +} + +.demeter_ingredients_sprite .ingredient5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 -258px; + width: 79px; + height: 79px; +} + +.demeter_ingredients_sprite .ingredient5_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 0; + width: 102px; + height: 86px; +} + +.demeter_ingredients_sprite .ingredient5_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -122px -337px; + width: 44px; + height: 38px; +} + +.demeter_ingredients_sprite .ingredient6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -237px -258px; + width: 79px; + height: 79px; +} + +.demeter_ingredients_sprite .ingredient6_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -102px -172px; + width: 102px; + height: 86px; +} + +.demeter_ingredients_sprite .ingredient6_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -78px -337px; + width: 44px; + height: 38px; +} + +.demeter_ingredients_sprite .ingredient7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -158px -258px; + width: 79px; + height: 79px; +} + +.demeter_ingredients_sprite .ingredient7_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -204px -86px; + width: 102px; + height: 86px; +} + +.demeter_ingredients_sprite .ingredient7_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -210px -337px; + width: 44px; + height: 38px; +} + +.demeter_ingredients_sprite .ingredient8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -316px -258px; + width: 79px; + height: 79px; +} + +.demeter_ingredients_sprite .ingredient8_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 -86px; + width: 102px; + height: 86px; +} + +.demeter_ingredients_sprite .ingredient8_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -342px -337px; + width: 44px; + height: 38px; +} + +.demeter_ingredients_sprite .ingredient_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -306px 0; + width: 115px; + height: 76px; +} + +.demeter_ingredients_sprite .ingredients_awarding_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 -337px; + width: 78px; + height: 77px; +} + +.easter_skin_demeter .easter_alchemy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/bg_main_57e9ea1.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_skin_demeter .easter_alchemy .guest_overlay { + position: absolute; +} + +.easter_skin_demeter .easter_alchemy .guest_overlay[data-id=guest1] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -795px -227px; + width: 274px; + height: 319px; + left: 355px; + top: -5px; +} + +.easter_skin_demeter .easter_alchemy .guest_overlay[data-id=guest2] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -459px -309px; + width: 335px; + height: 308px; + left: 342px; + top: 5px; +} + +.easter_skin_demeter .easter_alchemy .guest_overlay[data-id=guest3] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 -305px; + width: 417px; + height: 319px; + left: 274px; + top: -5px; +} + +.easter_skin_demeter .easter_alchemy .guest_overlay[data-id=guest4] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 0; + width: 459px; + height: 305px; + left: 297px; + top: 3px; +} + +.easter_skin_demeter .easter_alchemy .guest_overlay[data-id=guest5] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 -624px; + width: 274px; + height: 289px; + left: 379px; + top: 8px; +} + +.easter_skin_demeter .easter_alchemy .guest_overlay[data-id=guest6] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -459px 0; + width: 336px; + height: 309px; + left: 328px; + top: 10px; +} + +.easter_skin_demeter .easter_alchemy .egg_effect { + display: none; +} + +.easter_skin_demeter .easter_alchemy .daily_progress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -475px -806px; + width: 404px; + height: 39px; + z-index: 1; + right: 120px; + padding-left: 34px; + width: 368px; +} + +.easter_skin_demeter .easter_alchemy .daily_progress .step { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1250px -489px; + width: 31px; + height: 31px; + margin: 0 3px 0 0; +} + +.easter_skin_demeter .easter_alchemy .easter_ingredient { + cursor: move; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.easter_skin_demeter .easter_alchemy .brew_table .brew_slot { + bottom: 38px; +} + +.easter_skin_demeter .easter_alchemy .brew_table .brew_slot.brew_slot_1 { + left: 81px; +} + +.easter_skin_demeter .easter_alchemy .brew_table .brew_slot.brew_slot_2 { + left: 180px; +} + +.easter_skin_demeter .easter_alchemy .brew_table .brew_slot.brew_slot_3 { + left: 283px; +} + +.easter_skin_demeter .easter_alchemy .brew_table .base { + height: 70px; +} + +.easter_skin_demeter .easter_alchemy .brew_table .base .easter_ingredient { + left: 41px; + cursor: default; +} + +.easter_skin_demeter .easter_alchemy .harmony_box { + left: 438px; + top: 140px; + transform: translateY(-20px); + transition: transform .8s; +} + +.easter_skin_demeter .easter_alchemy .harmony_box.show { + transform: translateY(0); +} + +.easter_skin_demeter .easter_alchemy .harmony_box .harmony_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -687px; + width: 63px; + height: 68px; +} + +.easter_skin_demeter .easter_alchemy .harmony_box .harmony_points .points { + display: inline-block; + width: inherit; + padding: 0; + line-height: 74px; + font-weight: 700; + text-shadow: 1px 1px 0 #000; +} + +.easter_skin_demeter .easter_alchemy .reward_box { + top: 140px; + left: 322px; +} + +.easter_skin_demeter .easter_alchemy .brew_box { + left: 328px; +} + +.easter_skin_demeter .easter_alchemy .brew_box .predicted_reward { + top: 210px; + left: 110px; +} + +.easter_skin_demeter .easter_alchemy .brew_box .predicted_reward.power_icon60x60 { + top: 210px; + left: 110px; +} + +.easter_skin_demeter .easter_alchemy .brew_box .predicted_reward.question_mark_icon { + top: 210px; + left: 106px; +} + +.easter_skin_demeter .easter_alchemy .recipes_book { + background: 0 0; + position: absolute; + bottom: 122px; +} + +.easter_skin_demeter .easter_alchemy .recipes_book .recipes_count { + color: #fc6; +} + +.easter_skin_demeter .easter_alchemy .recipes_book .btn_recipes { + position: absolute; + bottom: 2px; + left: 9px; + width: 179px; +} + +.easter_skin_demeter .easter_alchemy .btn_reward { + left: 116px; +} + +.easter_skin_demeter .easter_alchemy .reward_overlay { + position: absolute; + z-index: 3; + top: 0; + left: 0; + right: 0; + bottom: 7px; + background-color: rgba(1,1,1,.8); + display: none; + color: #ffcb67; + text-align: center; +} + +.easter_skin_demeter .easter_alchemy .reward_overlay h3 { + font-weight: 700; + margin: 60px 0 0 0; + padding: 0; + display: inline-block; + font-size: 16px; + line-height: 18px; +} + +.easter_skin_demeter .easter_alchemy .reward_overlay h3:before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -348px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: -63px; + margin-top: -4px; +} + +.easter_skin_demeter .easter_alchemy .reward_overlay h3:after { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -306px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: 23px; + margin-top: -4px; +} + +.easter_skin_demeter .easter_alchemy .reward_overlay .reward_overlay_background { + position: relative; + margin-top: 21px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 0; + width: 758px; + height: 300px; +} + +.easter_skin_demeter .easter_alchemy .ranking .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -149px; + width: 105px; + height: 149px; +} + +.easter_skin_demeter .easter_alchemy .ranking .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/ranking_bg_middle_894a4b7.png) no-repeat 0 0; + width: 4px; + height: 149px; + left: 105px; + background-repeat: repeat-x; + width: auto; +} + +.easter_skin_demeter .easter_alchemy .ranking .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px 0; + width: 106px; + height: 149px; +} + +.easter_skin_demeter .easter_alchemy .ranking .content .list .icon.points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1250px -520px; + width: 22px; + height: 21px; +} + +.easter_skin_demeter .easter_alchemy .ranking .content .list .icon.position { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -417px -300px; + width: 21px; + height: 17px; +} + +.easter_skin_demeter .easter_alchemy .ranking.daily { + top: 58px; +} + +.easter_skin_demeter .easter_alchemy .ranking.overall { + top: 202px; +} + +.easter_skin_demeter .easter_alchemy .progressbar_container .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -888px; + width: 21px; + height: 75px; + height: 0; +} + +.easter_skin_demeter .easter_alchemy .progressbar_container .progress_bar_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -803px; + width: 29px; + height: 85px; +} + +.easter_skin_demeter .easter_alchemy .progressbar_container .glow:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -298px; + width: 106px; + height: 106px; +} + +.easter_skin_demeter .easter_alchemy .curtain { + width: 100%; + height: 100%; + background-color: #000; + opacity: 0; + display: none; +} + +.easter_skin_demeter .easter_alchemy .crafting_animation .plate_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -795px 0; + width: 389px; + height: 227px; + position: absolute; + left: 268px; + top: 105px; + opacity: 0; +} + +.easter_skin_demeter .easter_alchemy .crafting_animation .cloche { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat 0 -913px; + width: 137px; + height: 163px; + position: absolute; + left: 398px; + top: 161px; + opacity: 0; +} + +.easter_skin_demeter .easter_alchemy .crafting_animation .flames { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -274px -624px; + width: 201px; + height: 246px; + position: absolute; + left: 365px; + top: 88px; + opacity: 0; +} + +.easter_skin_demeter .easter_alchemy .crafting_animation .particle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -137px -913px; + width: 145px; + height: 148px; + position: absolute; + left: 446px; + top: 161px; + display: none; +} + +.easter_skin_demeter .easter_alchemy .crafting_animation .particle_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -282px -913px; + width: 145px; + height: 145px; + position: absolute; + left: 378px; + top: 180px; + display: none; +} + +.easter_skin_demeter .easter_alchemy .crafting_animation .particle_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -755px; + width: 54px; + height: 48px; + position: absolute; + left: 394px; + top: 163px; + display: none; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -475px -715px; + width: 453px; + height: 56px; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient1 { + left: 41px; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient2 { + left: 98px; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient3 { + left: 155px; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient4 { + left: 212px; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient5 { + left: 269px; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient6 { + left: 326px; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient7 { + left: 383px; +} + +.easter_skin_demeter.easter_daily_progreess_tooltip .ingredients_images .ingredinet.ingredient8 { + left: 440px; +} + +.easter_skin_demeter .button_goto_alchemy_tab { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -489px; + width: 66px; + height: 66px; +} + +.easter_skin_demeter .button_goto_alchemy_tab:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -555px; + width: 66px; + height: 66px; +} + +.easter_skin_demeter .easter_ingredient.ingredient1, +.easter_skin_demeter .easter_ingredient.ingredient1.zero:hover, +.easter_skin_demeter.easter_ingredient.ingredient1, +.easter_skin_demeter.easter_ingredient.ingredient1.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -79px -258px; + width: 79px; + height: 79px; +} + +.easter_skin_demeter .easter_ingredient.ingredient2, +.easter_skin_demeter .easter_ingredient.ingredient2.zero:hover, +.easter_skin_demeter.easter_ingredient.ingredient2, +.easter_skin_demeter.easter_ingredient.ingredient2.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -306px -155px; + width: 79px; + height: 79px; +} + +.easter_skin_demeter .easter_ingredient.ingredient3, +.easter_skin_demeter .easter_ingredient.ingredient3.zero:hover, +.easter_skin_demeter.easter_ingredient.ingredient3, +.easter_skin_demeter.easter_ingredient.ingredient3.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -204px -172px; + width: 79px; + height: 79px; +} + +.easter_skin_demeter .easter_ingredient.ingredient4, +.easter_skin_demeter .easter_ingredient.ingredient4.zero:hover, +.easter_skin_demeter.easter_ingredient.ingredient4, +.easter_skin_demeter.easter_ingredient.ingredient4.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -306px -76px; + width: 79px; + height: 79px; +} + +.easter_skin_demeter .easter_ingredient.ingredient6, +.easter_skin_demeter .easter_ingredient.ingredient6.zero:hover, +.easter_skin_demeter.easter_ingredient.ingredient6, +.easter_skin_demeter.easter_ingredient.ingredient6.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -237px -258px; + width: 79px; + height: 79px; +} + +.easter_skin_demeter .easter_ingredient.ingredient5, +.easter_skin_demeter .easter_ingredient.ingredient5.zero:hover, +.easter_skin_demeter.easter_ingredient.ingredient5, +.easter_skin_demeter.easter_ingredient.ingredient5.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 -258px; + width: 79px; + height: 79px; +} + +.easter_skin_demeter .easter_ingredient.ingredient7, +.easter_skin_demeter .easter_ingredient.ingredient7.zero:hover, +.easter_skin_demeter.easter_ingredient.ingredient7, +.easter_skin_demeter.easter_ingredient.ingredient7.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -158px -258px; + width: 79px; + height: 79px; +} + +.easter_skin_demeter .easter_ingredient.ingredient8, +.easter_skin_demeter .easter_ingredient.ingredient8.zero:hover, +.easter_skin_demeter.easter_ingredient.ingredient8, +.easter_skin_demeter.easter_ingredient.ingredient8.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -316px -258px; + width: 79px; + height: 79px; +} + +.easter_skin_demeter .brew_table .easter_ingredient.ingredient1, +.easter_skin_demeter .brew_table .easter_ingredient.ingredient1.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 -172px; + width: 102px; + height: 86px; +} + +.easter_skin_demeter .brew_table .easter_ingredient.ingredient2, +.easter_skin_demeter .brew_table .easter_ingredient.ingredient2.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -102px 0; + width: 102px; + height: 86px; +} + +.easter_skin_demeter .brew_table .easter_ingredient.ingredient3, +.easter_skin_demeter .brew_table .easter_ingredient.ingredient3.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -102px -86px; + width: 102px; + height: 86px; +} + +.easter_skin_demeter .brew_table .easter_ingredient.ingredient4, +.easter_skin_demeter .brew_table .easter_ingredient.ingredient4.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -204px 0; + width: 102px; + height: 86px; +} + +.easter_skin_demeter .brew_table .easter_ingredient.ingredient6, +.easter_skin_demeter .brew_table .easter_ingredient.ingredient6.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -102px -172px; + width: 102px; + height: 86px; +} + +.easter_skin_demeter .brew_table .easter_ingredient.ingredient5, +.easter_skin_demeter .brew_table .easter_ingredient.ingredient5.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 0; + width: 102px; + height: 86px; +} + +.easter_skin_demeter .brew_table .easter_ingredient.ingredient7, +.easter_skin_demeter .brew_table .easter_ingredient.ingredient7.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -204px -86px; + width: 102px; + height: 86px; +} + +.easter_skin_demeter .brew_table .easter_ingredient.ingredient8, +.easter_skin_demeter .brew_table .easter_ingredient.ingredient8.zero:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat 0 -86px; + width: 102px; + height: 86px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_1_6ec96a4.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_2_0727252.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_3_d233768.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_4_24d67ac.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_5_a92df0e.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/tutorial_6_ecf2403.jpg) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part2 .str1 { + width: 201px; + top: 16px; + left: 91px; + height: 22px; + line-height: 22px; + font-size: 10px; + font-weight: 700; +} + +.easter_skin_demeter .easter_tutorial .illustration.part3 .str1 { + top: 190px; + left: 115px; + width: 50px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part3 .str2 { + top: 190px; + left: 173px; + width: 50px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part3 .str3 { + top: 190px; + left: 231px; + width: 50px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part5 .str1, +.easter_skin_demeter .easter_tutorial .illustration.part5 .str2 { + top: 7px; + font-size: 7px; + color: #000; + text-align: right; +} + +.easter_skin_demeter .easter_tutorial .illustration.part5 .str1 { + left: 52px; + width: 95px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part5 .str2 { + left: 162px; + width: 125px; +} + +.easter_skin_demeter .easter_tutorial .illustration.part5 .str3 { + top: 70px; + left: 165px; + width: 150px; + color: #000; + font-weight: 700; + font-size: 8px; + text-align: left; +} + +.easter_skin_demeter .easter_tutorial .illustration.part5 .str4 { + top: 60px; + left: 10px; + width: 50px; + text-align: left; + font-size: 7px; + color: #774000; + font-weight: 700; +} + +.easter_skin_demeter .easter_tutorial .illustration.part6 .str1 { + left: 17px; + width: 185px; + top: 31px; + font-size: 12px; + font-weight: 700; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; + color: #f6c669; +} + +.easter_skin_demeter .easter_tutorial .illustration.part6 .str2 { + left: 17px; + width: 185px; + top: 174px; + font-size: 12px; + font-weight: 700; + font-weight: 700; + color: #fff; + text-shadow: #000 1px 1px; + color: #f6c669; +} + +.easter_skin_demeter .easter_tutorial .illustration.part6 .str3 { + top: 64px; + color: #000; + font-weight: 700; + left: 88px; +} + +.easter_skin_demeter .easter_recipes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/bg_recipes_bfd7e28.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.easter_skin_demeter .easter_recipes .icon.ingredient1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -78px -375px; + width: 44px; + height: 38px; +} + +.easter_skin_demeter .easter_recipes .icon.ingredient2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -298px -337px; + width: 44px; + height: 38px; +} + +.easter_skin_demeter .easter_recipes .icon.ingredient3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -254px -337px; + width: 44px; + height: 38px; +} + +.easter_skin_demeter .easter_recipes .icon.ingredient4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -166px -337px; + width: 44px; + height: 38px; +} + +.easter_skin_demeter .easter_recipes .icon.ingredient6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -78px -337px; + width: 44px; + height: 38px; +} + +.easter_skin_demeter .easter_recipes .icon.ingredient5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -122px -337px; + width: 44px; + height: 38px; +} + +.easter_skin_demeter .easter_recipes .icon.ingredient7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -210px -337px; + width: 44px; + height: 38px; +} + +.easter_skin_demeter .easter_recipes .icon.ingredient8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/ingredients/ingredients_00b2098.png) no-repeat -342px -337px; + width: 44px; + height: 38px; +} + +.easter_skin_demeter .easter_recipes .filters_box { + top: 200px; + padding: 20px 0 0 9px; + left: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1069px -227px; + width: 113px; + height: 304px; + width: 104px; +} + +.easter_skin_demeter .easter_recipes .filters_box .title { + position: absolute; + top: -70px; + margin: 0; + height: 85px; +} + +.easter_skin_demeter .easter_recipes .filters_box .num_selected { + text-align: right; + color: #824101; + font-size: 13px; + font-weight: 700; + padding-right: 10px; +} + +.easter_skin_demeter .easter_recipes .top_filters { + top: 53px; + left: 155px; +} + +.easter_skin_demeter .easter_recipes .scroll_gradient { + left: 132px; + right: 77px; +} + +.easter_skin_demeter .easter_recipes .single_recipe_box, +.easter_skin_demeter .easter_recipes .single_recipe_box.full { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1184px -404px; + width: 86px; + height: 85px; +} + +.easter_skin_demeter .easter_recipes .button_brew { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1238px -755px; + width: 48px; + height: 48px; +} + +.easter_skin_demeter .easter_recipes .button_brew.enabled:active, +.easter_skin_demeter .easter_recipes .button_brew.enabled:hover, +.easter_skin_demeter .easter_recipes .button_brew:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1213px -803px; + width: 48px; + height: 48px; +} + +.easter_skin_demeter .easter_recipes .btn_buy_recipe { + top: 17px; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.easter_skin_demeter .easter_recipes .easter_button .buy_recipe_button_bg-tile>div { + margin: 0 0 0 16px; +} + +.easter_skin_demeter .easter_recipes .scroll_gradient { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -274px -870px; + width: 572px; + height: 27px; + top: 101px; +} + +.easter_skin_demeter .easter_recipes .scroll_gradient_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -557px -913px; + width: 572px; + height: 27px; + left: 132px; +} + +.easter_skin_demeter .easter_recipes .recipes_group .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -475px -624px; + width: 533px; + height: 91px; +} + +.easter_skin_demeter .easter_recipes .recipes_group .border_left { + top: -1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1294px 0; + width: 4px; + height: 653px; +} + +.easter_skin_demeter .easter_recipes .recipes_group .border_right { + top: -1px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1290px 0; + width: 4px; + height: 653px; +} + +.easter_skin_demeter .easter_recipes .recipes_group .footer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -475px -771px; + width: 533px; + height: 35px; +} + +.easter_skin_demeter .easter_recipes .recipes_group .result { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1270px -404px; + width: 14px; + height: 23px; + margin-top: 32px; +} + +.easter_skin_demeter .easter_recipes .recipes_group .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1250px -555px; + width: 21px; + height: 21px; + margin-top: 32px; +} + +.easter_skin_demeter .easter_recipes .recipes_group .equals { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/sprite_images/demeter_7a7f383.png) no-repeat -1270px -427px; + width: 15px; + height: 13px; + margin-top: 37px; +} + +.easter_skin_demeter .easter_recipes .recipes_group .header .power_icon60x60 { + top: 16px; + left: 26px; +} + +.easter_skin_demeter .easter_collect_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/bg_awarding_7e059fb.jpg) no-repeat 0 0; + width: 601px; + height: 497px; +} + +.easter_skin_demeter .easter_collect_container p { + padding: 10px 70px 0 70px; + text-shadow: initial; +} + +.easter_skin_demeter .easter_collect_container .single_recipe_box .easter_ingredient { + margin: 24px auto 0 auto; +} + +.column_window.easter_end_interstitial .easter_skin_demeter.welcome_window_container, +.column_window.easter_welcome .easter_skin_demeter.welcome_window_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/crafting/demeter/single_images/intersticial_bg_4aff4e1.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.column_window.easter_end_interstitial .easter_skin_demeter.welcome_window_container .guide, +.column_window.easter_welcome .easter_skin_demeter.welcome_window_container .guide { + background: 0 0; +} + +.advent_event_icon71x71 { + width: 71px; + height: 70px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/event_icon_dark_71x71_72cb531.png) no-repeat; +} + +.campaign_event_icon85x85 { + width: 85px; + height: 94px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/event_icon_dark_85x85_ec693f4.png) no-repeat; +} + +.nwot_event_icon85x85 { + width: 85px; + height: 94px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/event_icon_dark_85x85_5be02c8.png) no-repeat; +} + +.happening_large_icon_container #happening_large_icon.advent { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -916px -692px; + width: 95px; + height: 93px; + margin-bottom: -8px; +} + +.happening_large_icon_container #happening_large_icon.advent.with_countdown:hover, +.happening_large_icon_container #happening_large_icon.advent:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -563px -963px; + width: 95px; + height: 93px; +} + +.happening_large_icon_container #happening_large_icon.advent .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -464px -1095px; + width: 100px; + height: 100px; + bottom: -1px; + left: -3px; +} + +.dialog.advent .window_content, +.dialog.advent_end_interstitial .window_content, +.dialog.advent_welcome .window_content { + padding: 0; +} + +.welcome_window_container.advent_end_interstitial, +.welcome_window_container.advent_welcome { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/intersticial_bg_04b82e7.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.advent .advent_content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/advent_background_213b1f8.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.advent_content .decorations { + position: absolute; + width: 420px; + height: 530px; + overflow: hidden; +} + +.advent_content .decorations .deco { + position: absolute; + z-index: 2; +} + +.advent_content .decorations .pin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -906px -963px; + width: 40px; + height: 55px; + position: absolute; +} + +.advent_content .decorations .deco { + display: none; +} + +.advent_content .decorations .deco.show_deco { + display: block; +} + +.advent_content .decorations .pin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -866px -963px; + width: 40px; + height: 57px; + opacity: 0; + right: auto; + top: auto; + left: auto; + bottom: auto; + cursor: default; + -webkit-transition: opacity .5s; + -moz-transition: opacity .5s; + -ms-transition: opacity .5s; + transition: opacity .5s; + z-index: 4; +} + +.advent_content:hover .decorations .pin { + opacity: 1; +} + +.advent_content .decorations .pin.buy_spin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -564px -1095px; + width: 38px; + height: 57px; +} + +.advent_content .decorations .pin.collect_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -325px -789px; + width: 41px; + height: 54px; +} + +.advent_content .decorations .pin.current_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -906px -963px; + width: 40px; + height: 55px; +} + +.advent_content .decorations .pin.no_more_spins { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -826px -963px; + width: 40px; + height: 57px; +} + +.advent_content .decorations .pin .clickable_box { + position: absolute; + top: 0; + left: 3px; + width: 29px; + height: 30px; + z-index: 2; + opacity: .5; +} + +.advent_content .decorations .pin .clickable_box .day_number { + opacity: 1; +} + +.advent_content .decorations .pin .day_number { + position: absolute; + top: 0; + left: 3px; + width: 29px; + height: 30px; + text-align: center; + padding-top: 9px; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + z-index: 1; + font-size: 11px; +} + +.advent_content .decorations .pin.buy_spin .clickable_box, +.advent_content .decorations .pin.collect_reward .clickable_box, +.advent_content .decorations .pin.current_day .clickable_box, +.advent_content .decorations .pin.no_more_spins .clickable_box { + cursor: pointer; +} + +.advent_content .decorations .pin.buy_spin .day_number, +.advent_content .decorations .pin.collect_reward .day_number, +.advent_content .decorations .pin.current_day .day_number, +.advent_content .decorations .pin.no_more_spins .day_number { + cursor: pointer; +} + +.advent_content .decorations .pin.buy_spin .hover_glow, +.advent_content .decorations .pin.collect_reward .hover_glow, +.advent_content .decorations .pin.current_day .hover_glow, +.advent_content .decorations .pin.no_more_spins .hover_glow { + width: 50px; + height: 50px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1297px -685px; + width: 53px; + height: 55px; + position: absolute; + top: -11px; + left: -9px; + display: none; +} + +.advent_content .decorations .pin.buy_spin .hover_glow.selected, +.advent_content .decorations .pin.collect_reward .hover_glow.selected, +.advent_content .decorations .pin.current_day .hover_glow.selected, +.advent_content .decorations .pin.no_more_spins .hover_glow.selected { + display: block; +} + +.advent_content .decorations .pin.buy_spin:hover .hover_glow, +.advent_content .decorations .pin.collect_reward:hover .hover_glow, +.advent_content .decorations .pin.current_day:hover .hover_glow, +.advent_content .decorations .pin.no_more_spins:hover .hover_glow { + display: block; +} + +.advent_content .decorations .pin_1 { + left: 265px; + top: 272px; +} + +.advent_content .decorations .pin_2 { + left: 340px; + top: 42px; +} + +.advent_content .decorations .pin_3 { + left: 41px; + top: 144px; +} + +.advent_content .decorations .pin_4 { + left: 297px; + top: 193px; +} + +.advent_content .decorations .pin_5 { + left: 309px; + top: 132px; +} + +.advent_content .decorations .pin_6 { + left: 311px; + top: 313px; +} + +.advent_content .decorations .pin_7 { + left: 314px; + top: 392px; +} + +.advent_content .decorations .pin_8 { + left: 111px; + top: 289px; +} + +.advent_content .decorations .pin_9 { + left: 262px; + top: 412px; +} + +.advent_content .decorations .pin_10 { + left: 178px; + top: 421px; +} + +.advent_content .decorations .pin_11 { + left: 90px; + top: 358px; +} + +.advent_content .decorations .pin_12 { + left: 119px; + top: 423px; +} + +.advent_content .decorations .pin_13 { + left: 79px; + top: 439px; +} + +.advent_content .decorations .pin_14 { + left: 76px; + top: 130px; +} + +.advent_content .decorations .pin_15 { + left: 119px; + top: 168px; +} + +.advent_content .decorations .pin_16 { + left: 263px; + top: 163px; +} + +.advent_content .decorations .pin_17 { + left: 209px; + top: 199px; +} + +.advent_content .decorations .pin_18 { + left: 90px; + top: 194px; +} + +.advent_content .decorations .pin_19 { + left: 154px; + top: 199px; +} + +.advent_content .decorations .pin_20 { + left: 173px; + top: 269px; +} + +.advent_content .decorations .pin_21 { + left: 145px; + top: 332px; +} + +.advent_content .decorations .pin_22 { + left: 178px; + top: 314px; +} + +.advent_content .decorations .pin_23 { + left: 232px; + top: 440px; +} + +.advent_content .decorations .pin_24 { + left: 25px; + top: 242px; +} + +.advent_content .decorations .deco_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -333px -1095px; + width: 131px; + height: 103px; + left: 210px; + top: 281px; +} + +.advent_content .decorations .deco_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1157px -593px; + width: 140px; + height: 152px; + left: 270px; + top: 26px; +} + +.advent_content .decorations .deco_2_part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -916px -527px; + width: 106px; + height: 165px; + left: -6px; + top: 56px; +} + +.advent_content .decorations .deco_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -509px; + width: 302px; + height: 84px; + left: 40px; + top: 162px; +} + +.advent_content .decorations .deco_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -635px -527px; + width: 281px; + height: 258px; + left: 57px; + top: 44px; +} + +.advent_content .decorations .deco_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -448px; + width: 68px; + height: 53px; + left: 275px; + top: 176px; +} + +.advent_content .decorations .deco_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px 0; + width: 92px; + height: 159px; + left: 295px; + top: 294px; +} + +.advent_content .decorations .deco_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -590px; + width: 73px; + height: 83px; + left: 278px; + top: 411px; +} + +.advent_content .decorations .deco_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 -527px; + width: 325px; + height: 317px; + left: -7px; + top: 211px; +} + +.advent_content .decorations .deco_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -673px; + width: 88px; + height: 67px; + left: 218px; + top: 439px; +} + +.advent_content .decorations .deco_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -267px; + width: 53px; + height: 43px; + left: 152px; + top: 460px; +} + +.advent_content .decorations .deco_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1157px -745px; + width: 56px; + height: 38px; + left: 62px; + top: 399px; +} + +.advent_content .decorations .deco_12 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -409px -963px; + width: 154px; + height: 93px; + left: 42px; + top: 439px; +} + +.advent_content .decorations .deco_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1297px -637px; + width: 62px; + height: 48px; + left: 48px; + top: 475px; +} + +.advent_content .decorations .deco_14 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -487px; + width: 65px; + height: 103px; + left: 53px; + top: 162px; +} + +.advent_content .decorations .deco_15 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -388px; + width: 66px; + height: 60px; + left: 86px; + top: 198px; +} + +.advent_content .decorations .deco_16 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -398px; + width: 84px; + height: 89px; + left: 221px; + top: 179px; +} + +.advent_content .decorations .deco_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -311px; + width: 91px; + height: 87px; + left: 164px; + top: 216px; +} + +.advent_content .decorations .deco_18 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -1184px; + width: 64px; + height: 62px; + left: 69px; + top: 223px; +} + +.advent_content .decorations .deco_19 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 -1095px; + width: 107px; + height: 152px; + left: 101px; + top: 183px; +} + +.advent_content .decorations .deco_20 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -410px -444px; + width: 99px; + height: 80px; + left: 129px; + top: 289px; +} + +.advent_content .decorations .deco_21 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -276px -963px; + width: 133px; + height: 131px; + left: 109px; + top: 327px; +} + +.advent_content .decorations .deco_22 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -509px -444px; + width: 106px; + height: 51px; + left: 125px; + top: 349px; +} + +.advent_content .decorations .deco_23 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -918px; + width: 107px; + height: 45px; + left: 184px; + top: 478px; +} + +.advent_content .decorations .deco_24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -159px; + width: 78px; + height: 152px; + left: 6px; + top: 266px; +} + +.advent_content .wheel_of_fortune { + position: absolute; + top: 0; + right: 10px; + display: none; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 0; + width: 410px; + height: 527px; +} + +.advent_content .wheel_of_fortune .wheel_of_fortune.show { + display: block; +} + +.advent_content .wheel_of_fortune .slot, +.advent_content .wheel_of_fortune .slot .reward { + position: absolute; + overflow: hidden; +} + +.advent_content .wheel_of_fortune .slot:not(.selected) { + background: 0 0; +} + +.advent_content .wheel_of_fortune .reward { + top: 50%; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.advent_content .wheel_of_fortune .slot_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -784px; + width: 138px; + height: 134px; + top: 20px; + right: 58px; +} + +.advent_content .wheel_of_fortune .slot_0 .reward { + margin: 6px 0 0 -15px; +} + +.advent_content .wheel_of_fortune .slot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -107px -1095px; + width: 113px; + height: 138px; + top: 132px; + right: 23px; +} + +.advent_content .wheel_of_fortune .slot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 -963px; + width: 138px; + height: 132px; + top: 246px; + right: 62px; +} + +.advent_content .wheel_of_fortune .slot_2 .reward { + margin: -1px 0 0 -9px; +} + +.advent_content .wheel_of_fortune .slot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -138px -963px; + width: 138px; + height: 132px; + top: 247px; + left: 63px; +} + +.advent_content .wheel_of_fortune .slot_3 .reward { + margin: -4px 0 0 12px; +} + +.advent_content .wheel_of_fortune .slot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -220px -1095px; + width: 113px; + height: 138px; + top: 130px; + left: 22px; + z-index: 3; +} + +.advent_content .wheel_of_fortune .slot_4 .reward { + margin-left: 4px; +} + +.advent_content .wheel_of_fortune .slot_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1180px -784px; + width: 138px; + height: 134px; + top: 20px; + left: 59px; +} + +.advent_content .wheel_of_fortune .slot_5 .reward { + margin: 6px 0 0 16px; +} + +.advent_content.has_hero_reward .advisors_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -688px -844px; + width: 344px; + height: 119px; +} + +.advent_content.has_hero_reward .advisors_box.has_all_shards { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px 0; + width: 344px; + height: 119px; +} + +.advent_content.has_hero_reward .advisors_overlay .advisors_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -410px 0; + width: 632px; + height: 260px; +} + +.advent_content.has_hero_reward .advisors_overlay .advisors_big>h3 { + display: inline-block; + margin-top: 12px; + width: 220px; +} + +.advent_content .button_wheel { + position: absolute; + top: 162px; + left: 170px; + cursor: pointer; +} + +.advent_content .button_wheel.spin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -119px; + width: 74px; + height: 74px; +} + +.advent_content .button_wheel.spin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -193px; + width: 74px; + height: 74px; +} + +.advent_content .button_wheel.spin:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1310px -314px; + width: 74px; + height: 74px; +} + +.advent_content .button_wheel.stop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -962px; + width: 74px; + height: 74px; +} + +.advent_content .button_wheel.stop:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -1036px; + width: 74px; + height: 74px; +} + +.advent_content .button_wheel.stop:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -1110px; + width: 74px; + height: 74px; +} + +.advent_content .button_wheel.spin_for_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -740px; + width: 74px; + height: 74px; +} + +.advent_content .button_wheel.spin_for_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -814px; + width: 74px; + height: 74px; +} + +.advent_content .button_wheel.spin_for_gold:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1386px -888px; + width: 74px; + height: 74px; +} + +.advent_content .advent_content .btn_spin_for_gold, +.advent_content .btn_spin, +.advent_content .btn_stop { + display: none; +} + +.advent_content .gold_price_indicator { + position: relative; + top: 220px; + left: 50%; + -webkit-transform: translate(-50%,0); + -ms-transform: translate(-50%,0); + -o-transform: translate(-50%,0); + transform: translate(-50%,0); +} + +.advent_content .advisors_box { + position: absolute; + bottom: 8px; + right: 40px; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat 0 -844px; + width: 344px; + height: 119px; +} + +.advent_content .advisors_box.has_all_shards { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -344px -844px; + width: 344px; + height: 119px; +} + +.advent_content .advisors_box .has_shard .shard_icon_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1318px -784px; + width: 50px; + height: 50px; +} + +.advent_content .advisors_box .has_shard .shard_icon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1318px -834px; + width: 50px; + height: 50px; +} + +.advent_content .advisors_box .has_shard .shard_icon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -615px -444px; + width: 50px; + height: 50px; +} + +.advent_content .advisors_box .has_shard .shard_icon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -665px -444px; + width: 50px; + height: 50px; +} + +.advent_content .advisors_box .has_shard .shard_icon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -715px -444px; + width: 50px; + height: 50px; +} + +.advent_content .advisors_box .shard_box { + position: absolute; + width: 50px; + height: 115px; + bottom: 5px; +} + +.advent_content .shard_icon { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1344px -509px; + width: 42px; + height: 59px; +} + +.advent_content .wheel_of_fortune .slot_2 .shard_icon { + bottom: 55px; + left: 89px; +} + +.advent_content .wheel_of_fortune .slot_4 .shard_icon { + top: -10px; + left: 23px; +} + +.advent_content .advisors_box .shard_box .shard_icon { + display: none; + bottom: 61px; + left: -3px; +} + +.advent_content .advisors_box .shard_box.has_shard .shard_icon { + display: block; +} + +.advent_content .advisors_box.has_all_shards .shard_box .shadow { + display: none; +} + +.advent_content .advisors_box .shard_box_0 { + left: 32px; +} + +.advent_content .advisors_box .shard_box_1 { + left: 91px; +} + +.advent_content .advisors_box .shard_box_2 { + left: 150px; +} + +.advent_content .advisors_box .shard_box_3 { + left: 209px; +} + +.advent_content .advisors_box .shard_box_4 { + left: 268px; +} + +.advent_content .shard_icon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1344px -509px; + width: 42px; + height: 59px; +} + +.advent_content .shard_icon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -658px -963px; + width: 42px; + height: 59px; +} + +.advent_content .shard_icon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -700px -963px; + width: 42px; + height: 59px; +} + +.advent_content .shard_icon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -742px -963px; + width: 42px; + height: 59px; +} + +.advent_content .shard_icon_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -784px -963px; + width: 42px; + height: 59px; +} + +.advent_content .button_refill { + display: block; + margin: auto; + position: relative; + width: 100px; + top: 23px; +} + +.advent_content .refill_container { + width: 320px; + position: absolute; + top: 358px; + left: 50px; +} + +.advent_content .refill_container .inner_refill_container { + margin: auto; +} + +.advent_content .refill_container .banner { + display: inline-block; + position: absolute; +} + +.advent_content .refill_container .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/banner_left_7ca3bfb.png) no-repeat 0 0; + width: 106px; + height: 41px; + left: 17px; +} + +.advent_content .refill_container .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/banner_right_cf0f945.png) no-repeat 0 0; + width: 106px; + height: 41px; + right: 17px; +} + +.advent_content .refill_container .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/single_images/banner_middle_6cb3050.png) no-repeat 0 0; + width: 1px; + height: 41px; + width: auto; + left: 123px; + right: 123px; + padding-top: 7px; + height: 28px; + background-repeat: repeat-x; +} + +.advent_content .refill_container .refill_text { + color: #fc6; + font-weight: 400; + white-space: nowrap; + margin: auto; + position: relative; + text-align: center; + margin-top: -17px; +} + +.advent_content .refill_container .wheel_free_refill { + display: none; +} + +.advent_content .refill_container .wheel_free_refill.visible { + display: inline-block; +} + +.advent_content .snowball_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -325px -527px; + width: 310px; + height: 262px; + position: absolute; + top: 0; + left: 40px; + display: none; + opacity: 0; + -webkit-animation: fadeInOutIn 1.5s ease infinite; + -ms-animation: fadeInOutIn 1.5s ease infinite; + animation: fadeInOutIn 1.5s ease infinite; +} + +.advent_content .reward.transparent { + opacity: .5; +} + +.advent_content .reward_glow { + display: none; + position: absolute; + top: 142px; + left: 494px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px 0; + width: 119px; + height: 118px; + -webkit-animation: fadeInOutIn 3.5s ease infinite; + -ms-animation: fadeInOutIn 3.5s ease infinite; + animation: fadeInOutIn 3.5s ease infinite; +} + +.advent_content .animated_shard { + display: none; + position: absolute; + left: 611px; + top: 199px; + z-index: 5; +} + +.advent_content .animated_shard.shard_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -593px; + width: 115px; + height: 191px; +} + +.advent_content .animated_shard.shard_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -119px; + width: 134px; + height: 195px; +} + +.advent_content .animated_shard.shard_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1176px -119px; + width: 134px; + height: 195px; +} + +.advent_content .animated_shard.shard_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -314px; + width: 134px; + height: 195px; +} + +.advent_content .animated_shard.shard_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1176px -314px; + width: 134px; + height: 195px; +} + +.advent_content .animated_shard_4 { + display: none; + position: absolute; + left: 344px; + top: 52px; + z-index: 5; +} + +.advent_content .animated_shard_4.shard_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -593px; + width: 115px; + height: 191px; +} + +.advent_content .animated_shard_4.shard_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -119px; + width: 134px; + height: 195px; +} + +.advent_content .animated_shard_4.shard_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1176px -119px; + width: 134px; + height: 195px; +} + +.advent_content .animated_shard_4.shard_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1042px -314px; + width: 134px; + height: 195px; +} + +.advent_content .animated_shard_4.shard_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -1176px -314px; + width: 134px; + height: 195px; +} + +.advent_content .advisors_overlay { + position: absolute; + z-index: 10000; + top: 0; + left: 7px; + right: 7px; + bottom: 7px; + background-color: rgba(1,1,1,.8); + display: none; + color: #fc6; + text-align: center; +} + +.advent_content .advisors_overlay .advisors_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/advent/advent_deco_90c2ee3.png) no-repeat -410px -260px; + width: 598px; + height: 184px; + display: inline-block; +} + +.advent_content .advisors_overlay>h3 { + font-weight: 600; + margin: 60px 0 0 0; + padding: 0; + display: inline-block; + font-size: 16px; + line-height: 18px; +} + +.advent_content .advisors_overlay>h3:before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -348px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: -63px; + margin-top: -4px; +} + +.advent_content .advisors_overlay>h3:after { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -306px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: 23px; + margin-top: -4px; +} + +.advent_content .advisors_overlay .subheader { + color: #fc6; + font-size: 16px; + margin-bottom: 10px; +} + +.advent_content .advisors_overlay .descr { + display: inline-block; + width: 430px; +} + +.advent_content .advisors_overlay .btn_ok { + min-width: 100px; + margin-top: 20px; +} + +.advent_content .wheel_chance { + display: block; + z-index: 10; + position: absolute; + color: #fff; + text-shadow: 1px 1px #000; + font-size: smaller; + width: 30px; + text-align: center; +} + +.advent_content .wheel_chance_0 { + left: 228px; + top: 130px; +} + +.advent_content .wheel_chance_1 { + left: 260px; + top: 192px; +} + +.advent_content .wheel_chance_2 { + left: 228px; + top: 252px; +} + +.advent_content .wheel_chance_3 { + left: 155px; + top: 252px; +} + +.advent_content .wheel_chance_4 { + left: 120px; + top: 192px; +} + +.advent_content .wheel_chance_5 { + left: 155px; + top: 130px; +} + +.happening_large_icon_container #happening_large_icon.nwot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -667px -1153px; + width: 113px; + height: 125px; + margin-bottom: -8px; +} + +.happening_large_icon_container #happening_large_icon.nwot.with_countdown:hover, +.happening_large_icon_container #happening_large_icon.nwot:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -893px -1153px; + width: 113px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.nwot .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -780px -1153px; + width: 113px; + height: 125px; + left: 0; +} + +.nwot.welcome_window_container.advent_end_interstitial, +.nwot.welcome_window_container.advent_welcome { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/intersticial_bg_917ecdc.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.nwot.advent_end_interstitial .window_content, +.nwot.advent_welcome .window_content, +.nwot.dialog .window_content { + padding: 0; +} + +.nwot .advent_content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/nwot_background_d8f851b.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.nwot .advent_content .decorations { + position: absolute; + width: 420px; + height: 530px; +} + +.nwot .advent_content .decorations .deco { + position: absolute; + z-index: 8; +} + +.nwot .advent_content .decorations .pin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -989px -789px; + width: 40px; + height: 55px; + position: absolute; +} + +.nwot .advent_content .decorations .deco { + display: none; +} + +.nwot .advent_content .decorations .deco.show_deco { + display: block; +} + +.nwot .advent_content .decorations .pin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -995px -646px; + width: 40px; + height: 57px; + opacity: 0; + right: auto; + top: auto; + left: auto; + bottom: auto; + cursor: default; + -webkit-transition: opacity .5s; + -moz-transition: opacity .5s; + -ms-transition: opacity .5s; + transition: opacity .5s; + z-index: 20; +} + +.nwot .advent_content:hover .decorations .pin { + opacity: 1; +} + +.nwot .advent_content .decorations .pin.buy_spin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -989px -844px; + width: 38px; + height: 57px; +} + +.nwot .advent_content .decorations .pin.collect_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -955px -703px; + width: 41px; + height: 54px; +} + +.nwot .advent_content .decorations .pin.current_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -989px -789px; + width: 40px; + height: 55px; +} + +.nwot .advent_content .decorations .pin.no_more_spins { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -955px -646px; + width: 40px; + height: 57px; +} + +.nwot .advent_content .decorations .pin .clickable_box { + position: absolute; + top: 0; + left: 3px; + width: 29px; + height: 30px; + z-index: 2; +} + +.nwot .advent_content .decorations .pin .day_number { + position: absolute; + top: 0; + left: 3px; + width: 29px; + height: 30px; + text-align: center; + padding-top: 9px; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + z-index: 1; + font-size: 11px; +} + +.nwot .advent_content .decorations .pin.buy_spin .clickable_box, +.nwot .advent_content .decorations .pin.collect_reward .clickable_box, +.nwot .advent_content .decorations .pin.current_day .clickable_box, +.nwot .advent_content .decorations .pin.no_more_spins .clickable_box { + cursor: pointer; +} + +.nwot .advent_content .decorations .pin.buy_spin .day_number, +.nwot .advent_content .decorations .pin.collect_reward .day_number, +.nwot .advent_content .decorations .pin.current_day .day_number, +.nwot .advent_content .decorations .pin.no_more_spins .day_number { + cursor: pointer; +} + +.nwot .advent_content .decorations .pin.buy_spin .hover_glow, +.nwot .advent_content .decorations .pin.collect_reward .hover_glow, +.nwot .advent_content .decorations .pin.current_day .hover_glow, +.nwot .advent_content .decorations .pin.no_more_spins .hover_glow { + width: 50px; + height: 50px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1197px -941px; + width: 53px; + height: 55px; + position: absolute; + top: -11px; + left: -9px; + display: none; +} + +.nwot .advent_content .decorations .pin.buy_spin .hover_glow.selected, +.nwot .advent_content .decorations .pin.collect_reward .hover_glow.selected, +.nwot .advent_content .decorations .pin.current_day .hover_glow.selected, +.nwot .advent_content .decorations .pin.no_more_spins .hover_glow.selected { + display: block; +} + +.nwot .advent_content .decorations .pin.buy_spin:hover .hover_glow, +.nwot .advent_content .decorations .pin.collect_reward:hover .hover_glow, +.nwot .advent_content .decorations .pin.current_day:hover .hover_glow, +.nwot .advent_content .decorations .pin.no_more_spins:hover .hover_glow { + display: block; +} + +.nwot .advent_content .decorations .pin_1 { + left: 205px; + top: 7px; +} + +.nwot .advent_content .decorations .pin_2 { + left: 260px; + top: 11px; +} + +.nwot .advent_content .decorations .pin_3 { + left: 7px; + top: 67px; +} + +.nwot .advent_content .decorations .pin_4 { + left: 78px; + top: 59px; +} + +.nwot .advent_content .decorations .pin_5 { + left: 191px; + top: 68px; +} + +.nwot .advent_content .decorations .pin_6 { + left: 6px; + top: 121px; +} + +.nwot .advent_content .decorations .pin_7 { + left: 76px; + top: 126px; +} + +.nwot .advent_content .decorations .pin_8 { + left: 270px; + top: 116px; +} + +.nwot .advent_content .decorations .pin_9 { + left: 305px; + top: 102px; +} + +.nwot .advent_content .decorations .pin_10 { + left: 78px; + top: 206px; +} + +.nwot .advent_content .decorations .pin_11 { + left: 177px; + top: 183px; +} + +.nwot .advent_content .decorations .pin_12 { + left: 230px; + top: 188px; +} + +.nwot .advent_content .decorations .pin_13 { + left: 282px; + top: 223px; +} + +.nwot .advent_content .decorations .pin_14 { + z-index: 31; + left: 314px; + top: 201px; +} + +.nwot .advent_content .decorations .pin_15 { + left: 31px; + top: 247px; +} + +.nwot .advent_content .decorations .pin_16 { + left: 5px; + top: 312px; +} + +.nwot .advent_content .decorations .pin_17 { + left: 54px; + top: 296px; +} + +.nwot .advent_content .decorations .pin_18 { + left: 17px; + top: 432px; +} + +.nwot .advent_content .decorations .pin_19 { + left: 127px; + top: 423px; +} + +.nwot .advent_content .decorations .pin_20 { + left: 216px; + top: 435px; +} + +.nwot .advent_content .decorations .pin_21 { + left: 271px; + top: 393px; +} + +.nwot .advent_content .decorations .pin_22 { + z-index: 31; + left: 317px; + top: 381px; +} + +.nwot .advent_content .decorations .pin_23 { + z-index: 31; + left: 348px; + top: 339px; +} + +.nwot .advent_content .decorations .pin_24 { + left: 137px; + top: 113px; +} + +.nwot .advent_content .decorations .deco_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1126px -941px; + width: 71px; + height: 56px; + left: 202px; + top: 40px; +} + +.nwot .advent_content .decorations .deco_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -622px; + width: 66px; + height: 133px; + left: 223px; + top: 27px; +} + +.nwot .advent_content .decorations .deco_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -1052px; + width: 77px; + height: 76px; + left: 0; + top: 80px; +} + +.nwot .advent_content .decorations .deco_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -301px -908px; + width: 136px; + height: 93px; + left: 71px; + top: 91px; +} + +.nwot .advent_content .decorations .deco_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -1276px; + width: 73px; + height: 64px; + left: 186px; + top: 84px; +} + +.nwot .advent_content .decorations .deco_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -947px; + width: 75px; + height: 105px; + left: 0; + top: 117px; +} + +.nwot .advent_content .decorations .deco_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px 0; + width: 102px; + height: 197px; + left: 71px; + top: 11px; +} + +.nwot .advent_content .decorations .deco_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -780px -444px; + width: 53px; + height: 70px; + left: 262px; + top: 159px; +} + +.nwot .advent_content .decorations .deco_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px -941px; + width: 66px; + height: 62px; + left: 296px; + top: 144px; +} + +.nwot .advent_content .decorations .deco_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -197px; + width: 67px; + height: 198px; + left: 67px; + top: 178px; +} + +.nwot .advent_content .decorations .deco_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -1344px; + width: 110px; + height: 145px; + left: 135px; + top: 175px; +} + +.nwot .advent_content .decorations .deco_12 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -523px; + width: 102px; + height: 99px; + left: 200px; + top: 179px; +} + +.nwot .advent_content .decorations .deco_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -185px; + width: 131px; + height: 191px; + left: 236px; + top: 241px; +} + +.nwot .advent_content .decorations .deco_14 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px -563px; + width: 241px; + height: 186px; + left: 151px; + top: 120px; +} + +.nwot .advent_content .decorations .deco_15 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -755px; + width: 87px; + height: 100px; + left: 24px; + top: 232px; +} + +.nwot .advent_content .decorations .deco_16 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px 0; + width: 136px; + height: 185px; + left: 0; + top: 342px; +} + +.nwot .advent_content .decorations .deco_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px -749px; + width: 166px; + height: 192px; + left: 0; + top: 242px; +} + +.nwot .advent_content .decorations .deco_18 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -855px; + width: 93px; + height: 92px; + left: 0; + top: 435px; +} + +.nwot .advent_content .decorations .deco_19 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px -280px; + width: 236px; + height: 283px; + left: 0; + top: 245px; + z-index: 9; +} + +.nwot .advent_content .decorations .deco_20 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -1007px; + width: 200px; + height: 146px; + left: 133px; + top: 381px; + z-index: 9; +} + +.nwot .advent_content .decorations .deco_21 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -395px; + width: 99px; + height: 128px; + left: 250px; + top: 332px; + z-index: 9; +} + +.nwot .advent_content .decorations .deco_22 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -200px -1007px; + width: 230px; + height: 117px; + left: 258px; + top: 411px; + z-index: 9; +} + +.nwot .advent_content .decorations .deco_23 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1060px 0; + width: 267px; + height: 280px; + left: 218px; + top: 219px; +} + +.nwot .advent_content .decorations .deco_24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -527px; + width: 301px; + height: 480px; + left: 0; + top: 0; +} + +.nwot .advent_content .wheel_of_fortune { + position: absolute; + top: 0; + right: 10px; + display: none; + z-index: 20; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 0; + width: 410px; + height: 527px; +} + +.nwot .advent_content .wheel_of_fortune .advent_content .wheel_of_fortune.show { + display: block; +} + +.nwot .advent_content .wheel_of_fortune .slot, +.nwot .advent_content .wheel_of_fortune .slot .reward { + position: absolute; + overflow: hidden; +} + +.nwot .advent_content .wheel_of_fortune .slot:not(.selected) { + background: 0 0; +} + +.nwot .advent_content .wheel_of_fortune .reward { + top: 50%; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.nwot .advent_content .wheel_of_fortune .slot_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -115px -1153px; + width: 138px; + height: 134px; + top: 20px; + right: 58px; +} + +.nwot .advent_content .wheel_of_fortune .slot_0 .reward { + margin: 6px 0 0 -15px; +} + +.nwot .advent_content .wheel_of_fortune .slot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -110px -1344px; + width: 113px; + height: 138px; + top: 132px; + right: 23px; +} + +.nwot .advent_content .wheel_of_fortune .slot_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -391px -1153px; + width: 138px; + height: 132px; + top: 246px; + right: 62px; +} + +.nwot .advent_content .wheel_of_fortune .slot_2 .reward { + margin: -1px 0 0 -9px; +} + +.nwot .advent_content .wheel_of_fortune .slot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -529px -1153px; + width: 138px; + height: 132px; + top: 247px; + left: 63px; +} + +.nwot .advent_content .wheel_of_fortune .slot_3 .reward { + margin: -4px 0 0 12px; +} + +.nwot .advent_content .wheel_of_fortune .slot_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -223px -1344px; + width: 113px; + height: 138px; + top: 130px; + left: 22px; +} + +.nwot .advent_content .wheel_of_fortune .slot_4 .reward { + margin-left: 4px; +} + +.nwot .advent_content .wheel_of_fortune .slot_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -253px -1153px; + width: 138px; + height: 134px; + top: 20px; + left: 59px; +} + +.nwot .advent_content .wheel_of_fortune .slot_5 .reward { + margin: 6px 0 0 16px; +} + +.nwot .advent_content .button_wheel { + position: absolute; + top: 162px; + left: 170px; + cursor: pointer; +} + +.nwot .advent_content .button_wheel.spin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -558px -444px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .button_wheel.spin:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -632px -444px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .button_wheel.spin:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -706px -444px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .button_wheel.stop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1226px -823px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .button_wheel.stop:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -410px -444px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .button_wheel.stop:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -484px -444px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .button_wheel.spin_for_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -1128px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .button_wheel.spin_for_gold:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1463px -1202px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .button_wheel.spin_for_gold:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1226px -749px; + width: 74px; + height: 74px; +} + +.nwot .advent_content .btn_spin, +.nwot .advent_content .btn_spin_for_gold, +.nwot .advent_content .btn_stop { + display: none; +} + +.nwot .advent_content .gold_price_indicator { + position: relative; + top: 220px; + left: 50%; + -webkit-transform: translate(-50%,0); + -ms-transform: translate(-50%,0); + -o-transform: translate(-50%,0); + transform: translate(-50%,0); +} + +.nwot .advent_content .advisors_box { + position: absolute; + bottom: 8px; + right: 40px; + overflow: hidden; + z-index: 20; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -611px -527px; + width: 344px; + height: 119px; +} + +.nwot .advent_content .advisors_box.has_all_shards { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -611px -646px; + width: 344px; + height: 119px; +} + +.nwot .advent_content .advisors_box .has_shard .shard_icon_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1250px -941px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .advisors_box .has_shard .shard_icon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1008px -260px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .advisors_box .has_shard .shard_icon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1008px -310px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .advisors_box .has_shard .shard_icon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1008px -360px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .advisors_box .has_shard .shard_icon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -833px -444px; + width: 50px; + height: 50px; +} + +.nwot .advent_content.has_hero_reward .advisors_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -301px -789px; + width: 344px; + height: 119px; +} + +.nwot .advent_content.has_hero_reward .advisors_box.has_all_shards { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -645px -789px; + width: 344px; + height: 119px; +} + +.nwot .advent_content.has_hero_reward .advisors_overlay .advisors_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -410px 0; + width: 650px; + height: 260px; +} + +.nwot .advent_content .advisors_box .shard_box { + position: absolute; + width: 50px; + height: 115px; + bottom: 5px; +} + +.nwot .advent_content .shard_icon { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -883px -444px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .wheel_of_fortune .slot_2 .shard_icon { + bottom: 55px; + left: 89px; +} + +.nwot .advent_content .wheel_of_fortune .slot_4 .shard_icon { + top: -10px; + left: 23px; +} + +.nwot .advent_content .advisors_box .shard_box .shard_icon { + display: none; + bottom: 61px; + left: -3px; +} + +.nwot .advent_content .advisors_box .shard_box.has_shard .shard_icon { + display: block; +} + +.nwot .advent_content .advisors_box.has_all_shards .shard_box .shadow { + display: none; +} + +.nwot .advent_content .advisors_box .shard_box_0 { + left: 32px; +} + +.nwot .advent_content .advisors_box .shard_box_1 { + left: 91px; +} + +.nwot .advent_content .advisors_box .shard_box_2 { + left: 150px; +} + +.nwot .advent_content .advisors_box .shard_box_3 { + left: 209px; +} + +.nwot .advent_content .advisors_box .shard_box_4 { + left: 268px; +} + +.nwot .advent_content .shard_icon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -883px -444px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .shard_icon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -933px -444px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .shard_icon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -983px -444px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .shard_icon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -955px -527px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .shard_icon_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1005px -527px; + width: 50px; + height: 50px; +} + +.nwot .advent_content .countdown_box { + z-index: 20; +} + +.nwot .advent_content .button_refill { + display: block; + margin: auto; + position: relative; + width: 100px; + top: 23px; +} + +.nwot .advent_content .refill_container { + width: 320px; + position: absolute; + top: 358px; + left: 50px; +} + +.nwot .advent_content .refill_container .inner_refill_container { + margin: auto; +} + +.nwot .advent_content .refill_container .banner { + display: inline-block; + position: absolute; +} + +.nwot .advent_content .refill_container .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/banner_left_f289b9a.png) no-repeat 0 0; + width: 106px; + height: 41px; + left: 17px; +} + +.nwot .advent_content .refill_container .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/banner_right_bb10184.png) no-repeat 0 0; + width: 106px; + height: 41px; + right: 17px; +} + +.nwot .advent_content .refill_container .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/single_images/banner_middle_16c7784.png) no-repeat 0 0; + width: 1px; + height: 41px; + width: auto; + left: 123px; + right: 123px; + padding-top: 7px; + height: 28px; + background-repeat: repeat-x; +} + +.nwot .advent_content .refill_container .refill_text { + color: #fc6; + font-weight: 400; + white-space: nowrap; + margin: auto; + position: relative; + text-align: center; + margin-top: -17px; +} + +.nwot .advent_content .snowball_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -301px -527px; + width: 310px; + height: 262px; + position: absolute; + top: 0; + left: 40px; + display: none; + opacity: 0; + -webkit-animation: fadeInOutIn 1.5s ease infinite; + -ms-animation: fadeInOutIn 1.5s ease infinite; + animation: fadeInOutIn 1.5s ease infinite; +} + +.nwot .advent_content .reward.transparent { + opacity: .5; +} + +.nwot .advent_content .reward_glow { + display: none; + position: absolute; + top: 142px; + left: 494px; + z-index: 20; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px 0; + width: 119px; + height: 118px; + -webkit-animation: fadeInOutIn 3.5s ease infinite; + -ms-animation: fadeInOutIn 3.5s ease infinite; + animation: fadeInOutIn 3.5s ease infinite; +} + +.nwot .advent_content .animated_shard { + display: none; + position: absolute; + left: 611px; + top: 199px; + z-index: 21; +} + +.nwot .advent_content .animated_shard.shard_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -376px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard.shard_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -567px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard.shard_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -758px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard.shard_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -949px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard.shard_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -1153px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard_4 { + display: none; + position: absolute; + left: 344px; + top: 52px; + z-index: 21; +} + +.nwot .advent_content .animated_shard_4.shard_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -376px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard_4.shard_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -567px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard_4.shard_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -758px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard_4.shard_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -1327px -949px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .animated_shard_4.shard_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat 0 -1153px; + width: 115px; + height: 191px; +} + +.nwot .advent_content .advisors_overlay { + position: absolute; + z-index: 40; + top: 0; + left: 7px; + right: 7px; + bottom: 7px; + background-color: rgba(1,1,1,.8); + display: none; + color: #fc6; + text-align: center; +} + +.nwot .advent_content .advisors_overlay .advisors_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/nwot/nwot_deco_cd86d73.png) no-repeat -410px -260px; + width: 598px; + height: 184px; + display: inline-block; +} + +.nwot .advent_content .advisors_overlay h3 { + font-weight: 600; + margin: 60px 0 0 0; + padding: 0; + display: inline-block; + font-size: 16px; + line-height: 18px; +} + +.nwot .advent_content .advisors_overlay h3:before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -348px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: -63px; + margin-top: -4px; +} + +.nwot .advent_content .advisors_overlay h3:after { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -306px -300px; + width: 42px; + height: 26px; + position: absolute; + margin-left: 23px; + margin-top: -4px; +} + +.nwot .advent_content .advisors_overlay .subheader { + color: #fc6; + font-size: 16px; + margin-bottom: 10px; +} + +.nwot .advent_content .advisors_overlay .descr { + display: inline-block; + width: 430px; +} + +.nwot .advent_content .advisors_overlay .btn_ok { + min-width: 100px; + margin-top: 20px; +} + +.layout_game_events_items .mermaid { + position: absolute; + top: 745px; + left: 608px; + z-index: 16; + cursor: pointer; + width: 82px; + height: 71px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/valentinesday/mermaid_animation.png) no-repeat 0 0; + -webkit-animation: valentinesday_sprites-animation 5.1s steps(50) infinite; + -ms-animation: valentinesday_sprites-animation 5.1s steps(50) infinite; + animation: valentinesday_sprites-animation 5.1s steps(50) infinite; + display: none; +} + +.layout_game_events_items .mermaid:hover .mouseover_element { + display: block; +} + +.layout_game_events_items .mermaid .mouseover_element { + position: absolute; + top: -34px; + width: 56px; + height: 75px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/valentinesday/mermaid_mouseover.png) no-repeat 0 0; + -webkit-animation: valentinesday_mermaid_mouseover_sprites-animation 2.3s steps(22) infinite; + -ms-animation: valentinesday_mermaid_mouseover_sprites-animation 2.3s steps(22) infinite; + animation: valentinesday_mermaid_mouseover_sprites-animation 2.3s steps(22) infinite; + display: none; +} + +.valentine_welcome.column_window .window_content, +.valentinesday_collect.column_window .window_content { + padding: 0; +} + +.valentine_welcome.column_window .welcome_window_container, +.valentinesday_collect.column_window .welcome_window_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/valentinesday/bg_instersticial_welcome.jpg) no-repeat 0 0; +} + +.valentine_welcome.column_window .welcome_window_container .guide, +.valentinesday_collect.column_window .welcome_window_container .guide { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/valentinesday/mermaid.png) no-repeat 0 0; + width: 406px; + height: 371px; + position: relative; + z-index: 10; +} + +.valentine_welcome.column_window .yellowBox { + left: 300px; +} + +.valentinesday_collect.column_window .welcome_window_container { + background-position: 50% 0; +} + +.valentinesday_collect .description { + height: 140px; + overflow: auto; +} + +.valentinesday_collect .your_reward { + font-size: 14px; + font-weight: 700; + text-align: center; +} + +.valentinesday_collect .small_divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/valentinesday/line_horizontal.png) no-repeat 0 0; + height: 1px; + width: 158px; + margin: 0 auto 3px auto; +} + +.valentinesday_collect .scroll { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/valentinesday/scroll.png) no-repeat 0 0; + width: 358px; + height: 85px; + padding-top: 13px; + text-align: center; +} + +.valentinesday_collect .power_icon60x60 { + cursor: pointer; +} + +.advisors_container { + position: relative; +} + +.advisors_container .game_border { + overflow: visible; +} + +.advisors_container .top_description { + position: relative; + height: 35px; + padding-top: 8px; + text-align: center; +} + +.advisors_container .checkbox_description { + position: relative; + top: 14px; + text-align: center; +} + +.advisors_container .advisors_box { + position: relative; + z-index: 1; +} + +.advisors_container .advisors_box .advisor_box { + width: 150px; + height: 428px; + float: left; + margin-left: 2px; +} + +.advisors_container .advisors_box .advisor_box .advisors150x335 { + cursor: pointer; + height: 282px; +} + +.advisors_container .advisors_box .advisor_box .extension_box { + position: relative; + text-align: center; + width: 150px; + height: 120px; + background: url(https://gpfr.innogamescdn.com/images/game/windows/premium/bg_bottom.jpg) repeat-y 0 0; +} + +.advisors_container .advisors_box .advisor_box .extension_box .duration { + display: inline-block; + position: relative; + font-size: 13px; + line-height: 30px; + color: #000; + padding-left: 34px; + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat; + font-weight: 700; +} + +.advisors_container .advisors_box .advisor_box .extension_box .expiration_data { + padding: 5px; +} + +.advisors_container .advisors_box .advisor_box .advantages { + position: absolute; + bottom: 0; + left: 0; +} + +.advisors_container .advisors_box .advisor_box .advantage { + background: url(https://gpfr.innogamescdn.com/images/game/windows/premium/bg_bonus.png) no-repeat 0 0; + width: 141px; + height: 29px; + padding-left: 8px; + margin-bottom: 1px; + display: table; +} + +.advisors_container .advisors_box .advisor_box .feature_icons { + color: #fff; + text-align: center; + font-weight: 400; + display: table-cell; + vertical-align: middle; +} + +.advisors_container .advisors_box .advisor_box .feature_icons.attack_planner { + padding-bottom: 0; +} + +.advisors_container .advisors_box .advisor_box .feature_icons.big { + font-size: 18px; + line-height: 29px; + padding-left: 8px; + width: 115px; + text-align: right; +} + +.advisors_container .advisors_box .advisor_box .feature_icons.small { + font-size: 11px; + line-height: 12px; + padding-left: 31px; + width: 92px; +} + +.advisors_container .extend_button { + background: url(https://gpfr.innogamescdn.com/images/game/windows/premium/extend_buttons.png) no-repeat -122px 0; + width: 122px; + height: 42px; + cursor: pointer; + font-size: 13px; + line-height: 13px; + bottom: 5px; + position: absolute; + left: 5px; +} + +.advisors_container .extend_button.disabled { + cursor: default; +} + +.advisors_container .extend_button:hover { + background-position: -122px -42px; +} + +.advisors_container .extend_button:active { + background-position: -122px -84px; +} + +.advisors_container .extend_button.disabled { + background-position: -122px -126px; +} + +.advisors_container .extend_button.free { + background-position: 0 0; +} + +.advisors_container .extend_button.free:hover { + background-position: 0 -42px; +} + +.advisors_container .extend_button.free:active { + background-position: 0 -84px; +} + +.advisors_container .extend_button.free.disabled { + background-position: 0 -126px; +} + +.advisors_container .extend_button .icon.gold { + width: 14px; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + display: inline-block; + position: relative; + top: 4px; + left: 1px; +} + +.advisors_container .extend_button .caption { + padding-top: 7px; + color: #fc6; + font-weight: 400; +} + +.advisors_container .extend_button .price { + font-weight: 700; + margin-top: -2px; + color: #fc6; +} + +.advisors_container .extend_button.free .price { + padding: 4px 0; + color: #fff; +} + +.advisors_container .cbx_extend_advisor { + position: absolute; + bottom: 5px; + right: -4px; +} + +.advisors_container .game_border_title { + overflow: visible; + z-index: 1; + position: absolute; + width: 137px; +} + +.advisors_container .game_border_title .game_border_line { + position: absolute; + bottom: -3px; + lefT: 0; + right: 0; + margin-top: 0; +} + +.advisors_container .game_border_line { + margin-top: 305px; +} + +.advisors_container .advisors150x335 { + position: absolute; + top: 26px; +} + +.classic_window.update_notification .window_content { + background: url(https://gpfr.innogamescdn.com/images/game/update_notification/background.png) no-repeat 0 0; + height: 510px; + width: 664px; + margin-left: 7px; +} + +.classic_window.update_notification .window_content .updated, +.classic_window.update_notification .window_content .updating { + position: absolute; + left: 85px; + top: 60px; +} + +.classic_window.update_notification .window_content .updating { + background: url(https://gpfr.innogamescdn.com/images/game/update_notification/maintenance.png) no-repeat 0 0; + width: 88px; + height: 78px; +} + +.classic_window.update_notification .window_content .updated { + background: url(https://gpfr.innogamescdn.com/images/game/update_notification/maintenance_finished.png) no-repeat 0 0; + width: 95px; + height: 85px; +} + +.classic_window.update_notification .window_content>.caption { + font-weight: 700; + text-align: center; + margin-top: 20px; +} + +.classic_window.update_notification .window_content .message { + position: absolute; + left: 200px; + top: 60px; + width: 400px; +} + +.classic_window.update_notification .window_content .btn_refresh { + position: absolute; + bottom: -50px; + left: 100px; +} + +.market_buttons .arrow_down { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -284px; + width: 29px; + height: 39px; +} + +.market_buttons .arrow_up { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -245px; + width: 29px; + height: 39px; +} + +.market_buttons .button_check_active_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -30px; + width: 47px; + height: 21px; +} + +.market_buttons .button_check_disabled_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -51px; + width: 47px; + height: 21px; +} + +.market_buttons .button_check_hover_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -72px; + width: 47px; + height: 21px; +} + +.market_buttons .button_check_idle_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -93px; + width: 47px; + height: 21px; +} + +.market_buttons .dropdown_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -114px; + width: 21px; + height: 22px; +} + +.market_buttons .dropdown_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -136px; + width: 21px; + height: 22px; +} + +.market_buttons .filter_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -158px; + width: 39px; + height: 29px; +} + +.market_buttons .filter_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -187px; + width: 39px; + height: 29px; +} + +.market_buttons .filter_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -216px; + width: 39px; + height: 29px; +} + +.market_buttons .greenarrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -15px; + width: 12px; + height: 15px; +} + +.market_buttons .orangearrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 0; + width: 12px; + height: 15px; +} + +.marketplace .info_icon { + display: inline-block; + vertical-align: middle; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; +} + +.marketplace.all_offers, +.marketplace.create_offer, +.marketplace.own_offers { + position: relative; + height: 508px; + padding: 10px; +} + +.marketplace .marketplace_window_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/market_e34fa9b.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + position: absolute; + right: 10px; + bottom: 10px; +} + +.marketplace .table-content .info_icon { + float: left; + margin-left: 10px; +} + +.marketplace .table-content .btn_delete { + float: right; + margin-right: 10px; + margin-top: 2px; +} + +.marketplace.all_offers table, +.marketplace.own_offers table { + border-spacing: 0; + border-collapse: collapse; + width: 100%; + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +.marketplace.all_offers th, +.marketplace.own_offers th { + background: url(https://gpfr.innogamescdn.com/images/game/border/header.png) repeat-x 0 0; + height: 28px; + border-bottom: 1px solid #000; + color: #fff; + padding: 0 2px; + text-align: center; +} + +.marketplace.all_offers tr, +.marketplace.own_offers tr { + height: 28px; + border-bottom: 1px solid #d0be97; + text-align: center; +} + +.marketplace.all_offers tr.premium_exchange, +.marketplace.own_offers tr.premium_exchange { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/premium_exchange/single_images/premium_exchange_highlight_33a4ada.png) no-repeat 0 0; + width: 739px; + height: 1px; + background-repeat: repeat; + height: 28px; +} + +.marketplace.all_offers tr:nth-child(even):not(.premium_exchange), +.marketplace.own_offers tr:nth-child(even):not(.premium_exchange) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.marketplace.all_offers td.right, +.marketplace.own_offers td.right { + text-align: right; +} + +.marketplace.all_offers td.left, +.marketplace.own_offers td.left { + text-align: left; +} + +.marketplace.all_offers col.separator, +.marketplace.own_offers col.separator { + width: 7px; +} + +.marketplace.all_offers .btn_quick_trade, +.marketplace.own_offers .btn_quick_trade { + float: right; + margin-right: 2px; +} + +.marketplace.all_offers table { + table-layout: fixed; +} + +.marketplace.all_offers th.you_pay { + width: 85px; +} + +.marketplace.all_offers th.ratio { + width: 160px; +} + +.marketplace.all_offers th.you_get { + width: 85px; +} + +.marketplace.all_offers th.player_name { + width: 130px; +} + +.marketplace.all_offers th.other_buttons { + width: 67px; +} + +.marketplace.own_offers th.you_pay { + width: 90px; +} + +.marketplace.own_offers th.ratio { + width: 92px; +} + +.marketplace.own_offers th.you_get { + width: 90px; +} + +.marketplace.own_offers th.delivery_time { + width: 110px; +} + +.marketplace.own_offers th.created_at { + width: 110px; +} + +.marketplace.own_offers th.own_buttons { + width: 110px; +} + +.marketplace .pagination { + margin-top: 2px; +} + +.marketplace .player_name_col, +.marketplace .town_name { + text-overflow: ellipsis; + white-space: nowrap; + text-align: left; +} + +.marketplace .flag_color { + width: 17px; + height: 17px; + display: inline-block; + top: 4px; +} + +.marketplace .flag_color .flag { + background-image: url(https://gpfr.innogamescdn.com/images/game/flags/smaller/layer_top.png); + width: 18px; + height: 26px; + margin-top: -3px; +} + +.marketplace .flag_color .premium_exchange { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/premium_exchange/premium_exchange_ddc9958.png) no-repeat -169px -528px; + width: 20px; + height: 20px; + margin: 0 0 0 -2px; +} + +.marketplace .flag_color.clickable { + cursor: pointer; +} + +.marketplace .flag_color.war { + background-color: red; +} + +.marketplace .flag_color.peace { + background-color: #399b1e; +} + +.marketplace .flag_color.neutral { + background-color: #b51; +} + +.marketplace .flag_color.own { + background-color: #fb0; +} + +.marketplace .flag_color.alliance { + background-color: #09f; +} + +.marketplace.all_offers .capacity_progressbar { + width: 400px; + margin: 10px auto; +} + +.marketplace.all_offers .capacity_progressbar .caption, +.marketplace.all_offers .capacity_progressbar .progress { + z-index: 100; +} + +.marketplace .filterbox { + height: 65px; + padding: 5px 10px 0 5px; +} + +.marketplace .filterbox>div { + display: inline-block; +} + +.marketplace .filterbox .button, +.marketplace .filterbox .spinner_horizontal { + bottom: 7px; +} + +.marketplace .filterbox .spinner_horizontal { + width: 100px; +} + +.marketplace .filterbox .btn_reset_filters { + float: right; + margin-top: 45px; +} + +.marketplace .filterbox .filter_resources { + height: 60px; + width: 130px; +} + +.marketplace:not(.gold_trade_enabled) .filter_button { + margin-left: 15px; +} + +.marketplace.own_offers .header { + text-align: center; + margin: 6px; +} + +.marketplace.own_offers #town_filter { + width: 180px; +} + +.marketplace.own_offers .delete_all_market_offers { + float: right; + margin-top: 0; +} + +.marketplace.offer_details { + text-align: center; + padding: 10px; +} + +.marketplace.offer_details .middle_box { + margin: 10px; +} + +.marketplace.offer_details .upper_part { + padding: 15px; +} + +.marketplace.offer_details .lower_part { + margin-bottom: 15px; +} + +.marketplace.offer_details .delivery_time, +.marketplace.offer_details .demand, +.marketplace.offer_details .lbl_ratio, +.marketplace.offer_details .lbl_you_get, +.marketplace.offer_details .lbl_you_pay, +.marketplace.offer_details .offer, +.marketplace.offer_details .ratio { + font-weight: 600; +} + +.marketplace.offer_details .demand input, +.marketplace.offer_details .offer input { + text-align: center; + font-weight: 600; +} + +.marketplace.offer_details .delivery_time { + margin-top: 10px; + font-size: .9em; +} + +.marketplace.offer_details .lbl_you_get, +.marketplace.offer_details .lbl_you_pay { + margin-bottom: 10px; +} + +.marketplace.offer_details .player_name { + font-size: 1.2em; + text-align: center; + font-weight: 600; +} + +.marketplace.offer_details .ratio_col, +.marketplace.offer_details .you_get_col, +.marketplace.offer_details .you_pay_col { + width: 100px; + display: inline-block; +} + +.marketplace.offer_details .ratio_col.gold { + visibility: hidden; +} + +.marketplace.offer_details .btn_trade { + width: 100px; + margin-top: 10px; +} + +.marketplace.offer_details .slider { + width: 120px; + display: inline-block; +} + +.marketplace.offer_details .alliance_name { + margin-top: 4px; + font-weight: 600; + color: #804000; + cursor: pointer; +} + +.marketplace.offer_details .alliance_name:hover { + color: #0082be; +} + +.marketplace.offer_details .flag_color { + position: static; + display: inline-block; +} + +.marketplace.offer_details .resource { + margin: 0 auto 10px auto; +} + +.marketplace .btn_delete { + display: inline-block; + vertical-align: middle; + float: none; + cursor: pointer; +} + +.marketplace .you_pay_col .resource { + text-align: right; +} + +.marketplace .you_pay_col .resource:after { + content: ""; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 0; + width: 12px; + height: 15px; +} + +.marketplace .you_get_col .resource { + text-align: left; +} + +.marketplace .you_get_col .resource:after { + content: ""; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -15px; + width: 12px; + height: 15px; +} + +.marketplace .resource { + margin: 7px auto 0 auto; +} + +.marketplace .resource.all { + background-position: 0 -80px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.marketplace .resource.all_but_gold { + background-position: 0 -16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.marketplace .resource.gold { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.marketplace .resource.iron { + background-position: 0 -48px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.marketplace .resource.stone { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.marketplace .resource.wood { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.marketplace.create_offer .market_create_offer_table { + margin: 10px; + position: absolute; + left: 0; + right: 0; +} + +.marketplace.create_offer .section.market_offer { + background: url(https://gpfr.innogamescdn.com/images/game/market/market_offer.jpg) no-repeat -20px 0; +} + +.marketplace.create_offer .pb_trading_capacity { + width: 400px; + margin: 10px auto; +} + +.marketplace.create_offer .offer_box { + height: 250px; + position: relative; + width: 552px; + margin: 10px auto; + overflow: hidden; +} + +.marketplace.create_offer .offer_box .lbl_demand, +.marketplace.create_offer .offer_box .lbl_offer { + position: absolute; + top: 26px; +} + +.marketplace.create_offer .offer_box .label { + line-height: 17px; +} + +.marketplace.create_offer .offer_box .lbl_offer { + left: 56px; +} + +.marketplace.create_offer .offer_box .lbl_demand { + right: 77px; +} + +.marketplace.create_offer .offer_box .lbl_ratio { + top: 55px; + left: 258px; + position: absolute; + width: 70px; + margin-left: -28px; + overflow: visible; +} + +.marketplace.create_offer .offer_box .ratio_heading { + position: absolute; + left: 230px; + top: 26px; + width: 73px; + text-align: center; +} + +.marketplace.create_offer .offer_box .you_pay_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -245px; + width: 29px; + height: 39px; + position: absolute; + left: 148px; + top: 40px; +} + +.marketplace.create_offer .offer_box .you_get_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -284px; + width: 29px; + height: 39px; + position: absolute; + right: 168px; + top: 40px; +} + +.marketplace.create_offer .tbl_offer_settings { + margin: 133px auto 0 auto; + position: relative; + color: #261c0f; +} + +.marketplace.create_offer .tbl_offer_settings th { + font-size: 12px; + vertical-align: middle; +} + +.marketplace.create_offer .tbl_offer_settings tr.row2 td, +.marketplace.create_offer .tbl_offer_settings tr.row2 th { + padding-top: 8px; +} + +.marketplace.create_offer .btn_submit_offer { + margin: 0 auto; +} + +.marketplace.create_offer #dd_res_offer { + position: absolute; + top: 40px; + left: 182px; +} + +.marketplace.create_offer #dd_res_demand { + position: absolute; + top: 39px; + left: 309px; +} + +.marketplace.create_offer .sp_trading_demand, +.marketplace.create_offer .sp_trading_offer, +.marketplace.create_offer .sp_trading_ratio { + width: 90px; + position: absolute; + top: 50px; + overflow: visible; +} + +.marketplace.create_offer .sp_trading_offer { + left: 56px; +} + +.marketplace.create_offer .sp_trading_demand { + right: 77px; +} + +.marketplace.create_offer .align_right { + text-align: right; +} + +.marketplace.create_offer .sp_trading_lifetime { + width: 113px; +} + +.dropdown_layer { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 10; + display: none; +} + +.dropdown_layer .market_dropdown { + position: absolute; + z-index: 10; + display: none; +} + +.dropdown_layer .market_dropdown .button { + transform: translate(-50%,0); + left: 50%; +} + +.dropdown_layer .dropdown_ratio { + position: absolute; + top: 122px; + left: 105px; + width: 200px; + height: 55px; +} + +.dropdown_layer .dropdown_duration { + position: absolute; + top: 122px; + left: 360px; + width: 200px; + height: 55px; +} + +.dropdown_layer .button_new .caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -93px; + width: 47px; + height: 21px; + padding: 0; +} + +.dropdown_layer .button_new:hover .caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -72px; + width: 47px; + height: 21px; + padding: 0; +} + +.dropdown_layer .button_new.active .caption, +.dropdown_layer .button_new:active .caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -30px; + width: 47px; + height: 21px; + padding: 0; +} + +.dropdown_layer .button_new.disabled .caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -51px; + width: 47px; + height: 21px; + padding: 0; +} + +.btn_dropdown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -136px; + width: 21px; + height: 22px; + cursor: pointer; + float: right; +} + +.btn_dropdown:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -114px; + width: 21px; + height: 22px; +} + +.sp_trade_duration.spinner_horizontal .body, +.sp_trade_ratio.spinner_horizontal .body { + overflow: initial; +} + +.sp_trade_duration.spinner_horizontal .button, +.sp_trade_ratio.spinner_horizontal .button { + float: none; + position: absolute; + right: 0; + top: 1px; +} + +.sp_trade_duration.spinner_horizontal input, +.sp_trade_ratio.spinner_horizontal input { + cursor: pointer; + width: 90%; + float: left; + text-align: center; +} + +.sp_trade_duration.spinner_horizontal .border_l, +.sp_trade_ratio.spinner_horizontal .border_l { + left: 0; + width: 3px; +} + +.own_offer_tooltip { + text-align: center; +} + +.own_offer_tooltip .max_delivery_time .value { + line-height: 30px; + vertical-align: top; +} + +.own_offer_tooltip .max_delivery_time .clock { + content: ""; + background-image: url(https://gpfr.innogamescdn.com/images/game/res/time.png); + background-repeat: no-repeat; + width: 30px; + height: 30px; + display: inline-block; + margin-bottom: -2px; +} + +.filter_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -187px; + width: 39px; + height: 29px; + display: inline-block; + cursor: pointer; +} + +.filter_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -158px; + width: 39px; + height: 29px; +} + +.filter_button.active, +.filter_button.checked, +.filter_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -216px; + width: 39px; + height: 29px; +} + +table.sortable th[data-id] { + cursor: pointer; +} + +table.sortable th[data-id]:before { + content: "\25CB"; +} + +table.sortable .order_asc:before, +table.sortable .order_desc:before, +table.sortable th[data-id]:before { + display: inline-block; +} + +table.sortable th.order_asc:before { + content: "\25B2"; +} + +table.sortable th.order_desc:before { + content: "\25BC"; +} + +#premium_exchange { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/premium_exchange/premium_exchange_ddc9958.png) no-repeat 0 0; + width: 786px; + height: 528px; +} + +#premium_exchange>.game_border { + height: 220px; + width: 540px; + top: 10px; + margin: auto; +} + +#premium_exchange .estimated_price, +#premium_exchange .gp_captions_container { + text-align: center; +} + +#premium_exchange .gp_page_caption { + display: inline-block; + float: none; +} + +#premium_exchange .pg_capacity { + width: 350px; + margin: auto; +} + +#premium_exchange .pg_capacity .progress { + z-index: 0; +} + +#premium_exchange .pg_capacity .caption { + z-index: 1; +} + +#premium_exchange .resources_wrapper { + margin: auto; + height: 75px; +} + +#premium_exchange .resource { + display: table-cell; + position: relative; +} + +#premium_exchange .resource .progressbar_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/premium_exchange/premium_exchange_ddc9958.png) no-repeat 0 -528px; + width: 169px; + height: 60px; +} + +#premium_exchange .resource .caption { + position: absolute; + top: 22px; + left: 52px; + width: 112px; + text-align: center; + color: #fc6; +} + +#premium_exchange .resource canvas { + left: 6px; + top: 6px; + position: absolute; +} + +#premium_exchange .resource .spinner_horizontal { + top: -14px; + left: 51px; + width: 115px; +} + +#premium_exchange .resource .icon { + position: absolute; + top: 15px; + left: 15px; +} + +#premium_exchange .resource[data-type=wood] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 -30px; + width: 30px; + height: 30px; +} + +#premium_exchange .resource[data-type=stone] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px 0; + width: 30px; + height: 30px; +} + +#premium_exchange .resource[data-type=iron] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 0; + width: 30px; + height: 30px; +} + +#premium_exchange .estimated_price .icon { + display: inline-block; + vertical-align: middle; +} + +#premium_exchange .info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; +} + +#premium_exchange .gold { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; + margin-left: -5px; +} + +#premium_exchange .button_container { + position: absolute; + bottom: 10px; + text-align: center; + width: 100%; +} + +#premium_exchange .gp_tab_page { + padding-top: 5px; + height: 164px; +} + +#premium_exchange .footer { + position: relative; + top: 19px; + left: 20px; + height: 264px; + width: 707px; + padding: 10px 20px; + overflow: hidden; +} + +#premium_exchange .premium_exchange_rules { + text-align: left; +} + +#premium_exchange .premium_exchange_rules .game_border { + height: auto; + width: auto; + top: 0; +} + +#premium_exchange .premium_exchange_rules .game_body { + height: auto; +} + +#premium_exchange .premium_exchange_rules.close .arrow { + width: 0; + height: 0; + border-top: 8px solid transparent; + border-bottom: 8px solid transparent; + border-left: 8px solid #fff; + margin-left: 18px; +} + +#premium_exchange .premium_exchange_rules.close .rules { + display: none; +} + +#premium_exchange .premium_exchange_rules.open .arrow { + width: 0; + height: 0; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-top: 8px solid #fff; + margin-left: 10px; +} + +#premium_exchange .premium_exchange_rules.open .expand_text { + display: none; +} + +#premium_exchange .premium_exchange_rules .arrow { + display: inline-block; + vertical-align: middle; +} + +#premium_exchange .premium_exchange_rules .text { + display: inline-block; + font-weight: 600; + margin-left: 5px; + vertical-align: middle; +} + +#premium_exchange .premium_exchange_rules .rule_description { + min-height: 50px; +} + +#premium_exchange .premium_exchange_rules .expand_text { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + padding-left: 18px; + height: 30px; + line-height: 30px; + border-bottom: 1px solid #82775f; +} + +#premium_exchange .premium_exchange_rules .rules { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + padding: 10px 20px; + height: auto; +} + +#premium_exchange .premium_exchange_rules .rules p { + margin: 0; +} + +.confirm_order { + padding: 20px; + font-weight: 600; +} + +.confirm_order>.divider { + height: 1px; + width: 70%; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + margin: auto; +} + +.confirm_order table .divider { + height: 1px; + width: 100%; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + margin-top: 10px; +} + +.confirm_order th { + min-width: 180px; + text-align: center; +} + +.confirm_order th { + padding: 5px 0; +} + +.confirm_order td { + padding: 5px 15px; +} + +.confirm_order td .icon { + margin-right: 5px; +} + +.confirm_order .icon { + display: inline-block; + vertical-align: middle; + margin: 0 5px; +} + +.confirm_order .icon.wood { + background-position: 0 -32px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.confirm_order .icon.iron { + background-position: 0 -48px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.confirm_order .icon.stone { + background-position: 0 -64px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.confirm_order .icon.gold { + background-position: 0 0; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.confirm_order .trade_cost, +.confirm_order .trade_duration { + margin-top: 10px; +} + +.confirm_order .trade_cost span, +.confirm_order .trade_duration span { + font-weight: 400; + margin-left: 5px; +} + +.confirm_order .trade_cost .icon.gold, +.confirm_order .trade_duration .icon.gold { + margin: 0; +} + +.confirm_order .rate_changed, +.confirm_order .red { + color: #e72200; +} + +.confirm_order .rate_changed { + font-weight: 400; +} + +.confirm_order .button_container, +.confirm_order .rate_changed { + text-align: center; + margin-top: 10px; +} + +.attack_spot_icons .highlight_stats { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 -139px; + width: 62px; + height: 28px; +} + +.attack_spot_icons .highlight_units1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 -167px; + width: 40px; + height: 40px; +} + +.attack_spot_icons .highlight_units2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -156px 0; + width: 90px; + height: 90px; +} + +.attack_spot_icons .normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 -94px; + width: 45px; + height: 45px; +} + +.attack_spot_icons .normal_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -45px -94px; + width: 45px; + height: 45px; +} + +.attack_spot_icons .reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -90px -94px; + width: 45px; + height: 45px; +} + +.attack_spot_icons .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -135px -94px; + width: 45px; + height: 45px; +} + +.attack_spot_icons .sepia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -180px -94px; + width: 45px; + height: 45px; +} + +.attack_spot_icons .units_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 0; + width: 156px; + height: 94px; +} + +.map_farmtowns .attack_spot_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -203px 0; + width: 45px; + height: 47px; +} + +.map_farmtowns .attack_spot_1_sepia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -203px -47px; + width: 45px; + height: 47px; +} + +.map_farmtowns .attack_spot_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px 0; + width: 55px; + height: 57px; +} + +.map_farmtowns .box_trade_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -203px -122px; + width: 28px; + height: 28px; +} + +.map_farmtowns .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -196px; + width: 140px; + height: 1px; +} + +.map_farmtowns .flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -203px -94px; + width: 23px; + height: 28px; +} + +.map_farmtowns .flag_banner_locked_s { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -57px; + width: 10px; + height: 13px; +} + +.map_farmtowns .flag_banner_own_s { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -258px -57px; + width: 10px; + height: 13px; +} + +.map_farmtowns .flag_banner_revolt_s { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -268px -57px; + width: 10px; + height: 12px; +} + +.map_farmtowns .indicator_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -171px -64px; + width: 32px; + height: 32px; +} + +.map_farmtowns .indicator_resources { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -171px 0; + width: 32px; + height: 32px; +} + +.map_farmtowns .indicator_upgrade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -171px -32px; + width: 32px; + height: 32px; +} + +.map_farmtowns .laurelsbg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -162px -197px; + width: 54px; + height: 35px; +} + +.map_farmtowns .level1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -88px; + width: 54px; + height: 35px; +} + +.map_farmtowns .level2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -123px; + width: 54px; + height: 35px; +} + +.map_farmtowns .level3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -158px; + width: 54px; + height: 35px; +} + +.map_farmtowns .level4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -197px; + width: 54px; + height: 35px; +} + +.map_farmtowns .level5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -54px -197px; + width: 54px; + height: 35px; +} + +.map_farmtowns .level6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -108px -197px; + width: 54px; + height: 35px; +} + +.map_farmtowns .locked1-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -144px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked1-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -170px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked2-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -33px -144px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked2-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -33px -170px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked3-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -66px -144px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked3-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -66px -170px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked4-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -99px -144px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked4-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -99px -170px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked5-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -132px -144px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked5-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -132px -170px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked6-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -165px -144px; + width: 33px; + height: 26px; +} + +.map_farmtowns .locked6-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -165px -170px; + width: 33px; + height: 26px; +} + +.map_farmtowns .lvl1-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 0; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl1-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px 0; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl2-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px 0; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl2-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -36px; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl3-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -36px; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl3-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -72px; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl4-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -36px; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl4-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -108px; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl5-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -72px; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl5-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -108px; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl6-d { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -72px; + width: 57px; + height: 36px; +} + +.map_farmtowns .lvl6-n { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -108px; + width: 57px; + height: 36px; +} + +.map_farmtowns .res_available { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -274px -70px; + width: 25px; + height: 13px; +} + +.map_farmtowns .res_available_not { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -278px -57px; + width: 25px; + height: 12px; +} + +.map_farmtowns .res_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -70px; + width: 26px; + height: 16px; +} + +.map_farmtowns .res_bar_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -86px; + width: 32px; + height: 2px; +} + +.map_town_tooltip16x16 { + width: 16px; + height: 16px; +} + +.map_town_tooltip16x16.arising { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_tooltips_16x16_5c6f1b5.png) 0 0 no-repeat; +} + +.map_town_tooltip16x16.attack_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_tooltips_16x16_5c6f1b5.png) -16px 0 no-repeat; +} + +.map_town_tooltip16x16.attack_takeover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_tooltips_16x16_5c6f1b5.png) -32px 0 no-repeat; +} + +.map_town_tooltip16x16.outgoing_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_tooltips_16x16_5c6f1b5.png) -48px 0 no-repeat; +} + +.map_town_tooltip16x16.running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_tooltips_16x16_5c6f1b5.png) -64px 0 no-repeat; +} + +.map_town_tooltip16x16.support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_tooltips_16x16_5c6f1b5.png) -80px 0 no-repeat; +} + +#map .farm_town { + cursor: pointer; +} + +#map .farm_town.locked.locked1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -144px; + width: 33px; + height: 26px; +} + +#map .farm_town.locked.locked2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -33px -144px; + width: 33px; + height: 26px; +} + +#map .farm_town.locked.locked3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -66px -144px; + width: 33px; + height: 26px; +} + +#map .farm_town.locked.locked4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -99px -144px; + width: 33px; + height: 26px; +} + +#map .farm_town.locked.locked5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -132px -144px; + width: 33px; + height: 26px; +} + +#map .farm_town.locked.locked6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -165px -144px; + width: 33px; + height: 26px; +} + +#map .farm_town.owned.lvl1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 0; + width: 57px; + height: 36px; +} + +#map .farm_town.owned.lvl2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px 0; + width: 57px; + height: 36px; +} + +#map .farm_town.owned.lvl3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -36px; + width: 57px; + height: 36px; +} + +#map .farm_town.owned.lvl4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -36px; + width: 57px; + height: 36px; +} + +#map .farm_town.owned.lvl5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -72px; + width: 57px; + height: 36px; +} + +#map .farm_town.owned.lvl6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -72px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .farm_town.owned.lvl1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px 0; + width: 57px; + height: 36px; +} + +#map.night #map_towns .farm_town.owned.lvl2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -36px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .farm_town.owned.lvl3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -72px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .farm_town.owned.lvl4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -108px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .farm_town.owned.lvl5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -108px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .farm_town.owned.lvl6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -108px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .farm_town.locked.locked1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -170px; + width: 33px; + height: 26px; +} + +#map.night #map_towns .farm_town.locked.locked2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -33px -170px; + width: 33px; + height: 26px; +} + +#map.night #map_towns .farm_town.locked.locked3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -66px -170px; + width: 33px; + height: 26px; +} + +#map.night #map_towns .farm_town.locked.locked4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -99px -170px; + width: 33px; + height: 26px; +} + +#map.night #map_towns .farm_town.locked.locked5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -132px -170px; + width: 33px; + height: 26px; +} + +#map.night #map_towns .farm_town.locked.locked6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -165px -170px; + width: 33px; + height: 26px; +} + +#map .tile.ft1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 0; + width: 57px; + height: 36px; +} + +#map .tile.ft2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px 0; + width: 57px; + height: 36px; +} + +#map .tile.ft3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -36px; + width: 57px; + height: 36px; +} + +#map .tile.ft4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -36px; + width: 57px; + height: 36px; +} + +#map .tile.ft5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -72px; + width: 57px; + height: 36px; +} + +#map .tile.ft6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -72px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .tile.ft1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px 0; + width: 57px; + height: 36px; +} + +#map.night #map_towns .tile.ft2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -36px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .tile.ft3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -72px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .tile.ft4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -108px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .tile.ft5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -57px -108px; + width: 57px; + height: 36px; +} + +#map.night #map_towns .tile.ft6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -114px -108px; + width: 57px; + height: 36px; +} + +#map .badge { + cursor: pointer; + position: absolute; + z-index: 5; +} + +#map .badge.claim { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -171px 0; + width: 32px; + height: 32px; + top: 20px; +} + +.popup .farmtown_tooltip { + width: 155px; + text-align: center; +} + +.popup .farmtown_tooltip .town_name { + font-weight: 600; +} + +.popup .farmtown_tooltip .relation_text { + font-size: 10px; +} + +.popup .farmtown_tooltip .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -196px; + width: 140px; + height: 1px; + margin: 3px 0; +} + +.popup .farmtown_tooltip .laurels { + margin: 7px auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -162px -197px; + width: 54px; + height: 35px; +} + +.popup .farmtown_tooltip .laurels .level1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -88px; + width: 54px; + height: 35px; +} + +.popup .farmtown_tooltip .laurels .level2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -123px; + width: 54px; + height: 35px; +} + +.popup .farmtown_tooltip .laurels .level3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -248px -158px; + width: 54px; + height: 35px; +} + +.popup .farmtown_tooltip .laurels .level4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -197px; + width: 54px; + height: 35px; +} + +.popup .farmtown_tooltip .laurels .level5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -54px -197px; + width: 54px; + height: 35px; +} + +.popup .farmtown_tooltip .laurels .level6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -108px -197px; + width: 54px; + height: 35px; +} + +.popup .farmtown_tooltip .laurels .flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -203px -94px; + width: 23px; + height: 28px; + margin-left: 16px; +} + +.popup .farmtown_tooltip .popup_table_inside { + margin-top: 5px; + padding: 5px; +} + +.popup .farmtown_tooltip .popup_table_inside .headline, +.popup .farmtown_tooltip .popup_table_inside .upgrade_level { + font-weight: 600; + display: inline; +} + +.popup .farmtown_tooltip .popup_table_inside .upgrade_level { + color: green; +} + +.popup .farmtown_tooltip .popup_table_inside .upgrade_level:before { + content: "\25B6"; + margin-right: 3px; +} + +.popup .farmtown_tooltip .popup_table_inside .timer { + line-height: 30px; + margin-top: -10px; +} + +.popup .farmtown_tooltip .popup_table_inside .timer:before { + content: ""; + display: inline-block; + background-size: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; + position: relative; + top: 11px; +} + +.popup .farmtown_tooltip .popup_table_inside .resource_line { + font-size: 10px; +} + +.popup .farmtown_tooltip .popup_table_inside .resource_line>div { + display: inline-block; + padding: 3px; +} + +.popup .farmtown_tooltip .popup_table_inside .resource_line .ratio { + position: relative; + top: -10px; +} + +.popup .farmtown_tooltip .popup_table_inside .resource_line .resource_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat -203px -122px; + width: 28px; + height: 28px; + padding: 0; +} + +.popup .farmtown_tooltip .popup_table_inside .resource_line .resource_box .resources_small { + margin: 6px 0 0 3px; +} + +.popup .farmtown_tooltip .popup_table_inside .resource_line .you_get_arrow, +.popup .farmtown_tooltip .popup_table_inside .resource_line .you_pay_arrow { + position: relative; + bottom: 15px; +} + +.popup .farmtown_tooltip .popup_table_inside .resource_line .you_pay_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 0; + width: 12px; + height: 15px; +} + +.popup .farmtown_tooltip .popup_table_inside .resource_line .you_get_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -15px; + width: 12px; + height: 15px; + left: 15px; +} + +#map_attack_spots .cooldown_progressbar { + position: absolute; + cursor: pointer; + width: 60px; + -webkit-transform: translate(-7px,30px); + -ms-transform: translate(-7px,30px); + -o-transform: translate(-7px,30px); + transform: translate(-7px,30px); +} + +#map_attack_spots .cooldown_progressbar .progress .indicator { + background-position: 0 -822px; +} + +#map_attack_spots .cooldown_progressbar .caption { + color: #fc6; + text-shadow: 1px 1px 0 #000; + font-size: 11px; + top: 3px; +} + +#map_attack_spots .attack_spot, +#map_attack_spots .attack_spot_overlay, +#map_attack_spots .collect_reward_overlay { + position: absolute; + cursor: pointer; +} + +#map_attack_spots .attack_spot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 -94px; + width: 45px; + height: 45px; +} + +#map_attack_spots .attack_spot.attack_possible { + -webkit-animation: fadeOutIn 1s ease-in-out infinite alternate; + -ms-animation: fadeOutIn 1s ease-in-out infinite alternate; + animation: fadeOutIn 1s ease-in-out infinite alternate; +} + +#map_attack_spots .attack_spot.cooldown_running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -180px -94px; + width: 45px; + height: 45px; +} + +#map_attack_spots .attack_spot.collect_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -90px -94px; + width: 45px; + height: 45px; + -webkit-animation: fadeOutIn 1s ease-in-out infinite alternate; + -ms-animation: fadeOutIn 1s ease-in-out infinite alternate; + animation: fadeOutIn 1s ease-in-out infinite alternate; +} + +#map_attack_spots .attack_spot_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -45px -94px; + width: 45px; + height: 45px; +} + +#map_attack_spots .collect_reward_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -135px -94px; + width: 45px; + height: 45px; +} + +.attack_spots .attack_spot_background { + background: url(https://gpfr.innogamescdn.com/images/game/attack_spots/background.jpg); + width: 749px; + height: 225px; + position: absolute; + top: 0; + left: 7px; +} + +.attack_spots .reward_container { + margin: 10px 80px; +} + +.attack_spots .scroll { + text-align: center; + margin: 0 auto; +} + +.attack_spots .rewards { + width: auto; + margin: 0 100px 0 100px; +} + +.attack_spots .rewards ul { + display: table; +} + +.attack_spots .rewards li { + display: table-cell; + vertical-align: middle; +} + +.attack_spots .rewards li>span { + margin-right: 10px; + position: relative; +} + +.attack_spots .rewards .resources { + width: 30px; + height: 30px; + display: inline-block; + position: relative; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/layout/resources_2.32.png) no-repeat 0 0; +} + +.attack_spots .rewards .resources.wood { + background-position: 0 0; +} + +.attack_spots .rewards .resources.stone { + background-position: 0 -30px; +} + +.attack_spots .rewards .resources.iron { + background-position: 0 -60px; +} + +.attack_spots .rewards .resources.culture { + background-position: 0 -210px; +} + +.attack_spots .rewards .resources.all { + background-position: 0 -90px; +} + +.attack_spots .rewards .resources.favor { + background-position: 0 -150px; +} + +.attack_spots .rewards .resources.fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -90px 0; + width: 30px; + height: 30px; +} + +.attack_spots .rewards .resources.wood { + background-position: 0 0; +} + +.attack_spots .rewards .resources.stone { + background-position: 0 -30px; +} + +.attack_spots .rewards .resources.iron { + background-position: 0 -60px; +} + +.attack_spots .rewards .resources.culture { + background-position: 0 -210px; +} + +.attack_spots .rewards .resources.all { + background-position: 0 -90px; +} + +.attack_spots .rewards .resources.favor { + background-position: 0 -150px; +} + +.attack_spots .rewards .resources.battle_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -486px; + width: 40px; + height: 40px; +} + +.attack_spots .rewards .unit { + display: inline-block; + float: none; +} + +.attack_spots .rewards .reward_bp { + top: 8px; +} + +.attack_spots .grepo_box { + color: #000; +} + +.attack_spots .grepo_box .grepo_box_content { + padding-bottom: 12px; +} + +.attack_spots .grepo_box_background { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; + box-shadow: rgba(0,0,0,.5) 3px 3px 6px inset; +} + +.attack_spots .reward_title { + text-align: center; + margin: 5px 0; + line-height: 12px; + color: #000; + font-weight: 600; +} + +.attack_spots .attacking_units { + height: 170px; +} + +.attack_spots .attacking_units .curtain_box { + min-height: 150px; +} + +.attack_spots .attacking_units .curtain_box .cb_bg { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; +} + +.attack_spots .attacking_units .curtain_box .cb_content { + padding: 40px 28px 0 28px; +} + +.attack_spots .attacking_units .unit.highlight:before { + content: ""; + position: absolute; + top: 0; + left: 0; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 -167px; + width: 40px; + height: 40px; +} + +.attack_spots .defending_units .curtain_box { + min-height: 140px; +} + +.attack_spots .defending_units .curtain_box .cb_content { + padding-top: 38px; + text-align: center; +} + +.attack_spots .defending_units .curtain_box .enemy_units_box { + position: relative; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 0; + width: 156px; + height: 94px; +} + +.attack_spots .defending_units .curtain_box .enemy_units_box .unit { + cursor: default; + width: 90px; + height: 90px; + padding: 0; + margin: 1px 0 0 1px; +} + +.attack_spots .defending_units .curtain_box .enemy_units_box .unit .value { + bottom: 5px; + right: 8px; + font-size: 20px; +} + +.attack_spots .defending_units .curtain_box .enemy_units_box .statistics { + float: left; + margin-top: 2px; +} + +.attack_spots .defending_units .curtain_box .enemy_units_box .unit .highlight { + display: none; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -156px 0; + width: 90px; + height: 90px; +} + +.attack_spots .defending_units .curtain_box .stat { + width: 62px; + line-height: 28px; + text-align: left; + overflow: hidden; + margin-top: 1px; +} + +.attack_spots .defending_units .curtain_box .stat .icon { + float: left; + margin: 5px 5px 0 5px; +} + +.attack_spots .defending_units .curtain_box .stat .unit_data { + font-weight: 600; + color: #fc6; + text-shadow: 1px 1px 0 #000; +} + +.attack_spots .defending_units .curtain_box .stat.highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat 0 -139px; + width: 62px; + height: 28px; +} + +.attack_spots .defending_units .curtain_box .stat:last-child { + margin-top: 0; +} + +.attack_spots .attacking_units, +.attack_spots .defending_units { + margin: 5px 20px 0 20px; +} + +.attack_spots .attacking_units .cb_bg, +.attack_spots .defending_units .cb_bg { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; +} + +.attack_spots .attacking_units .unit_picker_container, +.attack_spots .defending_units .unit_picker_container { + padding: 15px 15px 0; +} + +.attack_spots .attacking_units .unit_picker_container .unit_picker, +.attack_spots .defending_units .unit_picker_container .unit_picker { + padding: 15px 5px 10px; +} + +.attack_spots .attacking_units .units_box, +.attack_spots .defending_units .units_box { + padding-left: 30px; +} + +.attack_spots .attack_blocked { + margin: 35px 34px 0 34px; +} + +.attack_spots .attack_blocked .game_body { + height: 100px; +} + +.attack_spots .attack_blocked .attack_spot.cooldown_running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/attack_spots/attack_spot_6425ace.png) no-repeat -180px -94px; + width: 45px; + height: 45px; + position: relative; + top: 25px; + left: 30px; +} + +.attack_spots .attack_blocked .cooldown_progressbar { + position: absolute; + cursor: pointer; + width: 60px; + -webkit-transform: translate(-7px,30px); + -ms-transform: translate(-7px,30px); + -o-transform: translate(-7px,30px); + transform: translate(-7px,30px); + cursor: auto; + -webkit-transform: translate(21px,13px); + -ms-transform: translate(21px,13px); + -o-transform: translate(21px,13px); + transform: translate(21px,13px); +} + +.attack_spots .attack_blocked .cooldown_progressbar .progress .indicator { + background-position: 0 -822px; +} + +.attack_spots .attack_blocked .cooldown_progressbar .caption { + color: #fc6; + text-shadow: 1px 1px 0 #000; + font-size: 11px; + top: 3px; +} + +.attack_spots .attack_blocked .warning { + background: url(https://gpfr.innogamescdn.com/images/game/fatal_attack_warning/warning.png) no-repeat 0 0; + width: 80px; + height: 93px; + position: relative; + top: 5px; + left: 10px; +} + +.attack_spots .attack_blocked .message { + position: absolute; + left: 110px; + top: 45px; +} + +.attack_spots .btn_attack { + margin-top: -5px; + min-width: 170px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.attack_spots .unit { + width: 39px; + height: 14px; + padding-top: 26px; + padding-right: 1px; + position: relative; + display: block; + float: left; + text-align: right; + font-family: Verdana; + font-weight: 700; + font-size: 12px; + margin: 1px; + color: #fff; + text-shadow: 1px 1px 0 #000; + cursor: pointer; + overflow: visible; + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; + margin: 10px 7px 5px 5px; +} + +.attack_spots .unit.hidden { + display: none; +} + +.attack_spots .buttons { + display: inline-block; + height: 100%; +} + +.attack_spots .btn_simulate { + top: 85px; + left: 25px; +} + +.attack_spots .btn_runtime { + top: 113px; + left: 25px; +} + +.attack_spots .select_all { + top: 7px; + height: 23px; + line-height: 23px; + left: 35px; +} + +.attack_spots .btn_expand_units { + margin-top: 28px; + margin-left: 5px; +} + +.attack_spots .own_units_box, +.attack_spots .own_units_textbox { + margin-left: 40px; +} + +.attack_spots .txt_unit { + position: relative; + display: block; + float: left; + width: 44px; + margin: 0 4px; +} + +.attack_spots .txt_unit input { + text-align: center; +} + +.attack_spots .txt_unit.hidden { + display: none; +} + +.attack_spots .cbx_include_hero { + position: relative; + display: block; + float: left; + width: 44px; + margin: 0 4px; + height: 25px; +} + +.attack_spots .cbx_include_hero .cbx_icon { + top: 0; + left: 10px; +} + +.attack_spots .laurels_bg { + width: 40px; + height: 40px; + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg) repeat 0 0; + position: relative; + float: left; + box-shadow: inset 0 0 4px #000; + margin: 10px 7px 5px 5px; +} + +.attack_spots .laurels_bg .laurels { + position: absolute; + top: 5px; + left: 3px; + width: 35px; + height: 35px; + background: url(https://gpfr.innogamescdn.com/images/game/heroes/heroes_common_sprite.2.54.png) no-repeat -597px -113px; +} + +.attack_spots .arrival_time, +.attack_spots span.way_duration { + float: none; + display: inline-block; +} + +.attack_spots .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + display: inline-block; + position: relative; + top: 7px; + left: 5px; + margin-right: 10px; +} + +.attack_spots .divider { + height: 1px; + width: 360px; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + margin-bottom: 3px; + margin-left: 115px; +} + +.popup #popup_content ul.attack_spot_tooltip { + list-style-type: disc; + margin-left: 25px; +} + +.attack_spots .victory_bg { + background: url(https://gpfr.innogamescdn.com/images/game/attack_spots/victory_bg.png) no-repeat; + height: 380px; + width: 551px; + position: relative; + left: 0; + top: 0; +} + +.attack_spots .victory_headline { + color: #fc6; + font-size: 34px; + left: 50%; + position: absolute; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + margin-top: 52px; +} + +.attack_spots .victory_container { + position: absolute; + top: 150px; + left: 30px; + width: 500px; +} + +.attack_spots .btn_collect { + position: absolute; + bottom: 0; + margin-bottom: 15px; + min-width: 170px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.battle_point_villages .banner_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -630px; + width: 185px; + height: 64px; +} + +.battle_point_villages .banner_locked_all { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -580px; + width: 547px; + height: 50px; +} + +.battle_point_villages .bg_battlepoints { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -225px -780px; + width: 83px; + height: 32px; +} + +.battle_point_villages .bg_card { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -712px -157px; + width: 185px; + height: 185px; +} + +.battle_point_villages .bg_card_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -712px -342px; + width: 185px; + height: 185px; +} + +.battle_point_villages .bg_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 0; + width: 712px; + height: 198px; +} + +.battle_point_villages .bg_market { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -396px; + width: 635px; + height: 184px; +} + +.battle_point_villages .bg_tabs { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -198px; + width: 712px; + height: 198px; +} + +.battle_point_villages .bg_upgrade_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -547px -580px; + width: 181px; + height: 35px; +} + +.battle_point_villages .bg_upgrade_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -728px -580px; + width: 181px; + height: 26px; +} + +.battle_point_villages .bg_village_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -712px 0; + width: 218px; + height: 157px; +} + +.battle_point_villages .box_trade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -396px; + width: 46px; + height: 46px; +} + +.battle_point_villages .bp_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -486px; + width: 40px; + height: 40px; +} + +.battle_point_villages .button_upgrade_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -712px -527px; + width: 194px; + height: 49px; +} + +.battle_point_villages .icon_battlepoints { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -467px; + width: 18px; + height: 17px; +} + +.battle_point_villages .icon_battlepoints_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -402px; + width: 31px; + height: 29px; +} + +.battle_point_villages .icon_farm { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -913px -484px; + width: 16px; + height: 16px; +} + +.battle_point_villages .icon_farm_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -484px; + width: 16px; + height: 16px; +} + +.battle_point_villages .icon_res { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -526px; + width: 45px; + height: 33px; +} + +.battle_point_villages .icon_ressources_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -282px -630px; + width: 93px; + height: 53px; +} + +.battle_point_villages .icon_ressources_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -792px -694px; + width: 111px; + height: 72px; +} + +.battle_point_villages .icon_ressources_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -780px; + width: 109px; + height: 70px; +} + +.battle_point_villages .icon_ressources_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -109px -780px; + width: 116px; + height: 65px; +} + +.battle_point_villages .icon_trade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -442px; + width: 38px; + height: 44px; +} + +.battle_point_villages .icon_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -157px; + width: 26px; + height: 40px; +} + +.battle_point_villages .icon_upgrade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -317px; + width: 23px; + height: 22px; +} + +.battle_point_villages .iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -372px; + width: 30px; + height: 30px; +} + +.battle_point_villages .iron_50tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -197px; + width: 30px; + height: 30px; +} + +.battle_point_villages .level_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -297px -694px; + width: 99px; + height: 86px; +} + +.battle_point_villages .level_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -694px; + width: 99px; + height: 86px; +} + +.battle_point_villages .level_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -495px -694px; + width: 99px; + height: 86px; +} + +.battle_point_villages .level_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -99px -694px; + width: 99px; + height: 86px; +} + +.battle_point_villages .level_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -198px -694px; + width: 99px; + height: 86px; +} + +.battle_point_villages .level_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -396px -694px; + width: 99px; + height: 86px; +} + +.battle_point_villages .level_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -594px -694px; + width: 99px; + height: 86px; +} + +.battle_point_villages .level_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -693px -694px; + width: 99px; + height: 86px; +} + +.battle_point_villages .stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -287px; + width: 30px; + height: 30px; +} + +.battle_point_villages .stone_50tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -342px; + width: 30px; + height: 30px; +} + +.battle_point_villages .storage_progress { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -559px -630px; + width: 132px; + height: 25px; +} + +.battle_point_villages .tab_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -467px -630px; + width: 92px; + height: 45px; +} + +.battle_point_villages .tab_idle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -375px -630px; + width: 92px; + height: 45px; +} + +.battle_point_villages .tab_selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -185px -630px; + width: 97px; + height: 54px; +} + +.battle_point_villages .tooltip_upgrade0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -431px; + width: 20px; + height: 18px; +} + +.battle_point_villages .tooltip_upgrade1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -449px; + width: 20px; + height: 18px; +} + +.battle_point_villages .wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -227px; + width: 30px; + height: 30px; +} + +.battle_point_villages .wood_50tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -257px; + width: 30px; + height: 30px; +} + +.farm_towns { + width: 754px; + height: 527px; +} + +.farm_towns.lvl_0 { + background-image: url(https://gpfr.innogamescdn.com/images/game/farmtowns/FV0.jpg); +} + +.farm_towns.lvl_0 .infos .village_info .village_level_state { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -693px -694px; + width: 99px; + height: 86px; +} + +.farm_towns.lvl_0 .infos .village_update_btn { + display: none; +} + +.farm_towns.lvl_0 .actions { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 0; + width: 712px; + height: 198px; + margin-top: 100px; + margin-left: 15px; + margin-bottom: 121px; +} + +.farm_towns.lvl_0 .actions .action_title { + color: #fc6; + font-weight: 600; + width: 269px; + height: 21px; + position: absolute; + left: 225px; + top: 30px; + text-align: center; +} + +.farm_towns.lvl_0 .actions .action_wrapper { + width: 620px; + height: 240px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg); + top: 86px; + left: 50px; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_title { + font-weight: 600; + text-align: center; + padding-top: 5px; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration { + width: 450px; + height: 85px; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png); + margin: 5px auto auto; + position: relative; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_top { + background: url(https://gpfr.innogamescdn.com/images/game/border/trade_frame/horizontal.png) repeat-x top center; + top: -3px; + left: 0; + right: 0; + height: 4px; + position: absolute; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/border/trade_frame/horizontal.png) repeat-x bottom center; + bottom: -3px; + left: 0; + right: 0; + height: 4px; + position: absolute; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_left { + background: url(https://gpfr.innogamescdn.com/images/game/border/trade_frame/vertical.png) repeat-y left center; + left: -3px; + top: 0; + bottom: 0; + z-index: 1; + position: absolute; + width: 4px; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_right { + background: url(https://gpfr.innogamescdn.com/images/game/border/trade_frame/vertical.png) repeat-y right center; + right: -3px; + top: 0; + bottom: 0; + z-index: 1; + position: absolute; + width: 4px; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_corner { + width: 12px; + height: 12px; + position: absolute; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_corner.corner1 { + top: -3px; + left: -3px; + background: url(https://gpfr.innogamescdn.com/images/game/border/trade_frame/lefttop.png) no-repeat; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_corner.corner2 { + top: -3px; + right: -3px; + background: url(https://gpfr.innogamescdn.com/images/game/border/trade_frame/righttop.png) no-repeat; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_corner.corner3 { + bottom: -3px; + right: -3px; + background: url(https://gpfr.innogamescdn.com/images/game/border/trade_frame/rightbot.png) no-repeat; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .trade_frame_corner.corner4 { + bottom: -3px; + left: -3px; + background: url(https://gpfr.innogamescdn.com/images/game/border/trade_frame/leftbot.png) no-repeat; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content { + position: absolute; + top: 0; + left: 0; + height: 100%; + width: 100%; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_resource_box { + margin-top: 24px; + display: inline-block; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_arrows { + display: inline-block; + vertical-align: top; + margin-top: 30px; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_text { + display: inline-block; + vertical-align: top; + margin-top: 40px; + font-weight: 600; + width: 105px; + text-align: center; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_you_pay { + width: 50%; + height: 100%; + position: absolute; + top: 0; + left: 0; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_you_pay .trade_resource_box { + float: left; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_you_pay .you_pay_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -245px; + width: 29px; + height: 39px; + float: left; + margin-right: 5px; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_you_pay .you_pay_text { + margin-right: 5px; + float: left; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_you_get { + width: 50%; + height: 100%; + position: absolute; + top: 0; + right: 0; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_you_get .trade_resource_box { + float: right; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_you_get .you_get_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -284px; + width: 29px; + height: 39px; + float: right; + margin-left: 5px; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .trade_you_get .you_get_text { + margin-left: 5px; + float: right; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .unlock_ration { + position: absolute; + top: 5px; + left: 50%; + width: 70px; + margin-left: -35px; + font-weight: 600; + text-align: center; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_illustration .content .unlock_ration .unlock_ratio_text { + margin-bottom: 15px; +} + +.farm_towns.lvl_0 .actions .action_wrapper .bpv_trade_description { + width: 530px; + margin: 15px auto auto; +} + +.farm_towns.lvl_1 { + background-image: url(https://gpfr.innogamescdn.com/images/game/farmtowns/FV1.jpg); +} + +.farm_towns.lvl_1 .village_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -694px; + width: 99px; + height: 86px; +} + +.farm_towns.lvl_2 { + background-image: url(https://gpfr.innogamescdn.com/images/game/farmtowns/FV2.jpg); +} + +.farm_towns.lvl_2 .village_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -495px -694px; + width: 99px; + height: 86px; +} + +.farm_towns.lvl_3 { + background-image: url(https://gpfr.innogamescdn.com/images/game/farmtowns/FV3.jpg); +} + +.farm_towns.lvl_3 .village_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -99px -694px; + width: 99px; + height: 86px; +} + +.farm_towns.lvl_4 { + background-image: url(https://gpfr.innogamescdn.com/images/game/farmtowns/FV4.jpg); +} + +.farm_towns.lvl_4 .village_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -198px -694px; + width: 99px; + height: 86px; +} + +.farm_towns.lvl_5 { + background-image: url(https://gpfr.innogamescdn.com/images/game/farmtowns/FV5.jpg); +} + +.farm_towns.lvl_5 .village_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -396px -694px; + width: 99px; + height: 86px; +} + +.farm_towns.lvl_6 { + background-image: url(https://gpfr.innogamescdn.com/images/game/farmtowns/FV6.jpg); +} + +.farm_towns.lvl_6 .village_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -594px -694px; + width: 99px; + height: 86px; +} + +.farm_towns .infos .village_info { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -712px 0; + width: 218px; + height: 157px; + top: 10px; +} + +.farm_towns .infos .village_info .button_new.button { + cursor: pointer; + z-index: 5; +} + +.farm_towns .infos .village_info .button_new.button .caption { + padding: 0 0; + font-size: 23px; + line-height: 19px; +} + +.farm_towns .infos .village_info .button_new.button.disabled { + cursor: default; +} + +.farm_towns .infos .village_info .btn_next.square.small { + position: absolute; + right: 18px; + top: 4px; +} + +.farm_towns .infos .village_info .btn_next.square.small.disabled { + background-position: -18px -38px; +} + +.farm_towns .infos .village_info .btn_next.square.small.disabled:hover { + background-position: -18px -38px; +} + +.farm_towns .infos .village_info .btn_prev.square.small { + position: absolute; + left: 16px; + top: 4px; + background-position: 0 0; +} + +.farm_towns .infos .village_info .btn_prev.square.small:hover { + background-position: 0 -19px; +} + +.farm_towns .infos .village_info .btn_prev.square.small.disabled { + background-position: 0 -38px; +} + +.farm_towns .infos .village_info .btn_prev.square.small.disabled:hover { + background-position: 0 -38px; +} + +.farm_towns .infos .village_info .village_name { + position: relative; + color: #fff; + width: 100%; + text-align: center; + line-height: 28px; +} + +.farm_towns .infos .village_info .village_level_text { + position: absolute; + color: #fbb800; + width: 100%; + text-align: center; + left: 0; + bottom: 23px; +} + +.farm_towns .infos .village_info .village_level_state { + margin: 0 auto; + margin-top: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -297px -694px; + width: 99px; + height: 86px; +} + +.farm_towns .infos .village_info .btn_next, +.farm_towns .infos .village_info .btn_prev { + position: absolute; +} + +.farm_towns .infos .upgrade_running { + width: 181px; + position: relative; + top: -10px; + left: 18px; + display: none; +} + +.farm_towns .infos .upgrade_running .upgrade_running_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -728px -580px; + width: 181px; + height: 26px; +} + +.farm_towns .infos .upgrade_running .upgrade_running_middle { + background: url(https://gpfr.innogamescdn.com/images/game/farmtowns/bg_upgrade_middle.png); +} + +.farm_towns .infos .upgrade_running .upgrade_running_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -547px -580px; + width: 181px; + height: 35px; + margin-top: -15px; +} + +.farm_towns .infos .upgrade_running .lbl_complete { + color: #fc6; + text-align: center; + margin-top: -15px; + padding-left: 10px; + padding-right: 5px; + overflow: hidden; + width: 155px; +} + +.farm_towns .infos .upgrade_running .pb_bpv_upgrade_time { + width: 110px; + display: inline-block; + margin-top: 10px; +} + +.farm_towns .infos .upgrade_running .upgrade_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -317px; + width: 23px; + height: 22px; + display: inline-block; + margin-left: 18px; + vertical-align: top; + margin-top: 14px; +} + +.farm_towns .infos .village_update_btn { + top: -5px; + left: 10px; + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -712px -527px; + width: 194px; + height: 49px; +} + +.farm_towns .infos .village_update_btn .icon_upgrade_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -317px; + width: 23px; + height: 22px; + display: inline-block; + margin-top: 14px; + margin-left: 16px; +} + +.farm_towns .infos .village_update_btn .btn_upgrade { + display: inline-block; + vertical-align: top; + margin-top: 13px; + margin-left: -2px; + width: 140px; +} + +.farm_towns .infos .village_update_btn .btn_upgrade.disabled { + cursor: default; +} + +.farm_towns .infos .village_update_btn .battle_points { + position: relative; + top: 69px; + right: 30px; + margin-left: 45px; + width: 48px; + text-align: center; + padding-right: 25px; + color: #fc6; +} + +.farm_towns .infos .village_update_btn .battle_points:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -467px; + width: 18px; + height: 17px; +} + +.farm_towns .actions { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -198px; + width: 712px; + height: 198px; + bottom: 30px; + position: absolute; + margin-bottom: 60px; +} + +.farm_towns .actions.advisor { + bottom: 70px; +} + +.farm_towns .actions .action_description { + position: absolute; + width: 500px; + height: 16px; + top: 56px; + left: 110px; + text-align: center; + color: #fc6; +} + +.farm_towns .actions .button_tab { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -375px -630px; + width: 92px; + height: 45px; + position: absolute; + display: inline-block; +} + +.farm_towns .actions .button_tab:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -467px -630px; + width: 92px; + height: 45px; +} + +.farm_towns .actions .button_tab.selected, +.farm_towns .actions .button_tab:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -185px -630px; + width: 97px; + height: 54px; +} + +.farm_towns .actions .action_tabs { + height: 48px; + position: relative; + top: 5px; +} + +.farm_towns .actions .action_tabs .resources_max { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -559px -630px; + width: 132px; + height: 25px; + position: absolute; + bottom: -3px; + left: 50px; + display: none; +} + +.farm_towns .actions .action_tabs .resources_max .single-progressbar2 { + height: 100%; + position: absolute; + right: 0; + bottom: 0; + width: 111px; +} + +.farm_towns .actions .action_tabs .resources_max .single-progressbar2 .body, +.farm_towns .actions .action_tabs .resources_max .single-progressbar2 .border_l, +.farm_towns .actions .action_tabs .resources_max .single-progressbar2 .border_r { + display: none; +} + +.farm_towns .actions .action_tabs .resources_max .single-progressbar2 .progress { + height: 20px; +} + +.farm_towns .actions .action_tabs .resources_max .single-progressbar2 .progress .indicator { + background-position: 0 -731px; + height: 100%; +} + +.farm_towns .actions .action_tabs .resources_max .single-progressbar2 .caption { + line-height: 19px; + color: #fc6; + font-size: 11px; +} + +.farm_towns .actions .action_tabs .resources_max .single-progressbar2 .caption .max { + padding-left: 2px; +} + +.farm_towns .actions .resources { + left: 214px; + top: 3px; + cursor: pointer; +} + +.farm_towns .actions .resources:after { + content: ""; + position: absolute; + left: 21px; + top: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -526px; + width: 45px; + height: 33px; +} + +.farm_towns .actions .resources.selected, +.farm_towns .actions .resources:active { + top: 0; + left: 210px; +} + +.farm_towns .actions .resources.selected:after, +.farm_towns .actions .resources:active:after { + top: 14px; + left: 26px; +} + +.farm_towns .actions .btn_claim_resources, +.farm_towns .actions .btn_claim_units { + left: 2px; + bottom: 0; + cursor: pointer; + position: absolute; + width: 134px; +} + +.farm_towns .actions .units { + left: 313px; + top: 3px; + cursor: pointer; +} + +.farm_towns .actions .units:after { + content: ""; + position: absolute; + left: 30px; + top: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -157px; + width: 26px; + height: 40px; +} + +.farm_towns .actions .units.selected, +.farm_towns .actions .units:active { + top: 0; + left: 310px; +} + +.farm_towns .actions .units.selected:after, +.farm_towns .actions .units:active:after { + left: 35px; + top: 9px; +} + +.farm_towns .actions .trade { + right: 209px; + top: 3px; + cursor: pointer; +} + +.farm_towns .actions .trade:after { + content: ""; + position: absolute; + left: 24px; + top: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -442px; + width: 38px; + height: 44px; +} + +.farm_towns .actions .trade.selected, +.farm_towns .actions .trade:active { + top: 0; + right: 205px; +} + +.farm_towns .actions .trade.selected:after, +.farm_towns .actions .trade:active:after { + top: 6px; + left: 29px; +} + +.farm_towns .actions .actions_locked_banner { + z-index: 3; + display: inline-block; + position: relative; + bottom: -80px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.farm_towns .actions .actions_locked_banner.cooldown { + display: inline-block; +} + +.farm_towns .actions .actions_locked_banner.cooldown .unlock_text .unlock_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; + display: inline-block; + vertical-align: top; +} + +.farm_towns .actions .actions_locked_banner.hidden { + display: none; +} + +.farm_towns .actions .actions_locked_banner .banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -580px; + width: 547px; + height: 50px; +} + +.farm_towns .actions .actions_locked_banner .unlock_text { + text-align: center; + color: #fff; + line-height: 30px; + position: absolute; + top: 4px; + left: 77px; + width: 395px; + height: 30px; +} + +.farm_towns .actions .actions_locked_banner .unlock_text .text { + display: inline-block; + vertical-align: top; +} + +.farm_towns .actions .action_wrapper { + position: relative; +} + +.farm_towns .actions .action_wrapper .action_card { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -712px -157px; + width: 185px; + height: 185px; + position: absolute; + display: inline-block; + top: 32px; +} + +.farm_towns .actions .action_wrapper .action_card:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -712px -342px; + width: 185px; + height: 185px; +} + +.farm_towns .actions .action_wrapper .action_card.resources_bpv .action_count { + position: absolute; + top: 95px; + left: 100px; + font-weight: 600; +} + +.farm_towns .actions .action_wrapper .action_card.resources_bpv .action_count:before { + content: ""; + position: absolute; + left: -60px; + top: -8px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -526px; + width: 45px; + height: 33px; +} + +.farm_towns .actions .action_wrapper .action_card.units_bpv .action_count { + position: absolute; + top: 90px; + left: 0; + font-weight: 600; + width: 100%; + text-align: center; +} + +.farm_towns .actions .action_wrapper .action_card .curtain { + left: -2px; + background-color: #000; + opacity: .5; + margin: 5px 30px 15px 22px; + position: absolute; + right: -3px; + bottom: -4px; + top: -2px; +} + +.farm_towns .actions .action_wrapper .action_card .card_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -630px; + width: 185px; + height: 64px; + position: absolute; + top: 25px; + left: 0; +} + +.farm_towns .actions .action_wrapper .action_card .card_banner .card_banner_text { + position: absolute; + top: 9px; + left: 30px; + width: 120px; + height: 40px; + color: #fff; + text-align: center; + font-size: 10px; + overflow: hidden; + line-height: 12px; +} + +.farm_towns .actions .action_wrapper .action_card .action_time_wrapper { + position: absolute; + bottom: 38px; + height: 20px; + width: 100%; +} + +.farm_towns .actions .action_wrapper .action_card .action_time_wrapper:before { + content: ""; + background-image: url(https://gpfr.innogamescdn.com/images/game/res/time.png); + position: absolute; + left: 27px; + top: -8px; + width: 30px; + height: 30px; +} + +.farm_towns .actions .action_wrapper .action_card .action_time { + font-weight: 600; + text-align: center; + font-size: 12px; + width: 100px; + position: absolute; + right: 30px; +} + +.farm_towns .actions .action_wrapper .action_card .card_click_area { + width: 138px; + height: 170px; + position: absolute; + top: 3px; + left: 20px; + cursor: pointer; +} + +.farm_towns .actions .action_wrapper .action_card .card_click_area:hover .button_new .caption { + background-position: 0 -161px; +} + +.farm_towns .actions .action_wrapper .action_card .card_click_area:hover .button_new.disabled .caption { + background-position: 0 -184px; + cursor: default; +} + +.farm_towns .actions .action_wrapper .action_card:first-child { + left: 31px; +} + +.farm_towns .actions .action_wrapper .action_card.units_bpv .action_icon { + box-shadow: inset 0 0 4px #000; +} + +.farm_towns .actions .action_wrapper .action_card.resources_bpv:first-child .action_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -282px -630px; + width: 93px; + height: 53px; + position: relative; + top: 25px; + left: 50px; +} + +.farm_towns .actions .action_wrapper .action_card.units_bpv:first-child .action_icon { + position: relative; + top: 35px; + left: 65px; +} + +.farm_towns .actions .action_wrapper .action_card:nth-child(2) { + left: 190px; +} + +.farm_towns .actions .action_wrapper .action_card.resources_bpv:nth-child(2) .action_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -792px -694px; + width: 111px; + height: 72px; + position: relative; + top: 10px; + left: 45px; +} + +.farm_towns .actions .action_wrapper .action_card.units_bpv:nth-child(2) .action_icon { + position: relative; + top: 35px; + left: 65px; +} + +.farm_towns .actions .action_wrapper .action_card:nth-child(3) { + right: 174px; +} + +.farm_towns .actions .action_wrapper .action_card.resources_bpv:nth-child(3) .action_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -780px; + width: 109px; + height: 70px; + position: relative; + top: 14px; + left: 38px; +} + +.farm_towns .actions .action_wrapper .action_card.units_bpv:nth-child(3) .action_icon { + position: relative; + top: 35px; + left: 65px; +} + +.farm_towns .actions .action_wrapper .action_card:last-child { + right: 13px; +} + +.farm_towns .actions .action_wrapper .action_card.resources_bpv:last-child .action_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -109px -780px; + width: 116px; + height: 65px; + position: relative; + top: 16px; + left: 36px; +} + +.farm_towns .actions .action_wrapper .action_card.units_bpv:last-child .action_icon { + position: relative; + top: 35px; + left: 65px; +} + +.farm_towns .trade_resource_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -635px -396px; + width: 46px; + height: 46px; +} + +.farm_towns .resource { + position: relative; + display: block; + margin: 8px; +} + +.farm_towns .resource.stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -287px; + width: 30px; + height: 30px; +} + +.farm_towns .resource.iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -372px; + width: 30px; + height: 30px; +} + +.farm_towns .resource.wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -227px; + width: 30px; + height: 30px; +} + +.farm_towns .buttons { + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 40px; +} + +.farm_towns .buttons .vertical_divider { + position: absolute; + bottom: 17px; + left: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/windows/column/yellow_box_horizontal.png) no-repeat 50% -9px; + height: 16px; +} + +.farm_towns .buttons .btn_unlock { + position: absolute; + bottom: 12px; + width: 200px; + margin: auto; + left: 0; + right: 0; +} + +.farm_towns .buttons .btn_unlock .description_text { + display: inline-block; +} + +.farm_towns .buttons .btn_unlock .cost_text { + display: inline-block; + margin-left: 15px; +} + +.farm_towns .advisor_container { + bottom: 9px; + top: inherit; + left: 0; + margin-left: 0; + width: 610px; +} + +.farm_towns .advisor_container .content { + height: 52px; +} + +.farm_towns .advisor_container .advisors40x40.captain { + margin-top: 3px; +} + +.farm_towns .advisor_container .text { + width: 370px; +} + +.farm_towns .advisor_container .btn_activate_captain { + top: 18px; + right: -210px; +} + +.farm_towns .advisor_container .advantage_icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_2.08.png) no-repeat 0 -240px; + padding: 7px 15px; + margin-right: 5px; +} + +.farm_towns .advisor_container .iconbox { + position: absolute; + bottom: 10px; + margin-left: 60px; + width: 360px; +} + +.lvl_0 .button_new.icon_type_battle_points .caption { + line-height: 31px; + font-weight: 600; +} + +.button_new.icon_type_battle_points .caption { + font-weight: 400; +} + +.button_new.icon_type_battle_points .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -467px; + width: 18px; + height: 17px; + margin-left: 4px; + margin-top: -2px; +} + +.upgrade_button_tooltip { + text-align: center; +} + +.upgrade_button_tooltip .hl2, +.upgrade_button_tooltip .hl3, +.upgrade_button_tooltip .info { + margin-top: 10px; +} + +.upgrade_button_tooltip .hl { + font-weight: 600; +} + +.upgrade_button_tooltip .red { + color: #e72200; +} + +.upgrade_button_tooltip b { + display: block; +} + +.upgrade_button_tooltip ul { + list-style: disc; + padding-left: 34px; + text-align: left; + margin-bottom: 5px; +} + +.upgrade_button_tooltip .divider { + height: 1px; + width: 150px; + background: linear-gradient(to right,#fadc8e,#aa741d,#fadc8e); + margin-bottom: 5px; + position: inherit; + margin-left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.upgrade_button_tooltip .battle_points { + height: 17px; + line-height: 17px; +} + +.upgrade_button_tooltip .battle_points span { + vertical-align: top; +} + +.upgrade_button_tooltip .battle_points_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -467px; + width: 18px; + height: 17px; + display: inline-block; + margin-left: 5px; +} + +.upgrade_button_tooltip .upgrade_time:before { + content: ""; + background-image: url(https://gpfr.innogamescdn.com/images/game/res/time20x20.png); + position: absolute; + width: 20px; + height: 20px; + left: 80px; + margin-top: -2px; +} + +.claim_tooltip { + width: 230px; + text-align: center; +} + +.claim_tooltip .headline { + font-weight: 600; + margin-top: 5px; +} + +.claim_tooltip .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/farmtowns_bdd9823.png) no-repeat 0 -196px; + width: 140px; + height: 1px; + left: 50px; + margin-bottom: 5px; +} + +.claim_tooltip .resources>div { + display: inline-block; + line-height: 30px; +} + +.claim_tooltip .resources .amount { + margin-left: 35px; +} + +.claim_tooltip .resources .stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -287px; + width: 30px; + height: 30px; + margin-left: 40px; +} + +.claim_tooltip .resources .iron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -372px; + width: 30px; + height: 30px; + margin-left: 40px; +} + +.claim_tooltip .resources .wood { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat -897px -227px; + width: 30px; + height: 30px; + margin-left: -30px; +} + +.claim_tooltip .unit_text { + line-height: 30px; +} + +.claim_tooltip .time { + line-height: 30px; + margin-left: 20px; +} + +.claim_tooltip .time:before { + content: ""; + background-image: url(https://gpfr.innogamescdn.com/images/game/res/time.png); + position: absolute; + left: 65px; + width: 30px; + height: 30px; +} + +.farm_town .action_wrapper .trading_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/battle_point_villages/battle_point_villages_e6b65fc.png) no-repeat 0 -396px; + width: 635px; + height: 184px; + position: absolute; + top: 32px; + left: 43px; + text-align: center; +} + +.farm_town .action_wrapper .trading_wrapper .button_down, +.farm_town .action_wrapper .trading_wrapper .button_up { + cursor: pointer; +} + +.farm_town .action_wrapper .trading_wrapper .disabled .button_down, +.farm_town .action_wrapper .trading_wrapper .disabled .button_up { + cursor: default; +} + +.farm_town .action_wrapper .trading_wrapper .bpv_capacity_bar { + width: 400px; + margin: 20px auto; + z-index: 1; +} + +.farm_town .action_wrapper .trading_wrapper .trade_slider_slider { + left: 185px; + top: 105px; +} + +.farm_town .action_wrapper .trading_wrapper .trade_slider_down { + position: absolute; + right: 5px; + top: 34px; +} + +.farm_town .action_wrapper .trading_wrapper .trade_slider_up { + position: absolute; + left: 5px; + top: 34px; +} + +.farm_town .action_wrapper .trading_wrapper .trade_resource_box { + margin-top: 44px; + display: inline-block; + vertical-align: top; +} + +.farm_town .action_wrapper .trading_wrapper .trade_arrows { + display: inline-block; + vertical-align: top; + margin-top: 50px; +} + +.farm_town .action_wrapper .trading_wrapper .trade_text { + display: inline-block; + vertical-align: top; + margin-top: 25px; + margin-bottom: 17px; + font-weight: 600; + width: 115px; + text-align: right; + line-height: 17px; +} + +.farm_town .action_wrapper .trading_wrapper .you_pay_wrapper { + width: 115px; + margin-left: 70px; + height: 100%; + text-align: right; + display: inline-block; + margin-right: 15px; + float: left; +} + +.farm_town .action_wrapper .trading_wrapper .trade_ratio { + position: absolute; + left: 0; + right: 0; + top: 92px; + line-height: 25px; +} + +.farm_town .action_wrapper .trading_wrapper .bpv_ratio_text { + font-weight: 600; + color: #000; + position: absolute; + top: 62px; + left: 298px; +} + +.farm_town .action_wrapper .trading_wrapper .trade_you_pay { + width: 50%; + height: 50%; + position: absolute; + top: 36px; + left: 0; +} + +.farm_town .action_wrapper .trading_wrapper .trade_you_pay .trade_resource_box { + float: left; +} + +.farm_town .action_wrapper .trading_wrapper .trade_you_pay .you_pay_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -245px; + width: 29px; + height: 39px; + float: left; + margin-right: 5px; +} + +.farm_town .action_wrapper .trading_wrapper .you_get_wrapper { + width: 115px; + margin-right: 70px; + height: 100%; + text-align: left; + display: inline-block; + margin-left: 15px; + float: right; +} + +.farm_town .action_wrapper .trading_wrapper .you_get_wrapper .hymn_to_aphrodite_trade_output { + float: right; + margin-right: 20px; + margin-top: 2px; +} + +.farm_town .action_wrapper .trading_wrapper .trade_you_get { + width: 50%; + height: 50%; + position: absolute; + top: 36px; + right: 0; +} + +.farm_town .action_wrapper .trading_wrapper .trade_you_get .trade_resource_box { + float: right; +} + +.farm_town .action_wrapper .trading_wrapper .trade_you_get .you_get_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/market/market_buttons_2.94.png) no-repeat 0 -284px; + width: 29px; + height: 39px; + float: right; + margin-left: 5px; +} + +.farm_town .action_wrapper .trading_wrapper .trade_you_get .you_get_text { + text-align: left; +} + +.farm_town .action_wrapper .trading_wrapper .btn_trade { + margin-top: 72px; + min-width: 130px; +} + +.farm_town .action_wrapper .trading_wrapper .duration { + position: absolute; + right: 35px; + bottom: 23px; +} + +.farm_town .action_wrapper .trading_wrapper .curtain { + left: 0; + background-color: #000; + opacity: .5; + margin: 4px 7px 9px 7px; + position: absolute; + right: 0; + bottom: 0; + top: 0; + z-index: 3; + display: inline-block; +} + +.farm_town .action_wrapper .trading_wrapper .curtain.hidden { + display: none; +} + +.no_gold_dialog .dialog_container { + background-image: url(https://gpfr.innogamescdn.com/images/game/no_gold_dialog/get_more_gold.jpg); + width: 546px; + height: 304px; + text-align: center; +} + +.no_gold_dialog .dialog_container .big_button_banner { + background-image: url(https://gpfr.innogamescdn.com/images/game/no_gold_dialog/big_button_banner.png); + width: 546px; + height: 16px; + position: relative; + top: 29px; +} + +.no_gold_dialog .dialog_container .scroll_container { + display: inline-block; + margin-top: 22px; +} + +.no_gold_dialog .dialog_container .button_container { + margin-top: 140px; +} + +.no_gold_dialog .dialog_container .scroll { + display: inline-block; +} + +.no_gold_dialog .dialog_container .scroll.left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_left_17e1209.png) no-repeat 0 0; + width: 37px; + height: 70px; +} + +.no_gold_dialog .dialog_container .scroll.middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_middle_dc72eed.png) no-repeat 0 0; + width: 200px; + height: 70px; + margin-left: -11px; + width: auto; + overflow: hidden; +} + +.no_gold_dialog .dialog_container .scroll.middle .text { + white-space: nowrap; + line-height: 60px; + float: left; +} + +.no_gold_dialog .dialog_container .scroll.right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/scroll_animation/scroll_right_d103e71.png) no-repeat 0 0; + width: 37px; + height: 70px; + margin-left: -12px; +} + +.dialog .confirmation.fatal_attack_warning .mood_image { + background: url(https://gpfr.innogamescdn.com/images/game/fatal_attack_warning/fatal_attack_warning.jpg) no-repeat 0 0; + width: 550px; + height: 226px; +} + +.dialog .confirmation.fatal_attack_warning .btn_confirm { + margin-left: -30px; +} + +.dialog .confirmation.fatal_attack_warning .btn_cancel { + margin-left: 40px; +} + +.dialog .confirmation.fatal_attack_warning .warning { + background: url(https://gpfr.innogamescdn.com/images/game/fatal_attack_warning/warning.png) no-repeat 0 0; + width: 80px; + height: 93px; + display: inline-block; + margin-left: 25px; + margin-top: -20px; +} + +.dialog .confirmation.fatal_attack_warning .question { + padding: 0; + text-align: left; + display: inline-block; + width: 410px; + vertical-align: top; + margin: 5px 10px auto; +} + +.community_goals_sprite .goal1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -233px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal1_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -521px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -265px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal2_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -297px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -329px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal3_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -361px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -393px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal4_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -425px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -457px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .goal5_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -489px; + width: 33px; + height: 32px; +} + +.community_goals_sprite .harmony_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -95px; + width: 25px; + height: 22px; +} + +.community_goals_sprite .info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -117px; + width: 26px; + height: 26px; +} + +.community_goals_sprite .progress_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 0; + width: 120px; + height: 19px; +} + +.community_goals_sprite .progress_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -19px; + width: 120px; + height: 19px; +} + +.community_goals_sprite .progress_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -38px; + width: 120px; + height: 19px; +} + +.community_goals_sprite .progress_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -57px; + width: 120px; + height: 19px; +} + +.community_goals_sprite .progress_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -76px; + width: 120px; + height: 19px; +} + +.community_goals_sprite .title_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -143px; + width: 57px; + height: 30px; +} + +.community_goals_sprite .title_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -203px; + width: 24px; + height: 30px; +} + +.community_goals_sprite .title_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -173px; + width: 57px; + height: 30px; +} + +.community_goals { + position: absolute; + text-align: center; + bottom: 2px; + width: 100%; +} + +.community_goals .title_container>div { + display: inline-block; + vertical-align: middle; +} + +.community_goals .title_container .left { + margin-right: -5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -143px; + width: 57px; + height: 30px; +} + +.community_goals .title_container .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -203px; + width: 24px; + height: 30px; + overflow: hidden; + line-height: 26px; + color: #ffc76e; + background-repeat: repeat-x; + background-size: 1000% 553px; + width: auto; +} + +.community_goals .title_container .middle .title { + position: relative; + width: auto; +} + +.community_goals .title_container .right { + margin-left: -5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -173px; + width: 57px; + height: 30px; +} + +.community_goals .title_container .info { + position: relative; + top: 1px; + left: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -117px; + width: 26px; + height: 26px; +} + +.community_goals .progress_container { + height: 28px; + width: 100%; + position: relative; +} + +.community_goals .progress_container .single-progressbar { + position: absolute; + width: 125px; + height: 18px; + bottom: 10px; +} + +.community_goals .progress_container .single-progressbar .caption, +.community_goals .progress_container .single-progressbar .progress { + top: 0; + left: 0; + z-index: 12; + line-height: 18px; +} + +.community_goals .progress_container .single-progressbar .text { + position: relative; + color: #ffc76e; + font-weight: 400; + font-size: 11px; +} + +.community_goals .progress_container .single-progressbar .icon { + display: inline-block; + margin-top: -1px; + vertical-align: middle; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -95px; + width: 25px; + height: 22px; +} + +.community_goals .progress_container .progress_0 { + left: 12px; + width: 118px; +} + +.community_goals .progress_container .progress_1 { + left: 153px; +} + +.community_goals .progress_container .progress_2 { + left: 302px; +} + +.community_goals .progress_container .progress_3 { + left: 451px; +} + +.community_goals .progress_container .progress_4 { + left: 600px; +} + +.community_goals .progress_container.lvl_0 .single-progressbar .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 0; + width: 120px; + height: 19px; + width: 0; + background-repeat: repeat-x; +} + +.community_goals .progress_container.lvl_1 .single-progressbar .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -19px; + width: 120px; + height: 19px; + width: 0; + background-repeat: repeat-x; +} + +.community_goals .progress_container.lvl_2 .single-progressbar .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -38px; + width: 120px; + height: 19px; + width: 0; + background-repeat: repeat-x; +} + +.community_goals .progress_container.lvl_3 .single-progressbar .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -57px; + width: 120px; + height: 19px; + width: 0; + background-repeat: repeat-x; +} + +.community_goals .progress_container.lvl_4 .single-progressbar .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -76px; + width: 120px; + height: 19px; + width: 0; + background-repeat: repeat-x; +} + +.community_goals .reward { + position: absolute; + bottom: 3px; + z-index: 15; +} + +.community_goals .reward.reward_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -233px; + width: 33px; + height: 32px; + left: 124px; +} + +.community_goals .reward.reward_0.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -521px; + width: 33px; + height: 32px; +} + +.community_goals .reward.reward_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -265px; + width: 33px; + height: 32px; + left: 273px; +} + +.community_goals .reward.reward_1.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -297px; + width: 33px; + height: 32px; +} + +.community_goals .reward.reward_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -329px; + width: 33px; + height: 32px; + left: 422px; +} + +.community_goals .reward.reward_2.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -361px; + width: 33px; + height: 32px; +} + +.community_goals .reward.reward_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -393px; + width: 33px; + height: 32px; + left: 571px; +} + +.community_goals .reward.reward_3.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -425px; + width: 33px; + height: 32px; +} + +.community_goals .reward.reward_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -457px; + width: 33px; + height: 32px; + left: 720px; +} + +.community_goals .reward.reward_4.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/community_goals/community_goals_2.91.png) no-repeat 0 -489px; + width: 33px; + height: 32px; +} + +.community_goal_reached .button_container { + width: 100%; + margin-bottom: 10px; +} + +.community_goal_reached .btn_okay { + width: 50%; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.community_goal_reached .scroll_small { + display: inline-block; + height: 70px; + margin-top: 150px; + width: 100%; +} + +.community_goal_reached .scroll_small>div { + display: inline-block; + height: 122px; +} + +.community_goal_reached .scroll_small .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_left.png) no-repeat; + width: 85px; + margin-right: -5px; +} + +.community_goal_reached .scroll_small .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_middle.png) repeat-x; + width: 240px; + margin-right: -5px; +} + +.community_goal_reached .scroll_small .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_right.png) no-repeat; + width: 85px; +} + +.community_goal_reached .scroll_small.size_1 { + margin-left: 80px; +} + +.community_goal_reached .scroll_small.size_1 .middle { + width: 135px; +} + +.community_goal_reached .scroll_small.size_2 { + margin-left: 30px; +} + +.community_goal_reached .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat 0 0; + width: 119px; + height: 118px; + position: relative; + left: 5px; + top: -3px; + float: left; +} + +.community_goal_reached .reward_glow .plus_1 { + float: right; + font-size: 20px; + font-weight: 600; + margin-top: -20px; +} + +.community_goal_reached .reward { + position: relative; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.community_goal_reached .background_image { + margin: 5px auto; + width: 471px; + height: 279px; +} + +.community_goal_reached .background_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/community_illustration.jpg) no-repeat; +} + +.community_goal_reached .reward_glow .plus_1 { + display: none; +} + +.turn_over_tokens_assassins_event_icon .assassins_event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/event_icon_465f646.png) no-repeat 0 0; + width: 125px; + height: 125px; +} + +.turn_over_tokens_assassins_event_icon .assassins_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/event_icon_465f646.png) no-repeat -125px 0; + width: 125px; + height: 125px; +} + +.turn_over_tokens_assassins_event_icon .assassins_event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/event_icon_465f646.png) no-repeat 0 -125px; + width: 125px; + height: 125px; +} + +.turn_over_tokens_assassins_sprite .awards_assassins2015_engineer_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -888px -1636px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_assassins_sprite .awards_assassins2015_legionary_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -812px -1636px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_assassins_sprite .awards_assassins2015_rider_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1604px -704px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_assassins_sprite .bowl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -182px -1237px; + width: 154px; + height: 108px; +} + +.turn_over_tokens_assassins_sprite .cavalry_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -282px; + width: 123px; + height: 279px; +} + +.turn_over_tokens_assassins_sprite .cavalry_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -987px; + width: 130px; + height: 285px; +} + +.turn_over_tokens_assassins_sprite .cavalry_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -255px -1354px; + width: 127px; + height: 228px; +} + +.turn_over_tokens_assassins_sprite .cavalry_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1535px -1354px; + width: 102px; + height: 116px; +} + +.turn_over_tokens_assassins_sprite .cavalry_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -1636px; + width: 131px; + height: 165px; +} + +.turn_over_tokens_assassins_sprite .cavalry_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -1272px; + width: 145px; + height: 79px; +} + +.turn_over_tokens_assassins_sprite .cavalry_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px 0; + width: 216px; + height: 305px; +} + +.turn_over_tokens_assassins_sprite .cavalry_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -798px; + width: 197px; + height: 189px; +} + +.turn_over_tokens_assassins_sprite .cavalry_09 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px -305px; + width: 179px; + height: 365px; +} + +.turn_over_tokens_assassins_sprite .cavalry_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px 0; + width: 216px; + height: 230px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -826px -1354px; + width: 176px; + height: 128px; +} + +.turn_over_tokens_assassins_sprite .legionary_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -1354px; + width: 129px; + height: 282px; +} + +.turn_over_tokens_assassins_sprite .legionary_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1291px -699px; + width: 128px; + height: 287px; +} + +.turn_over_tokens_assassins_sprite .legionary_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -382px -1354px; + width: 127px; + height: 192px; +} + +.turn_over_tokens_assassins_sprite .legionary_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -958px -574px; + width: 100px; + height: 123px; +} + +.turn_over_tokens_assassins_sprite .legionary_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -336px -1237px; + width: 128px; + height: 102px; +} + +.turn_over_tokens_assassins_sprite .legionary_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1291px -986px; + width: 143px; + height: 65px; +} + +.turn_over_tokens_assassins_sprite .legionary_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -499px; + width: 139px; + height: 299px; +} + +.turn_over_tokens_assassins_sprite .legionary_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -799px; + width: 124px; + height: 164px; +} + +.turn_over_tokens_assassins_sprite .legionary_09 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1291px -315px; + width: 142px; + height: 384px; +} + +.turn_over_tokens_assassins_sprite .legionary_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1291px 0; + width: 174px; + height: 315px; +} + +.turn_over_tokens_assassins_sprite .sapper_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -129px -1354px; + width: 126px; + height: 278px; +} + +.turn_over_tokens_assassins_sprite .sapper_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px 0; + width: 124px; + height: 282px; +} + +.turn_over_tokens_assassins_sprite .sapper_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -963px; + width: 122px; + height: 126px; +} + +.turn_over_tokens_assassins_sprite .sapper_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -633px -1636px; + width: 101px; + height: 114px; +} + +.turn_over_tokens_assassins_sprite .sapper_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -131px -1636px; + width: 127px; + height: 132px; +} + +.turn_over_tokens_assassins_sprite .sapper_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -1518px; + width: 107px; + height: 116px; +} + +.turn_over_tokens_assassins_sprite .sapper_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -832px -1123px; + width: 94px; + height: 74px; +} + +.turn_over_tokens_assassins_sprite .sapper_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -561px; + width: 92px; + height: 238px; +} + +.turn_over_tokens_assassins_sprite .sapper_09 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -1056px; + width: 182px; + height: 298px; +} + +.turn_over_tokens_assassins_sprite .sapper_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -230px; + width: 174px; + height: 269px; +} + +.turn_over_tokens_assassins_sprite .assassins_event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -383px -1636px; + width: 125px; + height: 125px; +} + +.turn_over_tokens_assassins_sprite .assassins_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -508px -1636px; + width: 125px; + height: 125px; +} + +.turn_over_tokens_assassins_sprite .assassins_event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -258px -1636px; + width: 125px; + height: 125px; +} + +.turn_over_tokens_assassins_sprite .bundle_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -464px -1237px; + width: 116px; + height: 94px; +} + +.turn_over_tokens_assassins_sprite .bundle_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -509px -1354px; + width: 138px; + height: 168px; +} + +.turn_over_tokens_assassins_sprite .bundle_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1413px -1354px; + width: 122px; + height: 119px; +} + +.turn_over_tokens_assassins_sprite .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -761px -731px; + width: 266px; + height: 20px; +} + +.turn_over_tokens_assassins_sprite .helmet { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -262px -815px; + width: 262px; + height: 241px; +} + +.turn_over_tokens_assassins_sprite .helmet_hit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -815px; + width: 262px; + height: 241px; +} + +.turn_over_tokens_assassins_sprite .armor_piece_cavalry { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1323px -1056px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_assassins_sprite .armor_piece_legionary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1269px -1056px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_assassins_sprite .armor_piece_sapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1215px -1056px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_assassins_sprite .battle_token_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1773px -687px; + width: 19px; + height: 14px; +} + +.turn_over_tokens_assassins_sprite .bottom_UI_unit_killed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1773px -666px; + width: 16px; + height: 21px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_cavalry { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1002px -1354px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_cavalry_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -1232px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_cavalry_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -667px -1237px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_legionary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1276px -1354px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_legionary_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -1375px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_legionary_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -580px -1237px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_sapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1139px -1354px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_sapper_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -1089px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_assassins_sprite .collection_complete_sapper_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -754px -1237px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_assassins_sprite .kill_animation_skull { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1773px -561px; + width: 32px; + height: 42px; +} + +.turn_over_tokens_assassins_sprite .button_engineer_aim { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -997px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_engineer_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_engineer_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1153px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_engineer_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1231px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_legionnaire_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1309px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_legionnaire_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1387px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_legionnaire_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -734px -1636px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_rider_aim { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -987px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_rider_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1069px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_rider_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1151px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_rider_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -841px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .button_skull { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -919px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins_sprite .quiver_icon_full { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1773px -645px; + width: 21px; + height: 21px; +} + +.turn_over_tokens_assassins_sprite .reward_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1377px -1056px; + width: 51px; + height: 54px; +} + +.turn_over_tokens_assassins_sprite .cavalary1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -301px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins_sprite .cavalary2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1419px -769px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins_sprite .cavalary3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -417px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins_sprite .engineer1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -334px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins_sprite .engineer2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1419px -741px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins_sprite .engineer3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -392px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins_sprite .legionnaire1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -268px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins_sprite .legionnaire2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1233px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins_sprite .legionnaire3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -367px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -780px 0; + width: 295px; + height: 475px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -528px -751px; + width: 64px; + height: 45px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_fog { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 0; + width: 780px; + height: 574px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_harmony_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -230px; + width: 41px; + height: 38px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_harmony_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1604px -499px; + width: 71px; + height: 103px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_progress_bar_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -524px -976px; + width: 761px; + height: 50px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_trophy_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -391px -751px; + width: 82px; + height: 61px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_trophy_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1604px -602px; + width: 69px; + height: 102px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_unit_crack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1419px -699px; + width: 45px; + height: 42px; +} + +.turn_over_tokens_assassins_sprite .shooting_animation_unit_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1610px -1272px; + width: 66px; + height: 66px; +} + +.turn_over_tokens_assassins_sprite .trophy_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -473px -751px; + width: 55px; + height: 58px; +} + +.turn_over_tokens_assassins_sprite .window_banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px -670px; + width: 179px; + height: 128px; +} + +.turn_over_tokens_assassins_sprite .window_banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1773px -603px; + width: 27px; + height: 42px; +} + +.turn_over_tokens_assassins_sprite .window_banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -647px -1354px; + width: 179px; + height: 128px; +} + +.turn_over_tokens_assassins_sprite .tut_step_1_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -182px -1056px; + width: 295px; + height: 181px; +} + +.turn_over_tokens_assassins_sprite .tut_step_2_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -391px -574px; + width: 370px; + height: 177px; +} + +.turn_over_tokens_assassins_sprite .tut_step_3_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -574px; + width: 391px; + height: 241px; +} + +.turn_over_tokens_assassins_sprite .tut_step_4_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -524px -815px; + width: 362px; + height: 161px; +} + +.turn_over_tokens_assassins_sprite .tut_step_5_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -886px -815px; + width: 380px; + height: 137px; +} + +.turn_over_tokens_assassins_sprite .tut_step_6_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -780px -475px; + width: 252px; + height: 94px; +} + +.turn_over_tokens_assassins_sprite .tut_step_7_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -832px -1056px; + width: 383px; + height: 67px; +} + +.turn_over_tokens_assassins_sprite .tut_step_8_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -477px -1056px; + width: 355px; + height: 145px; +} + +.turn_over_tokens_assassins_sprite .tut_step_9_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -761px -574px; + width: 197px; + height: 157px; +} + +.turn_over_tokens_slingers_event_icon .assassins_event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/event_icon_3c08ea6.png) no-repeat 0 0; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_event_icon .assassins_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/event_icon_3c08ea6.png) no-repeat -114px 0; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_event_icon .assassins_event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/event_icon_3c08ea6.png) no-repeat -228px 0; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_sprite .awards_assassins2015_engineer_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -963px -1291px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_slingers_sprite .awards_assassins2015_legionary_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1421px -1206px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_slingers_sprite .awards_assassins2015_rider_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1039px -1291px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_slingers_sprite .cavalry_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1032px -475px; + width: 40px; + height: 84px; +} + +.turn_over_tokens_slingers_sprite .cavalry_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -426px -1378px; + width: 40px; + height: 70px; +} + +.turn_over_tokens_slingers_sprite .cavalry_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -529px; + width: 40px; + height: 95px; +} + +.turn_over_tokens_slingers_sprite .cavalry_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -266px -1378px; + width: 40px; + height: 72px; +} + +.turn_over_tokens_slingers_sprite .cavalry_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -672px; + width: 40px; + height: 94px; +} + +.turn_over_tokens_slingers_sprite .cavalry_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -313px; + width: 38px; + height: 75px; +} + +.turn_over_tokens_slingers_sprite .cavalry_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -306px -1378px; + width: 40px; + height: 70px; +} + +.turn_over_tokens_slingers_sprite .cavalry_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -78px; + width: 38px; + height: 77px; +} + +.turn_over_tokens_slingers_sprite .cavalry_09 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -386px -1378px; + width: 40px; + height: 70px; +} + +.turn_over_tokens_slingers_sprite .cavalry_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1457px -958px; + width: 40px; + height: 88px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -650px -1110px; + width: 176px; + height: 128px; +} + +.turn_over_tokens_slingers_sprite .complete_flowers_engineer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -815px; + width: 233px; + height: 295px; +} + +.turn_over_tokens_slingers_sprite .complete_flowers_legionnaire { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px -286px; + width: 259px; + height: 287px; +} + +.turn_over_tokens_slingers_sprite .complete_flowers_rider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px 0; + width: 268px; + height: 286px; +} + +.turn_over_tokens_slingers_sprite .legionary_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -106px -1378px; + width: 40px; + height: 76px; +} + +.turn_over_tokens_slingers_sprite .legionary_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -69px -1378px; + width: 37px; + height: 87px; +} + +.turn_over_tokens_slingers_sprite .legionary_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1282px -1110px; + width: 60px; + height: 77px; +} + +.turn_over_tokens_slingers_sprite .legionary_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -722px -1026px; + width: 40px; + height: 64px; +} + +.turn_over_tokens_slingers_sprite .legionary_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -346px -1378px; + width: 40px; + height: 70px; +} + +.turn_over_tokens_slingers_sprite .legionary_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -466px -1378px; + width: 40px; + height: 69px; +} + +.turn_over_tokens_slingers_sprite .legionary_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1277px -1291px; + width: 40px; + height: 67px; +} + +.turn_over_tokens_slingers_sprite .legionary_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -186px -1378px; + width: 40px; + height: 74px; +} + +.turn_over_tokens_slingers_sprite .legionary_09 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -463px; + width: 37px; + height: 74px; +} + +.turn_over_tokens_slingers_sprite .legionary_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -226px -1378px; + width: 40px; + height: 73px; +} + +.turn_over_tokens_slingers_sprite .sapper_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -682px -1026px; + width: 40px; + height: 65px; +} + +.turn_over_tokens_slingers_sprite .sapper_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px 0; + width: 38px; + height: 78px; +} + +.turn_over_tokens_slingers_sprite .sapper_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -506px -1378px; + width: 40px; + height: 69px; +} + +.turn_over_tokens_slingers_sprite .sapper_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -762px -1026px; + width: 40px; + height: 63px; +} + +.turn_over_tokens_slingers_sprite .sapper_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -234px; + width: 37px; + height: 79px; +} + +.turn_over_tokens_slingers_sprite .sapper_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1457px -1082px; + width: 40px; + height: 87px; +} + +.turn_over_tokens_slingers_sprite .sapper_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -815px; + width: 40px; + height: 94px; +} + +.turn_over_tokens_slingers_sprite .sapper_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -155px; + width: 37px; + height: 79px; +} + +.turn_over_tokens_slingers_sprite .sapper_09 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -146px -1378px; + width: 40px; + height: 74px; +} + +.turn_over_tokens_slingers_sprite .sapper_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -388px; + width: 37px; + height: 75px; +} + +.turn_over_tokens_slingers_sprite .assassins_event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1168px -1110px; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_sprite .assassins_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1054px -1110px; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_sprite .assassins_event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -958px; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_sprite .bundle_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -761px -574px; + width: 154px; + height: 169px; +} + +.turn_over_tokens_slingers_sprite .bundle_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -915px -574px; + width: 154px; + height: 169px; +} + +.turn_over_tokens_slingers_sprite .bundle_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px 0; + width: 154px; + height: 169px; +} + +.turn_over_tokens_slingers_sprite .shop_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -940px -1110px; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_sprite .shop_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -826px -1110px; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_sprite .shop_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -1082px; + width: 114px; + height: 124px; +} + +.turn_over_tokens_slingers_sprite .armor_piece_cavalry { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1223px -1291px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_slingers_sprite .armor_piece_legionary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1169px -1291px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_slingers_sprite .armor_piece_sapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1115px -1291px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_slingers_sprite .battle_token_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -663px; + width: 26px; + height: 19px; +} + +.turn_over_tokens_slingers_sprite .bottom_UI_unit_killed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -537px; + width: 32px; + height: 32px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_cavalry { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -409px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_cavalry_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -529px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_cavalry_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -174px -1291px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_legionary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -169px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_legionary_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -672px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_legionary_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -87px -1291px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_sapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -289px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_sapper_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -815px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_slingers_sprite .collection_complete_sapper_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -1291px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_slingers_sprite .kill_animation_skull { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -766px; + width: 39px; + height: 49px; +} + +.turn_over_tokens_slingers_sprite .button_cavalary_aim { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -417px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_cavalary_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1153px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_cavalary_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_cavalary_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -807px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_engineer_aim { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -339px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_engineer_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -885px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_engineer_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1231px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_engineer_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -261px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_legionnaire_aim { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -1206px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_legionnaire_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -495px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_legionnaire_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -573px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_legionnaire_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -651px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .button_skull { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -729px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers_sprite .quiver_icon_full { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -682px; + width: 21px; + height: 21px; +} + +.turn_over_tokens_slingers_sprite .reward_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -528px -751px; + width: 51px; + height: 54px; +} + +.turn_over_tokens_slingers_sprite .cavalary1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -661px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers_sprite .cavalary2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -746px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers_sprite .cavalary3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -594px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers_sprite .engineer1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -579px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers_sprite .engineer2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -702px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers_sprite .engineer3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -619px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers_sprite .legionnaire1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -620px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers_sprite .legionnaire2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -790px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers_sprite .legionnaire3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -569px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -780px 0; + width: 295px; + height: 475px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1272px -676px; + width: 64px; + height: 45px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_fog { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 0; + width: 780px; + height: 574px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_harmony_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -909px; + width: 41px; + height: 38px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_harmony_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1272px -573px; + width: 71px; + height: 103px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_progress_bar_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -233px -976px; + width: 761px; + height: 50px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_trophy_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -391px -751px; + width: 82px; + height: 61px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_trophy_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -1378px; + width: 69px; + height: 102px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_unit_crack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -624px; + width: 45px; + height: 42px; +} + +.turn_over_tokens_slingers_sprite .shooting_animation_unit_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -616px -1026px; + width: 66px; + height: 66px; +} + +.turn_over_tokens_slingers_sprite .trophy_icon_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -644px; + width: 26px; + height: 19px; +} + +.turn_over_tokens_slingers_sprite .trophy_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -473px -751px; + width: 55px; + height: 58px; +} + +.turn_over_tokens_slingers_sprite .window_banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1154px -815px; + width: 179px; + height: 128px; +} + +.turn_over_tokens_slingers_sprite .window_banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -975px -815px; + width: 179px; + height: 128px; +} + +.turn_over_tokens_slingers_sprite .tut_step_1_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -1110px; + width: 295px; + height: 181px; +} + +.turn_over_tokens_slingers_sprite .tut_step_2_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -391px -574px; + width: 370px; + height: 177px; +} + +.turn_over_tokens_slingers_sprite .tut_step_3_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -574px; + width: 391px; + height: 241px; +} + +.turn_over_tokens_slingers_sprite .tut_step_4_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -233px -815px; + width: 362px; + height: 161px; +} + +.turn_over_tokens_slingers_sprite .tut_step_5_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -595px -815px; + width: 380px; + height: 137px; +} + +.turn_over_tokens_slingers_sprite .tut_step_6_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -780px -475px; + width: 252px; + height: 94px; +} + +.turn_over_tokens_slingers_sprite .tut_step_7_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -233px -1026px; + width: 383px; + height: 67px; +} + +.turn_over_tokens_slingers_sprite .tut_step_8_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -295px -1110px; + width: 355px; + height: 145px; +} + +.turn_over_tokens_slingers_sprite .tut_step_9_a { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px -573px; + width: 197px; + height: 157px; +} + +@-webkit-keyframes turn_over_tokens_slingers_targets_down-animation { + 100% { + background-position: 0 -6075px; + } +} + +@-ms-keyframes turn_over_tokens_slingers_targets_down-animation { + 100% { + background-position: 0 -6075px; + } +} + +@keyframes turn_over_tokens_slingers_targets_down-animation { + 100% { + background-position: 0 -6075px; + } +} + +.css_animation.turn_over_tokens_slingers_targets_down { + width: 397px; + height: 405px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/targets_down_eb8f3cd.png) no-repeat 0 0; + -webkit-animation: turn_over_tokens_slingers_targets_down-animation 1.6s steps(15) forwards; + -ms-animation: turn_over_tokens_slingers_targets_down-animation 1.6s steps(15) forwards; + animation: turn_over_tokens_slingers_targets_down-animation 1.6s steps(15) forwards; +} + +.css_animation.turn_over_tokens_slingers_targets_down-start { + width: 397px; + height: 405px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/targets_down_eb8f3cd.png) no-repeat 0 0; +} + +.turn_over_tokens_overall_sprite .harmony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat -119px 0; + width: 55px; + height: 58px; +} + +.turn_over_tokens_overall_sprite .harmony_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat -119px -58px; + width: 27px; + height: 23px; +} + +.turn_over_tokens_overall_sprite .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat 0 0; + width: 119px; + height: 118px; +} + +.assassins_fight { + position: relative; + overflow: hidden; + height: 527px; + width: 758px; +} + +.assassins_fight .ranking .content .list .icon.points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat -119px -58px; + width: 27px; + height: 23px; +} + +.assassins_fight .countdown_box .btn_info_overlay { + position: absolute; + bottom: 1px; + left: 50%; + margin-left: -13px; +} + +.assassins_fight .button_new.icon_type_battle_token .icon { + vertical-align: text-bottom; +} + +.assassins_fight .assassins_target { + position: absolute; + width: 78px; + height: 82px; + cursor: pointer; +} + +.assassins_fight .assassins_target.not_killed.cavalry:hover .target_bottom, +.assassins_fight .assassins_target.not_killed.cavalry:hover .target_left, +.assassins_fight .assassins_target.not_killed.cavalry:hover .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.cavalry:active .target_bottom, +.assassins_fight .assassins_target.not_killed.cavalry:active .target_left, +.assassins_fight .assassins_target.not_killed.cavalry:active .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.cavalry.disabled .target_bottom, +.assassins_fight .assassins_target.not_killed.cavalry.disabled .target_left, +.assassins_fight .assassins_target.not_killed.cavalry.disabled .target_top, +.assassins_fight .assassins_target.not_killed.cavalry.disabled:active .target_bottom, +.assassins_fight .assassins_target.not_killed.cavalry.disabled:active .target_left, +.assassins_fight .assassins_target.not_killed.cavalry.disabled:active .target_top, +.assassins_fight .assassins_target.not_killed.cavalry.disabled:hover .target_bottom, +.assassins_fight .assassins_target.not_killed.cavalry.disabled:hover .target_left, +.assassins_fight .assassins_target.not_killed.cavalry.disabled:hover .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.cavalry .target_bottom { + position: absolute; + bottom: 18px; + right: 12px; +} + +.assassins_fight .assassins_target.not_killed.cavalry .target_top { + position: absolute; + top: 10px; + left: 17px; +} + +.assassins_fight .assassins_target.not_killed.cavalry .target_left { + position: absolute; + top: 29px; + left: 12px; +} + +.assassins_fight .assassins_target.not_killed.legionary:hover .target_bottom, +.assassins_fight .assassins_target.not_killed.legionary:hover .target_left, +.assassins_fight .assassins_target.not_killed.legionary:hover .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.legionary:active .target_bottom, +.assassins_fight .assassins_target.not_killed.legionary:active .target_left, +.assassins_fight .assassins_target.not_killed.legionary:active .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.legionary.disabled .target_bottom, +.assassins_fight .assassins_target.not_killed.legionary.disabled .target_left, +.assassins_fight .assassins_target.not_killed.legionary.disabled .target_top, +.assassins_fight .assassins_target.not_killed.legionary.disabled:active .target_bottom, +.assassins_fight .assassins_target.not_killed.legionary.disabled:active .target_left, +.assassins_fight .assassins_target.not_killed.legionary.disabled:active .target_top, +.assassins_fight .assassins_target.not_killed.legionary.disabled:hover .target_bottom, +.assassins_fight .assassins_target.not_killed.legionary.disabled:hover .target_left, +.assassins_fight .assassins_target.not_killed.legionary.disabled:hover .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.legionary .target_bottom { + position: absolute; + bottom: 18px; + right: 12px; +} + +.assassins_fight .assassins_target.not_killed.legionary .target_top { + position: absolute; + top: 10px; + left: 17px; +} + +.assassins_fight .assassins_target.not_killed.legionary .target_left { + position: absolute; + top: 29px; + left: 12px; +} + +.assassins_fight .assassins_target.not_killed.sapper:hover .target_bottom, +.assassins_fight .assassins_target.not_killed.sapper:hover .target_left, +.assassins_fight .assassins_target.not_killed.sapper:hover .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.sapper:active .target_bottom, +.assassins_fight .assassins_target.not_killed.sapper:active .target_left, +.assassins_fight .assassins_target.not_killed.sapper:active .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.sapper.disabled .target_bottom, +.assassins_fight .assassins_target.not_killed.sapper.disabled .target_left, +.assassins_fight .assassins_target.not_killed.sapper.disabled .target_top, +.assassins_fight .assassins_target.not_killed.sapper.disabled:active .target_bottom, +.assassins_fight .assassins_target.not_killed.sapper.disabled:active .target_left, +.assassins_fight .assassins_target.not_killed.sapper.disabled:active .target_top, +.assassins_fight .assassins_target.not_killed.sapper.disabled:hover .target_bottom, +.assassins_fight .assassins_target.not_killed.sapper.disabled:hover .target_left, +.assassins_fight .assassins_target.not_killed.sapper.disabled:hover .target_top { + display: none; +} + +.assassins_fight .assassins_target.not_killed.sapper .target_bottom { + position: absolute; + bottom: 18px; + right: 12px; +} + +.assassins_fight .assassins_target.not_killed.sapper .target_top { + position: absolute; + top: 10px; + left: 17px; +} + +.assassins_fight .assassins_target.not_killed.sapper .target_left { + position: absolute; + top: 29px; + left: 12px; +} + +.assassins_fight .target_1 { + left: 44px; + top: 330px; +} + +.assassins_fight .target_2 { + left: 132px; + top: 358px; +} + +.assassins_fight .target_3 { + left: 83px; + top: 237px; +} + +.assassins_fight .target_4 { + left: 220px; + top: 334px; +} + +.assassins_fight .target_5 { + left: 318px; + top: 358px; +} + +.assassins_fight .target_6 { + left: 209px; + top: 172px; +} + +.assassins_fight .target_7 { + left: 290px; + top: 226px; +} + +.assassins_fight .target_8 { + left: 384px; + top: 246px; +} + +.assassins_fight .target_9 { + left: 256px; + top: 274px; +} + +.assassins_fight .target_10 { + left: 584px; + top: 296px; +} + +.assassins_fight .target_11 { + left: 386px; + top: 123px; +} + +.assassins_fight .target_12 { + left: 509px; + top: 154px; +} + +.assassins_fight .target_13 { + left: 514px; + top: 228px; +} + +.assassins_fight .target_14 { + left: 530px; + top: 60px; +} + +.assassins_fight .target_15 { + left: 664px; + top: 202px; +} + +.assassins_fight .arrow_box { + width: 265px; + height: 57px; + position: absolute; + top: 10px; + left: 273px; +} + +.assassins_fight .arrow_box .arrow_quiver { + width: 265px; + height: 21px; + position: absolute; + top: -2px; + left: -1px; +} + +.assassins_fight .arrow_box .arrow_quiver .arrow { + float: left; + padding: 0; + margin: 0 5px 0 0; + display: inline-block; +} + +.assassins_fight .arrow_box .btn_buy_arrow { + width: 132px; + bottom: 0; + left: 52px; + position: absolute; +} + +.assassins_fight .battle_tokens { + width: 55px; + height: 20px; + position: absolute; + right: 20px; + top: 22px; + line-height: 20px; + font-weight: 600; + color: #fc6; + text-align: center; + cursor: pointer; +} + +.assassins_fight .battle_tokens:before { + content: ""; + position: absolute; + width: 40px; + height: 50px; + top: -15px; + right: 69px; +} + +.assassins_fight .kill_overview { + position: absolute; + bottom: 63px; + left: 15px; + width: 555px; + height: 40px; +} + +.assassins_fight .kill_overview .tier { + height: 100%; + display: inline-block; + position: absolute; +} + +.assassins_fight .kill_overview .tier .tier_point { + font-weight: 600; + line-height: 35px; + text-align: center; + width: 35px; + height: 35px; + z-index: 15; + position: absolute; + top: 3px; +} + +.assassins_fight .kill_overview .tier .tier_point .icon { + position: absolute; + top: 2px; + left: 2px; + display: none; +} + +.assassins_fight .kill_overview .tier .tier_point .text { + color: #fc6; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.assassins_fight .kill_overview .tier .tier_point.killed .text { + display: none; +} + +.assassins_fight .kill_overview .tier .tier_point.killed .icon { + display: block; +} + +.assassins_fight .kill_overview .tier .tier_point.killed:hover .icon { + display: none; +} + +.assassins_fight .kill_overview .tier .tier_point.killed:hover .text { + display: block; +} + +.assassins_fight .kill_overview .tier .tier_point.last_killed .icon { + position: absolute; + top: -6px; + left: -2px; +} + +.assassins_fight .kill_overview .tier_1 { + width: 77px; + left: 0; +} + +.assassins_fight .kill_overview .tier_1 .tier_point:first-child { + left: 4px; +} + +.assassins_fight .kill_overview .tier_1 .tier_point:nth-child(2) { + right: 3px; +} + +.assassins_fight .kill_overview .tier_2, +.assassins_fight .kill_overview .tier_3 { + width: 140px; +} + +.assassins_fight .kill_overview .tier_2 .tier_point:first-child, +.assassins_fight .kill_overview .tier_3 .tier_point:first-child { + left: 0; +} + +.assassins_fight .kill_overview .tier_2 .tier_point:nth-child(3), +.assassins_fight .kill_overview .tier_3 .tier_point:nth-child(3) { + right: 35px; +} + +.assassins_fight .kill_overview .tier_2 .tier_point:nth-child(4), +.assassins_fight .kill_overview .tier_3 .tier_point:nth-child(4) { + right: 0; +} + +.assassins_fight .kill_overview .tier_2 { + left: 82px; +} + +.assassins_fight .kill_overview .tier_2 .tier_point:nth-child(2) { + left: 34px; +} + +.assassins_fight .kill_overview .tier_2 .tier_point:nth-child(2).last_killed .icon { + left: 0; +} + +.assassins_fight .kill_overview .tier_3 { + right: 184px; +} + +.assassins_fight .kill_overview .tier_3 .tier_point:nth-child(2) { + left: 34px; +} + +.assassins_fight .kill_overview .tier_3 .tier_point:nth-child(2) .icon { + left: -1px; +} + +.assassins_fight .kill_overview .tier_3 .tier_point .icon { + left: 0; +} + +.assassins_fight .kill_overview .tier_3.last_killed .tier_point:first-child .icon { + left: 1px; +} + +.assassins_fight .kill_overview .tier_4 { + width: 178px; + right: 0; +} + +.assassins_fight .kill_overview .tier_4 .tier_point:first-child { + left: 1px; +} + +.assassins_fight .kill_overview .tier_4 .tier_point:nth-child(2) { + left: 36px; +} + +.assassins_fight .kill_overview .tier_4 .tier_point:nth-child(3) { + right: 72px; +} + +.assassins_fight .kill_overview .tier_4 .tier_point:nth-child(4) { + right: 37px; +} + +.assassins_fight .kill_overview .tier_4 .tier_point:nth-child(5) { + right: 1px; +} + +.assassins_fight .kill_overview .tier_4 .tier_point:nth-child(5) .icon { + left: -2px; +} + +.assassins_fight .kill_overview .tier_4 .tier_point:nth-child(5).last_killed .icon { + left: 1px; +} + +.assassins_fight .reset_targets { + width: 156px; + height: 60px; + position: absolute; + bottom: 62px; + right: 18px; +} + +.assassins_fight .reset_targets .reset_targets_text { + width: 100%; + text-align: center; + color: #fc6; + font-weight: 600; + position: absolute; + top: 5px; +} + +.assassins_fight .reset_targets .btn_reset_target { + width: 116px; + position: absolute; + bottom: 5px; + display: block; + left: 20px; +} + +.assassins_fight .collection_complete_wrapper { + position: absolute; + top: 58px; + right: 5px; + height: 140px; + display: none; +} + +.assassins_fight .collection_complete_wrapper .collection_complete_icon { + margin: auto; + cursor: pointer; +} + +.assassins_fight .collection_complete_wrapper .collection_complete_icon:after { + content: ""; + position: absolute; + top: -28px; + left: 15px; + opacity: 0; + -webkit-animation: fadeInOutIn 12s ease infinite; + -ms-animation: fadeInOutIn 12s ease infinite; + animation: fadeInOutIn 12s ease infinite; +} + +.assassins_fight .collection_complete_wrapper .collection_complete_icon:hover:after { + opacity: 1; + left: 24px; + animation: 0; +} + +.assassins_fight .collection_complete_wrapper .collection_complete { + top: -20px; +} + +.assassins_fight .collection_complete_wrapper .collection_complete .scroll_blue_m { + width: 30px; +} + +.assassins_fight .collection_complete_wrapper.sapper .collection_complete_icon:hover:after { + top: 17px; +} + +.assassins_fight .collection_complete_wrapper.legionary .collection_complete_icon:hover:after { + top: 17px; +} + +.assassins_fight .collection_complete_wrapper.cavalry .collection_complete_icon:hover:after { + top: 17px; +} + +.assassins_quiver_empty_window .assassins_quiver_empty { + width: 390px; +} + +.assassins_quiver_empty_window .assassins_quiver_empty .quiver_empty_img { + width: 376px; + height: 161px; + margin: 5px auto; +} + +.assassins_quiver_empty_window .assassins_quiver_empty .quiver_empty_text { + width: 365px; + margin: 5px auto 10px; +} + +.assassins_quiver_empty_window .assassins_quiver_empty .btn_buy_arrow { + width: 132px; + margin: 10px auto; + display: block; +} + +.assassins_reward_presenation .button_container { + width: 100%; + margin-bottom: 10px; +} + +.assassins_reward_presenation .btn_okay { + width: 50%; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.assassins_reward_presenation .scroll_small { + display: inline-block; + height: 70px; + margin-top: 150px; + width: 100%; +} + +.assassins_reward_presenation .scroll_small>div { + display: inline-block; + height: 122px; +} + +.assassins_reward_presenation .scroll_small .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_left.png) no-repeat; + width: 85px; + margin-right: -5px; +} + +.assassins_reward_presenation .scroll_small .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_middle.png) repeat-x; + margin-right: -5px; +} + +.assassins_reward_presenation .scroll_small .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_right.png) no-repeat; + width: 85px; +} + +.assassins_reward_presenation .scroll_small.size_1 { + margin-left: 80px; +} + +.assassins_reward_presenation .scroll_small.size_1 .middle { + width: 135px; +} + +.assassins_reward_presenation .scroll_small.size_2 { + margin-left: 30px; +} + +.assassins_reward_presenation .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat 0 0; + width: 119px; + height: 118px; + position: relative; + left: 5px; + top: -3px; + float: left; +} + +.assassins_reward_presenation .reward_glow .plus_1 { + float: right; + font-size: 20px; + font-weight: 600; + margin-top: -20px; +} + +.assassins_reward_presenation .reward_glow .reward.arrows+.plus_1 { + margin-top: -5px; +} + +.assassins_reward_presenation .reward { + position: relative; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.assassins_reward_presenation .background_image { + margin: 5px auto; + width: 471px; + height: 279px; +} + +.gp_window.classic_sub_window.assassins_enemy_down_window, +.gp_window.classic_sub_window.assassins_quiver_empty_window, +.gp_window.classic_sub_window.assassins_reward_presentation { + overflow: visible; + margin-top: -20px; +} + +.gp_window.classic_sub_window.assassins_enemy_down_window .title, +.gp_window.classic_sub_window.assassins_quiver_empty_window .title, +.gp_window.classic_sub_window.assassins_reward_presentation .title { + z-index: 3; + top: 43px; + left: 0; + text-align: center; + width: 100%; + color: #fff; + font-size: 14px; + text-shadow: 2px 2px #000; +} + +.gp_window.classic_sub_window.assassins_enemy_down_window .buttons, +.gp_window.classic_sub_window.assassins_quiver_empty_window .buttons, +.gp_window.classic_sub_window.assassins_reward_presentation .buttons { + top: 40px; + z-index: 3; +} + +.gp_window.classic_sub_window.assassins_enemy_down_window .border.border_t, +.gp_window.classic_sub_window.assassins_quiver_empty_window .border.border_t, +.gp_window.classic_sub_window.assassins_reward_presentation .border.border_t { + width: auto; + height: 42px; + top: 40px; + left: 0; + z-index: 2; + margin-left: 81px; + margin-right: 65px; +} + +.gp_window.classic_sub_window.assassins_enemy_down_window .corner.corner_tl, +.gp_window.classic_sub_window.assassins_quiver_empty_window .corner.corner_tl, +.gp_window.classic_sub_window.assassins_reward_presentation .corner.corner_tl { + left: -98px; + top: 40px; + z-index: 2; +} + +.gp_window.classic_sub_window.assassins_enemy_down_window .corner.corner_tr, +.gp_window.classic_sub_window.assassins_quiver_empty_window .corner.corner_tr, +.gp_window.classic_sub_window.assassins_reward_presentation .corner.corner_tr { + right: -98px; + top: 40px; + z-index: 2; +} + +.gp_window.classic_sub_window.assassins_enemy_down_window .content, +.gp_window.classic_sub_window.assassins_quiver_empty_window .content, +.gp_window.classic_sub_window.assassins_reward_presentation .content { + margin-top: 85px; +} + +.assassins_animation .assassin { + position: absolute; + bottom: 7px; + left: 7px; + opacity: 1; + -webkit-transform: translateX(-300px); + -ms-transform: translateX(-300px); + -o-transform: translateX(-300px); + transform: translateX(-300px); +} + +.assassins_animation .dust { + position: absolute; + bottom: 7px; + left: 7px; + opacity: 0; +} + +.assassins_animation .arrow { + position: absolute; + display: none; +} + +.assassins_animation .target_surround_glow { + position: absolute; + opacity: 0; +} + +.assassins_animation .target_crack_glow { + position: absolute; + opacity: 0; + top: 15px; + left: 15px; +} + +.assassins_animation .skull { + position: absolute; +} + +.assassins_animation .ranking_glow { + position: absolute; + opacity: 0; + top: 115px; + left: 188px; +} + +.assassins_animation .honor_points_glow { + position: absolute; + opacity: 0; +} + +.assassins_animation .battle_points_glow { + position: absolute; + opacity: 0; +} + +.assassins_animation .honor_points { + position: absolute; + opacity: 0; +} + +.assassins_animation .battle_points { + position: absolute; + opacity: 0; +} + +.assassins_animation .token_glow { + position: absolute; + top: 6px; + right: 72px; + opacity: 0; +} + +.assassins_animation .community_glow { + position: absolute; + bottom: 4px; + left: 8px; + opacity: 0; +} + +.assassins_animation .text { + color: #fc6; + display: inline-block; + text-align: center; + position: relative; + top: 37px; + left: 20px; + width: 16px; +} + +.assassins_animation .assassins_target { + position: absolute; + width: 78px; + height: 82px; + cursor: pointer; +} + +.assassins_animation .assassins_target.not_killed.cavalry:hover .target_bottom, +.assassins_animation .assassins_target.not_killed.cavalry:hover .target_left, +.assassins_animation .assassins_target.not_killed.cavalry:hover .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.cavalry:active .target_bottom, +.assassins_animation .assassins_target.not_killed.cavalry:active .target_left, +.assassins_animation .assassins_target.not_killed.cavalry:active .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.cavalry.disabled .target_bottom, +.assassins_animation .assassins_target.not_killed.cavalry.disabled .target_left, +.assassins_animation .assassins_target.not_killed.cavalry.disabled .target_top, +.assassins_animation .assassins_target.not_killed.cavalry.disabled:active .target_bottom, +.assassins_animation .assassins_target.not_killed.cavalry.disabled:active .target_left, +.assassins_animation .assassins_target.not_killed.cavalry.disabled:active .target_top, +.assassins_animation .assassins_target.not_killed.cavalry.disabled:hover .target_bottom, +.assassins_animation .assassins_target.not_killed.cavalry.disabled:hover .target_left, +.assassins_animation .assassins_target.not_killed.cavalry.disabled:hover .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.cavalry .target_bottom { + position: absolute; + bottom: 18px; + right: 12px; +} + +.assassins_animation .assassins_target.not_killed.cavalry .target_top { + position: absolute; + top: 10px; + left: 17px; +} + +.assassins_animation .assassins_target.not_killed.cavalry .target_left { + position: absolute; + top: 29px; + left: 12px; +} + +.assassins_animation .assassins_target.not_killed.legionary:hover .target_bottom, +.assassins_animation .assassins_target.not_killed.legionary:hover .target_left, +.assassins_animation .assassins_target.not_killed.legionary:hover .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.legionary:active .target_bottom, +.assassins_animation .assassins_target.not_killed.legionary:active .target_left, +.assassins_animation .assassins_target.not_killed.legionary:active .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.legionary.disabled .target_bottom, +.assassins_animation .assassins_target.not_killed.legionary.disabled .target_left, +.assassins_animation .assassins_target.not_killed.legionary.disabled .target_top, +.assassins_animation .assassins_target.not_killed.legionary.disabled:active .target_bottom, +.assassins_animation .assassins_target.not_killed.legionary.disabled:active .target_left, +.assassins_animation .assassins_target.not_killed.legionary.disabled:active .target_top, +.assassins_animation .assassins_target.not_killed.legionary.disabled:hover .target_bottom, +.assassins_animation .assassins_target.not_killed.legionary.disabled:hover .target_left, +.assassins_animation .assassins_target.not_killed.legionary.disabled:hover .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.legionary .target_bottom { + position: absolute; + bottom: 18px; + right: 12px; +} + +.assassins_animation .assassins_target.not_killed.legionary .target_top { + position: absolute; + top: 10px; + left: 17px; +} + +.assassins_animation .assassins_target.not_killed.legionary .target_left { + position: absolute; + top: 29px; + left: 12px; +} + +.assassins_animation .assassins_target.not_killed.sapper:hover .target_bottom, +.assassins_animation .assassins_target.not_killed.sapper:hover .target_left, +.assassins_animation .assassins_target.not_killed.sapper:hover .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.sapper:active .target_bottom, +.assassins_animation .assassins_target.not_killed.sapper:active .target_left, +.assassins_animation .assassins_target.not_killed.sapper:active .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.sapper.disabled .target_bottom, +.assassins_animation .assassins_target.not_killed.sapper.disabled .target_left, +.assassins_animation .assassins_target.not_killed.sapper.disabled .target_top, +.assassins_animation .assassins_target.not_killed.sapper.disabled:active .target_bottom, +.assassins_animation .assassins_target.not_killed.sapper.disabled:active .target_left, +.assassins_animation .assassins_target.not_killed.sapper.disabled:active .target_top, +.assassins_animation .assassins_target.not_killed.sapper.disabled:hover .target_bottom, +.assassins_animation .assassins_target.not_killed.sapper.disabled:hover .target_left, +.assassins_animation .assassins_target.not_killed.sapper.disabled:hover .target_top { + display: none; +} + +.assassins_animation .assassins_target.not_killed.sapper .target_bottom { + position: absolute; + bottom: 18px; + right: 12px; +} + +.assassins_animation .assassins_target.not_killed.sapper .target_top { + position: absolute; + top: 10px; + left: 17px; +} + +.assassins_animation .assassins_target.not_killed.sapper .target_left { + position: absolute; + top: 29px; + left: 12px; +} + +.assassins_all_units_dead_animation { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + text-align: center; +} + +.assassins_all_units_dead_animation .arrow { + position: absolute; + opacity: 0; +} + +.assassins_all_units_dead_animation .paper_scroll { + height: 122px; + position: relative; + top: 250px; +} + +.assassins_all_units_dead_animation .paper_scroll .left { + display: inline-block; + width: 85px; + height: 100%; + margin-right: -5px; +} + +.assassins_all_units_dead_animation .paper_scroll .middle { + display: inline-block; + height: 100%; + position: relative; + margin-right: -5px; + width: 0; +} + +.assassins_all_units_dead_animation .paper_scroll .middle .paper_main_text { + width: 100%; + text-align: center; + position: absolute; + font-weight: 600; + font-size: 15px; + top: 35px; + left: 0; + opacity: 0; +} + +.assassins_all_units_dead_animation .paper_scroll .middle .paper_text { + width: 100%; + text-align: center; + position: absolute; + top: 55px; + left: 0; + opacity: 0; +} + +.assassins_all_units_dead_animation .paper_scroll .right { + display: inline-block; + width: 85px; + height: 100%; +} + +.welcome_window_container.assassins_welcome .slideshow { + display: block; + position: absolute; + width: 100%; + height: 100%; + z-index: 5; + cursor: pointer; +} + +.welcome_window_container.assassins_welcome .slideshow .slideshow_slide { + position: absolute; + width: 100%; + height: 100%; +} + +.welcome_window_container.assassins_welcome .slideshow .paper_scroll { + height: 122px; + position: relative; + top: 235px; + left: 120px; +} + +.welcome_window_container.assassins_welcome .slideshow .paper_scroll .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_left.png) no-repeat; +} + +.welcome_window_container.assassins_welcome .slideshow .paper_scroll .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_middle.png) repeat-x; +} + +.welcome_window_container.assassins_welcome .slideshow .paper_scroll .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_right.png) no-repeat; +} + +.welcome_window_container.assassins_welcome .slideshow .paper_scroll .left { + display: inline-block; + width: 85px; + height: 100%; + margin-right: -5px; +} + +.welcome_window_container.assassins_welcome .slideshow .paper_scroll .middle { + display: inline-block; + height: 100%; + position: relative; + margin-right: -5px; + width: 300px; +} + +.welcome_window_container.assassins_welcome .slideshow .paper_scroll .middle .paper_text { + width: 100%; + text-align: center; + position: absolute; + font-size: 15px; + top: 38px; + left: 0; +} + +.welcome_window_container.assassins_welcome .slideshow .paper_scroll .right { + display: inline-block; + width: 85px; + height: 100%; +} + +.turnovertokens .collection_complete { + display: inline-block; + text-align: center; + position: relative; +} + +.turnovertokens .collection_complete div { + display: inline-block; + vertical-align: top; + float: left; +} + +.turnovertokens .collection_complete .lbl_complete { + color: #fff; + position: absolute; + line-height: 26px; + display: block; + width: 100%; + font-weight: 600; +} + +.turnovertokens .collection_complete .scroll_blue_l { + height: 36px; + width: 52px; +} + +.turnovertokens .collection_complete .scroll_blue_r { + height: 34px; + width: 52px; +} + +.turnovertokens .collection_complete .scroll_blue_m { + height: 36px; + width: 52px; + margin-top: 1px; +} + +.column_window.assassins_end_interstitial .window_content, +.column_window.assassins_shop_interstitial .window_content, +.column_window.assassins_welcome .window_content { + padding: 0; +} + +.turn_over_tokens_assassins .assassins_fight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/bg_army.jpg) no-repeat 0 0; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.killed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -919px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.cavalry:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1069px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.cavalry:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -841px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.cavalry.disabled, +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.cavalry.disabled:active, +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.cavalry.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1151px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.cavalry .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -301px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.cavalry .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1419px -769px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.cavalry .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -417px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.legionary:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1309px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.legionary:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -734px -1636px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.legionary.disabled, +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.legionary.disabled:active, +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.legionary.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1387px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.legionary .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -268px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.legionary .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1233px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.legionary .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -367px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.sapper:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.sapper:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1231px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.sapper.disabled, +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.sapper.disabled:active, +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.sapper.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1153px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.sapper .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -334px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.sapper .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1419px -741px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins .assassins_fight .assassins_target.not_killed.sapper .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -392px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins .assassins_fight .target_1 { + left: 20px; + top: 235px; +} + +.turn_over_tokens_assassins .assassins_fight .target_2 { + left: 69px; + top: 314px; +} + +.turn_over_tokens_assassins .assassins_fight .target_3 { + left: 103px; + top: 237px; +} + +.turn_over_tokens_assassins .assassins_fight .target_4 { + left: 197px; + top: 253px; +} + +.turn_over_tokens_assassins .assassins_fight .target_5 { + left: 250px; + top: 310px; +} + +.turn_over_tokens_assassins .assassins_fight .target_6 { + left: 247px; + top: 146px; +} + +.turn_over_tokens_assassins .assassins_fight .target_7 { + left: 323px; + top: 193px; +} + +.turn_over_tokens_assassins .assassins_fight .target_8 { + left: 388px; + top: 235px; +} + +.turn_over_tokens_assassins .assassins_fight .target_9 { + left: 452px; + top: 265px; +} + +.turn_over_tokens_assassins .assassins_fight .target_10 { + left: 530px; + top: 322px; +} + +.turn_over_tokens_assassins .assassins_fight .target_11 { + left: 336px; + top: 68px; +} + +.turn_over_tokens_assassins .assassins_fight .target_12 { + left: 412px; + top: 90px; +} + +.turn_over_tokens_assassins .assassins_fight .target_13 { + left: 483px; + top: 155px; +} + +.turn_over_tokens_assassins .assassins_fight .target_14 { + left: 560px; + top: 95px; +} + +.turn_over_tokens_assassins .assassins_fight .target_15 { + left: 608px; + top: 202px; +} + +.turn_over_tokens_assassins .assassins_fight .arrow_box { + left: 309px; +} + +.turn_over_tokens_assassins .assassins_fight .arrow_box .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1773px -645px; + width: 21px; + height: 21px; +} + +.turn_over_tokens_assassins .assassins_fight .arrow_box .arrow_quiver { + top: 0; + left: 0; +} + +.turn_over_tokens_assassins .assassins_fight .battle_tokens { + top: 18px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1773px -666px; + width: 16px; + height: 21px; + top: 7px; + left: 10px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point.last_killed .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1773px -561px; + width: 32px; + height: 42px; + top: -4px; + left: 2px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .tier_2 .tier_point:nth-child(2) .icon { + left: 11px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .tier_2 .tier_point:nth-child(2).last_killed .icon { + left: 3px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .tier_3 .tier_point:first-child.last_killed .icon { + left: 1px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .tier_3 .tier_point:nth-child(2) .icon { + left: 10px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .tier_3 .tier_point:nth-child(2).last_killed .icon { + left: 2px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .tier_3 .tier_point:nth-child(3).last_killed .icon, +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .tier_3 .tier_point:nth-child(4).last_killed .icon { + left: 1px; +} + +.turn_over_tokens_assassins .assassins_fight .kill_overview .tier .tier_point .tier_3 .tier_point .icon { + left: 9px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.sapper .collection_complete_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1139px -1354px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.sapper .collection_complete_icon:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -1089px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.sapper .collection_complete_icon:hover:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -754px -1237px; + width: 87px; + height: 87px; + top: 14px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.legionary .collection_complete_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1276px -1354px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.legionary .collection_complete_icon:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -1375px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.legionary .collection_complete_icon:hover:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -580px -1237px; + width: 87px; + height: 87px; + top: 18px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.cavalry .collection_complete_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1002px -1354px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.cavalry .collection_complete_icon:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -1232px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_assassins .assassins_fight .collection_complete_wrapper.cavalry .collection_complete_icon:hover:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -667px -1237px; + width: 87px; + height: 87px; + top: 14px; +} + +.turn_over_tokens_assassins .assassins_fight .community_goals .title_container { + position: relative; + top: 1px; +} + +.turn_over_tokens_assassins .assassins_fight .community_goals .left, +.turn_over_tokens_assassins .assassins_fight .community_goals .right { + width: 20px; +} + +.turn_over_tokens_assassins .assassins_fight .community_goals .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/title_left.png) no-repeat; + margin-right: -7px; +} + +.turn_over_tokens_assassins .assassins_fight .community_goals .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/title_middle.png) repeat; + min-width: 160px; +} + +.turn_over_tokens_assassins .assassins_fight .community_goals .middle .title { + float: none; + font-weight: 600; +} + +.turn_over_tokens_assassins .assassins_fight .community_goals .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/title_right.png) no-repeat; + margin-left: -7px; +} + +.turn_over_tokens_assassins .assassins_fight .community_goals .info { + top: 0; + left: 25px; +} + +.turn_over_tokens_assassins .assassins_quiver_empty_window .assassins_quiver_empty .quiver_empty_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/illustration_no_more_arrows.jpg) no-repeat; +} + +.turn_over_tokens_assassins .assassins_reward_presenation .reward.trophy.legionary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1269px -1056px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_assassins .assassins_reward_presenation .reward.trophy.cavalry { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1323px -1056px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_assassins .assassins_reward_presenation .reward.trophy.sapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1215px -1056px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_assassins .assassins_reward_presenation .reward.arrows { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1377px -1056px; + width: 51px; + height: 54px; +} + +.turn_over_tokens_assassins .assassins_reward_presenation.enemy_down.legionary .background_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/dead_legionary.jpg) no-repeat; +} + +.turn_over_tokens_assassins .assassins_reward_presenation.enemy_down.sapper .background_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/dead_sapper.jpg) no-repeat; +} + +.turn_over_tokens_assassins .assassins_reward_presenation.enemy_down.cavalry .background_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/dead_cavalry.jpg) no-repeat; +} + +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_enemy_down_window .border.border_t, +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_quiver_empty_window .border.border_t, +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_reward_presentation .border.border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/window_banner_middle.png) repeat-x; + margin-left: 129px; + margin-right: 113px; +} + +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_enemy_down_window .corner.corner_tl, +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_quiver_empty_window .corner.corner_tl, +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_reward_presentation .corner.corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px -670px; + width: 179px; + height: 128px; + left: -50px; + top: 40px; + z-index: 2; +} + +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_enemy_down_window .corner.corner_tr, +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_quiver_empty_window .corner.corner_tr, +.turn_over_tokens_assassins .gp_window.classic_sub_window.assassins_reward_presentation .corner.corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -647px -1354px; + width: 179px; + height: 128px; + right: -50px; + top: 40px; + z-index: 2; +} + +.turn_over_tokens_assassins .assassins_animation .assassin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -780px 0; + width: 295px; + height: 475px; + bottom: 0; + left: 0; +} + +.turn_over_tokens_assassins .assassins_animation .dust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 0; + width: 780px; + height: 574px; +} + +.turn_over_tokens_assassins .assassins_animation .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -528px -751px; + width: 64px; + height: 45px; +} + +.turn_over_tokens_assassins .assassins_animation .target_surround_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1610px -1272px; + width: 66px; + height: 66px; +} + +.turn_over_tokens_assassins .assassins_animation .target_crack_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1419px -699px; + width: 45px; + height: 42px; +} + +.turn_over_tokens_assassins .assassins_animation .skull { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -919px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .ranking_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -230px; + width: 41px; + height: 38px; +} + +.turn_over_tokens_assassins .assassins_animation .honor_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1604px -499px; + width: 71px; + height: 103px; +} + +.turn_over_tokens_assassins .assassins_animation .battle_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1604px -602px; + width: 69px; + height: 102px; +} + +.turn_over_tokens_assassins .assassins_animation .honor_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat -119px 0; + width: 55px; + height: 58px; +} + +.turn_over_tokens_assassins .assassins_animation .battle_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -473px -751px; + width: 55px; + height: 58px; +} + +.turn_over_tokens_assassins .assassins_animation .token_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -391px -751px; + width: 82px; + height: 61px; + top: 0; + right: 74px; +} + +.turn_over_tokens_assassins .assassins_animation .community_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -524px -976px; + width: 761px; + height: 50px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.killed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -919px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.cavalry:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1069px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.cavalry:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -841px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.cavalry.disabled, +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.cavalry.disabled:active, +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.cavalry.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1151px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.cavalry .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -301px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.cavalry .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1419px -769px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.cavalry .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -417px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.legionary:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1309px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.legionary:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -734px -1636px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.legionary.disabled, +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.legionary.disabled:active, +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.legionary.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1387px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.legionary .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -268px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.legionary .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1595px -1233px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.legionary .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -367px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.sapper:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.sapper:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1231px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.sapper.disabled, +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.sapper.disabled:active, +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.sapper.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1153px -1237px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.sapper .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -334px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.sapper .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1419px -741px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_assassins .assassins_animation .assassins_target.not_killed.sapper .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1639px -392px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_assassins .assassins_all_units_dead_animation .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -761px -731px; + width: 266px; + height: 20px; + position: absolute; + transform: translate(758px,-187px) rotate(-25deg); +} + +.turn_over_tokens_assassins .assassins_all_units_dead_animation .helmet { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -262px -815px; + width: 262px; + height: 241px; + position: absolute; + top: 70px; + left: 258px; +} + +.turn_over_tokens_assassins .assassins_all_units_dead_animation .helmet_hit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -815px; + width: 262px; + height: 241px; + position: absolute; + top: 70px; + left: 258px; +} + +.turn_over_tokens_assassins .assassins_all_units_dead_animation .paper_scroll .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/scroll_left.png) no-repeat; +} + +.turn_over_tokens_assassins .assassins_all_units_dead_animation .paper_scroll .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/scroll_middle.png) repeat-x; +} + +.turn_over_tokens_assassins .assassins_all_units_dead_animation .paper_scroll .middle .paper_text { + bottom: 45px; +} + +.turn_over_tokens_assassins .assassins_all_units_dead_animation .paper_scroll .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/scroll_right.png) no-repeat; +} + +.turn_over_tokens_assassins.welcome_window_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/intersticial_bg.jpg) no-repeat 0 0; +} + +.turn_over_tokens_assassins.welcome_window_container.assassins_welcome .slideshow .slideshow_slide.slide_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/slideshow_1.jpg) no-repeat; +} + +.turn_over_tokens_assassins.welcome_window_container.assassins_welcome .slideshow .slideshow_slide.slide_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/slideshow_2.jpg) no-repeat; +} + +.turn_over_tokens_assassins.welcome_window_container.assassins_welcome .slideshow .slideshow_slide.slide_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/slideshow_3.jpg) no-repeat; +} + +.turn_over_tokens_assassins .assassins_shop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/bg_shop.jpg) no-repeat 0 0; +} + +.turn_over_tokens_assassins .assassins_sanctuary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/bg_collection.jpg) no-repeat 0 0; +} + +.turn_over_tokens_assassins .assassins_sanctuary .collection_complete .scroll_blue_l { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/blue_scroll_left.png) repeat-x 0 0; +} + +.turn_over_tokens_assassins .assassins_sanctuary .collection_complete .scroll_blue_r { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/blue_scroll_right.png) repeat-x 0 0; +} + +.turn_over_tokens_assassins .assassins_sanctuary .collection_complete .scroll_blue_m { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/blue_scroll_middle.png) repeat-x 0 0; +} + +.turn_over_tokens_assassins .assassins_sanctuary .fire_bowl { + text-align: center; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -182px -1237px; + width: 154px; + height: 108px; +} + +.turn_over_tokens_assassins .assassins_sanctuary .column .lbl_name { + margin-top: 18px; +} + +.turn_over_tokens_assassins .assassins_sanctuary .pb_collection { + margin-top: 5px; +} + +.turn_over_tokens_assassins .assassins_sanctuary .lion_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -826px -1354px; + width: 176px; + height: 128px; +} + +.turn_over_tokens_assassins .assassins_sanctuary .award.disabled.assassin_complete_legionary_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -812px -1636px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_assassins .assassins_sanctuary .award.disabled.assassin_complete_cavalry_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1604px -704px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_assassins .assassins_sanctuary .award.disabled.assassin_complete_sapper_collection_reoccurring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -888px -1636px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -129px -1354px; + width: 126px; + height: 278px; + left: 565px; + top: 151px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px 0; + width: 124px; + height: 282px; + left: 566px; + top: 146px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -963px; + width: 122px; + height: 126px; + left: 566px; + top: 142px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -633px -1636px; + width: 101px; + height: 114px; + left: 577px; + top: 255px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -131px -1636px; + width: 127px; + height: 132px; + left: 564px; + top: 80px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -1518px; + width: 107px; + height: 116px; + left: 567px; + top: 256px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -832px -1123px; + width: 94px; + height: 74px; + left: 577px; + top: 361px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -561px; + width: 92px; + height: 238px; + left: 569px; + top: 211px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -1056px; + width: 182px; + height: 298px; + left: 549px; + top: 134px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=sapper] .trophy.lvl10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -230px; + width: 174px; + height: 269px; + left: 541px; + top: 176px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -1354px; + width: 129px; + height: 282px; + left: 315px; + top: 146px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1291px -699px; + width: 128px; + height: 287px; + left: 316px; + top: 144px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -382px -1354px; + width: 127px; + height: 192px; + left: 316px; + top: 146px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -958px -574px; + width: 100px; + height: 123px; + left: 330px; + top: 255px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -336px -1237px; + width: 128px; + height: 102px; + left: 315px; + top: 99px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1291px -986px; + width: 143px; + height: 65px; + left: 311px; + top: 370px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -499px; + width: 139px; + height: 299px; + left: 380px; + top: 156px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -799px; + width: 124px; + height: 164px; + left: 238px; + top: 306px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1291px -315px; + width: 142px; + height: 384px; + left: 377px; + top: 123px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=legionary] .trophy.lvl10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1291px 0; + width: 174px; + height: 315px; + left: 288px; + top: 138px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1681px -282px; + width: 123px; + height: 279px; + left: 68px; + top: 149px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -987px; + width: 130px; + height: 285px; + left: 65px; + top: 144px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -255px -1354px; + width: 127px; + height: 228px; + left: 66px; + top: 128px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1535px -1354px; + width: 102px; + height: 116px; + left: 79px; + top: 244px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -1636px; + width: 131px; + height: 165px; + left: 65px; + top: 67px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -1272px; + width: 145px; + height: 79px; + left: 55px; + top: 383px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px 0; + width: 216px; + height: 305px; + left: -76px; + top: 157px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px -798px; + width: 197px; + height: 189px; + left: -75px; + top: 278px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1075px -305px; + width: 179px; + height: 365px; + left: 44px; + top: 91px; +} + +.turn_over_tokens_assassins .assassins_sanctuary [data-unit=cavalry] .trophy.lvl10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -1465px 0; + width: 216px; + height: 230px; + left: 120px; + top: 227px; +} + +.turn_over_tokens_assassins .assassins_tutorial .character { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassin.png) no-repeat 0 0; +} + +.turn_over_tokens_assassins .assassins_tutorial.step1 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -182px -1056px; + width: 295px; + height: 181px; +} + +.turn_over_tokens_assassins .assassins_tutorial.step2 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -391px -574px; + width: 370px; + height: 177px; +} + +.turn_over_tokens_assassins .assassins_tutorial.step3 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat 0 -574px; + width: 391px; + height: 241px; +} + +.turn_over_tokens_assassins .assassins_tutorial.step4 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -524px -815px; + width: 362px; + height: 161px; +} + +.turn_over_tokens_assassins .assassins_tutorial.step5 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -886px -815px; + width: 380px; + height: 137px; +} + +.turn_over_tokens_assassins .assassins_tutorial.step6 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -780px -475px; + width: 252px; + height: 94px; +} + +.turn_over_tokens_assassins .assassins_tutorial.step7 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -832px -1056px; + width: 383px; + height: 67px; +} + +.turn_over_tokens_assassins .assassins_tutorial.step8 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -477px -1056px; + width: 355px; + height: 145px; +} + +.turn_over_tokens_assassins .assassins_tutorial.step9 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/assassins/assassins_overall_cc9aca4.png) no-repeat -761px -574px; + width: 197px; + height: 157px; +} + +.turn_over_tokens_slingers .assassins_fight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/bg_army.jpg) no-repeat 0 0; +} + +.turn_over_tokens_slingers .assassins_fight .button_new.icon_type_battle_token .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -644px; + width: 26px; + height: 19px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.killed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -729px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.cavalry:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1153px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.cavalry:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -807px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.cavalry.disabled, +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.cavalry.disabled:active, +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.cavalry.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.cavalry .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -661px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.cavalry .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -746px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.cavalry .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -594px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.legionary:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -495px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.legionary:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -651px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.legionary.disabled, +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.legionary.disabled:active, +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.legionary.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -573px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.legionary .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -620px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.legionary .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -790px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.legionary .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -569px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.sapper:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -885px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.sapper:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -261px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.sapper.disabled, +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.sapper.disabled:active, +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.sapper.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1231px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.sapper .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -579px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.sapper .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -702px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers .assassins_fight .assassins_target.not_killed.sapper .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -619px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers .assassins_fight .arrow_box .arrow_quiver .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -682px; + width: 21px; + height: 21px; +} + +.turn_over_tokens_slingers .assassins_fight .kill_overview .tier .tier_point .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -537px; + width: 32px; + height: 32px; +} + +.turn_over_tokens_slingers .assassins_fight .kill_overview .tier .tier_point.last_killed .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -766px; + width: 39px; + height: 49px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.sapper .collection_complete_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -289px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.sapper .collection_complete_icon:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -815px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.sapper .collection_complete_icon:hover:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -1291px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.legionary .collection_complete_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -169px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.legionary .collection_complete_icon:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -672px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.legionary .collection_complete_icon:hover:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -87px -1291px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.cavalry .collection_complete_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -409px; + width: 137px; + height: 120px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.cavalry .collection_complete_icon:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1343px -529px; + width: 106px; + height: 143px; +} + +.turn_over_tokens_slingers .assassins_fight .collection_complete_wrapper.cavalry .collection_complete_icon:hover:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -174px -1291px; + width: 87px; + height: 87px; +} + +.turn_over_tokens_slingers .assassins_quiver_empty_window .assassins_quiver_empty .quiver_empty_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/illustration_no_more_arrows.jpg) no-repeat; +} + +.turn_over_tokens_slingers .assassins_reward_presenation .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/scroll_left.png) no-repeat; + width: 85px; + margin-right: -5px; +} + +.turn_over_tokens_slingers .assassins_reward_presenation .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/scroll_middle.png) repeat-x; + width: 240px; + margin-right: -5px; +} + +.turn_over_tokens_slingers .assassins_reward_presenation .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/scroll_right.png) no-repeat; + width: 85px; +} + +.turn_over_tokens_slingers .assassins_reward_presenation .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat 0 0; + width: 119px; + height: 118px; +} + +.turn_over_tokens_slingers .assassins_reward_presenation .reward.trophy.legionary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1169px -1291px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_slingers .assassins_reward_presenation .reward.trophy.cavalry { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1223px -1291px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_slingers .assassins_reward_presenation .reward.trophy.sapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1115px -1291px; + width: 54px; + height: 67px; +} + +.turn_over_tokens_slingers .assassins_reward_presenation .reward.arrows { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -528px -751px; + width: 51px; + height: 54px; +} + +.turn_over_tokens_slingers .assassins_reward_presenation.enemy_down.legionary .background_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/dead_legionary.jpg) no-repeat; +} + +.turn_over_tokens_slingers .assassins_reward_presenation.enemy_down.sapper .background_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/dead_sapper.jpg) no-repeat; +} + +.turn_over_tokens_slingers .assassins_reward_presenation.enemy_down.cavalry .background_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/dead_cavalry.jpg) no-repeat; +} + +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_enemy_down_window .border.border_t, +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_quiver_empty_window .border.border_t, +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_reward_presentation .border.border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/window_banner_middle.png) repeat-x; +} + +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_enemy_down_window .corner.corner_tl, +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_quiver_empty_window .corner.corner_tl, +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_reward_presentation .corner.corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1154px -815px; + width: 179px; + height: 128px; +} + +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_enemy_down_window .corner.corner_tr, +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_quiver_empty_window .corner.corner_tr, +.turn_over_tokens_slingers .gp_window.classic_sub_window.assassins_reward_presentation .corner.corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -975px -815px; + width: 179px; + height: 128px; +} + +.turn_over_tokens_slingers .assassins_animation .assassin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -780px 0; + width: 295px; + height: 475px; +} + +.turn_over_tokens_slingers .assassins_animation .dust { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 0; + width: 780px; + height: 574px; +} + +.turn_over_tokens_slingers .assassins_animation .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1272px -676px; + width: 64px; + height: 45px; +} + +.turn_over_tokens_slingers .assassins_animation .target_surround_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -616px -1026px; + width: 66px; + height: 66px; +} + +.turn_over_tokens_slingers .assassins_animation .target_crack_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -624px; + width: 45px; + height: 42px; +} + +.turn_over_tokens_slingers .assassins_animation .skull { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -729px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .ranking_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -909px; + width: 41px; + height: 38px; +} + +.turn_over_tokens_slingers .assassins_animation .honor_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1272px -573px; + width: 71px; + height: 103px; +} + +.turn_over_tokens_slingers .assassins_animation .battle_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -1378px; + width: 69px; + height: 102px; +} + +.turn_over_tokens_slingers .assassins_animation .honor_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/shared/turn_over_tokens_overall_87bb769.png) no-repeat -119px 0; + width: 55px; + height: 58px; +} + +.turn_over_tokens_slingers .assassins_animation .battle_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -473px -751px; + width: 55px; + height: 58px; +} + +.turn_over_tokens_slingers .assassins_animation .token_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -391px -751px; + width: 82px; + height: 61px; +} + +.turn_over_tokens_slingers .assassins_animation .community_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -233px -976px; + width: 761px; + height: 50px; + bottom: 2px; + left: 8px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.killed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -729px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.cavalry:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1153px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.cavalry:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -807px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.cavalry.disabled, +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.cavalry.disabled:active, +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.cavalry.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.cavalry .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -661px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.cavalry .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -746px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.cavalry .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -594px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.legionary:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -495px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.legionary:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -651px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.legionary.disabled, +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.legionary.disabled:active, +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.legionary.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -573px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.legionary .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -620px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.legionary .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -790px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.legionary .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -569px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.sapper:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -885px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.sapper:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -261px -1291px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.sapper.disabled, +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.sapper.disabled:active, +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.sapper.disabled:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1231px -730px; + width: 78px; + height: 82px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.sapper .target_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -579px -751px; + width: 41px; + height: 33px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.sapper .target_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -702px -751px; + width: 44px; + height: 28px; +} + +.turn_over_tokens_slingers .assassins_animation .assassins_target.not_killed.sapper .target_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -619px; + width: 33px; + height: 25px; +} + +.turn_over_tokens_slingers .assassins_all_units_dead_animation .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -528px -751px; + width: 51px; + height: 54px; +} + +.turn_over_tokens_slingers .assassins_all_units_dead_animation .helmet { + width: 397px; + height: 405px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/targets_down_eb8f3cd.png) no-repeat 0 0; + position: absolute; + top: -40px; + left: 200px; +} + +.turn_over_tokens_slingers .assassins_all_units_dead_animation .helmet.animated { + width: 397px; + height: 405px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/targets_down_eb8f3cd.png) no-repeat 0 0; + -webkit-animation: turn_over_tokens_slingers_targets_down-animation 1.6s steps(15) forwards; + -ms-animation: turn_over_tokens_slingers_targets_down-animation 1.6s steps(15) forwards; + animation: turn_over_tokens_slingers_targets_down-animation 1.6s steps(15) forwards; + -webkit-animation: turn_over_tokens_slingers_targets_down-animation 1s steps(15) forwards; + -ms-animation: turn_over_tokens_slingers_targets_down-animation 1s steps(15) forwards; + animation: turn_over_tokens_slingers_targets_down-animation 1s steps(15) forwards; +} + +.turn_over_tokens_slingers .assassins_all_units_dead_animation .paper_scroll .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_left.png) no-repeat; +} + +.turn_over_tokens_slingers .assassins_all_units_dead_animation .paper_scroll .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_middle.png) repeat-x; +} + +.turn_over_tokens_slingers .assassins_all_units_dead_animation .paper_scroll .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/scroll_right.png) no-repeat; +} + +.turn_over_tokens_slingers.welcome_window_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/intersticial_bg.jpg) no-repeat 0 0; +} + +.turn_over_tokens_slingers.welcome_window_container.assassins_welcome .slideshow .slideshow_slide.slide_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slideshow_1.jpg) no-repeat; +} + +.turn_over_tokens_slingers.welcome_window_container.assassins_welcome .slideshow .slideshow_slide.slide_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slideshow_2.jpg) no-repeat; +} + +.turn_over_tokens_slingers.welcome_window_container.assassins_welcome .slideshow .slideshow_slide.slide_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slideshow_3.jpg) no-repeat; +} + +.turn_over_tokens_slingers .assassins .collection_complete .scroll_blue_l { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/blue_scroll_left.png) repeat-x 0 0; +} + +.turn_over_tokens_slingers .assassins .collection_complete .scroll_blue_r { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/blue_scroll_right.png) repeat-x 0 0; +} + +.turn_over_tokens_slingers .assassins .collection_complete .scroll_blue_m { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/blue_scroll_middle.png) repeat-x 0 0; +} + +.turn_over_tokens_slingers .assassins_shop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/bg_shop_double.jpg) no-repeat 0 0; +} + +.turn_over_tokens_slingers .assassins_shop .btn_buy .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -644px; + width: 26px; + height: 19px; +} + +.turn_over_tokens_slingers .assassins_sanctuary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/bg_collection.jpg) no-repeat 0 0; +} + +.turn_over_tokens_slingers .assassins_sanctuary .lion_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -650px -1110px; + width: 176px; + height: 128px; +} + +.turn_over_tokens_slingers .assassins_sanctuary .award.disabled.complete_orange_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1421px -1206px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_slingers .assassins_sanctuary .award.disabled.complete_yellow_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1039px -1291px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_slingers .assassins_sanctuary .award.disabled.complete_white_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -963px -1291px; + width: 76px; + height: 76px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .tree_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px -286px; + width: 259px; + height: 287px; + position: absolute; + top: 87px; + left: 503px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy { + position: absolute; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -682px -1026px; + width: 40px; + height: 65px; + left: 597px; + top: 103px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px 0; + width: 38px; + height: 78px; + left: 706px; + top: 230px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -506px -1378px; + width: 40px; + height: 69px; + left: 562px; + top: 134px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -762px -1026px; + width: 40px; + height: 63px; + left: 545px; + top: 215px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -234px; + width: 37px; + height: 79px; + left: 521px; + top: 242px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1457px -1082px; + width: 40px; + height: 87px; + left: 656px; + top: 230px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -815px; + width: 40px; + height: 94px; + left: 601px; + top: 171px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -155px; + width: 37px; + height: 79px; + left: 676px; + top: 153px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -146px -1378px; + width: 40px; + height: 74px; + left: 629px; + top: 138px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=sapper] .trophy.lvl10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -388px; + width: 37px; + height: 75px; + left: 575px; + top: 284px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .tree_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px 0; + width: 268px; + height: 286px; + position: absolute; + top: 89px; + left: 246px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy { + position: absolute; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -106px -1378px; + width: 40px; + height: 76px; + left: 272px; + top: 227px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -69px -1378px; + width: 37px; + height: 87px; + left: 320px; + top: 170px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1282px -1110px; + width: 60px; + height: 77px; + left: 429px; + top: 197px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -722px -1026px; + width: 40px; + height: 64px; + left: 394px; + top: 114px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -346px -1378px; + width: 40px; + height: 70px; + left: 343px; + top: 158px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -466px -1378px; + width: 40px; + height: 69px; + left: 280px; + top: 142px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1277px -1291px; + width: 40px; + height: 67px; + left: 378px; + top: 267px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -186px -1378px; + width: 40px; + height: 74px; + left: 446px; + top: 270px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -463px; + width: 37px; + height: 74px; + left: 307px; + top: 276px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=legionary] .trophy.lvl10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -226px -1378px; + width: 40px; + height: 73px; + left: 378px; + top: 175px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .tree_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -815px; + width: 233px; + height: 295px; + position: absolute; + top: 87px; + left: 18px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy { + position: absolute; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1032px -475px; + width: 40px; + height: 84px; + left: 176px; + top: 191px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -426px -1378px; + width: 40px; + height: 70px; + left: 110px; + top: 105px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -529px; + width: 40px; + height: 95px; + left: 71px; + top: 165px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -266px -1378px; + width: 40px; + height: 72px; + left: 43px; + top: 299px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1449px -672px; + width: 40px; + height: 94px; + left: 197px; + top: 236px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -313px; + width: 38px; + height: 75px; + left: 100px; + top: 243px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -306px -1378px; + width: 40px; + height: 70px; + left: 29px; + top: 182px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1497px -78px; + width: 38px; + height: 77px; + left: 96px; + top: 152px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -386px -1378px; + width: 40px; + height: 70px; + left: 159px; + top: 285px; +} + +.turn_over_tokens_slingers .assassins_sanctuary [data-unit=cavalry] .trophy.lvl10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1457px -958px; + width: 40px; + height: 88px; + left: 143px; + top: 161px; +} + +.turn_over_tokens_slingers .assassins_tutorial .character { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/assassin.png) no-repeat 0 0; +} + +.turn_over_tokens_slingers .assassins_tutorial.step1 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -1110px; + width: 295px; + height: 181px; +} + +.turn_over_tokens_slingers .assassins_tutorial.step2 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -391px -574px; + width: 370px; + height: 177px; +} + +.turn_over_tokens_slingers .assassins_tutorial.step3 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat 0 -574px; + width: 391px; + height: 241px; +} + +.turn_over_tokens_slingers .assassins_tutorial.step4 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -233px -815px; + width: 362px; + height: 161px; +} + +.turn_over_tokens_slingers .assassins_tutorial.step5 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -595px -815px; + width: 380px; + height: 137px; +} + +.turn_over_tokens_slingers .assassins_tutorial.step6 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -780px -475px; + width: 252px; + height: 94px; +} + +.turn_over_tokens_slingers .assassins_tutorial.step7 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -233px -1026px; + width: 383px; + height: 67px; +} + +.turn_over_tokens_slingers .assassins_tutorial.step8 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -295px -1110px; + width: 355px; + height: 145px; +} + +.turn_over_tokens_slingers .assassins_tutorial.step9 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/turn_over_tokens/slingers/slingers_overall_eb1d50e.png) no-repeat -1075px -573px; + width: 197px; + height: 157px; +} + +.turn_over_tokens_slingers .community_goals.container { + bottom: 0; +} + +.turn_over_tokens_slingers .community_goals .progress_container .progress_0 { + left: 10px; + width: 120px; +} + +.assassins_sanctuary { + position: relative; + overflow: hidden; + height: 527px; + width: 758px; +} + +.assassins_sanctuary .collection { + height: 100%; + width: 244.5px; + display: inline-block; + vertical-align: top; +} + +.assassins_sanctuary .collection:first-child { + margin-left: 5px; +} + +.assassins_sanctuary .column { + position: relative; + display: inline-block; + text-align: center; + width: 100%; + height: 100%; +} + +.assassins_sanctuary .column .lbl_name { + color: #fc6; + margin: 0 auto; + width: 110px; + text-align: center; + margin-top: 11px; +} + +.assassins_sanctuary .pb_collection { + width: 106px; + margin-left: 71px; + margin-top: 2px; + z-index: 0; +} + +.assassins_sanctuary .pb_collection .value_container { + color: #fff; +} + +.assassins_sanctuary .lion_glow { + position: absolute; + top: -20px; + left: 42px; +} + +.assassins_sanctuary .completed_tooltip { + position: absolute; + top: 8px; + height: 90px; + width: 100%; +} + +.assassins_sanctuary .bottom_area { + bottom: 5px; + position: absolute; + width: 100%; + text-align: center; +} + +.assassins_sanctuary .items { + height: 80px; +} + +.assassins_sanctuary .items .award { + display: inline-block; + float: none; + margin: auto; +} + +.assassins_sanctuary .btn_collect { + min-width: 150px; +} + +.assassins_sanctuary .badge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -444px -90px; + width: 26px; + height: 26px; + position: absolute; + top: 0; + right: 0; + text-align: center; + line-height: 26px; + color: #ecb44d; +} + +.assassins_sanctuary .trophy { + position: absolute; +} + +.assassins_shop { + position: relative; + overflow: hidden; + height: 529px; + width: 758px; +} + +.assassins_shop .headline { + width: 485px; + margin-top: 13px; + color: #fc6; + margin-left: 115px; +} + +.assassins_shop .headline span { + display: table-cell; + vertical-align: middle; + height: 48px; +} + +.assassins_shop .battle_tokens { + width: 55px; + height: 20px; + position: absolute; + right: 20px; + top: 22px; + line-height: 20px; + font-weight: 600; + color: #fc6; + text-align: center; + cursor: pointer; + top: 23px; + right: 18px; + cursor: default; +} + +.assassins_shop .battle_tokens:before { + content: ""; + position: absolute; + width: 40px; + height: 50px; + top: -15px; + right: 69px; +} + +.assassins_shop .btn_buy { + position: relative; + top: 12px; + left: -11px; + width: 84px; +} + +.assassins_shop .btn_buy .caption { + text-overflow: inherit; +} + +.assassins_shop .slot { + position: absolute; + width: 86px; + padding-top: 12px; + padding-left: 12px; +} + +.assassins_shop .slot_1 { + left: 386px; + top: 247px; +} + +.assassins_shop .slot_2 { + left: 284px; + top: 247px; + width: 70px; +} + +.assassins_shop .slot_3 { + left: 645px; + top: 92px; +} + +.assassins_shop .slot_4 { + left: 528px; + top: 92px; +} + +.assassins_shop .slot_5 { + left: 410px; + top: 92px; +} + +.assassins_shop .slot_6 { + left: 260px; + top: 92px; +} + +.assassins_shop .slot_7 { + left: 143px; + top: 92px; +} + +.assassins_shop .slot_8 { + left: 25px; + top: 92px; +} + +.assassins_shop .slot_9 { + left: 645px; + top: 257px; +} + +.assassins_shop .slot_10 { + top: 390px; + left: 644px; +} + +.assassins_shop .slot_11 { + top: 390px; + left: 539px; +} + +.assassins_shop .slot_12 { + top: 390px; + left: 434px; +} + +.assassins_shop .slot_13 { + top: 390px; + left: 237px; +} + +.assassins_shop .slot_14 { + top: 390px; + left: 132px; +} + +.assassins_shop .slot_15 { + top: 390px; + left: 25px; +} + +.assassins_shop .slot_16 { + top: 258px; + left: 25px; +} + +.assassins_tutorial .character { + position: absolute; + bottom: 7px; + left: 7px; + height: 508px; + width: 444px; +} + +.assassins_tutorial .speechbubble { + position: absolute; + width: 430px; + right: 30px; + top: 30px; +} + +.assassins_tutorial .speechbubble .speechbubble_arrow_l { + left: -6px; + top: 55px; +} + +.assassins_tutorial .text { + margin: 20px 0 0 5px; +} + +.assassins_tutorial .btn_ok { + margin: 0 auto; + margin-top: 5px; + display: block; + width: 200px; +} + +.assassins_tutorial .tutorial_image { + margin: 5px auto; +} + +.assassins_tutorial .tutorial_reset_targets { + color: #fc6; + font-weight: 600; + position: absolute; + bottom: 110px; + right: 53px; + width: 156px; + text-align: center; +} + +.assassins_tutorial .btn_wnd.close { + position: absolute; + right: 8px; + top: 6px; +} + +.assassins_fight .ranking { + position: absolute; + left: 0; + display: inline-block; + width: 240px; +} + +.assassins_fight .ranking .btn_ranking_info { + position: absolute; + top: 5px; + right: 25px; +} + +.assassins_fight .ranking .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat 0 -300px; + width: 106px; + height: 149px; + position: absolute; + top: 0; + left: 0; +} + +.assassins_fight .ranking .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/single_images/ranking_bg_middle_96af2b6.png) no-repeat 0 0; + width: 4px; + height: 149px; + position: absolute; + top: 0; + left: 106px; + right: 106px; + background-repeat: repeat-x; + width: auto; +} + +.assassins_fight .ranking .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -106px -300px; + width: 106px; + height: 149px; + position: absolute; + top: 0; + right: 0; +} + +.assassins_fight .ranking .content { + position: relative; + height: 126px; + padding: 0 20px 0 7px; +} + +.assassins_fight .ranking .content .title_table { + display: table; + height: 34px; + margin: 11px 0 3px 0; + width: 100%; +} + +.assassins_fight .ranking .content .title_table .title { + display: table-cell; + vertical-align: middle; + text-align: center; + color: #fdce64; + font-size: 12px; +} + +.assassins_fight .ranking .content .title_table .cooldown { + color: #fff; + font-size: 10px; +} + +.assassins_fight .ranking .content .list { + width: 213px; +} + +.assassins_fight .ranking .content .list .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: absolute; + bottom: 0; + left: 50%; + margin-left: -80px; +} + +.assassins_fight .ranking .content .list .icon { + display: inline-block; +} + +.assassins_fight .ranking .content .list th.name { + text-align: center; + position: relative; +} + +.assassins_fight .ranking .content .list .icon.points { + position: absolute; + right: 3px; + top: 0; +} + +.assassins_fight .ranking .content .list .icon.position { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -417px -300px; + width: 21px; + height: 17px; + position: absolute; + left: 3px; + top: 3px; +} + +.assassins_fight .ranking .content .list td { + line-height: 15px; +} + +.assassins_fight .ranking .content .list td.position { + padding-left: 4px; +} + +.assassins_fight .ranking .content .list td.points { + text-align: right; + padding-right: 6px; +} + +.assassins_fight .ranking .content .list td.no_results { + text-align: center; + height: 50px; +} + +.assassins_fight .ranking .content .list td.ranking_not_active { + text-align: center; + height: 82px; +} + +.assassins_fight .ranking .content .list .selected { + font-weight: 600; +} + +.assassins_fight .ranking .content .list .fix_no_wrap { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.assassins_fight .ranking .content .list .fix_no_wrap .gp_player_link.is_player { + color: #000; +} + +.assassins_fight .ranking.daily { + top: 68px; +} + +.assassins_fight .ranking.overall { + top: 212px; +} + +.layout_game_events_items .spawn { + position: absolute; + top: 800px; + left: 900px; + cursor: pointer; + z-index: 100; +} + +.layout_game_events_items .spawn .destroy_glow { + opacity: 0; + position: absolute; + top: -30px; + left: -23px; + display: none; +} + +.layout_game_events_items .spawn .destroy_line { + opacity: 0; + position: absolute; + transform: scale(.5) rotate(27deg); + top: 30px; + left: -288px; + display: none; +} + +.layout_game_events_items .spawn .hades_unit_movement { + position: absolute; + top: -45px; + left: 75px; + display: none; +} + +.classic_window.spawn { + margin: 10px; +} + +.classic_window.spawn .chance_die { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/shared/spawn_overall_9a80ca0.png) no-repeat 0 0; + width: 96px; + height: 45px; +} + +.classic_window.spawn .grey_layer { + z-index: 1001; +} + +.classic_window.spawn .loading_icon_wrapper { + z-index: 1002; +} + +.classic_window.spawn .reward_res { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/shared/spawn_overall_9a80ca0.png) no-repeat -96px 0; + width: 96px; + height: 45px; +} + +.classic_window.spawn .reward_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/shared/spawn_overall_9a80ca0.png) no-repeat 0 -45px; + width: 96px; + height: 45px; +} + +.classic_window.spawn .reward { + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); +} + +.classic_window.spawn .reward .badge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -444px -90px; + width: 26px; + height: 26px; + position: absolute; + top: -9px; + right: -9px; + text-align: center; + line-height: 26px; + color: #ecb44d; +} + +.classic_window.spawn .btn_send { + max-width: 94px; +} + +.classic_window.spawn .countdown_box { + position: absolute; + top: 10px; + left: 10px; + z-index: 1; +} + +.classic_window.spawn .countdown_box .btn_info_overlay { + position: absolute; + bottom: 1px; + left: 50%; + margin-left: -13px; +} + +.classic_window.spawn .start_text { + padding: 0 12px; + text-align: center; + font-weight: 600; + margin-top: -5px; + margin-bottom: 5px; +} + +.classic_window.spawn span.value { + z-index: 1; + position: absolute; + color: #fc6; + right: 10px; + top: 10px; +} + +.classic_window.spawn .chance_die, +.classic_window.spawn .chance_stone, +.classic_window.spawn .reward_favor, +.classic_window.spawn .reward_res { + position: relative; + display: inline-block; +} + +.classic_window.spawn .progress .indicator { + background-position: 0 -582px; +} + +.classic_window.spawn .pb_mission { + z-index: 0; +} + +.classic_window.spawn .pb_mission .caption { + color: #fc6; +} + +.classic_window.spawn .js-unit .value { + position: absolute; + bottom: 2px; + right: 10px; + text-align: right; + font-family: Verdana; + font-weight: 600; + font-size: 12px; + color: #fff; + text-shadow: 1px 1px 0 #000; +} + +.classic_window.spawn .js-unit .value.red { + color: #e72200; +} + +.classic_window.spawn td { + padding: 3px 10px; +} + +.classic_window.spawn td, +.classic_window.spawn th { + width: 110px; +} + +.classic_window.spawn th { + background: url(https://gpfr.innogamescdn.com/images/game/border/header.png) repeat-x 0 0; + height: 28px; + border-bottom: 1px solid #000; + color: #fff; + padding: 0 10px; + text-align: center; +} + +.classic_window.spawn .col_units { + width: 211px; +} + +.classic_window.spawn tr { + border-bottom: 1px solid #d0be97; +} + +.classic_window.spawn .col_chances, +.classic_window.spawn .col_rewards, +.classic_window.spawn .col_travel { + text-align: center; +} + +.classic_window.spawn tbody tr:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +.classic_window.spawn tbody tr:nth-child(even) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.classic_window.spawn .missions.one_line { + height: 285px; +} + +.classic_window.spawn table { + border-spacing: 0; + border-collapse: collapse; + display: block; +} + +.classic_window.spawn table.viewport { + overflow: hidden; + position: relative; + min-height: 226px; +} + +.classic_window.spawn table.viewport.with_mission_text { + min-height: 96px; +} + +.classic_window.spawn .with_destroy_btn table.viewport:not(.with_mission_text) { + min-height: 140px; +} + +.classic_window.spawn .with_destroy_btn .mission_text.finished { + display: none; +} + +.classic_window.spawn tbody, +.classic_window.spawn thead { + display: block; +} + +.classic_window.spawn tbody { + overflow: visible; +} + +.classic_window.spawn .game_border.height_fix { + bottom: 8px; + position: absolute; + left: 7px; + right: 7px; +} + +.classic_window.spawn .mission_text { + margin: 10px; +} + +.classic_window.spawn .destroy_button_wrapper { + display: none; + position: relative; + left: 50%; + -webkit-transform: translate(-50%); + -ms-transform: translate(-50%); + -o-transform: translate(-50%); + transform: translate(-50%); + top: -16px; + margin-left: -5px; + margin-bottom: -16px; +} + +.classic_window.spawn .destroy_button_wrapper.active { + display: block; +} + +.classic_window.spawn .destroy_button_wrapper .glow { + left: -210px; + top: -10px; + position: relative; +} + +.classic_window.spawn .destroy_button_wrapper .btn_destroy { + position: absolute; + top: 48px; + left: 59px; + width: 187px; +} + +.classic_window.spawn .destroyed_banner { + position: absolute; +} + +.classic_window.spawn .glow_filling { + position: absolute; + display: none; + left: 88px; + top: 9px; +} + +.classic_window.spawn .glow_horizontal { + position: absolute; + top: 50%; + margin-top: -20px; + display: none; +} + +.classic_window.spawn .glow_big { + position: absolute; + left: 210px; + top: -40px; + display: none; +} + +.classic_window.spawn .stones { + position: relative; +} + +.classic_window.spawn .stones.hidden { + visibility: hidden; +} + +.classic_window.spawn .stones .stone { + position: absolute; + opacity: 0; +} + +.classic_window.spawn .see_outcome { + position: relative; + left: 50%; + -webkit-transform: translate(-50%); + -ms-transform: translate(-50%); + -o-transform: translate(-50%); + transform: translate(-50%); + margin-top: -22px; +} + +.classic_window.spawn .see_outcome .btn_outcome { + width: 179px; + left: 50%; + -webkit-transform: translate(-50%); + -ms-transform: translate(-50%); + -o-transform: translate(-50%); + transform: translate(-50%); + top: 42px; +} + +.classic_window.spawn .animated_stone { + position: relative; + display: block; + visibility: hidden; + z-index: 2000; + left: 0; + top: 0; +} + +.classic_window.spawn .visible_stone { + visibility: visible; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward { + overflow: visible; + margin-top: -20px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .title { + z-index: 3; + top: 43px; + left: 0; + text-align: center; + width: 100%; + color: #fff; + font-size: 14px; + text-shadow: 2px 2px #000; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .buttons { + top: 40px; + z-index: 3; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .border.border_t { + width: auto; + height: 42px; + top: 40px; + left: 0; + z-index: 2; + margin-left: 129px; + margin-right: 113px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .corner.corner_tl { + width: 179px; + height: 128px; + left: -50px; + top: 40px; + z-index: 2; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .corner.corner_tr { + width: 179px; + height: 128px; + right: -50px; + top: 40px; + z-index: 2; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .content { + margin-top: 85px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .background_image { + width: 500px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_small { + position: relative; + display: inline-block; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_small>div { + display: inline-block; + height: 122px; + vertical-align: top; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_small .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/scroll_left.png) no-repeat; + width: 85px; + margin-right: -5px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_small .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/scroll_middle.png) repeat-x; + width: 240px; + margin-right: -5px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_small .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/scroll_right.png) no-repeat; + width: 85px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_small.size_1 { + margin-left: 80px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_small.size_1 .middle { + width: 135px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_small.size_2 { + margin-left: 30px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .hades_reward { + text-align: center; + width: 510px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .button_new, +.gp_window.classic_sub_window.spawn_sub_window_reward .header_rewards, +.gp_window.classic_sub_window.spawn_sub_window_reward .header_units, +.gp_window.classic_sub_window.spawn_sub_window_reward .returned_units, +.gp_window.classic_sub_window.spawn_sub_window_reward .scroll_wrapper { + display: inline-block; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .returned_units { + margin-bottom: 15px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .returned_units .value { + position: absolute; + top: 95px; + width: 100%; + text-align: center; + right: 0; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .returned_units .value.red { + color: #e72200; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .btn_close { + display: none; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .btn_okay { + margin: 10px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .unit_icon90x90 { + overflow: visible; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .header_rewards, +.gp_window.classic_sub_window.spawn_sub_window_reward .header_units { + font-weight: 600; + margin-top: 10px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .header_rewards:after, +.gp_window.classic_sub_window.spawn_sub_window_reward .header_units:after { + content: ''; + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/campaign/battle_e12df77.png) no-repeat -811px -519px; + width: 158px; + height: 1px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .header_units { + margin-bottom: 10px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper { + position: absolute; + left: 0; + right: 0; + top: 0; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper .reward_glow { + display: inline-block; + vertical-align: top; + line-height: 119px; + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px 0; + width: 119px; + height: 118px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper .reward { + display: inline-block; + vertical-align: middle; + margin-bottom: 15px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper .reward.favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper .reward.all_resources { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size50_c4991a9.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper .amount_stone { + display: none; +} + +.gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper .amount_all_resources, +.gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper .amount_favor { + position: absolute; + bottom: -25px; + left: 50%; + -webkit-transform: translate(-50%); + -ms-transform: translate(-50%); + -o-transform: translate(-50%); + transform: translate(-50%); + font-weight: 600; +} + +.layout_game_events_items .hades .destroy_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -747px -503px; + width: 250px; + height: 150px; +} + +.layout_game_events_items .hades .destroy_line { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -1008px; + width: 780px; + height: 30px; +} + +.layout_game_events_items .hades .portal { + width: 200px; + height: 88px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_portal_8bbcbb8.png) no-repeat 0 0; + -webkit-animation: hades_portal-animation 1s steps(9) forwards infinite; + -ms-animation: hades_portal-animation 1s steps(9) forwards infinite; + animation: hades_portal-animation 1s steps(9) forwards infinite; +} + +.classic_window.hades .chance_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -569px -452px; + width: 96px; + height: 45px; +} + +.classic_window.hades .destroy_button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -726px -656px; + width: 303px; + height: 108px; +} + +.classic_window.hades .destroy_button_wrapper .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -656px; + width: 726px; + height: 130px; +} + +.classic_window.hades .destroyed_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 0; + width: 747px; + height: 226px; +} + +.classic_window.hades .glow_filling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -452px; + width: 569px; + height: 204px; +} + +.classic_window.hades .glow_horizontal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -1008px; + width: 780px; + height: 30px; +} + +.classic_window.hades .glow_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -747px 0; + width: 325px; + height: 296px; +} + +.classic_window.hades .stones { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -226px; + width: 747px; + height: 226px; +} + +.classic_window.hades .stones .stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1016px -359px; + width: 40px; + height: 44px; +} + +.classic_window.hades .stones .stone:nth-child(1) { + left: 89px; + top: 89px; +} + +.classic_window.hades .stones .stone:nth-child(2) { + left: 187px; + top: 89px; +} + +.classic_window.hades .stones .stone:nth-child(3) { + left: 613px; + top: 89px; +} + +.classic_window.hades .stones .stone:nth-child(4) { + left: 515px; + top: 89px; +} + +.classic_window.hades .stones .stone:nth-child(5) { + left: 353px; + top: 170px; +} + +.classic_window.hades .stones .stone:nth-child(6) { + left: 351px; + top: 9px; +} + +.classic_window.hades .stones .stone.collected { + opacity: 1; +} + +.classic_window.hades .see_outcome { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px -888px; + width: 303px; + height: 114px; +} + +.classic_window.hades .animated_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1016px -359px; + width: 40px; + height: 44px; +} + +.classic_window.hades .gp_window.classic_sub_window.spawn_sub_window_reward .rewards_wrapper .reward.stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1016px -359px; + width: 40px; + height: 44px; +} + +.classic_window.hades .gp_window.classic_sub_window.spawn_sub_window_reward .corner.corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/window_banner_left.png) no-repeat; +} + +.classic_window.hades .gp_window.classic_sub_window.spawn_sub_window_reward .corner.corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/window_banner_right.png) no-repeat; +} + +.classic_window.hades .gp_window.classic_sub_window.spawn_sub_window_reward .border.border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/window_banner_middle.png) repeat-x; +} + +.classic_window.hades .gp_window.classic_sub_window .hades_tutorial .illustration.part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px -666px; + width: 388px; + height: 222px; +} + +.classic_window.hades .gp_window.classic_sub_window .hades_tutorial .illustration.part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px -222px; + width: 388px; + height: 222px; +} + +.classic_window.hades .gp_window.classic_sub_window .hades_tutorial .illustration.part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px 0; + width: 388px; + height: 222px; +} + +.classic_window.hades .gp_window.classic_sub_window .hades_tutorial .illustration.part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -786px; + width: 388px; + height: 222px; +} + +.classic_window.hades .gp_window.classic_sub_window .hades_tutorial .illustration.part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -388px -786px; + width: 388px; + height: 222px; +} + +.classic_window.hades .gp_window.classic_sub_window .hades_tutorial .illustration.part6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px -444px; + width: 388px; + height: 222px; +} + +.classic_window.hades .gp_window.classic_sub_window .hades_tutorial .illustration.part6 .str1 { + bottom: 34px; +} + +.layout_game_events_items .hydra .portal { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_edf7b1c.png) no-repeat 0 0; + -webkit-animation: hydra_animation-animation 1.2s steps(11) forwards infinite; + -ms-animation: hydra_animation-animation 1.2s steps(11) forwards infinite; + animation: hydra_animation-animation 1.2s steps(11) forwards infinite; + animation-iteration-count: infinite; +} + +.layout_game_events_items .hydra .portal.destroyed { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_death_e4db47d.png) no-repeat 0 0; + -webkit-animation: hydra_animation_death-animation 1.6s steps(15) forwards; + -ms-animation: hydra_animation_death-animation 1.6s steps(15) forwards; + animation: hydra_animation_death-animation 1.6s steps(15) forwards; +} + +.night .layout_game_events_items .hydra .portal { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_night_7898c4b.png) no-repeat 0 0; + -webkit-animation: hydra_animation_night-animation 1.2s steps(11) forwards infinite; + -ms-animation: hydra_animation_night-animation 1.2s steps(11) forwards infinite; + animation: hydra_animation_night-animation 1.2s steps(11) forwards infinite; + animation-iteration-count: infinite; +} + +.night .layout_game_events_items .hydra .portal.destroyed { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_death_e4db47d.png) no-repeat 0 0; + -webkit-animation: hydra_animation_death-animation 1.6s steps(15) forwards; + -ms-animation: hydra_animation_death-animation 1.6s steps(15) forwards; + animation: hydra_animation_death-animation 1.6s steps(15) forwards; +} + +.classic_window.hydra .chance_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -951px -804px; + width: 99px; + height: 47px; + top: -4px; + left: -6px; +} + +.classic_window.hydra .chance_stone span { + right: 6px; + top: 15px; +} + +.classic_window.hydra .destroy_button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -776px -582px; + width: 303px; + height: 108px; +} + +.classic_window.hydra .destroy_button_wrapper .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 -452px; + width: 726px; + height: 130px; +} + +.classic_window.hydra .destroyed_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 -226px; + width: 747px; + height: 226px; +} + +.classic_window.hydra .stones { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 0; + width: 747px; + height: 226px; +} + +.classic_window.hydra .stones .reward { + top: 75%; +} + +.classic_window.hydra .stones .stone:nth-child(1) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -870px -804px; + width: 81px; + height: 74px; + left: 11px; + top: 45px; +} + +.classic_window.hydra .stones .stone:nth-child(2) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -776px -690px; + width: 124px; + height: 94px; + left: 87px; + top: 8px; +} + +.classic_window.hydra .stones .stone:nth-child(3) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -1011px -690px; + width: 92px; + height: 76px; + left: 62px; + top: 107px; +} + +.classic_window.hydra .stones .stone:nth-child(4) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -900px -690px; + width: 111px; + height: 89px; + left: 538px; + top: 8px; +} + +.classic_window.hydra .stones .stone:nth-child(5) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -776px -804px; + width: 94px; + height: 93px; + left: 598px; + top: 96px; +} + +.classic_window.hydra .stones .stone:nth-child(6) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -1050px -444px; + width: 78px; + height: 78px; + left: 658px; + top: 46px; +} + +.classic_window.hydra .stones .stone.collected { + opacity: 1; +} + +.classic_window.hydra .see_outcome { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -747px -444px; + width: 303px; + height: 114px; +} + +.classic_window.hydra .classic_sub_window.spawn_sub_window_reward .rewards_wrapper .reward.stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -1079px -582px; + width: 50px; + height: 50px; +} + +.classic_window.hydra .classic_sub_window.spawn_sub_window_reward .corner.corner_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/window_banner_left.png) no-repeat; +} + +.classic_window.hydra .classic_sub_window.spawn_sub_window_reward .corner.corner_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/window_banner_right.png) no-repeat; +} + +.classic_window.hydra .classic_sub_window.spawn_sub_window_reward .border.border_t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/window_banner_middle.png) repeat-x; +} + +.classic_window.hydra .classic_sub_window .hades_tutorial .illustration.part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 -804px; + width: 388px; + height: 222px; +} + +.classic_window.hydra .classic_sub_window .hades_tutorial .illustration.part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -388px -582px; + width: 388px; + height: 222px; +} + +.classic_window.hydra .classic_sub_window .hades_tutorial .illustration.part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 -582px; + width: 388px; + height: 222px; +} + +.classic_window.hydra .classic_sub_window .hades_tutorial .illustration.part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -747px -222px; + width: 388px; + height: 222px; +} + +.classic_window.hydra .classic_sub_window .hades_tutorial .illustration.part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -388px -804px; + width: 388px; + height: 222px; +} + +.classic_window.hydra .classic_sub_window .hades_tutorial .illustration.part6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -747px 0; + width: 388px; + height: 222px; +} + +.classic_window.hydra .classic_sub_window .hades_tutorial .illustration.part6 .str1 { + bottom: 38px; +} + +.gp_window.classic_sub_window .hades_tutorial { + width: 550px; + min-height: 325px; + text-align: center; +} + +.gp_window.classic_sub_window .hades_tutorial p { + text-align: left; + margin-right: 15px; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration { + display: inline-block; + position: relative; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration div { + position: absolute; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration.part3 .str1, +.gp_window.classic_sub_window .hades_tutorial .illustration.part3 .str2 { + color: #fff; + font-weight: 600; + width: 180px; + line-height: 25px; + top: 7px; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration.part3 .str1 { + left: 12px; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration.part3 .str2 { + left: 197px; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration.part4 .str1, +.gp_window.classic_sub_window .hades_tutorial .illustration.part4 .str2 { + color: #fc6; + left: 289px; + line-height: 12px; + width: 79px; + font-weight: 600; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration.part4 .str1 { + top: 37px; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration.part4 .str2 { + top: 123px; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration.part5 .str1 { + color: #fc6; + line-height: 12px; + width: 79px; + font-weight: 600; + bottom: 30px; + left: 158px; +} + +.gp_window.classic_sub_window .hades_tutorial .illustration.part6 .str1 { + color: #fc6; + line-height: 18px; + width: 175px; + font-weight: 600; + left: 108px; +} + +.spawn_overall_sprite .death_chance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/shared/spawn_overall_9a80ca0.png) no-repeat 0 0; + width: 96px; + height: 45px; +} + +.spawn_overall_sprite .reward_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/shared/spawn_overall_9a80ca0.png) no-repeat 0 -45px; + width: 96px; + height: 45px; +} + +.spawn_overall_sprite .reward_resources { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/shared/spawn_overall_9a80ca0.png) no-repeat -96px 0; + width: 96px; + height: 45px; +} + +.hades_overall_sprite .backglow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -747px -296px; + width: 269px; + height: 207px; +} + +.hades_overall_sprite .banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -226px; + width: 747px; + height: 226px; +} + +.hades_overall_sprite .banner_complete { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 0; + width: 747px; + height: 226px; +} + +.hades_overall_sprite .destroybutton_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -726px -656px; + width: 303px; + height: 108px; +} + +.hades_overall_sprite .destroybutton_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -656px; + width: 726px; + height: 130px; +} + +.hades_overall_sprite .glow_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -747px 0; + width: 325px; + height: 296px; +} + +.hades_overall_sprite .glow_big_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -747px -503px; + width: 250px; + height: 150px; +} + +.hades_overall_sprite .glow_filling { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -452px; + width: 569px; + height: 204px; +} + +.hades_overall_sprite .glow_horizontal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -1008px; + width: 780px; + height: 30px; +} + +.hades_overall_sprite .hades_gate_troop_movements_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1016px -296px; + width: 47px; + height: 63px; +} + +.hades_overall_sprite .hades_stone { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1016px -359px; + width: 40px; + height: 44px; +} + +.hades_overall_sprite .hades_stone_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1375px -888px; + width: 62px; + height: 79px; +} + +.hades_overall_sprite .reward_chance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -569px -452px; + width: 96px; + height: 45px; +} + +.hades_overall_sprite .stone_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px -888px; + width: 303px; + height: 114px; +} + +.hades_overall_sprite .tut1_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px -666px; + width: 388px; + height: 222px; +} + +.hades_overall_sprite .tut2_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px -222px; + width: 388px; + height: 222px; +} + +.hades_overall_sprite .tut3_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px 0; + width: 388px; + height: 222px; +} + +.hades_overall_sprite .tut4_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat 0 -786px; + width: 388px; + height: 222px; +} + +.hades_overall_sprite .tut5_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -388px -786px; + width: 388px; + height: 222px; +} + +.hades_overall_sprite .tut6_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_overall_1b235c6.png) no-repeat -1072px -444px; + width: 388px; + height: 222px; +} + +@-webkit-keyframes hades_portal-animation { + 100% { + background-position: 0 -792px; + } +} + +@-ms-keyframes hades_portal-animation { + 100% { + background-position: 0 -792px; + } +} + +@keyframes hades_portal-animation { + 100% { + background-position: 0 -792px; + } +} + +.css_animation.hades_portal { + width: 200px; + height: 88px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_portal_8bbcbb8.png) no-repeat 0 0; + -webkit-animation: hades_portal-animation 1s steps(9) forwards infinite; + -ms-animation: hades_portal-animation 1s steps(9) forwards infinite; + animation: hades_portal-animation 1s steps(9) forwards infinite; +} + +.css_animation.hades_portal-start { + width: 200px; + height: 88px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hades/hades_portal_8bbcbb8.png) no-repeat 0 0; +} + +.hydra_overall_sprite .banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 0; + width: 747px; + height: 226px; +} + +.hydra_overall_sprite .banner_complete { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 -226px; + width: 747px; + height: 226px; +} + +.hydra_overall_sprite .destroybutton_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -776px -582px; + width: 303px; + height: 108px; +} + +.hydra_overall_sprite .destroybutton_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 -452px; + width: 726px; + height: 130px; +} + +.hydra_overall_sprite .head1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -870px -804px; + width: 81px; + height: 74px; +} + +.hydra_overall_sprite .head2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -776px -690px; + width: 124px; + height: 94px; +} + +.hydra_overall_sprite .head3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -1011px -690px; + width: 92px; + height: 76px; +} + +.hydra_overall_sprite .head4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -900px -690px; + width: 111px; + height: 89px; +} + +.hydra_overall_sprite .head5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -776px -804px; + width: 94px; + height: 93px; +} + +.hydra_overall_sprite .head6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -1050px -444px; + width: 78px; + height: 78px; +} + +.hydra_overall_sprite .hydra_head_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -1079px -582px; + width: 50px; + height: 50px; +} + +.hydra_overall_sprite .reward_chance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -951px -804px; + width: 99px; + height: 47px; +} + +.hydra_overall_sprite .stone_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -747px -444px; + width: 303px; + height: 114px; +} + +.hydra_overall_sprite .tut1_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 -804px; + width: 388px; + height: 222px; +} + +.hydra_overall_sprite .tut2_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -388px -582px; + width: 388px; + height: 222px; +} + +.hydra_overall_sprite .tut3_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat 0 -582px; + width: 388px; + height: 222px; +} + +.hydra_overall_sprite .tut4_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -747px -222px; + width: 388px; + height: 222px; +} + +.hydra_overall_sprite .tut5_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -388px -804px; + width: 388px; + height: 222px; +} + +.hydra_overall_sprite .tut6_img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/hydra_overall_824866c.png) no-repeat -747px 0; + width: 388px; + height: 222px; +} + +@-webkit-keyframes hydra_animation-animation { + 100% { + background-position: 0 -1221px; + } +} + +@-ms-keyframes hydra_animation-animation { + 100% { + background-position: 0 -1221px; + } +} + +@keyframes hydra_animation-animation { + 100% { + background-position: 0 -1221px; + } +} + +.css_animation.hydra_animation { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_edf7b1c.png) no-repeat 0 0; + -webkit-animation: hydra_animation-animation 1.2s steps(11) forwards infinite; + -ms-animation: hydra_animation-animation 1.2s steps(11) forwards infinite; + animation: hydra_animation-animation 1.2s steps(11) forwards infinite; +} + +.css_animation.hydra_animation-start { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_edf7b1c.png) no-repeat 0 0; +} + +@-webkit-keyframes hydra_animation_death-animation { + 100% { + background-position: 0 -1665px; + } +} + +@-ms-keyframes hydra_animation_death-animation { + 100% { + background-position: 0 -1665px; + } +} + +@keyframes hydra_animation_death-animation { + 100% { + background-position: 0 -1665px; + } +} + +.css_animation.hydra_animation_death { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_death_e4db47d.png) no-repeat 0 0; + -webkit-animation: hydra_animation_death-animation 1.6s steps(15) forwards; + -ms-animation: hydra_animation_death-animation 1.6s steps(15) forwards; + animation: hydra_animation_death-animation 1.6s steps(15) forwards; +} + +.css_animation.hydra_animation_death-start { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_death_e4db47d.png) no-repeat 0 0; +} + +@-webkit-keyframes hydra_animation_night-animation { + 100% { + background-position: 0 -1221px; + } +} + +@-ms-keyframes hydra_animation_night-animation { + 100% { + background-position: 0 -1221px; + } +} + +@keyframes hydra_animation_night-animation { + 100% { + background-position: 0 -1221px; + } +} + +.css_animation.hydra_animation_night { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_night_7898c4b.png) no-repeat 0 0; + -webkit-animation: hydra_animation_night-animation 1.2s steps(11) forwards infinite; + -ms-animation: hydra_animation_night-animation 1.2s steps(11) forwards infinite; + animation: hydra_animation_night-animation 1.2s steps(11) forwards infinite; +} + +.css_animation.hydra_animation_night-start { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_night_7898c4b.png) no-repeat 0 0; +} + +@-webkit-keyframes hydra_animation_night_death-animation { + 100% { + background-position: 0 -1665px; + } +} + +@-ms-keyframes hydra_animation_night_death-animation { + 100% { + background-position: 0 -1665px; + } +} + +@keyframes hydra_animation_night_death-animation { + 100% { + background-position: 0 -1665px; + } +} + +.css_animation.hydra_animation_night_death { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_night_death_ebc9f70.png) no-repeat 0 0; + -webkit-animation: hydra_animation_night_death-animation 1.6s steps(15) forwards; + -ms-animation: hydra_animation_night_death-animation 1.6s steps(15) forwards; + animation: hydra_animation_night_death-animation 1.6s steps(15) forwards; +} + +.css_animation.hydra_animation_night_death-start { + width: 141px; + height: 111px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/spawn/hydra/animation/hydra_animation_night_death_ebc9f70.png) no-repeat 0 0; +} + +.grepolympia_common .alliance_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -314px -136px; + width: 32px; + height: 32px; +} + +.grepolympia_common .alliance_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -378px -136px; + width: 32px; + height: 32px; +} + +.grepolympia_common .alliance_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -282px -136px; + width: 32px; + height: 32px; +} + +.grepolympia_common .discipline_1_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -386px -186px; + width: 30px; + height: 30px; +} + +.grepolympia_common .discipline_1_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -356px -186px; + width: 30px; + height: 30px; +} + +.grepolympia_common .discipline_2_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -326px -186px; + width: 30px; + height: 30px; +} + +.grepolympia_common .discipline_2_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -296px -186px; + width: 30px; + height: 30px; +} + +.grepolympia_common .discipline_shadow_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat 0 0; + width: 232px; + height: 250px; +} + +.grepolympia_common .laurel_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px -218px; + width: 29px; + height: 19px; +} + +.grepolympia_common .player_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -264px -186px; + width: 32px; + height: 32px; +} + +.grepolympia_common .player_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px -186px; + width: 32px; + height: 32px; +} + +.grepolympia_common .player_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -346px -136px; + width: 32px; + height: 32px; +} + +.grepolympia_common .result_laurel { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px -72px; + width: 130px; + height: 64px; +} + +.grepolympia_common .skill_points_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -410px -136px; + width: 28px; + height: 30px; +} + +.grepolympia_common .training_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px -136px; + width: 50px; + height: 50px; +} + +.grepolympia_common .training_button_click { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -362px -72px; + width: 50px; + height: 50px; +} + +.grepolympia_common .training_rations { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat 0 -250px; + width: 212px; + height: 54px; +} + +.grepolympia_common .training_star { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -412px -72px; + width: 19px; + height: 19px; +} + +.grepolympia_common .training_unit_selection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px 0; + width: 207px; + height: 72px; +} + +.grepolympia_common_single_images .grepolympia_flame_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/single_images/grepolympia_flame_icon_0f7332a.gif) no-repeat 0 0; + width: 14px; + height: 29px; +} + +.grepolympia_summer .discipline_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -500px; + width: 250px; + height: 250px; +} + +.grepolympia_summer .discipline_1_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1216px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_1_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1248px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_1_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1280px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_1_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1180px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .discipline_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px 0; + width: 250px; + height: 250px; +} + +.grepolympia_summer .discipline_2_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1152px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_2_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1152px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_2_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1184px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_2_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1310px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .discipline_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -250px; + width: 250px; + height: 250px; +} + +.grepolympia_summer .discipline_3_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1280px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .discipline_3_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_3_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1216px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_3_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1312px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_3_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1240px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .discipline_3_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1210px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .discipline_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -750px; + width: 250px; + height: 250px; +} + +.grepolympia_summer .discipline_4_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1150px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .discipline_4_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1184px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_4_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1248px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_4_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .discipline_4_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .discipline_4_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1340px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .grepolympia_icon2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -888px; + width: 93px; + height: 99px; +} + +.grepolympia_summer .grepolympia_icon2_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -468px -888px; + width: 93px; + height: 99px; +} + +.grepolympia_summer .progressbars_round_sprite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -267px; + width: 201px; + height: 201px; +} + +.grepolympia_summer .training_icon_discipline_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -576px -267px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .training_icon_discipline_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -474px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .training_icon_discipline_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -519px -474px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .training_icon_discipline_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -750px -681px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .training_icon_not_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -894px -681px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .training_main_element { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 0; + width: 745px; + height: 267px; +} + +.grepolympia_summer .tut_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 -888px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .tut_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -681px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .tut_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 -681px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .tut_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -745px -414px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .tut_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -745px -207px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .tut_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -745px 0; + width: 375px; + height: 207px; +} + +.grepolympia_summer .tut_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 -474px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .tut_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 -267px; + width: 375px; + height: 207px; +} + +.grepolympia_summer_single_images .bg_result_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/bg_result_popup_fb63d7a.png) no-repeat 0 0; + width: 260px; + height: 288px; +} + +.grepolympia_summer_single_images .bg_shop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/bg_shop_5cb8c2d.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_summer_single_images .bg_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/bg_training_16be033.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_summer_single_images .grepolympia_competition_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/grepolympia_competition_bg_209eabe.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_summer_single_images .grepolympia_intersticial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/grepolympia_intersticial_bg_2d3d661.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.grepolympia_summer_single_images .layout_ranking { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/layout_ranking_3734101.jpg) no-repeat 0 0; + width: 756px; + height: 537px; +} + +.grepolympia_summer_single_images .layout_ranking_list_row { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/layout_ranking_list_row_3157d33.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_summer_single_images .layout_ranking_list_row_even { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/layout_ranking_list_row_even_d62bfa9.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_summer_single_images .layout_ranking_list_selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/layout_ranking_list_selected_598aba3.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_winter .discipline_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -250px; + width: 250px; + height: 250px; +} + +.grepolympia_winter .discipline_1_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1270px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_1_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1248px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_1_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1216px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_1_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1184px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_1_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1240px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_1_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1210px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px 0; + width: 250px; + height: 250px; +} + +.grepolympia_winter .discipline_2_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1180px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_2_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1152px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_2_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_2_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1248px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_2_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1150px -1064px; + width: 30px; + height: 30px; +}.grepolympia_winter .discipline_2_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1300px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -750px; + width: 250px; + height: 250px; +} + +.grepolympia_winter .discipline_3_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_3_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1184px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_3_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_3_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1280px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_3_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1330px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_3_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1280px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -500px; + width: 250px; + height: 250px; +} + +.grepolympia_winter .discipline_4_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -745px -621px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_4_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1216px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_4_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1312px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_4_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1152px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .discipline_4_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1310px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .discipline_4_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1340px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .grepolympia_icon2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -468px -888px; + width: 93px; + height: 99px; +} + +.grepolympia_winter .grepolympia_icon2_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -375px -888px; + width: 93px; + height: 99px; +} + +.grepolympia_winter .progressbars_round_sprite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -375px -267px; + width: 201px; + height: 201px; +} + +.grepolympia_winter .training_icon_discipline_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -576px -267px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .training_icon_discipline_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -894px -681px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .training_icon_discipline_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -750px -681px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .training_icon_discipline_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -519px -474px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .training_icon_not_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -375px -474px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .training_main_element { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 0; + width: 745px; + height: 267px; +} + +.grepolympia_winter .tut_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 -888px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .tut_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -375px -681px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .tut_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 -681px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .tut_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -745px -414px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .tut_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -745px -207px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .tut_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -745px 0; + width: 375px; + height: 207px; +} + +.grepolympia_winter .tut_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 -474px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .tut_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 -267px; + width: 375px; + height: 207px; +} + +.grepolympia_winter_single_images .bg_result_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/bg_result_popup_53f744f.png) no-repeat 0 0; + width: 260px; + height: 288px; +} + +.grepolympia_winter_single_images .bg_shop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/bg_shop_94653fb.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_winter_single_images .bg_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/bg_training_38a71bd.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_winter_single_images .grepolympia_competition_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/grepolympia_competition_bg_1b3a770.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_winter_single_images .grepolympia_intersticial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/grepolympia_intersticial_bg_837a28c.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.grepolympia_winter_single_images .layout_ranking { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/layout_ranking_89ae381.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_winter_single_images .layout_ranking_list_row { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/layout_ranking_list_row_3157d33.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_winter_single_images .layout_ranking_list_row_even { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/layout_ranking_list_row_even_d62bfa9.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_winter_single_images .layout_ranking_list_selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/layout_ranking_list_selected_598aba3.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_worldcup .discipline_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px -250px; + width: 250px; + height: 250px; +} + +.grepolympia_worldcup .discipline_1_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -669px -441px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_1_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -777px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_1_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -809px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_1_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -873px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_1_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -636px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_1_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1065px -621px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px 0; + width: 250px; + height: 250px; +} + +.grepolympia_worldcup .discipline_2_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -576px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_2_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -905px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_2_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -937px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_2_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1033px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_2_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1095px -621px; + width: 23px; + height: 30px; +} + +.grepolympia_worldcup .discipline_2_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -669px -411px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px -750px; + width: 250px; + height: 250px; +} + +.grepolympia_worldcup .discipline_3_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -699px -411px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_3_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1001px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_3_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -969px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_3_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_3_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -699px -441px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_3_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -666px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px -500px; + width: 250px; + height: 250px; +} + +.grepolympia_worldcup .discipline_4_first_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -696px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_4_rbtn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1327px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_4_rbtn_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -841px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_4_rbtn_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1327px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .discipline_4_second_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -606px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .discipline_4_third_skill_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -873px -792px; + width: 23px; + height: 30px; +} + +.grepolympia_worldcup .grepolympia_icon2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -682px -1095px; + width: 125px; + height: 125px; +} + +.grepolympia_worldcup .grepolympia_icon2_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -432px -1095px; + width: 125px; + height: 125px; +} + +.grepolympia_worldcup .grepolympia_icon2_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -557px -1095px; + width: 125px; + height: 125px; +} + +.grepolympia_worldcup .progressbars_round_sprite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -375px -474px; + width: 201px; + height: 201px; +} + +.grepolympia_worldcup .result_laurel { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -750px -792px; + width: 123px; + height: 64px; +} + +.grepolympia_worldcup .team_logo_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -669px -267px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .team_logo_athens_150x150 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -525px -888px; + width: 150px; + height: 150px; +} + +.grepolympia_worldcup .team_logo_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -669px -339px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .team_logo_corinth_150x150 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -375px -888px; + width: 150px; + height: 150px; +} + +.grepolympia_worldcup .team_logo_grepolis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -807px -1095px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .team_logo_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -879px -1095px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .team_logo_olympus_150x150 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -576px -474px; + width: 150px; + height: 150px; +} + +.grepolympia_worldcup .team_logo_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -951px -1095px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .team_logo_sparta_150x150 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -675px -888px; + width: 150px; + height: 150px; +} + +.grepolympia_worldcup .training_icon_discipline_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -1095px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .training_icon_discipline_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -969px -888px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .training_icon_discipline_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -825px -888px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .training_icon_discipline_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -288px -1095px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .training_icon_not_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -144px -1095px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .training_main_element { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 0; + width: 745px; + height: 267px; +} + +.grepolympia_worldcup .tut_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -888px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .tut_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -375px -681px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .tut_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -681px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .tut_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -378px -267px; + width: 291px; + height: 207px; +} + +.grepolympia_worldcup .tut_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px -414px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .tut_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px -207px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .tut_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px 0; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .tut_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -267px; + width: 378px; + height: 207px; +} + +.grepolympia_worldcup .tut_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -474px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .tut_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -750px -681px; + width: 348px; + height: 111px; +} + +.grepolympia_worldcup .world_cup_training_unit_selection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px -1000px; + width: 207px; + height: 72px; +} + +.grepolympia_worldcup_single_images .bg_community_goal_reached { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_community_goal_reached_2d9c234.jpg) no-repeat 0 0; + width: 471px; + height: 279px; +} + +.grepolympia_worldcup_single_images .bg_matches { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_matches_0c71c52.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup_single_images .bg_result_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_result_popup_b279a13.png) no-repeat 0 0; + width: 260px; + height: 288px; +} + +.grepolympia_worldcup_single_images .bg_shop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_shop_e1c7cfe.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup_single_images .bg_training { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_training_7e9580c.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup_single_images .grepolympia_competition_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/grepolympia_competition_bg_6571b1b.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup_single_images .grepolympia_intersticial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/grepolympia_intersticial_bg_291bd98.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.grepolympia_worldcup_single_images .layout_ranking { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/layout_ranking_06b37c4.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup_single_images .layout_ranking_list_row { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/layout_ranking_list_row_3157d33.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_worldcup_single_images .layout_ranking_list_row_even { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/layout_ranking_list_row_even_d62bfa9.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_worldcup_single_images .layout_ranking_list_selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/layout_ranking_list_selected_598aba3.png) no-repeat 0 0; + width: 128px; + height: 24px; +} + +.grepolympia_summer .go_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/grepolympia_competition_bg_209eabe.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_summer .go_info .discipline_box .content.hoplite_race { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -500px; + width: 250px; + height: 250px; +} + +.grepolympia_summer .go_info .discipline_box .content.archery { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px 0; + width: 250px; + height: 250px; +} + +.grepolympia_summer .go_info .discipline_box .content.javelin_throwing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -250px; + width: 250px; + height: 250px; +} + +.grepolympia_summer .go_info .discipline_box .content.chariot_race { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -750px; + width: 250px; + height: 250px; +} + +.grepolympia_summer .go_info .attend_info_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/bg_result_popup_fb63d7a.png) no-repeat 0 0; + width: 260px; + height: 288px; +} + +.grepolympia_summer .go_athlete { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/bg_training_16be033.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_summer .go_athlete .middle_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 0; + width: 745px; + height: 267px; +} + +.grepolympia_summer .go_athlete .training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -894px -681px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .go_athlete.hoplite_race .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -576px -267px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .go_athlete.hoplite_race .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1180px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .go_athlete.javelin_throwing .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -474px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .go_athlete.javelin_throwing .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1310px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .go_athlete.archery .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -519px -474px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .go_athlete.archery .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1280px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .go_athlete.archery .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1240px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .go_athlete.archery .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1210px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .go_athlete.chariot_race .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -750px -681px; + width: 144px; + height: 150px; +} + +.grepolympia_summer .go_athlete.chariot_race .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1150px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .go_athlete.chariot_race .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .go_athlete.chariot_race .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1340px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_summer .go_athlete #training_progress .face { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -267px; + width: 201px; + height: 201px; +} + +.grepolympia_summer .go_ranking { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/layout_ranking_3734101.jpg) no-repeat 0 0; + width: 756px; + height: 537px; +} + +.grepolympia_summer .go_ranking #ranking_list tbody tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/layout_ranking_list_row_3157d33.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_summer .go_ranking #ranking_list tbody tr.row_even { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/layout_ranking_list_row_even_d62bfa9.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_summer .go_ranking #ranking_list tbody tr.selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/layout_ranking_list_selected_598aba3.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.hoplite_race { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1216px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.hoplite_race.checked, +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.hoplite_race:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1248px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.hoplite_race.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1280px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.archery { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1152px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.archery.checked, +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.archery:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1152px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.archery.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1184px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.javelin_throwing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.javelin_throwing.checked, +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.javelin_throwing:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1216px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.javelin_throwing.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1312px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.chariot_race { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1184px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.chariot_race.checked, +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.chariot_race:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1248px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .rbtn_grepolympia_ranking .option.chariot_race.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -1120px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_summer .go_ranking .search_options .lbl_go_source { + color: #000; + font-weight: 600; +} + +.grepolympia_summer .grepolympia_shop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/bg_shop_5cb8c2d.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_summer .grepolympia_tutorial .part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 -888px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .grepolympia_tutorial .part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -375px -681px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .grepolympia_tutorial .part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 -681px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .grepolympia_tutorial .part3 .wrapper1 { + left: 154px; + top: 77px; +} + +.grepolympia_summer .grepolympia_tutorial .part3 .wrapper2 { + left: 182px; + top: 77px; +} + +.grepolympia_summer .grepolympia_tutorial .part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -745px -414px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .grepolympia_tutorial .part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -745px -207px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .grepolympia_tutorial .part6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat -745px 0; + width: 375px; + height: 207px; +} + +.grepolympia_summer .grepolympia_tutorial .part7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 -474px; + width: 375px; + height: 207px; +} + +.grepolympia_summer .grepolympia_tutorial .part8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/sprite_images/grepolympia_0cec022.png) no-repeat 0 -267px; + width: 375px; + height: 207px; +} + +.column_window.grepolympia_end_interstitial .welcome_window_container.grepolympia_summer, +.column_window.grepolympia_welcome .welcome_window_container.grepolympia_summer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/summer/single_images/grepolympia_intersticial_bg_2d3d661.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.grepolympia_winter .go_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/grepolympia_competition_bg_1b3a770.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_winter .go_info .discipline_box .content.shield_luge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -250px; + width: 250px; + height: 250px; +} + +.grepolympia_winter .go_info .discipline_box .content.winter_biathlon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px 0; + width: 250px; + height: 250px; +} + +.grepolympia_winter .go_info .discipline_box .content.figure_skating { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -750px; + width: 250px; + height: 250px; +} + +.grepolympia_winter .go_info .discipline_box .content.ski_jump { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -500px; + width: 250px; + height: 250px; +} + +.grepolympia_winter .go_info .attend_info_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/bg_result_popup_53f744f.png) no-repeat 0 0; + width: 260px; + height: 288px; +} + +.grepolympia_winter .go_athlete { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/bg_training_38a71bd.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_winter .go_athlete .middle_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 0; + width: 745px; + height: 267px; +} + +.grepolympia_winter .go_athlete .training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -375px -474px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .go_athlete.shield_luge .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -576px -267px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .go_athlete.shield_luge .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1270px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.shield_luge .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1240px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.shield_luge .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1210px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.winter_biathlon .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -894px -681px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .go_athlete.winter_biathlon .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1180px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.winter_biathlon .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1150px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.winter_biathlon .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1300px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.figure_skating .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -750px -681px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .go_athlete.figure_skating .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.figure_skating .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1330px -1064px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.figure_skating .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1280px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.ski_jump .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -519px -474px; + width: 144px; + height: 150px; +} + +.grepolympia_winter .go_athlete.ski_jump .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -745px -621px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.ski_jump .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1310px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete.ski_jump .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1340px -1032px; + width: 30px; + height: 30px; +} + +.grepolympia_winter .go_athlete #training_progress .face { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -375px -267px; + width: 201px; + height: 201px; +} + +.grepolympia_winter .go_ranking { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/layout_ranking_89ae381.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_winter .go_ranking #ranking_list tbody tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/layout_ranking_list_row_3157d33.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_winter .go_ranking #ranking_list tbody tr.row_even { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/layout_ranking_list_row_even_d62bfa9.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_winter .go_ranking #ranking_list tbody tr.selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/layout_ranking_list_selected_598aba3.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.shield_luge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1248px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.shield_luge.checked, +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.shield_luge:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1216px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.shield_luge.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1184px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.winter_biathlon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1152px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.winter_biathlon.checked, +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.winter_biathlon:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.winter_biathlon.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1248px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.figure_skating { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1184px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.figure_skating.checked, +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.figure_skating:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1120px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.figure_skating.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1280px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.ski_jump { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1216px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.ski_jump.checked, +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.ski_jump:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1312px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .go_ranking .rbtn_grepolympia_ranking .option.ski_jump.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -1152px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_winter .grepolympia_shop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/bg_shop_94653fb.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_winter .grepolympia_tutorial .part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 -888px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .grepolympia_tutorial .part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -375px -681px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .grepolympia_tutorial .part2 .wrapper1, +.grepolympia_winter .grepolympia_tutorial .part2 .wrapper2 { + display: none; +} + +.grepolympia_winter .grepolympia_tutorial .part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 -681px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .grepolympia_tutorial .part3 .wrapper1 { + left: 156px; + top: 80px; +} + +.grepolympia_winter .grepolympia_tutorial .part3 .wrapper2 { + left: 184px; + top: 80px; +} + +.grepolympia_winter .grepolympia_tutorial .part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -745px -414px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .grepolympia_tutorial .part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -745px -207px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .grepolympia_tutorial .part6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat -745px 0; + width: 375px; + height: 207px; +} + +.grepolympia_winter .grepolympia_tutorial .part7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 -474px; + width: 375px; + height: 207px; +} + +.grepolympia_winter .grepolympia_tutorial .part8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/sprite_images/grepolympia_b91e2d2.png) no-repeat 0 -267px; + width: 375px; + height: 207px; +} + +.column_window.grepolympia_end_interstitial .welcome_window_container.grepolympia_winter, +.column_window.grepolympia_welcome .welcome_window_container.grepolympia_winter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/winter/single_images/grepolympia_intersticial_bg_837a28c.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.grepolympia_worldcup .matches_page { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_matches_0c71c52.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup .matches_page .match_result .match_opponent .icon.match_vs_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -669px -267px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .matches_page .match_result .match_opponent .icon.match_vs_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -951px -1095px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .matches_page .match_result .match_opponent .icon.match_vs_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -669px -339px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .matches_page .match_result .match_opponent .icon.match_vs_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -879px -1095px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .matches_page .match_result .match_opponent .icon.own_team { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -807px -1095px; + width: 72px; + height: 72px; +} + +.grepolympia_worldcup .matches_page .discipline_switch { + position: absolute; + top: 56px; + left: 9px; + text-align: center; + width: 155px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline { + display: inline-block; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .pointer { + display: none; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option { + cursor: pointer; + display: block; + width: 32px; + height: 32px; + overflow: hidden; + float: left; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.disabled { + cursor: default; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -777px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_athens.checked, +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_athens:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -809px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_athens.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -873px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -905px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_sparta.checked, +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_sparta:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -937px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_sparta.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1033px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1001px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_corinth.checked, +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_corinth:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -969px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_corinth.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1327px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_olympus.checked, +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_olympus:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -841px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .matches_page .rbtn_select_discipline .option.match_vs_olympus.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1327px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/grepolympia_competition_bg_6571b1b.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup .go_info .discipline_box .content.match_vs_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px -250px; + width: 250px; + height: 250px; +} + +.grepolympia_worldcup .go_info .discipline_box .content.match_vs_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px 0; + width: 250px; + height: 250px; +} + +.grepolympia_worldcup .go_info .discipline_box .content.match_vs_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px -750px; + width: 250px; + height: 250px; +} + +.grepolympia_worldcup .go_info .discipline_box .content.match_vs_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px -500px; + width: 250px; + height: 250px; +} + +.grepolympia_worldcup .go_info .attend_info_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_result_popup_b279a13.png) no-repeat 0 0; + width: 260px; + height: 288px; +} + +.grepolympia_worldcup .go_info .attend_info_popup .laurels { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -750px -792px; + width: 123px; + height: 64px; +} + +.grepolympia_worldcup .go_info .team_logo_wrapper { + position: absolute; + right: 10px; + top: 68px; + width: 204px; + height: 150px; +} + +.grepolympia_worldcup .go_info .team_logo_wrapper .team_logo { + display: inline-block; + text-align: center; +} + +.grepolympia_worldcup .go_info .team_logo_wrapper.match_vs_athens .team_logo { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -525px -888px; + width: 150px; + height: 150px; +} + +.grepolympia_worldcup .go_info .team_logo_wrapper.match_vs_sparta .team_logo { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -675px -888px; + width: 150px; + height: 150px; +} + +.grepolympia_worldcup .go_info .team_logo_wrapper.match_vs_corinth .team_logo { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -375px -888px; + width: 150px; + height: 150px; +} + +.grepolympia_worldcup .go_info .team_logo_wrapper.match_vs_olympus .team_logo { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -576px -474px; + width: 150px; + height: 150px; +} + +.grepolympia_worldcup .go_athlete { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_training_7e9580c.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup .go_athlete .middle_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 0; + width: 745px; + height: 267px; +} + +.grepolympia_worldcup .go_athlete .training .content ul.units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1120px -1000px; + width: 207px; + height: 72px; + position: absolute; + top: 63px; + left: 184px; +} + +.grepolympia_worldcup .go_athlete .training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -144px -1095px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .go_athlete.match_vs_athens .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -1095px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .go_athlete.match_vs_athens .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -669px -441px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_athens .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -636px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_athens .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1065px -621px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_sparta .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -969px -888px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .go_athlete.match_vs_sparta .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -576px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_sparta .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1095px -621px; + width: 23px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_sparta .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -669px -411px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_corinth .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -825px -888px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .go_athlete.match_vs_corinth .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -699px -411px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_corinth .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -699px -441px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_corinth .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -666px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_olympus .training.is_training .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -288px -1095px; + width: 144px; + height: 150px; +} + +.grepolympia_worldcup .go_athlete.match_vs_olympus .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -696px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_olympus .second_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -606px -624px; + width: 30px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete.match_vs_olympus .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -873px -792px; + width: 23px; + height: 30px; +} + +.grepolympia_worldcup .go_athlete #training_progress .face { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -375px -474px; + width: 201px; + height: 201px; +} + +.grepolympia_worldcup .go_ranking { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/layout_ranking_06b37c4.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup .go_ranking #ranking_list tbody tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/layout_ranking_list_row_3157d33.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_worldcup .go_ranking #ranking_list tbody tr.row_even { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/layout_ranking_list_row_even_d62bfa9.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_worldcup .go_ranking #ranking_list tbody tr.selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/layout_ranking_list_selected_598aba3.png) no-repeat 0 0; + width: 128px; + height: 24px; + background-repeat: repeat-x; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_athens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -777px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_athens.checked, +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_athens:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -809px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_athens.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -873px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_sparta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -905px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_sparta.checked, +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_sparta:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -937px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_sparta.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1033px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_corinth { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1001px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_corinth.checked, +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_corinth:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -969px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_corinth.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1327px -1032px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_olympus.checked, +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_olympus:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -841px -621px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .go_ranking .rbtn_grepolympia_ranking .option.match_vs_olympus.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -1327px -1000px; + width: 32px; + height: 32px; +} + +.grepolympia_worldcup .grepolympia_shop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_shop_e1c7cfe.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -888px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -681px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .str2 { + top: 8px; + left: 12px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .str3 { + top: 28px; + left: 6px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -378px -267px; + width: 291px; + height: 207px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .str3, +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper1, +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper2 { + display: none; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 { + top: 82px; + left: 54px; + height: 120px; + width: 200px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str1, +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str2, +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str4, +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str5 { + font-size: 13px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str1 { + top: 0; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str2 { + top: 32px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str4 { + top: 62px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str5 { + top: 92px; + left: 50px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str5 .icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + width: 14px; + height: 13px; + display: inline-block; + margin: 3px 0 0 3px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px -414px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str5 { + font-size: 13px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px -207px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -745px 0; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .amount, +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .text { + color: #000; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -267px; + width: 378px; + height: 207px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat 0 -474px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -750px -681px; + width: 348px; + height: 111px; +} + +.grepolympia_worldcup .gp_window.classic_sub_window .grepolympia_tutorial .illustration.part10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/sprite_images/grepolympia_5c452eb.png) no-repeat -375px -681px; + width: 375px; + height: 207px; +} + +.grepolympia_worldcup .go_info .alliance_score_wrapper .content, +.grepolympia_worldcup .go_info .current_best_score .content, +.grepolympia_worldcup .go_info .info_popup .previous_best_score, +.grepolympia_worldcup .go_info .info_popup .rank, +.grepolympia_worldcup .go_info .info_popup .scored, +.grepolympia_worldcup .go_ranking .label { + color: #000; +} + +.grepolympia_worldcup.community_goal_reached .background_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/bg_community_goal_reached_2d9c234.jpg) no-repeat 0 0; + width: 471px; + height: 279px; +} + +.column_window.grepolympia_end_interstitial .welcome_window_container.grepolympia_worldcup, +.column_window.grepolympia_welcome .welcome_window_container.grepolympia_worldcup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/worldcup/single_images/grepolympia_intersticial_bg_291bd98.jpg) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.laurel_box { + position: absolute; + width: 67px; + height: 17px; + top: 26px; + right: 15px; +} + +.laurel_box:before { + content: ""; + position: absolute; + width: 40px; + height: 50px; + top: -15px; + right: 69px; +} + +#grepolympia_countdown { + position: absolute; + top: 24px; + left: 12px; + width: 150px; + height: 16px; +} + +.grepolympia_reward_tooltip_title { + font-weight: 600; +} + +.grepolympa_reward .tooltip_power { + padding: 0 5px 5px; +} + +.go_athlete .grepolympia_athlete_boost { + display: none; +} + +.go_athlete .grepolympia_athlete_boost.visible { + display: inline-block; +} + +.matches_page { + color: #fc6; + overflow: hidden; + position: relative; + text-align: center; +} + +.matches_page .match_result { + height: 115px; + left: 186px; + position: absolute; + top: 40px; + width: 382px; +} + +.matches_page .match_result .result { + color: #000; + font-weight: 600; + height: 18px; + left: 142px; + padding-top: 4px; + position: absolute; + text-align: center; + top: 44px; + width: 100px; +} + +.matches_page .match_result .result .opponent_score, +.matches_page .match_result .result .player_team_score { + position: absolute; + top: 4px; + text-align: center; + width: 50px; +} + +.matches_page .match_result .result .opponent_score { + left: 50px; +} + +.matches_page .match_result .match_opponent { + top: 0; + height: 113px; + position: absolute; + text-align: center; + width: 140px; +} + +.matches_page .match_result .match_opponent#opponent_1 .title { + line-height: 38px; +} + +.matches_page .match_result .match_opponent#opponent_2 .title { + line-height: 16px; +} + +.matches_page .match_result .match_opponent .icon_wrapper { + height: 72px; + width: 100%; + text-align: center; + margin-top: 5px; +} + +.matches_page .match_result .match_opponent .icon_wrapper .icon { + display: inline-block; +} + +.matches_page .match_result .match_opponent .title { + bottom: 0; + color: #edb; + cursor: default; + font-weight: 600; + height: 38px; + position: relative; + text-shadow: 1px 1px 0 #000; + width: 100%; +} + +.matches_page .match_result #opponent_1 { + left: 2px; +} + +.matches_page .match_result #opponent_2 { + right: 2px; +} + +.matches_page .title_text { + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + width: 100%; +} + +.matches_page .ranking_box { + height: 333px; + left: 48px; + position: absolute; + top: 174px; + width: 308px; +} + +.matches_page .ranking_box .title { + height: 18px; + padding-top: 4px; + text-align: center; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + width: 100%; +} + +.matches_page .ranking_box .title .text { + display: inline-block; + width: 230px; +} + +.matches_page .ranking_box .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + right: 10px; + top: 0; +} + +.matches_page .ranking_box .ranking_wrapper { + height: 308px; + overflow: hidden; + position: absolute; + top: 25px; + width: 100%; +} + +.matches_page .ranking_box .ranking_wrapper table { + width: 100%; +} + +.matches_page .ranking_box .ranking_wrapper tbody { + color: #000; +} + +.matches_page .ranking_box .ranking_wrapper td, +.matches_page .ranking_box .ranking_wrapper th { + overflow: hidden; + text-align: center; + white-space: nowrap; + max-width: 140px; +} + +.matches_page .ranking_box .ranking_wrapper th { + height: 24px; + line-height: 24px; +} + +.matches_page .ranking_box .ranking_wrapper td { + height: 19px; + line-height: 19px; + text-overflow: ellipsis; +} + +.matches_page .ranking_box .ranking_wrapper .ranking_col1 { + width: 100px; +} + +.matches_page .reward_box { + height: 110px; + right: 40px; + position: absolute; + top: 170px; + width: 324px; +} + +.matches_page .reward_box .title { + height: 15px; + padding-top: 9px; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + width: 100%; +} + +.matches_page .reward_box .rewards { + height: 60px; + margin-left: 35px; + margin-right: 35px; + padding-top: 15px; + width: 255px; +} + +.matches_page .information_box { + height: 202px; + right: 50px; + position: absolute; + bottom: 25px; + width: 304px; +} + +.matches_page .information_box .title { + height: 17px; + padding-top: 2px; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + width: 100%; +} + +.matches_page .information_box .match_information { + height: 150px; + overflow: hidden; + position: absolute; + top: 40px; + width: 100%; +} + +.matches_page .information_box .match_information .scrollbar { + right: -1px; +} + +.matches_page .information_box .text { + color: #000; + height: auto; + margin-left: 12px; + text-align: left; + width: 275px; +} + +.grepolympia_match_ranking_tooltip { + margin: 10px; +} + +.grepolympia_match_ranking_tooltip .awards_wrapper { + display: inline-block; + margin-top: 15px; + text-align: center; + width: 100%; +} + +.grepolympia_match_ranking_tooltip .awards_wrapper .match_award { + display: inline-block; + float: none; +} + +.go_athlete { + height: 527px; + position: relative; + text-align: center; + color: #fc6; + overflow: hidden; +} + +.go_athlete .button_new .caption { + overflow: hidden; +} + +.go_athlete .middle_box { + position: relative; + top: 90px; + left: 6px; +} + +.go_athlete .training .title_wrapper { + position: absolute; + left: 223px; + width: 420px; + top: 30px; +} + +.go_athlete .training .title_wrapper .title { + margin: 0; + padding: 0; + display: inline-block; + line-height: 18px; + font-size: 12px; +} + +.go_athlete .training #training_progress { + position: absolute; + left: 12px; + z-index: 1; +} + +.go_athlete .training #training_progress .background { + display: none; +} + +.go_athlete .training .icon { + position: absolute; + top: 25px; + left: 32px; +} + +.go_athlete .training .premium .gold_icon_slot { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + display: inline-block; + width: 14px; + height: 16px; + vertical-align: middle; + margin-left: 2px; +} + +.go_athlete .training .content { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 3; +} + +.go_athlete .training .content .training_points { + position: absolute; + top: 192px; + left: 65px; + width: 111px; + height: 17px; + line-height: 17px; + text-align: center; + font-size: 10px; + font-weight: 600; +} + +.go_athlete .training .content ul.units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px 0; + width: 207px; + height: 72px; + position: absolute; + top: 63px; + left: 184px; +} + +.go_athlete .training .content .units .timer { + height: 18px; + font-size: 11px; + line-height: 17px; + vertical-align: middle; +} + +.go_athlete .training .content .units li { + position: relative; + float: left; + height: 70px; + width: 48px; + text-align: center; + padding-left: 2px; +} + +.go_athlete .training .content .units li .units { + position: relative; + width: 50px; + left: 0; + top: 0; +} + +.go_athlete .training .content .units li+li { + margin-left: 1px; +} + +.go_athlete .training .content .units li>.premium_training_slot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px -136px; + width: 50px; + height: 50px; + font-size: 12px; + cursor: pointer; + margin-top: 19px; + font-weight: 600; +} + +.go_athlete .training .content .units li>.premium_training_slot .premium { + padding-top: 10px; +} + +.go_athlete .training .content .units li>.premium_training_slot:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -362px -72px; + width: 50px; + height: 50px; +} + +.go_athlete .training .content .units li>.none { + margin-top: 19px; + padding-top: 14px; +} + +.go_athlete .training .content .units .count { + position: absolute; + right: 3px; + bottom: 0; + line-height: 20px; + font-weight: 600; + color: #fff; + text-shadow: #000 1px 1px; +} + +.go_athlete .skill_points_box { + position: absolute; + top: 154px; + right: 30px; + width: 298px; + height: 153px; + font-size: 12px; + line-height: 13px; + z-index: 3; +} + +.go_athlete .table_skillpoints { + margin: 9px 8px 2px 8px; + text-align: left; +} + +.go_athlete .table_skillpoints .header { + overflow: hidden; + font-weight: 600; + padding-bottom: 4px; +} + +.go_athlete .table_skillpoints .header .skill_points, +.go_athlete .table_skillpoints .header .star, +.go_athlete .table_skillpoints .header .title { + float: left; + font-size: 12px; + line-height: 14px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + height: 15px; +} + +.go_athlete .table_skillpoints .header .title { + width: 175px; +} + +.go_athlete .table_skillpoints .header .skill_points { + width: 40px; + text-align: center; +} + +.go_athlete .table_skillpoints .header .star { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -412px -72px; + width: 19px; + height: 19px; + margin-left: 12px; + margin-top: -2px; +} + +.go_athlete .table_skillpoints .row { + overflow: hidden; + position: relative; +} + +.go_athlete .table_skillpoints .row .skill_points, +.go_athlete .table_skillpoints .row .star, +.go_athlete .table_skillpoints .row .title { + height: 30px; + float: left; + line-height: 30px; +} + +.go_athlete .table_skillpoints .row .title { + padding: 0 5px 0 31px; + width: 141px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.go_athlete .table_skillpoints .row .skill { + position: absolute; + top: 0; + left: 0; +} + +.go_athlete .table_skillpoints .row .skill_points { + text-align: center; + color: #fc6; + font-weight: 600; + line-height: 30px; + width: 36px; + margin-left: 4px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.go_athlete .table_skillpoints .row .grepo_input { + float: left; + margin-top: 4px; +} + +.go_athlete .table_skillpoints .row .grepo_input input { + width: 25px; + text-align: center; +} + +.go_athlete.hoplite_race .first_skill_points, +.go_athlete.shield_luge .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -386px -186px; + width: 30px; + height: 30px; +} + +.go_athlete.hoplite_race .third_skill_points, +.go_athlete.shield_luge .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -356px -186px; + width: 30px; + height: 30px; +} + +.go_athlete.figure_skating .first_skill_points, +.go_athlete.javelin_throwing .first_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -326px -186px; + width: 30px; + height: 30px; +} + +.go_athlete.figure_skating .third_skill_points, +.go_athlete.javelin_throwing .third_skill_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -296px -186px; + width: 30px; + height: 30px; +} + +.go_athlete .row .button_new { + margin: 4px 0 0 4px; +} + +.go_athlete .btn_skill_reset { + width: 210px; +} + +.go_athlete .btn_skill_reset .icon { + margin-left: 2px; +} + +.go_athlete .bonus_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat 0 -250px; + width: 212px; + height: 54px; + position: absolute; + top: 151px; + left: 184px; +} + +.go_athlete .tooltip_bonus_box { + position: absolute; + top: 3px; + left: 3px; + width: 50px; + height: 49px; +} + +.go_athlete .bonus_description { + width: 151px; + height: 20px; + margin: 6px 0 0 57px; + font-size: 11px; + color: #000; + line-height: 18px; + font-weight: 600; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.go_athlete .btn_buy_bonus { + width: 151px; + display: none; + margin: 4px 0 0 56px; +} + +.go_athlete .pb_bonus_progress { + margin: 4px 0 0 56px; + display: none; + width: 151px; +} + +.dropdown_units.disabled .button_new.square.plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; + cursor: default; +} + +.dropdown-list.units { + position: absolute; + z-index: 2002; + width: auto; + margin-top: -4px; + min-height: 62px; + background: 0 0; + overflow: visible; + display: none; +} + +.dropdown-list.units .highlight { + width: 98px; + height: 45px; + padding-top: 30px; + background: url(https://gpfr.innogamescdn.com/images/game/components/dropdown_units.2.26.png) no-repeat -172px -63px; + position: absolute; + top: -70px; + left: 50%; + margin-left: -48px; + z-index: 1; +} + +.dropdown-list.units.l_1 .highlight { + background: url(https://gpfr.innogamescdn.com/images/game/components/dropdown_units.2.26.png) no-repeat -270px -63px; +} + +.dropdown-list.units .item-list { + height: 62px; + vertical-align: middle; + margin: 0 5px; + position: relative; + overflow: visible; + background: url(https://gpfr.innogamescdn.com/images/game/components/dropdown_units.2.26.png) repeat-x 0 0; +} + +.dropdown-list.units .item-list .border_l, +.dropdown-list.units .item-list .border_r { + position: absolute; + width: 5px; + height: 100%; + background: url(https://gpfr.innogamescdn.com/images/game/components/dropdown_units.2.26.png) no-repeat 0 -62px; +} + +.dropdown-list.units .item-list .border_l { + left: -5px; +} + +.dropdown-list.units .item-list .border_r { + background-position: -6px -62px; + right: -5px; +} + +.dropdown-list.units .item-list .items { + overflow: hidden; + padding: 4px 0; +} + +.dropdown-list.units .item-list .items li { + float: left; + width: 50px; + height: 50px; + line-height: 50px; + cursor: pointer; +} + +.dropdown-list.units .item-list .items li+li { + margin-left: 1px; +} + +.dropdown-list.units .item-list span.count { + position: absolute; + bottom: 0; + right: 3px; + font-weight: 600; + color: #fff; + line-height: 20px; + text-shadow: #000 1px 1px; + filter: dropshadow(color=#000000, offX=1, offY=1); +} + +.dropdown-list.units .item_count_selector { + position: absolute; + top: 100%; + left: 0; + width: 152px; + height: 190px; + background: url(https://gpfr.innogamescdn.com/images/game/components/dropdown_units.2.26.png) no-repeat -12px -85px; + margin: -14px 0 0 -50px; + padding: 18px 3px 2px; + -webkit-transition: left .5s ease-in-out; + -moz-transition: left .5s ease-in-out; + -o-transition: left .5s ease-in-out; + -ms-transition: left .5s ease-in-out; + transition: left .5s ease-in-out; +} + +.dropdown-list.units .item_count_selector .unit_count_box { + height: 56px; +} + +.dropdown-list.units .item_count_selector .unit_count { + width: 40px; +} + +.dropdown-list.units .item_count_selector .unit_count input { + text-align: center; + font-weight: 600; +} + +.dropdown-list.units .description { + color: #fc6; + text-align: center; + margin: 3px 10px 5px; + height: 125px; + font-size: 11px; + line-height: 14px; +} + +.dropdown-list.units .description .unit_name { + font-weight: 600; + line-height: 21px; +} + +.dropdown-list.units .description, +.dropdown-list.units .max_per_slot_value, +.dropdown-list.units .training_points_value { + margin-bottom: 3px; +} + +.close_list_layer.train_unit { + background: rgba(0,0,0,.5); +} + +.go_info { + width: 756px; + height: 527px; + overflow: hidden; + position: relative; + text-align: center; + color: #fc6; +} + +.go_info .btn_info_overlay { + position: absolute; + top: 22px; + left: 166px; +} + +.go_info .discipline_box { + width: 232px; + position: absolute; + left: 261px; + top: 65px; + overflow: hidden; +} + +.go_info .discipline_box .content, +.go_info .discipline_box .shadow { + height: 251px; + overflow: hidden; +} + +.go_info .discipline_box .content ol { + padding: 0; + margin: 0; +} + +.go_info .discipline_box .shadow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat 0 0; + width: 232px; + height: 250px; +} + +.go_info .title { + height: 22px; + margin-bottom: 3px; + font-weight: 600; + line-height: 21px; + font-size: 12px; +} + +.go_info p { + line-height: 17px; + margin: 13px 0; +} + +.go_info p.descr { + padding: 0 5px; +} + +.go_info .attend_again_box { + overflow: hidden; + color: #fc6; + min-height: 15px; + position: absolute; + width: 316px; + bottom: 153px; + left: 220px; +} + +.go_info .attend_again_box .attend_again { + display: none; +} + +.go_info .btn_attend { + position: absolute; + bottom: 119px; + left: 271px; + width: 214px; +} + +.go_info .award_wrapper { + position: absolute; + bottom: 54px; + right: 11px; + width: 203px; + height: 152px; +} + +.go_info .award_wrapper .title { + position: absolute; + width: 165px; + height: 21px; + top: 7px; + left: 20px; +} + +.go_info .award_wrapper .content { + position: absolute; + width: 203px; + height: 83px; + bottom: 12px; + left: 0; +} + +.go_info .award_wrapper .award { + margin-left: 16px; +} + +.go_info .reward_wrapper { + position: absolute; + bottom: 54px; + left: 11px; + width: 203px; + height: 152px; +} + +.go_info .reward_wrapper .title { + position: absolute; + width: 145px; + height: 21px; + top: 7px; + left: 30px; + line-height: 14px; +} + +.go_info .reward_wrapper .content { + position: absolute; + width: 203px; + height: 83px; + bottom: 14px; + left: 0; +} + +.go_info .reward_wrapper .reward { + margin-left: 16px; +} + +.go_info .current_best_score { + position: absolute; + top: 228px; + right: 11px; + width: 203px; + height: 78px; +} + +.go_info .current_best_score .title { + position: absolute; + width: 165px; + height: 21px; + top: 12px; + left: 20px; + line-height: 14px; +} + +.go_info .current_best_score .content { + position: absolute; + width: 189px; + height: 20px; + bottom: 12px; + left: 7px; +} + +.go_info .alliance_score_wrapper { + position: absolute; + top: 60px; + left: 11px; + width: 203px; + height: 245px; +} + +.go_info .alliance_score_wrapper .title { + position: absolute; + width: 165px; + height: 21px; + top: 7px; + left: 20px; +} + +.go_info .alliance_score_wrapper .content { + position: absolute; + height: 199px; + width: 189px; + top: 40px; + left: 8px; +} + +.go_info .alliance_score_wrapper .content .name { + width: 100%; + height: 20px; + position: absolute; + top: 2px; + left: 0; +} + +.go_info .alliance_score_wrapper .content table.score_table { + width: 100%; + top: 20px; + position: absolute; + text-align: left; + font-size: 10px; +} + +.go_info .alliance_score_wrapper .content table.score_table td.score { + text-align: right; +} + +.go_info .alliance_score_wrapper .content table.score_table .alliance_info { + height: 12px; + overflow: hidden; + width: 100%; + line-height: 12px; +} + +.go_info .info_popup { + width: 100%; + height: 100%; +} + +.go_info .info_popup .popup_background { + background-color: #000; + opacity: .45; + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; +} + +.go_info .attend_info_popup { + position: absolute; + top: 60px; + left: 250px; + width: 260px; + height: 288px; + z-index: 1000; +} + +.go_info .attend_info_popup .title { + margin-top: 4px; + height: 24px; + line-height: 24px; + font-weight: 600; +} + +.go_info .attend_info_popup .previous_best_score { + width: 100%; + position: absolute; + top: 155px; +} + +.go_info .attend_info_popup .previous_best_score span { + font-weight: 600; +} + +.go_info .attend_info_popup .scored { + position: absolute; + top: 115px; + width: 100%; +} + +.go_info .attend_info_popup .scored span { + font-weight: 600; +} + +.go_info .attend_info_popup .laurels { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px -72px; + width: 130px; + height: 64px; + position: absolute; + top: 40px; + left: 69px; +} + +.go_info .attend_info_popup .laurels span { + position: absolute; + width: 123px; + bottom: 7px; + left: 0; + height: 16px; + font-weight: 600; + line-height: 18px; +} + +.go_info .attend_info_popup .rank { + width: 100%; + position: absolute; + bottom: 45px; +} + +.go_info .attend_info_popup .rank span { + font-weight: 600; +} + +.go_info .attend_info_popup .button_wrapper { + width: 100%; + bottom: 10px; + position: absolute; + text-align: center; +} + +.go_ranking { + width: 756px; + height: 527px; + position: relative; + text-align: center; + color: #fc6; + overflow: hidden; +} + +.go_ranking .title { + position: relative; + margin: 28px 67px 0; + overflow: hidden; + height: 20px; + color: #fc6; + font-weight: 600; + text-align: left; + font-size: 12px; + padding: 0 10px; +} + +.go_ranking .content { + position: relative; + margin: 2px 66px 0; + overflow: hidden; +} + +.go_ranking .discipline_switch, +.go_ranking .view_switch { + position: absolute; + top: 0; + padding: 4px; +} + +.go_ranking .discipline_switch { + left: 0; +} + +.go_ranking .view_switch { + right: 0; +} + +.go_ranking .source_type { + position: absolute; + top: 0; + left: 0; + right: 0; + height: 40px; + font-weight: 600; + line-height: 40px; +} + +.go_ranking #ranking_list { + width: 100%; + border: 0 none; + margin-top: 41px; + border-spacing: 0; + border-collapse: collapse; +} + +.go_ranking #ranking_list th { + height: 24px; + line-height: 24px; + white-space: nowrap; +} + +.go_ranking #ranking_list tr.alliance .ranking_col0 { + width: 75px; +} + +.go_ranking #ranking_list tr.alliance .ranking_col2 { + width: 450px; +} + +.go_ranking #ranking_list tr.player .ranking_col0 { + width: 75px; +} + +.go_ranking #ranking_list tr.player .ranking_col1 { + width: 225px; +} + +.go_ranking #ranking_list tr.player .ranking_col2 { + width: 225px; +} + +.go_ranking #ranking_list td { + height: 24px; + line-height: 24px; + white-space: nowrap; +} + +.go_ranking .footer { + position: absolute; + left: 67px; + right: 66px; + bottom: 48px; + height: 24px; + line-height: 24px; +} + +.go_ranking .footer .pgr_go_ranking { + float: left; + margin-top: 2px; + width: 295px; +} + +.go_ranking .footer .search_options { + position: absolute; + right: 0; + top: 0; + width: 315px; + padding: 0 5px; + height: 24px; + line-height: 20px; + text-align: right; +} + +.go_ranking .footer .search_options .label { + overflow: visible; +} + +.go_ranking .gp_alliance_link, +.go_ranking .gp_player_link { + color: #fc6; + font-weight: 400; +} + +.go_ranking .gp_alliance_link:hover, +.go_ranking .gp_player_link:hover { + text-decoration: underline; +} + +.go_ranking .rbtn_grepolympia_ranking .option { + cursor: pointer; + display: block; + width: 32px; + height: 32px; + overflow: hidden; + float: left; +} + +.go_ranking .rbtn_grepolympia_ranking .option.player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -264px -186px; + width: 32px; + height: 32px; +} + +.go_ranking .rbtn_grepolympia_ranking .option.player.checked, +.go_ranking .rbtn_grepolympia_ranking .option.player:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px -186px; + width: 32px; + height: 32px; +} + +.go_ranking .rbtn_grepolympia_ranking .option.player.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -346px -136px; + width: 32px; + height: 32px; +} + +.go_ranking .rbtn_grepolympia_ranking .option.alliance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -314px -136px; + width: 32px; + height: 32px; +} + +.go_ranking .rbtn_grepolympia_ranking .option.alliance.checked, +.go_ranking .rbtn_grepolympia_ranking .option.alliance:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -378px -136px; + width: 32px; + height: 32px; +} + +.go_ranking .rbtn_grepolympia_ranking .option.alliance.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -282px -136px; + width: 32px; + height: 32px; +} + +.go_ranking .rbtn_select_discipline .option.disabled { + cursor: default; +} + +.go_ranking .rbtn_select_discipline .pointer { + display: none; +} + +.go_ranking .txt_go_source { + width: 130px; +} + +.grepolympia_shop { + position: relative; + overflow: hidden; + height: 529px; + width: 758px; +} + +.grepolympia_shop .headline { + width: 485px; + margin-top: 13px; + color: #fc6; + margin-left: 115px; +} + +.grepolympia_shop .headline span { + display: table-cell; + vertical-align: middle; + height: 48px; + width: 485px; + text-align: center; + font-size: 16px; +} + +.grepolympia_shop .laurels { + width: 55px; + height: 20px; + position: absolute; + line-height: 20px; + font-weight: 600; + color: #fc6; + text-align: center; + top: 23px; + right: 18px; + cursor: default; +} + +.grepolympia_shop .laurels:before { + content: ""; + position: absolute; + width: 40px; + height: 50px; + top: -15px; + right: 69px; +} + +.grepolympia_shop .btn_buy { + position: relative; + top: 12px; + left: -11px; + width: 84px; +} + +.grepolympia_shop .btn_buy .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grepolympia/common/sprite_images/grepolympia_00a16b0.png) no-repeat -232px -218px; + width: 29px; + height: 19px; +} + +.grepolympia_shop .btn_buy .caption { + text-overflow: inherit; +} + +.grepolympia_shop .slot { + position: absolute; + width: 86px; + padding-top: 12px; + padding-left: 12px; +} + +.grepolympia_shop .slot_1 { + left: 337px; + top: 249px; +} + +.grepolympia_shop .slot_2 { + left: 645px; + top: 92px; +} + +.grepolympia_shop .slot_3 { + left: 528px; + top: 92px; +} + +.grepolympia_shop .slot_4 { + left: 410px; + top: 92px; +} + +.grepolympia_shop .slot_5 { + left: 260px; + top: 92px; +} + +.grepolympia_shop .slot_6 { + left: 143px; + top: 92px; +} + +.grepolympia_shop .slot_7 { + left: 25px; + top: 92px; +} + +.grepolympia_shop .slot_8 { + left: 645px; + top: 257px; +} + +.grepolympia_shop .slot_9 { + top: 390px; + left: 644px; +} + +.grepolympia_shop .slot_10 { + top: 390px; + left: 539px; +} + +.grepolympia_shop .slot_11 { + top: 390px; + left: 434px; +} + +.grepolympia_shop .slot_12 { + top: 390px; + left: 237px; +} + +.grepolympia_shop .slot_13 { + top: 390px; + left: 132px; +} + +.grepolympia_shop .slot_14 { + top: 390px; + left: 25px; +} + +.grepolympia_shop .slot_15 { + top: 258px; + left: 25px; +} + +.column_window.grepolympia_end_interstitial .window_content, +.column_window.grepolympia_welcome .window_content { + padding: 0; +} + +.gp_window.classic_sub_window .grepolympia_tutorial { + width: 550px; + min-height: 325px; + text-align: center; +} + +.gp_window.classic_sub_window .grepolympia_tutorial ol { + list-style-type: none; +} + +.gp_window.classic_sub_window .grepolympia_tutorial p { + text-align: left; + margin-right: 15px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration { + display: inline-block; + position: relative; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration .text { + color: #fc6; + font-weight: 600; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .str1 { + position: relative; + top: 10px; + width: 129px; + left: 126px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .wrapper1, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .wrapper2 { + height: 49px; + width: 49px; + position: absolute; + overflow: hidden; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .wrapper1 { + left: 192px; + top: 61px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .wrapper2 { + left: 243px; + top: 61px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .str2, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .str3 { + position: absolute; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .str2 { + top: 8px; + left: 2px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .str3 { + top: 26px; + left: 3px; + font-size: 12px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part2 .str4 { + font-weight: 600; + position: absolute; + font-size: 10px; + top: 140px; + width: 153px; + left: 140px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper1, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper2 { + height: 21px; + width: 26px; + position: absolute; + display: inline-block; + overflow: hidden; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper1 .str1, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper1 .str2, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper2 .str1, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper2 .str2 { + position: relative; + font-size: 7px; + width: 100%; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper1 .str2, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper2 .str2 { + margin-left: -3px; + top: 3px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .str3 { + font-weight: 600; + position: absolute; + font-size: 5px; + top: 118px; + width: 83px; + left: 130px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 { + width: 135px; + height: 83px; + position: absolute; + top: 65px; + right: 14px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str1, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str2, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str4 { + color: #fc6; + position: absolute; + width: 63px; + left: 24px; + text-align: left; + font-size: 9px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str1 { + top: 17px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str2 { + top: 34px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str4 { + top: 50px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part3 .wrapper3 .str5 { + font-weight: 600; + position: absolute; + top: 69px; + right: 13px; + width: 107px; + font-size: 7px; + text-align: center; + color: #fc6; + overflow: hidden; + white-space: nowrap; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str1 { + position: relative; + top: 33px; + width: 170px; + left: 75px; + text-align: left; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str2, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str3, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str4 { + color: #fc6; + text-align: left; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str2 { + position: absolute; + top: 62px; + width: 129px; + left: 108px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str3 { + position: absolute; + top: 91px; + width: 129px; + left: 108px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str4 { + position: relative; + top: 107px; + width: 129px; + left: 108px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str5 { + font-weight: 600; + position: absolute; + top: 152px; + left: 91px; + width: 195px; + overflow: hidden; + white-space: nowrap; + font-size: 11px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part4 .str5 .icon { + background: url(https://gpfr.innogamescdn.com/images/game/premium_features/feature_icons_14x14.png) no-repeat 0 -14px; + width: 14px; + height: 13px; + display: inline-block; + margin: 3px 0 0 3px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part5 .str1 { + position: relative; + top: 100px; + left: 106px; + font-size: 11px; + width: 164px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .text { + width: 100%; + font-weight: 400; + display: block; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .amount { + font-weight: 600; + width: 100%; + display: block; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .str1 { + position: absolute; + top: 43px; + left: 134px; + width: 107px; + color: #fc6; + font-weight: 600; + font-size: 12px; + line-height: 18px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .str2, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .str3, +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .str4 { + position: absolute; + left: 90px; + width: 195px; + color: #fc6; + font-size: 12px; + text-align: center; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .str2 { + top: 77px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .str3 { + top: 114px; +} + +.gp_window.classic_sub_window .grepolympia_tutorial .illustration.part6 .str4 { + top: 160px; +} + +.runtime_info .header { + width: 360px; + margin-left: 12px; + margin-bottom: 5px; + height: 35px; + line-height: 35px; +} + +.runtime_info .header>div { + display: inline-block; +} + +.runtime_info .header .target { + margin-right: 10px; + font-weight: 600; + display: inline-block; + cursor: default; +} + +.runtime_info .header .target_city { + display: inline-block; + margin-left: 10px; + position: relative; +} + +.runtime_info .header .target_city:before { + content: ''; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/icons/town.png); + width: 16px; + height: 16px; + top: 9px; + left: -18px; +} + +.runtime_info .divider_line { + height: 1px; + width: 360px; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + margin-left: 12px; +} + +.runtime_info .modifiers_container { + width: 370px; + margin-left: 12px; + margin-top: 10px; +} + +.runtime_info .modifiers_container .label { + margin-bottom: 5px; + display: block; + cursor: default; +} + +.runtime_info .modifiers_container .modifier { + margin-top: 6px; + margin-right: 10px; + display: inline-block; + vertical-align: top; + text-align: center; +} + +.runtime_info .modifiers_container .modifier .modifier_icon { + border: 1px solid #cb9f5e; + display: block; + margin-bottom: 5px; +} + +.runtime_info .modifiers_container .modifier .modifier_icon.unit_movement_boost { + border: none; + margin-bottom: 2px; +} + +.runtime_info .modifiers_container .modifier .modifier_icon.unit_movement_boost:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/powers/powers_45x45_36598ec.png) no-repeat -6660px -45px; +} + +.runtime_info .modifiers_container .hero_container { + display: inline-block; + vertical-align: top; + position: relative; + width: 70px; +} + +.runtime_info .modifiers_container .hero_picker { + display: inline-block; +} + +.runtime_info .modifiers_container .hero_picker .content { + display: inline-block; + float: left; +} + +.runtime_info .modifiers_container .hero_modifier { + margin-left: -5px; +} + +.runtime_info .modifiers_container .hero_modifier .place_sim_hero_spinner { + position: absolute; + left: 50px; + top: 3px; +} + +.runtime_info .modifiers_container .other_modifiers { + display: inline-block; + vertical-align: top; + margin-left: 7px; +} + +.runtime_info .js-scrollbar-content:first-child { + margin-top: 5px; +} + +.runtime_info .js-scrollbar-content .unit_runtime:last-child { + margin-bottom: 5px; +} + +.runtime_info .units_runtime { + box-shadow: inset 0 0 4px #000; + height: 320px; + margin: 10px 12px; + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat; + overflow: hidden; +} + +.runtime_info .units_runtime .unit_runtime { + width: 335px; + height: 55px; + margin: 0 5px; +} + +.runtime_info .units_runtime .unit_runtime.hero { + display: none; +} + +.runtime_info .units_runtime .unit_runtime .unit { + float: left; + box-shadow: inset 0 0 4px #000; +} + +.runtime_info .units_runtime .unit_runtime .duration { + display: inline-block; + height: 100%; +} + +.runtime_info .units_runtime .unit_runtime .duration .arrival_time, +.runtime_info .units_runtime .unit_runtime .duration .way_duration { + display: inline-block; + width: 100px; + height: 20px; + margin-top: 10px; + margin-left: 5px; + cursor: default; +} + +.grepolis_score .blue_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -584px; + width: 91px; + height: 90px; +} + +.grepolis_score .blue_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -1044px -400px; + width: 1px; + height: 90px; +} + +.grepolis_score .blue_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -494px; + width: 91px; + height: 90px; +} + +.grepolis_score .grepo_score_award_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -749px 0; + width: 207px; + height: 230px; +} + +.grepolis_score .grepo_score_details_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -306px; + width: 88px; + height: 94px; +} + +.grepolis_score .grepo_score_details_box_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -400px; + width: 88px; + height: 94px; +} + +.grepolis_score .grepo_score_details_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -749px -364px; + width: 181px; + height: 81px; +} + +.grepolis_score .grepo_score_icon_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -1044px -306px; + width: 14px; + height: 15px; +} + +.grepolis_score .grepo_score_main_bg_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -696px; + width: 749px; + height: 32px; +} + +.grepolis_score .grepo_score_main_bg_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 0; + width: 749px; + height: 192px; +} + +.grepolis_score .grepo_score_overview_card { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -472px; + width: 349px; + height: 140px; +} + +.grepolis_score .grepo_score_overview_card_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -192px; + width: 707px; + height: 140px; +} + +.grepolis_score .grepo_score_overview_card_big_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -332px; + width: 707px; + height: 140px; +} + +.grepolis_score .grepo_score_overview_card_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -349px -472px; + width: 349px; + height: 140px; +} + +.grepolis_score .grepo_score_overview_category_0_events { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -337px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_category_1_daily { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -113px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_category_2_endgame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -561px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_category_3_combat { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -673px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_category_4_military_preparation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -785px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_category_5_empire_progression { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px 0; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_category_6_heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -115px; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_category_7_highscore { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -449px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_category_8_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -225px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .grepo_score_overview_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -808px; + width: 65px; + height: 40px; +} + +.grepolis_score .grepo_score_pattern { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -612px; + width: 308px; + height: 84px; +} + +.grepolis_score .grepo_score_points_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -749px -445px; + width: 181px; + height: 81px; +} + +.grepolis_score .grepo_score_popup_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -230px; + width: 112px; + height: 76px; +} + +.grepolis_score .grepo_score_total_score { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -749px -230px; + width: 129px; + height: 134px; +} + +.grepolis_score .grepo_score_world_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -748px; + width: 54px; + height: 60px; +} + +.grepolis_score .grepo_score_world_icon_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -674px; + width: 71px; + height: 74px; +} + +.grepolis_score .random_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -728px; + width: 113px; + height: 125px; +} + +.grepolis_score .summary { + padding-left: 15px; +} + +.grepolis_score .summary .event_category { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -192px; + width: 707px; + height: 140px; + display: inline-block; + margin-left: 1px; + cursor: pointer; +} + +.grepolis_score .summary .event_category:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -332px; + width: 707px; + height: 140px; +} + +.grepolis_score .summary .event_category .category_title { + position: absolute; + font-weight: 600; + font-size: medium; + padding-top: 29px; + padding-left: 363px; +} + +.grepolis_score .summary .event_category .points { + position: absolute; + font-weight: 600; + padding-top: 78px; + padding-left: 413px; +} + +.grepolis_score .summary .event_category .icon_category { + position: absolute; + left: 254px; + top: 8px; +} + +.grepolis_score .summary .event_category .icon_category.event { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -337px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .summary .card_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -472px; + width: 349px; + height: 140px; + display: inline-block; + margin: 2px; +} + +.grepolis_score .summary .card_background:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -349px -472px; + width: 349px; + height: 140px; + cursor: pointer; +} + +.grepolis_score .summary .card_background .category_card { + position: relative; + cursor: pointer; +} + +.grepolis_score .summary .card_background .category_card .new_flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -808px; + width: 65px; + height: 40px; + position: absolute; + right: 12px; + top: 66px; +} + +.grepolis_score .summary .card_background .category_card .category_title { + position: absolute; + font-weight: 600; + font-size: medium; + left: 137px; + top: 20px; +} + +.grepolis_score .summary .card_background .category_card .points { + position: absolute; + font-weight: 600; + left: 190px; + top: 74px; +} + +.grepolis_score .summary .card_background .category_card .icon_category { + position: absolute; + left: 12px; + top: 8px; +} + +.grepolis_score .summary .card_background .category_card .icon_category.daily_awards { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -113px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .summary .card_background .category_card .icon_category.end_game { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -561px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .summary .card_background .category_card .icon_category.combat { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -673px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .summary .card_background .category_card .icon_category.military_preparation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -785px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .summary .card_background .category_card .icon_category.empire_progression { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px 0; + width: 112px; + height: 115px; +} + +.grepolis_score .summary .card_background .category_card .icon_category.heroes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -115px; + width: 112px; + height: 115px; +} + +.grepolis_score .summary .card_background .category_card .icon_category.highscores { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -449px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .summary .card_background .category_card .icon_category.unobtainable { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -225px -728px; + width: 112px; + height: 115px; +} + +.grepolis_score .score_content .title_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -696px; + width: 749px; + height: 32px; +} + +.grepolis_score .score_content .title_bar h3 { + color: #fc6; + text-shadow: 1px 1px 0 #000; + margin: 0; + padding: 7px 11px; + font-size: 13px; +} + +.grepolis_score .score_content li.award_group { + position: relative; +} + +.grepolis_score .score_content li.award_group:nth-child(odd) { + background-color: #ffeabb; +} + +.grepolis_score .score_content li.award_group:nth-child(even) { + background-color: #fedc92; +} + +.grepolis_score .score_content li.award_group div, +.grepolis_score .score_content li.award_group ul { + display: inline-block; + vertical-align: middle; +} + +.grepolis_score .score_content li.award_group div.awards, +.grepolis_score .score_content li.award_group ul.awards { + margin: 5px; +} + +.grepolis_score .score_content li.award_group div.awards .award_box, +.grepolis_score .score_content li.award_group ul.awards .award_box { + display: inline-block; + position: relative; + margin: 5px; + vertical-align: middle; +} + +.grepolis_score .score_content li.award_group div.awards .award_box.locked, +.grepolis_score .score_content li.award_group ul.awards .award_box.locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -306px; + width: 88px; + height: 94px; + opacity: .5; +} + +.grepolis_score .score_content li.award_group div.awards .award_box.locked .chains, +.grepolis_score .score_content li.award_group ul.awards .award_box.locked .chains { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -400px; + width: 88px; + height: 94px; + position: absolute; +} + +.grepolis_score .score_content li.award_group div.awards .award_box.unlocked, +.grepolis_score .score_content li.award_group ul.awards .award_box.unlocked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -306px; + width: 88px; + height: 94px; +} + +.grepolis_score .score_content li.award_group div.awards .award_box .award, +.grepolis_score .score_content li.award_group ul.awards .award_box .award { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); + margin: 0; +} + +.grepolis_score .score_content li.award_group div.awards .award_box .award .daily, +.grepolis_score .score_content li.award_group ul.awards .award_box .award .daily { + text-shadow: #fffbde -1px 1px; + color: #4b4a41; + font-weight: 600; +} + +.grepolis_score .score_content li.award_group div.awards .award_box .award .daily.date, +.grepolis_score .score_content li.award_group div.awards .award_box .award .daily.year, +.grepolis_score .score_content li.award_group ul.awards .award_box .award .daily.date, +.grepolis_score .score_content li.award_group ul.awards .award_box .award .daily.year { + margin-top: 5px; +} + +.grepolis_score .score_content li.award_group div.score, +.grepolis_score .score_content li.award_group ul.score { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -749px -364px; + width: 181px; + height: 81px; + margin-left: 34px; + position: relative; +} + +.grepolis_score .score_content li.award_group div.score.first_on_world, +.grepolis_score .score_content li.award_group ul.score.first_on_world { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -749px -445px; + width: 181px; + height: 81px; +} + +.grepolis_score .score_content li.award_group div.score .text, +.grepolis_score .score_content li.award_group ul.score .text { + position: absolute; + right: 10px; + top: 33px; + color: #fc6; + text-shadow: 1px 1px 0 #000; + text-align: right; +} + +.grepolis_score .score_content li.award_group div.checkmark, +.grepolis_score .score_content li.award_group ul.checkmark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -68px -176px; + width: 38px; + height: 32px; + margin-left: 23px; +} + +.grepolis_score .score_content li.award_group div.pattern, +.grepolis_score .score_content li.award_group ul.pattern { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 -612px; + width: 308px; + height: 84px; + margin-left: -14px; + margin-right: 9px; +} + +.grepolis_score .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat 0 0; + width: 749px; + height: 192px; +} + +.grepolis_score .header .score_title { + position: absolute; + font-weight: 600; + color: #fff; + top: 2px; + left: 332px; +} + +.grepolis_score .header .grepolis_score_icon_tooltip_area { + position: absolute; + left: 334px; + top: 37px; + width: 95px; + height: 100px; + cursor: pointer; +} + +.grepolis_score .header .dropdown { + position: absolute; + min-width: 147px; + max-width: 220px; + right: 55px; + top: 37px; +} + +.grepolis_score .header .btn_info_overlay { + position: absolute; + left: 429px; + top: 38px; +} + +.grepolis_score .header .btn_bb_code { + position: absolute; + width: 22px; + left: 446px; + top: 141px; +} + +.grepolis_score .header .btn_bb_code .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -1044px -306px; + width: 14px; + height: 15px; + margin-left: -5px; + top: 4px; +} + +.grepolis_score .header .btn_bb_code .caption { + width: 4px; + padding: 0 5px; +} + +.grepolis_score .header .txt_grepolis_score_bb_code { + top: 141px; + left: 465px; + max-width: 150px; +} + +.grepolis_score .header .total_score { + position: absolute; + width: 128px; + height: 26px; + top: 139px; + left: 315px; +} + +.grepolis_score .header .total_score .total_score_text { + margin-top: 6px; + text-align: center; + font-weight: 600; + color: #fc6; + font-size: 12px; +} + +.grepolis_score .header .recent_award { + position: absolute; + top: 58px; + left: 80px; + height: 130px; + cursor: pointer; +} + +.grepolis_score .header .recent_award .daily { + text-shadow: #fffbde -1px 1px; + color: #4b4a41; + font-weight: 600; +} + +.grepolis_score .header .recent_award .daily.date, +.grepolis_score .header .recent_award .daily.year { + margin-top: 5px; +} + +.grepolis_score .scroll_viewport { + position: relative; + overflow: hidden; + height: 335px; +} + +.grepolis_score .scroll_viewport .js-scrollbar-content { + position: relative; + overflow: visible; +} + +.grepolis_score .recent_award { + position: absolute; + top: 58px; + left: 80px; +} + +.grepolis_score.tooltip .score_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -1044px -306px; + width: 14px; + height: 15px; + display: inline-block; + margin: 0 3px; + vertical-align: middle; +} + +.world_points { + padding-left: 10px; + padding-top: 10px; +} + +.world_points .explanation_text { + font-weight: 600; + max-width: 355px; + padding-left: 7px; +} + +.world_points .content_encapsulator { + padding-top: 10px; + padding-left: 6px; + padding-right: 15px; + padding-bottom: 20px; +} + +.world_points .scroll_viewport { + position: relative; + overflow: hidden; + height: 380px; +} + +.world_points .scroll_viewport .js-scrollbar-content { + position: relative; + overflow: visible; +} + +.world_points li.world { + padding-top: 15px; + padding-bottom: 15px; + padding-left: 15px; + width: 340px; + text-align: left; +} + +.world_points li.world:nth-child(odd) { + background-color: #ffeabb; +} + +.world_points li.world:nth-child(even) { + background-color: #fedc92; +} + +.world_points li.world span { + display: inline-block; +} + +.world_points li.world .world_score_tooltip_area { + position: absolute; + margin-top: -13px; + width: 285px; + height: 88px; + left: 70px; +} + +.world_points li.world .world_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -748px; + width: 54px; + height: 60px; + vertical-align: middle; +} + +.world_points li.world .world_container { + padding-left: 10px; + vertical-align: middle; +} + +.world_points li.world .world_container .world_name { + font-weight: 600; +} + +.world_points li.world .world_container .world_value { + font-weight: 600; + padding-top: 15px; +} + +.content_sizer { + height: 483px; +} + +.content_sizer .sub_loader { + padding-top: 241px; +} + +.content_sizer .sub_loader .loader_background { + height: 110px; + margin-top: -83px; + margin-left: 140px; + background-image: url(https://gpfr.innogamescdn.com/images/game/ajax-loader_shadow.png); + background-repeat: no-repeat; +} + +.grepolis_score.bbcode { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat 0 0; + width: 207px; + height: 90px; + font-weight: 600; + color: #fc6; + text-shadow: 1px 1px 0 #000; + position: relative; + font-size: 12px; + font-family: sans-serif; + font-style: normal; + text-decoration: none; +} + +.grepolis_score.bbcode .bbcode_playername, +.grepolis_score.bbcode .bbcode_score { + position: absolute; + width: 100%; + text-align: center; +} + +.grepolis_score.bbcode .bbcode_playername { + top: 7px; +} + +.grepolis_score.bbcode .bbcode_score { + bottom: 7px; +} + +.questlog .badge_finished_quest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -145px -96px; + width: 68px; + height: 42px; +} + +.questlog .badge_new_quest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat 0 -176px; + width: 68px; + height: 42px; +} + +.questlog .counter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -213px -96px; + width: 36px; + height: 36px; +} + +.questlog .finished_quests_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -81px -150px; + width: 22px; + height: 16px; +} + +.questlog .frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -81px -96px; + width: 64px; + height: 54px; +} + +.questlog .frame_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat 0 0; + width: 105px; + height: 96px; +} + +.questlog .new_quests_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -251px -80px; + width: 8px; + height: 22px; +} + +.questlog .questlog_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat 0 -96px; + width: 81px; + height: 80px; +} + +.questlog .questlog_icon_checkmark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -68px -176px; + width: 38px; + height: 32px; +} + +.questlog .questlog_icon_exclamationpoint { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -251px 0; + width: 14px; + height: 40px; +} + +.questlog .questlog_icon_exclamationpoint_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -251px -40px; + width: 14px; + height: 40px; +} + +.questlog .questlog_icon_glow1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -178px 0; + width: 73px; + height: 91px; +} + +.questlog .questlog_icon_glow2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -105px 0; + width: 73px; + height: 91px; +} + +#questlog .questlog_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat 0 -96px; + width: 81px; + height: 80px; + position: relative; + z-index: 3; + cursor: pointer; + -webkit-transition: margin-left .5s ease-in-out; + -moz-transition: margin-left .5s ease-in-out; + -ms-transition: margin-left .5s ease-in-out; + -o-transition: margin-left .5s ease-in-out; + transition: margin-left .5s ease-in-out; +} + +#questlog .questlog_icon:hover { + margin-left: 10px; +} + +#questlog .questlog_icon:hover .caption { + width: 272px; +} + +#questlog .questlog_icon.new .exclamation_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -251px 0; + width: 14px; + height: 40px; +} + +#questlog .questlog_icon .caption { + display: block; + position: absolute; + width: 0; + height: 34px; + font-size: 12px; + top: 23px; + left: 68px; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/progressables/questlog_summary_bg.png); + color: #ffcb64; + z-index: 3; + text-align: left; + -webkit-transition: width .5s ease-in-out; + -moz-transition: width .5s ease-in-out; + -ms-transition: width .5s ease-in-out; + -o-transition: width .5s ease-in-out; + transition: width .5s ease-in-out; +} + +#questlog .questlog_icon .caption .text { + margin-left: 10px; + height: 34px; + line-height: 34px; +} + +#questlog .questlog_icon .exclamation_point { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -251px -40px; + width: 14px; + height: 40px; + position: absolute; + left: 32px; + top: 7px; +} + +#questlog .questlog_icon .check_mark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -68px -176px; + width: 38px; + height: 32px; + position: absolute; + left: 24px; + top: 15px; + display: none; + opacity: 0; +} + +#questlog .questlog_icon .counter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -213px -96px; + width: 36px; + height: 36px; + position: absolute; + top: 3px; + right: 0; + z-index: 4; + display: none; +} + +#questlog .questlog_icon .counter .counter_number { + height: 31px; + line-height: 31px; + font-weight: 600; + color: #fff; + font-size: 12px; +} + +#questlog .questlog_icon .counter .counter_number.smaller { + font-size: 10px; +} + +#questlog .questlog_icon .glow { + display: none; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -105px 0; + width: 73px; + height: 91px; + position: absolute; + top: -19px; + left: 4px; + opacity: 0; + z-index: 3; +} + +#questlog .questlog_icon .glow_finished { + display: none; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -178px 0; + width: 73px; + height: 91px; + position: absolute; + top: -19px; + left: 3px; + opacity: 0; +} + +.questlog_detail { + position: absolute; + width: 440px; + right: 5px; + top: 0; + height: 527px; + overflow: hidden; +} + +.questlog_detail .quest_list { + height: 100%; +} + +.questlog_detail .js-scrollbar-content { + width: 425px; +} + +.questlog_detail .horizontal_line { + height: 1px; + width: 400px; + background: linear-gradient(to right,#ffe39a,#d1aa58,#ffe39a); + margin-top: 5px; + margin-left: 20px; +} + +.questlog_detail .quest_description { + min-height: 100px; + margin: 10px 20px 0 130px; +} + +.questlog_detail .rewards_title, +.questlog_detail .tasks_title { + margin-top: 12px; +} + +.questlog_detail .icon_container { + position: absolute; + top: 4px; + left: 2px; +} + +.questlog_detail .advisor_icon { + left: 15px; + top: 65px; +} + +.questlog_detail .reward_scroll_large { + width: 370px; +} + +.questlog_detail .tasks .pb_progress { + margin-top: 5px; +} + +.questlog_detail .gold_icon { + background: url(https://gpfr.innogamescdn.com/images/game/res/gold_40x40.png) no-repeat 0 0; + width: 40px; + height: 40px; + margin: 5px; +} + +.questlog_detail #quest_inspector .rewards .status { + bottom: 10px; + position: relative; +} + +.questlog_detail .reward_container.power_reward, +.questlog_detail .reward_container.unit_reward { + padding-top: 7px; +} + +.quest_progress .advisor_icon, +.questlog_detail .advisor_icon { + background: url(https://gpfr.innogamescdn.com/images/game/quests/quest_advisers_sprite.2.41.jpg) no-repeat 0 0; + width: 90px; + height: 90px; + position: absolute; +} + +.quest_progress .advisor_icon:before, +.questlog_detail .advisor_icon:before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat 0 0; + width: 105px; + height: 96px; + display: block; + width: 90px; + height: 88px; + content: ' '; + position: relative; + z-index: 0; + margin: -4px -9px; + padding: 4px 9px; +} + +.quest_progress .reward_scroll_large, +.questlog_detail .reward_scroll_large { + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +#quest_inspector.quest_progress .description { + padding: 0 90px 0 145px; +} + +#quest_inspector.quest_progress .reward_scroll_large { + width: 446px; +} + +#quest_inspector.quest_progress .advisor_icon { + left: 35px; + top: 45px; +} + +#quest_inspector.quest_progress .rewards_title { + margin-top: 30px; +} + +#quest_inspector.quest_progress .horizontal_line { + height: 1px; + width: 300px; + background: linear-gradient(to right,#ffe39a,#d1aa58,#ffe39a); + margin-bottom: 10px; + margin-left: 180px; +} + +#quest_inspector.quest_progress .scroll { + margin-top: 12px; +} + +.questlog_index { + width: 335px; + margin: 10px; + height: 510px; + position: relative; +} + +.questlog_index .quest_list { + height: 488px; + position: relative; + overflow: hidden; +} + +.questlog_index .quest_list .skinable-scrollbar { + position: relative; + height: 100%; + float: right; +} + +.questlog_index .quest_list .js-scrollbar-content { + overflow: hidden; +} + +.questlog_index .category { + position: relative; +} + +.questlog_index .category .header { + position: relative; + background: url(https://gpfr.innogamescdn.com/images/game/box/background_2.56_compressed.jpg) repeat 0 -61px; + color: #fc6; + font-weight: 600; + padding: 5px; + cursor: pointer; +} + +.questlog_index .category .header .text.open:before { + content: "\25BC"; + line-height: 15px; + margin-right: 10px; +} + +.questlog_index .category .header .text.close:before { + content: "\25B6"; + margin-right: 11px; + line-height: 15px; +} + +.questlog_index .category .new_quests_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -251px -80px; + width: 8px; + height: 22px; + float: right; + margin-right: 10px; + margin-top: -2px; +} + +.questlog_index .category .finished_quests_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -81px -150px; + width: 22px; + height: 16px; + float: right; + margin-right: 10px; +} + +.questlog_index .quest { + height: 60px; + cursor: pointer; + position: relative; + font-size: 12px; +} + +.questlog_index .quest.selected { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat; +} + +.questlog_index .quest .left { + position: absolute; + margin: 7px; +} + +.questlog_index .quest .middle { + margin-left: 60px; + padding-top: 2px; +} + +.questlog_index .quest .headline { + font-weight: 600; +} + +.questlog_index .quest .second_headline { + font-size: 11px; + line-height: 14px; +} + +.questlog_index .quest .right { + position: absolute; + right: -2px; + top: 10px; +} + +.questlog_index .quest .badge.finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat -145px -96px; + width: 68px; + height: 42px; +} + +.questlog_index .quest .badge.new { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/tutorial/questlog_a027d19.png) no-repeat 0 -176px; + width: 68px; + height: 42px; +} + +.questlog_index .quest .pb_progress { + margin-right: 80px; +} + +.questlog_index .quest .iq_timer { + display: inline-block; +} + +.questlog_index .quest .quest_expiration { + display: inline-block; + font-size: 11px; + line-height: 14px; +} + +.questlog_index .quest .timer { + line-height: 16px; +} + +.questlog_index .quest .timer:before { + content: ""; + width: 16px; + height: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/icons/time.png) no-repeat; + display: inline-block; + vertical-align: top; + margin-right: 2px; +} + +.questlog_index .default_category .questgiver { + width: 46px; + height: 46px; + background: url(https://gpfr.innogamescdn.com/images/game/quests/quest_advisers_sprite.2.41.jpg) no-repeat -180px 0; +} + +.questlog_index .default_category .questgiver.yellow { + background-position: -180px 0; +} + +.questlog_index .default_category .questgiver.green { + background-position: -180px -90px; +} + +.questlog_index .default_category .questgiver.red { + background-position: -180px -180px; +} + +.questlog_index .default_category .questgiver.blue { + background-position: -180px -270px; +} + +.questlog_index .island_quests .questgiver { + width: 46px; + height: 46px; + background: url(https://gpfr.innogamescdn.com/images/game/progressables/island_quests_overview_icons_2.60.jpg) no-repeat 0 0; +} + +.questlog_index .island_quests .questgiver.TheLonePilgrim { + background-position: 0 0; +} + +.questlog_index .island_quests .questgiver.TheDestroyedShrine { + background-position: -46px 0; +} + +.questlog_index .island_quests .questgiver.TheStrandedCaptain { + background-position: -92px 0; +} + +.questlog_index .island_quests .questgiver.TearOffThePast { + background-position: -138px 0; +} + +.questlog_index .island_quests .questgiver.TheBrothel { + background-position: -184px 0; +} + +.questlog_index .island_quests .questgiver.CampOfTheDesperate { + background-position: -230px 0; +} + +.questlog_index .island_quests .questgiver.RefugeesOrPrey { + background-position: -276px 0; +} + +.questlog_index .island_quests .questgiver.CaravanWithoutProtection { + background-position: -322px 0; +} + +.questlog_index .island_quests .questgiver.CelebrationsOfARuler { + background-position: -368px 0; +} + +.questlog_index .island_quests .questgiver.TheTournamentOfTheChariots { + background-position: -414px 0; +} + +.questlog_index .island_quests .questgiver.IntrigueOfMerchants { + background-position: 0 -46px; +} + +.questlog_index .island_quests .questgiver.TheEpidemicPlague { + background-position: -46px -46px; +} + +.questlog_index .island_quests .questgiver.ChildOfTheGods { + background-position: -92px -46px; +} + +.questlog_index .island_quests .questgiver.TheDesperateVillage { + background-position: -138px -46px; +} + +.questlog_index .island_quests .questgiver.AllJustAnExploit { + background-position: -184px -46px; +} + +.questlog_index .island_quests .questgiver.QuestionOfMathematics { + background-position: -230px -46px; +} + +.questlog_index .island_quests .questgiver.RiddanceOfThePoor { + background-position: -276px -46px; +} + +.questlog_index .island_quests .questgiver.HolyHauntedForest { + background-position: -322px -46px; +} + +.questlog_index .island_quests .questgiver.Crusade { + background-position: -368px -46px; +} + +.questlog_index .island_quests .questgiver.HeroOfThePopulace { + background-position: -414px -46px; +} + +.questlog_index .island_quests .questgiver.ThreatFromOutside { + background-position: 0 -92px; +} + +.questlog_index .island_quests .questgiver.LeonidasPlea { + background-position: -46px -92px; +} + +.questlog_index .island_quests .questgiver.ReinforcementOfSparta { + background-position: -92px -92px; +} + +.questlog_index .island_quests .questgiver.BuildingTheDefenseLine { + background-position: -138px -92px; +} + +.questlog_index .island_quests .questgiver.FirstWave { + background-position: -184px -92px; +} + +.questlog_index .island_quests .questgiver.Distraction { + background-position: -230px -92px; +} + +.questlog_index .island_quests .questgiver.DefeatThePersians { + background-position: -276px -92px; +} + +.questlog_index .island_quests .questgiver.CareForTheWounded { + background-position: -322px -92px; +} + +.questlog_index .island_quests .questgiver.PromisingMessage { + background-position: -368px -92px; +} + +.questlog_index .island_quests .questgiver.LastPreparations { + background-position: -414px -92px; +} + +.questlog_index .island_quests .questgiver.LetTheCelebrationBegin { + background-position: 0 -138px; +} + +.questlog_index .island_quests .questgiver.Avowals { + background-position: -46px -138px; +} + +.questlog_index .island_quests .questgiver.OwingGratitude { + background-position: -92px -138px; +} + +.questlog_index .island_quests .questgiver.MurderInTheSenate { + background-position: -138px -138px; +} + +.questlog_index .island_quests .questgiver.question_mark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -700px -33px; + width: 46px; + height: 46px; +} + +.questlog_index .btn_skip_cooldown .left, +.questlog_index .btn_skip_cooldown .middle, +.questlog_index .btn_skip_cooldown .right { + margin: 0; + top: 0; +} + +.questlog_index .btn_skip_cooldown .left { + left: 0; +} + +.questlog_index .btn_skip_cooldown .right { + right: 0; +} + +.questlog_index .btn_skip_cooldown .middle { + padding-top: 0; +} + +.questlog_detail .single-progressbar.type_questlog.island_quests.evil .progress .indicator, +.questlog_index .single-progressbar.type_questlog.island_quests.evil .progress .indicator { + background-position: right -675px; +} + +.questlog_detail .single-progressbar.type_questlog.island_quests.good .progress .indicator, +.questlog_index .single-progressbar.type_questlog.island_quests.good .progress .indicator { + background-position: 0 -819px; +} + +.questlog_detail .single-progressbar.type_questlog.island_quests .caption .text, +.questlog_index .single-progressbar.type_questlog.island_quests .caption .text { + color: #fc6; + font-size: 11px; +} + +.questlog_detail .single-progressbar.type_questlog .progress .indicator, +.questlog_index .single-progressbar.type_questlog .progress .indicator { + background-position: right -694px; +} + +.questlog_detail .single-progressbar.type_questlog .caption .value_container, +.questlog_index .single-progressbar.type_questlog .caption .value_container { + color: #fc6; +} + +.questlog .island_quests .classic_sub_window_curtain { + z-index: 3000; +} + +.questlog .island_quests .island_quest_details_window { + z-index: 3001; +} + +.window_content .strategic_map_filter { + padding: 10px; +} + +.window_content .strategic_map_filter #main_strategic_map_filter { + min-width: 252px; +} + +.window_content .strategic_map_filter #main_strategic_map_filter .caption { + font-weight: 600; +} + +.window_content .strategic_map_filter .highlight { + margin-top: 15px; + width: 250px; + height: 23px; + border: 1px solid transparent; +} + +.window_content .strategic_map_filter .highlight.specific { + border: 1px solid #c58625; +} + +.window_content .strategic_map_filter .highlight.specific .highlight_remove_btn { + display: inline-block; +} + +.window_content .strategic_map_filter .highlight .filter_highlight { + padding-bottom: 0; + max-width: 181px; + overflow: hidden; + height: 26px; +} + +.window_content .strategic_map_filter .highlight .filter_highlight .cbx_caption { + padding-left: 26px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -50px; + width: 22px; + height: 23px; + display: none; + float: right; + cursor: pointer; + margin-left: 10px; + margin-right: 10px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .button_brown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .button_brown_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .button_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -50px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .button_frame_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px -23px; + width: 12px; + height: 13px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .minus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -50px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .minus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -50px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .minus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px 0; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .minus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -73px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -73px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .plus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -73px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .plus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .plus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -73px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_remove_btn .btn_remove { + width: 20px; + height: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png) 0 -688px no-repeat; + position: relative; + top: 1px; + left: 1px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -50px; + width: 22px; + height: 23px; + display: inline-block; + float: right; + cursor: pointer; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .button_brown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 0; + width: 50px; + height: 50px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .button_brown_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -50px 0; + width: 50px; + height: 50px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .button_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -50px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .button_frame_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px -23px; + width: 12px; + height: 13px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .minus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -50px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .minus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -50px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .minus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -100px 0; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .minus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -73px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .plus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -44px -73px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .plus_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -66px -73px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .plus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat -22px -50px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .plus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/buttons_c23e9b8.png) no-repeat 0 -73px; + width: 22px; + height: 23px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .btn_color { + width: 16px; + height: 16px; + position: relative; + top: 3px; + left: 3px; +} + +.window_content .strategic_map_filter .highlight .highlight_color_btn .grey_out { + width: 16px; + height: 16px; + position: relative; + top: -13px; + left: 3px; + background-color: rgba(189,189,189,.8); + display: none; +} + +.window_content .strategic_map_filter .highlight_input { + min-width: 250px; + margin-top: 15px; +} + +.window_content .strategic_map_filter .btn_add_highlight { + margin-top: 10px; +} + +.bb_color_picker_popup .color_picker_grepo, +.color_picker_window .color_picker_grepo { + display: inline-block; + margin-top: 5px; + margin-left: 5px; +} + +.bb_color_picker_popup .color_picker_grepo .color_default, +.color_picker_window .color_picker_grepo .color_default { + min-width: 90px; + margin-left: 10px; +} + +.bb_color_picker_popup .color_picker_grepo .color_default .caption, +.color_picker_window .color_picker_grepo .color_default .caption { + font-weight: 400; +} + +.bb_color_picker_popup .color_picker_grepo .color_confirm, +.color_picker_window .color_picker_grepo .color_confirm { + display: block; + width: 90px; + margin: 5px auto; +} + +.bb_color_picker_popup .color_preview, +.color_picker_window .color_preview { + position: absolute; + top: 0; + right: 0; +} + +.bb_color_picker_popup .color_preview .preview_text, +.color_picker_window .color_preview .preview_text { + position: relative; + width: 90px; + text-align: center; +} + +.bb_color_picker_popup .color_preview .text_preview_box, +.color_picker_window .color_preview .text_preview_box { + width: 90px; + margin-top: 10px; + overflow: hidden; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.bb_color_picker_popup .color_preview .example_text, +.color_picker_window .color_preview .example_text { + height: 88px; + font-size: 11px; + padding: 5px; +} + +.bb_color_picker_popup .color_preview .color_picker_flag_big, +.color_picker_window .color_preview .color_picker_flag_big { + height: 75px; + width: 71px; + position: absolute; + right: 35px; + top: 48px; +} + +.bb_color_picker_popup .color_preview .color_picker_flag_big .color_picker_flag_big_image, +.color_picker_window .color_preview .color_picker_flag_big .color_picker_flag_big_image { + background: url(https://gpfr.innogamescdn.com/images/game/flags/big/layer_top.png); + width: 89px; + height: 110px; + position: absolute; + top: -17px; + left: -9px; + z-index: 10; +} + +.color_picker_window .color_preview .preview_text { + margin-top: 9px; + margin-right: 25px; +} + +.bb_color_picker_popup .color_preview .preview_text { + margin-top: 7px; + margin-right: 0; +} + +.human_messages .blue_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat 0 0; + width: 183px; + height: 90px; +} + +.human_messages .green_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat 0 -90px; + width: 150px; + height: 78px; +} + +.human_messages .red_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat -183px 0; + width: 150px; + height: 78px; +} + +#human_message { + position: relative; + top: 130px; + display: none; + opacity: 0; + z-index: 100000; + margin: 0 auto; +} + +#human_message>div { + float: left; +} + +#human_message .headline, +#human_message .icon { + display: none; +} + +#human_message .inner { + font-size: 15px; + color: #fc6; + text-align: center; + margin: 30px -50px 0; + max-width: 500px; + transform: translateY(-50%); +} + +#human_message .middle { + top: 1px; + position: relative; +} + +#human_message .left { + margin-right: -1px; + -webkit-transform: scaleX(-1); + -ms-transform: scaleX(-1); + -o-transform: scaleX(-1); + transform: scaleX(-1); +} + +#human_message.error_msg .middle { + background: url(https://gpfr.innogamescdn.com/images/game/human_messages/red_mid.png) repeat-x; + height: 73px; +} + +#human_message.error_msg .left, +#human_message.error_msg .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat -183px 0; + width: 150px; + height: 78px; +} + +#human_message.success_msg .middle { + background: url(https://gpfr.innogamescdn.com/images/game/human_messages/green_mid.png) repeat-x; + height: 73px; +} + +#human_message.success_msg .left, +#human_message.success_msg .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat 0 -90px; + width: 150px; + height: 78px; +} + +#human_message.award_msg .message { + height: 55px; + margin-top: 35px; +} + +#human_message.award_msg .middle { + background: url(https://gpfr.innogamescdn.com/images/game/human_messages/blue_mid.png) repeat-x; + height: 90px; + top: 0; +} + +#human_message.award_msg .left, +#human_message.award_msg .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat 0 0; + width: 183px; + height: 90px; +} + +#human_message.award_msg .inner { + max-width: 330px; + padding-top: 4px; + margin-left: 30px; + margin-top: 34px; + text-align: left; +} + +#human_message.award_msg .inner .headline { + display: block; + font-weight: 600; +} + +#human_message.award_msg .inner .text { + font-size: 13px; + margin-top: 3px; +} + +#human_message.award_msg .icon { + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/grepolis_score/grepolis_score1bb3e64.png) no-repeat -956px -230px; + width: 112px; + height: 76px; + position: absolute; + left: -78px; +} + +.bbcodes_big_sprite .btn_alliance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px 0; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_award { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -165px -110px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_bold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 -55px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px -55px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_city { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -110px 0; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_city_reservation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -110px -55px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_color { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 -110px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_font { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px -110px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -110px -110px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_island { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -165px 0; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_italic { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -165px -55px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_link { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 0; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 -165px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_quote { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px -165px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_report { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -110px -165px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_score { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -165px -165px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_size { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -220px 0; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_spoiler { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -220px -55px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_strikethrough { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -220px -110px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_table { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -220px -165px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 -220px; + width: 55px; + height: 55px; +} + +.bbcodes_big_sprite .btn_underline { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px -220px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper { + position: relative; + float: left; + text-align: left; +} + +.bb_button_wrapper .bbcode_option { + display: block; + float: left; + margin: 0 3px 0 0; + position: relative; +} + +.bb_button_wrapper .bbcode_option.b { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -251px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.i { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -427px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.u { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -383px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.s { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -317px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -207px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.ally { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -207px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option #town_bbcode_link, +.bb_button_wrapper .bbcode_option.town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -295px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -361px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.quote { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -229px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.url { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -449px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.spoiler { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -295px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -383px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.color { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -339px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.size { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -273px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.report { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -251px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.award { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -229px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option #island_bbcode_link, +.bb_button_wrapper .bbcode_option.island { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -405px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.table { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -339px -28px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -273px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.font { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -361px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.reservation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -317px -5px; + width: 22px; + height: 23px; +} + +.bb_button_wrapper .bbcode_option.score { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -405px -28px; + width: 22px; + height: 22px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.b { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 -55px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.i { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -165px -55px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.u { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px -220px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.s { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -220px -110px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 -165px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.ally { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px 0; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option #town_bbcode_link, +.bb_button_wrapper.big_buttons .bbcode_option.town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -110px 0; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 -220px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.quote { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px -165px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.url { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 0; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.spoiler { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -220px -55px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.img { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -110px -110px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.color { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat 0 -110px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.size { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -220px 0; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.report { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -110px -165px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.award { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -165px -110px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option #island_bbcode_link, +.bb_button_wrapper.big_buttons .bbcode_option.island { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -165px 0; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.table { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -220px -165px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px -55px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.font { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -55px -110px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.reservation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -110px -55px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper.big_buttons .bbcode_option.score { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes_big/bbcodes_big_c292049.png) no-repeat -165px -165px; + width: 55px; + height: 55px; +} + +.bb_button_wrapper .bbcode_box.content ul li a { + background: 0 0; +} + +.bb_button_wrapper .section_captions { + display: inline-block; + cursor: pointer; + color: #804000; + font-weight: 600; + line-height: 25px; + vertical-align: middle; + user-select: none; + padding: 8px 0 0 10px; +} + +.bb_button_wrapper .section_captions .caption.active { + color: #000; + font-weight: 400; +} + +.bb_button_wrapper .section_wrapper { + float: right; +} + +.bb_button_wrapper .section { + vertical-align: middle; + white-space: nowrap; + display: none; +} + +.bb_button_wrapper .section.active { + display: block; +} + +.bb_color_picker .cancel, +.bb_color_picker .confirm { + float: right; +} + +.bb_color_picker_tones { + height: 103px; + width: 103px; +} + +.bb_color_picker_colors, +.bb_color_picker_tones { + padding: 4px; + border-bottom: 1px solid #000; +} + +.bb_color_picker_colors { + height: 18px; +} + +.bb_color_picker_colors div { + float: left; + border-top: 1px solid #000; + border-left: 1px solid #000; + width: 16px; + height: 16px; + cursor: pointer; +} + +.bb_color_picker_tones div { + float: left; + border-top: 1px solid #000; + border-left: 1px solid #000; + width: 16px; + height: 16px; + font-size: 7px; + cursor: pointer; +} + +.bb_color_picker_50, +.bb_color_picker_51, +.bb_color_picker_52, +.bb_color_picker_53, +.bb_color_picker_54, +.bb_color_picker_55 { + border-bottom: 1px solid #000; +} + +.bb_color_picker_05, +.bb_color_picker_15, +.bb_color_picker_25, +.bb_color_picker_35, +.bb_color_picker_45, +.bb_color_picker_55 { + border-right: 1px solid #000; +} + +.bb_color_picker_c0, +.bb_color_picker_c1, +.bb_color_picker_c2, +.bb_color_picker_c3, +.bb_color_picker_c4, +.bb_color_picker_c5 { + border-bottom: 1px solid #000; +} + +.bb_color_picker_c5 { + border-right: 1px solid #000; +} + +.bb_color_picker_preview { + margin: 2px; + border: 1px solid #000; + height: 16px; + width: 104px; + background: #f7eed3; + text-align: center; +} + +.bb_color_picker_tx { + width: 80px; +} + +.bb_chooser { + width: 290px; +} + +.bb_chooser, +.bb_color_picker_popup, +div.bb_color_picker, +div.bb_sizes, +div.bb_table_popup { + position: absolute; + z-index: 5000; + display: none; +} + +div.bb_font_chooser li { + cursor: pointer; +} + +div.bb_font_chooser li a { + position: static; + white-space: nowrap; + float: none; + display: inline; +} + +.bb_award_chooser_award_award, +.bb_award_chooser_award_world { + display: none; +} + +div.bb_award_chooser { + width: 200px; +} + +div.bb_report_chooser, +div.bb_town_chooser { + width: 290px; +} + +.bb_town_wrap { + margin: 0 0 10px 0; +} + +div.bb_award_chooser select { + display: block; + width: 100%; +} + +input.bb_report_chooser_report_input { + width: 280px; +} + +div.bb_report_chooser table.bb_popup_div { + width: 390px; +} + +table.popup_div { + display: none; + position: absolute; + max-width: 500px; +} + +.bb_popup { + text-align: left; +} + +.bb_popup_top { + height: 7px; +} + +.bb_popup_top_left { + width: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_left.png) no-repeat; +} + +.bb_popup_top_middle { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_middle.png) repeat-x; +} + +.bb_popup_top_right { + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_right.png) no-repeat; +} + +.bb_popup_middle_left { + width: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_left.png) repeat-y; +} + +.bb_popup_middle_middle { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_middle.png) repeat; +} + +.bb_popup_middle_middle ul li { + border: 0 none; + padding: 0; +} + +.bb_popup_middle_right { + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_right.png) repeat-y; +} + +.bb_popup_bottom { + height: 12px; +} + +.bb_popup_bottom_left { + width: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_left.png) no-repeat; +} + +.bb_popup_bottom_middle { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_middle.png) repeat-x; +} + +.bb_popup_bottom_right { + width: 11px; + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_right.png) no-repeat; +} + +.bb_popup_table_inside { + border-width: 1px; + border-style: solid; + border-color: #e1af55; + background-color: #ffe2a1; + border-collapse: collapse; +} + +.bbcodes_player { + padding-left: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/bb_codes/player.png) no-repeat; +} + +.bbcodes_ally { + padding-left: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/bb_codes/ally.png) no-repeat; +} + +.bbcodes_ally_deleted { + padding-left: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/bb_codes/ally_deleted.png) no-repeat; +} + +.bbcodes_town { + padding-left: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/bb_codes/town.png) no-repeat; +} + +.bbcodes_temple { + padding-left: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/bb_codes/temple.png) no-repeat; +} + +.bbcodes_island { + padding-left: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/bb_codes/island.png) no-repeat; +} + +.bb_button_wrapper .bb_sizes a { + display: inline-block; + float: none; + margin: 0; + width: auto; + height: 18px; +} + +div.bb_table_popup table.bb_table_fields td { + vertical-align: top; +} + +div.bb_table_popup table.bb_table_fields input { + outline: 0; +} + +div.bb_table_popup table.bb_table_fields .bb_table_preview td { + text-align: center; + line-height: 15px; + font-size: 10px; + height: 21px; +} + +div.bb_table_popup table.bb_table_fields .bb_table_preview td.last-row-cell { + line-height: 4px; +} + +div.bb_table_popup table.bb_table_fields tr.bb_table_withheader input { + font-weight: 700; +} + +div.bb_table_popup td.bb_table_preview input { + width: 40px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/input_bg_2.33.png) repeat-x scroll 0 -46px transparent; + border: 0; + height: 21px; + margin: 0 5px; + padding: 1px; +} + +div.bb_table_popup input.bb_table_columns, +div.bb_table_popup input.bb_table_rows { + background: url(https://gpfr.innogamescdn.com/images/game/towninfo/unit_input.png) no-repeat; + padding: 3px; + height: 18px; + width: 40px; + border: 0 none; + text-align: center; +} + +div.bb_table_popup label { + margin: 0 0 3px; +} + +div.bb_table_popup a.cancel, +div.bb_table_popup a.confirm { + float: right; +} + +.bbcode_box.top_center, +.bbcode_box.top_left, +.bbcode_box.top_right { + height: 7px; + position: absolute; +} + +.bbcode_box.middle_center { + position: relative; +} + +.bbcode_box.middle_left, +.bbcode_box.middle_right { + position: absolute; +} + +.bbcode_box.bottom_center, +.bbcode_box.bottom_left, +.bbcode_box.bottom_right { + height: 12px; + position: absolute; +} + +.bbcode_box.top_center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_middle.png) repeat-x; + top: -7px; + left: 0; + right: 0; +} + +.bbcode_box.bottom_center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_middle.png) repeat-x; + bottom: -12px; + left: 0; + right: 0; +} + +.bbcode_box.middle_left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_left.png) repeat-y left; + left: -7px; + top: 0; + bottom: 0; + width: 7px; +} + +.bbcode_box.middle_right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_right.png) repeat-y right; + right: -11px; + top: 0; + bottom: 0; + width: 11px; +} + +.bbcode_box.middle_center { + background: url(https://gpfr.innogamescdn.com/images/game/popup/middle_middle.png) repeat; +} + +.bbcode_box.top_left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_left.png) no-repeat left; + left: -7px; + top: -7px; + width: 7px; +} + +.bbcode_box.top_right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/top_right.png) no-repeat right; + top: -7px; + right: -11px; + width: 11px; +} + +.bbcode_box.bottom_left { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_left.png) no-repeat left; + bottom: -12px; + left: -7px; + width: 7px; +} + +.bbcode_box.bottom_right { + background: url(https://gpfr.innogamescdn.com/images/game/popup/bottom_right.png) no-repeat right; + bottom: -12px; + right: -11px; + width: 11px; +} + +.serif { + font-family: Georgia,Serif; +} + +.sansserif { + font-family: 'Trebuchet MS',Gill,sans-serif; +} + +.monospace { + font-family: Consolas,Monospace; +} + +.bbcode_application { + width: 100%; + margin-top: 20px; + text-align: center; +} + +.bbcode_application .center { + margin: 0 auto; + display: table; +} + +.bbcode_application .horizontal_separator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -207px 0; + width: 283px; + height: 5px; + margin-bottom: 10px; +} + +#message_message_list .bbcode_application .button, +#message_post_container .bbcode_application .button { + float: none; +} + +.spinner_buttons .down_grey { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat 0 0; + width: 21px; + height: 21px; +} + +.spinner_buttons .down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat -21px 0; + width: 21px; + height: 21px; +} + +.spinner_buttons .down_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat 0 -21px; + width: 21px; + height: 21px; +} + +.spinner_buttons .up_grey { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat -21px -21px; + width: 21px; + height: 21px; +} + +.spinner_buttons .up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat -42px 0; + width: 21px; + height: 21px; +} + +.spinner_buttons .up_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/spinner_buttons/spinner_buttons_86fe746.png) no-repeat -42px -21px; + width: 21px; + height: 21px; +} + +#debug_macros { + position: absolute!important; + z-index: 1000000; + background-color: grey; + border-radius: 5px; + width: 30px; + height: 30px; + overflow: hidden; + left: 0; + top: 0; +} + +#debug_macros.expanded { + width: 650px; + height: auto; + overflow: auto; + border: 2px solid #fff; + border-radius: 5px; + padding: 1px 1px 10px 1px; +} + +#debug_macros .btn_toggle_ui { + width: 25px; + height: 25px; + font-size: 20px; + color: #fff; + border: 2px solid #fff; + border-radius: 5px; + cursor: pointer; +} + +#debug_macros .btn_toggle_ui:before { + content: '\2692'; +} + +#debug_macros .btn_toggle_ui~.container { + margin-right: 10px; +} + +#debug_macros .container { + display: block; +} + +#debug_macros .container.category { + display: block; + text-align: left; + font-size: 15px; + font-weight: 700; + margin-left: 10px; + margin-top: 5px; + border: 1px solid; + padding-left: 10px; + transition: height .5s; + background: #6c6e74; + background: -moz-linear-gradient(top,#6c6e74 0,#4b4d51 100%); + background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#6c6e74),color-stop(100%,#4b4d51)); + background: -webkit-linear-gradient(top,#6c6e74 0,#4b4d51 100%); + background: -o-linear-gradient(top,#6c6e74 0,#4b4d51 100%); + background: -ms-linear-gradient(top,#6c6e74 0,#4b4d51 100%); + background: linear-gradient(top,#6c6e74 0,#4b4d51 100%); + box-shadow: inset 0 1px 0 0 rgba(255,255,255,.1),0 1px 0 0 rgba(0,0,0,.1); +} + +#debug_macros .container.category>span { + display: block; + width: 100%; + cursor: pointer; +} + +#debug_macros .container.category>span:before { + content: "\25B2"; +} + +#debug_macros .container.category.collapsed { + height: 1.2em; + overflow: hidden; +} + +#debug_macros .container.category.collapsed>span:before { + content: "\25BC"; +} + +#debug_macros .container.macro { + font-size: 13px; + font-weight: 400; + color: #696969; + text-shadow: 1px 1px 0 rgba(255,255,255,.2); + background: #e5e5e5; + border-bottom: 1px solid #c9c9c9; + -webkit-box-shadow: inset 0 1px 0 0 rgba(255,255,255,.1),0 1px 0 0 rgba(0,0,0,.1); + -moz-box-shadow: inset 0 1px 0 0 rgba(255,255,255,.1),0 1px 0 0 rgba(0,0,0,.1); + box-shadow: inset 0 1px 0 0 rgba(255,255,255,.1),0 1px 0 0 rgba(0,0,0,.1); +} + +#debug_macros .container.macro>* { + margin-right: 5px; +} + +.cash_shop.empty_window .window_content { + margin-top: 0; +} + +.cash_shop iframe { + min-width: 920px; + min-height: 620px; + border: 0; + margin-left: -2px; + margin-top: -1px; +} + +.cash_shop .wnd_border_t { + float: right; +} + +.cash_shop .btn_wnd.close { + position: absolute; + right: 20px; + top: 5px; + z-index: 1; +} + +.world_wonder_donations .window_content .world_wonders_green .game_border.table_border { + margin: 10px 35px 0; +} + +.world_wonder_donations .window_content .world_wonders_green .game_border.table_border div.viewport { + width: auto; + height: 335px; +} + +.world_wonder_donations .window_content .world_wonders_green .player_search { + padding-right: 35px; + padding-top: 5px; +} + +.world_wonder_donations .window_content .world_wonders_green .donation_title { + padding-top: 65px; + position: relative; +} + +.world_wonder_donations .window_content .world_wonders_green .total_donation_box { + padding-top: 10px; + padding-bottom: 0; +} + +.world_wonder_donations .window_content .world_wonders_green .total_donation_box .game_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_sub_header_a6ef10d.png) no-repeat 0 0; + width: 150px; + height: 80px; + background-repeat: repeat-x; + height: 15px; + width: 100%; +} + +.world_wonder_donations .window_content .world_wonders_green #wonder_type_filter { + left: 43px; + top: 89px; +} + +.world_wonder_donations .window_content .world_wonders_green #wonder_info_type_filter { + right: 43px; + top: 89px; +} + +.world_wonder_donations .window_content .world_wonders_green table th { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_sub_header_a6ef10d.png) no-repeat 0 0; + width: 150px; + height: 80px; + background-repeat: repeat-x; + height: 28px; +} + +.world_wonder_donations .window_content .donation_title { + text-align: center; + font-weight: 600; + padding-top: 10px; +} + +.world_wonder_donations .window_content .total_donation_box { + width: 40%; + margin: 0 auto; + text-align: center; + padding-top: 10px; + padding-bottom: 20px; + font-weight: 600; + color: #fff; +} + +.world_wonder_donations .window_content .total_donation_box .game_border { + background: url(https://gpfr.innogamescdn.com/images/game/border/header.png) repeat-x 0 0; +} + +.world_wonder_donations .window_content #wonder_type_filter { + position: absolute; + left: 13px; + top: 34px; + min-width: 130px; +} + +.world_wonder_donations .window_content #wonder_type_filter .caption { + padding-right: 18px; +} + +.world_wonder_donations .window_content #wonder_info_type_filter { + position: absolute; + right: 13px; + top: 34px; + min-width: 130px; +} + +.world_wonder_donations .window_content #wonder_info_type_filter .caption { + padding-right: 18px; +} + +.world_wonder_donations .window_content .game_border.table_border { + margin: 5px; +} + +.world_wonder_donations .window_content .game_border.table_border div.viewport { + overflow: hidden; + position: relative; + width: 732px; + height: 376px; +} + +.world_wonder_donations .window_content .no_entries { + margin: 0 20px; + text-align: center; + font-weight: 600; + position: absolute; +} + +.world_wonder_donations .window_content .favor_donation table td.col_rank span, +.world_wonder_donations .window_content .favor_donation table th.col_rank span { + width: 50px; +} + +.world_wonder_donations .window_content .favor_donation table td.col_name span, +.world_wonder_donations .window_content .favor_donation table th.col_name span { + width: 225px; +} + +.world_wonder_donations .window_content .favor_donation table td.col_favor span, +.world_wonder_donations .window_content .favor_donation table th.col_favor span { + width: 175px; +} + +.world_wonder_donations .window_content .favor_donation table td.col_percentage span, +.world_wonder_donations .window_content .favor_donation table th.col_percentage span { + width: 175px; +} + +.world_wonder_donations .window_content .favor_donation table td.col_towns span, +.world_wonder_donations .window_content .favor_donation table th.col_towns span { + width: 100px; +} + +.world_wonder_donations .window_content .favor_donation table td.col_scroll span, +.world_wonder_donations .window_content .favor_donation table th.col_scroll span { + width: 17px; +} + +.world_wonder_donations .window_content table { + border-spacing: 0; + border-collapse: collapse; + table-layout: fixed; +} + +.world_wonder_donations .window_content table th { + background: url(https://gpfr.innogamescdn.com/images/game/border/header.png) repeat-x 0 0; + height: 28px; + border-bottom: 1px solid #000; + color: #fff; + padding: 0 2px; + text-align: center; +} + +.world_wonder_donations .window_content table td, +.world_wonder_donations .window_content table th { + padding: 0; +} + +.world_wonder_donations .window_content table td span, +.world_wonder_donations .window_content table th span { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + display: block; +} + +.world_wonder_donations .window_content table td.col_rank span, +.world_wonder_donations .window_content table th.col_rank span { + width: 50px; +} + +.world_wonder_donations .window_content table td.col_name span, +.world_wonder_donations .window_content table th.col_name span { + width: 120px; +} + +.world_wonder_donations .window_content table td.col_wood span, +.world_wonder_donations .window_content table th.col_wood span { + width: 100px; +} + +.world_wonder_donations .window_content table td.col_stone span, +.world_wonder_donations .window_content table th.col_stone span { + width: 100px; +} + +.world_wonder_donations .window_content table td.col_silver span, +.world_wonder_donations .window_content table th.col_silver span { + width: 100px; +} + +.world_wonder_donations .window_content table td.col_total span, +.world_wonder_donations .window_content table th.col_total span { + width: 110px; +} + +.world_wonder_donations .window_content table td.col_percentage span, +.world_wonder_donations .window_content table th.col_percentage span { + width: 73px; +} + +.world_wonder_donations .window_content table td.col_towns span, +.world_wonder_donations .window_content table th.col_towns span { + width: 73px; +} + +.world_wonder_donations .window_content table td.col_scroll span, +.world_wonder_donations .window_content table th.col_scroll span { + width: 17px; +} + +.world_wonder_donations .window_content table tr { + border-bottom: 1px solid #d0be97; +} + +.world_wonder_donations .window_content table td { + text-align: center; + height: 20px; + font-weight: 600; +} + +.world_wonder_donations .window_content table tbody tr:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +.world_wonder_donations .window_content table tbody tr:nth-child(even) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.world_wonder_donations .window_content table tbody tr.highlight { + background-color: #f5d590; + background-image: none; +} + +.world_wonder_donations .window_content .player_search { + float: right; + padding-right: 5px; +} + +.world_wonder_donations .window_content .player_search .player_search_label { + font-weight: 600; +} + +.world_wonder_donations .window_content .player_search .player_search_clear_button .caption { + padding: 0; +} + +.world_wonder_donations .window_content .player_search .player_search_button { + min-width: 116px; + margin-left: 2px; +} + +.flipping_images_event_icon .flipping_image_event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_event_icon_fbbd8f5.png) no-repeat 0 0; + width: 113px; + height: 125px; +} + +.flipping_images_event_icon .flipping_image_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_event_icon_fbbd8f5.png) no-repeat -113px 0; + width: 113px; + height: 125px; +} + +.flipping_images_event_icon .flipping_image_event_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_event_icon_fbbd8f5.png) no-repeat -226px 0; + width: 113px; + height: 125px; +} + +.flipping_images_asian_gods_sprite .athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat 0 0; + width: 407px; + height: 406px; +} + +.flipping_images_asian_gods_sprite .hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat -407px 0; + width: 407px; + height: 406px; +} + +.flipping_images_asian_gods_sprite .poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat 0 -406px; + width: 407px; + height: 406px; +} + +.flipping_images_asian_gods_sprite .priestess { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat -407px -406px; + width: 407px; + height: 406px; +} + +.flipping_images_asian_gods_sprite .zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat -814px 0; + width: 407px; + height: 406px; +} + +.flipping_images_emoticons .emote_angry { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -197px -118px; + width: 53px; + height: 60px; +} + +.flipping_images_emoticons .emote_aware { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -42px -289px; + width: 31px; + height: 67px; +} + +.flipping_images_emoticons .emote_aware2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -50px -227px; + width: 50px; + height: 62px; +} + +.flipping_images_emoticons .emote_aware2_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 -227px; + width: 50px; + height: 62px; +} + +.flipping_images_emoticons .emote_confused { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -93px -118px; + width: 104px; + height: 81px; +} + +.flipping_images_emoticons .emote_drop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 -289px; + width: 42px; + height: 71px; +} + +.flipping_images_emoticons .emote_excited { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 0; + width: 208px; + height: 118px; +} + +.flipping_images_emoticons .emote_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -208px 0; + width: 98px; + height: 112px; +} + +.flipping_images_emoticons .emote_love { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -306px 0; + width: 73px; + height: 103px; +} + +.flipping_images_emoticons .emote_pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 -118px; + width: 93px; + height: 109px; +} + +.flipping_images_emoticons .emote_shocked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -306px -103px; + width: 57px; + height: 72px; +} + +.column_window.flipping_images_end .window_content { + padding: 0; +} + +.column_window.flipping_images_end .welcome_window_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/intersticial_bg.jpg) no-repeat 0 0; +} + +.flipping_images_main { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/main_bg.jpg) no-repeat 0 0; + height: 527px; + position: relative; + width: 756px; +} + +.flipping_images_main .small_box_content { + bottom: 115px; + height: 33px; + left: 0; + position: absolute; + width: 100%; +} + +.flipping_images_main .small_box_content .small_box_left, +.flipping_images_main .small_box_content .small_box_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/name_box.png) no-repeat 0 0; + display: none; + height: 33px; + line-height: 33px; + text-align: center; + position: absolute; + top: 0; + width: 151px; + font-weight: 600; +} + +.flipping_images_main .small_box_content .small_box_right { + right: 30px; +} + +.flipping_images_main .small_box_content .small_box_left { + left: 30px; +} + +.flipping_images_main .box_content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/main_box.png) no-repeat 0 0; + bottom: 0; + height: 132px; + left: 0; + position: absolute; + width: 756px; +} + +.flipping_images_main .box_content .message_wrapper { + height: 70px; + margin-left: 99px; + margin-right: 99px; + position: absolute; + text-align: left; + top: 30px; + width: 558px; +} + +.flipping_images_main .box_content .button_wrapper { + bottom: 5px; + height: 23px; + position: absolute; + width: 756px; +} + +.flipping_images_main .box_content .button_wrapper .left_side, +.flipping_images_main .box_content .button_wrapper .right_side { + width: 375px; + position: absolute; +} + +.flipping_images_main .box_content .button_wrapper .left_side .button_new, +.flipping_images_main .box_content .button_wrapper .right_side .button_new { + min-width: 120px; +} + +.flipping_images_main .box_content .button_wrapper .left_side { + left: 0; + margin-right: 3px; +} + +.flipping_images_main .box_content .button_wrapper .left_side .button_new { + float: right; +} + +.flipping_images_main .box_content .button_wrapper .right_side { + right: 0; + margin-left: 3px; +} + +.flipping_images_main .box_content .button_wrapper .right_side .button_new { + float: left; +} + +.flipping_images_main .box_content .button_wrapper .right_side .close_event_button { + display: none; +} + +.flipping_images_main .image_content { + width: 756px; + height: 395px; + position: absolute; + top: 0; + left: 0; +} + +.flipping_images_main .image_content .left_flipping_image { + position: absolute; + left: -407px; + bottom: 0; + opacity: 0; +} + +.flipping_images_main .image_content .right_flipping_image { + position: absolute; + right: -407px; + bottom: 0; + opacity: 0; +} + +.flipping_images_main .image_content .priestess { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat -407px -406px; + width: 407px; + height: 406px; +} + +.flipping_images_main .image_content .hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat -407px 0; + width: 407px; + height: 406px; +} + +.flipping_images_main .image_content .poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat 0 -406px; + width: 407px; + height: 406px; +} + +.flipping_images_main .image_content .zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat -814px 0; + width: 407px; + height: 406px; +} + +.flipping_images_main .image_content .athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_asian_gods_2debcbe.png) no-repeat 0 0; + width: 407px; + height: 406px; +} + +.flipping_images_main .emoticon { + position: absolute; +} + +.flipping_images_main .emoticon.emote_angry { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -197px -118px; + width: 53px; + height: 60px; + left: 100px; + top: 20px; +} + +.flipping_images_main .emoticon.emote_aware { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -42px -289px; + width: 31px; + height: 67px; + left: 200px; + top: 70px; +} + +.flipping_images_main .emoticon.emote_aware2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -50px -227px; + width: 50px; + height: 62px; + left: 470px; + top: 10px; +} + +.flipping_images_main .emoticon.emote_aware2_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 -227px; + width: 50px; + height: 62px; + left: 146px; + top: 52px; +} + +.flipping_images_main .emoticon.emote_confused { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -93px -118px; + width: 104px; + height: 81px; + left: 50px; + top: 6px; +} + +.flipping_images_main .emoticon.emote_drop_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 -289px; + width: 42px; + height: 71px; + left: 110px; + top: 50px; +} + +.flipping_images_main .emoticon.emote_drop_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 -289px; + width: 42px; + height: 71px; + left: 600px; + top: 50px; +} + +.flipping_images_main .emoticon.emote_excited { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 0; + width: 208px; + height: 118px; + left: 472px; + top: 33px; +} + +.flipping_images_main .emoticon.emote_lightning { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -208px 0; + width: 98px; + height: 112px; + left: 430px; + top: 40px; +} + +.flipping_images_main .emoticon.emote_love { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat -306px 0; + width: 73px; + height: 103px; + left: 200px; + top: 50px; +} + +.flipping_images_main .emoticon.emote_pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/flipping_images/flipping_images_emoticons_e05e9d3.png) no-repeat 0 -118px; + width: 93px; + height: 109px; + left: 200px; + top: 45px; +} + +.island_quests .island_quest_details_window { + width: 558px; +} + +.island_quests .window_quest_descr { + position: relative; + width: 668px; + height: 422px; + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quests_sprite_2.58_compressed.png) no-repeat 0 0; + margin: 10px auto 100px; + overflow: visible; +} + +.island_quests .window_quest_descr .title { + color: #fc6; + text-align: center; + position: relative; + font-size: 13px; + font-weight: 700; + padding: 9px 0 0 0; +} + +.island_quests .window_quest_descr .description_viewport { + font-size: 13px; + color: #fc6; + position: absolute; + left: 207px; + top: 60px; + height: 173px; + width: 400px; + overflow: hidden; + padding-right: 13px; +} + +.island_quests .window_quest_descr .description { + padding-right: 30px; + -webkit-transition: top ease-out .2s; + -moz-transition: top ease-out .2s; + -ms-transition: top ease-out .2s; + -o-transition: top ease-out .2s; + transition: top ease-out .2s; +} + +.island_quests .portrait { + width: 200px; + height: 130px; + position: absolute; + margin: 3px 0 0 0; + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/quests_portraits_2.60.jpg) no-repeat 0 0; + overflow: visible; + top: 53px; + left: -19px; +} + +#report_game_body .island_quests .portrait { + left: 134px; +} + +.island_quests .TheLonePilgrim .portrait { + background-position: 0 0; +} + +.island_quests .TheDestroyedShrine .portrait { + background-position: -200px 0; +} + +.island_quests .TheStrandedCaptain .portrait { + background-position: -400px 0; +} + +.island_quests .TearOffThePast .portrait { + background-position: -600px 0; +} + +.island_quests .TheBrothel .portrait { + background-position: -800px 0; +} + +.island_quests .CampOfTheDesperate .portrait { + background-position: -1000px 0; +} + +.island_quests .RefugeesOrPrey .portrait { + background-position: -1200px 0; +} + +.island_quests .CaravanWithoutProtection .portrait { + background-position: -1400px 0; +} + +.island_quests .CelebrationsOfARuler .portrait { + background-position: -1600px 0; +} + +.island_quests .TheTournamentOfTheChariots .portrait { + background-position: -1800px 0; +} + +.island_quests .IntrigueOfMerchants .portrait { + background-position: 0 -130px; +} + +.island_quests .TheEpidemicPlague .portrait { + background-position: -200px -130px; +} + +.island_quests .ChildOfTheGods .portrait { + background-position: -400px -130px; +} + +.island_quests .TheDesperateVillage .portrait { + background-position: -600px -130px; +} + +.island_quests .AllJustAnExploit .portrait { + background-position: -800px -130px; +} + +.island_quests .QuestionOfMathematics .portrait { + background-position: -1000px -130px; +} + +.island_quests .RiddanceOfThePoor .portrait { + background-position: -1200px -130px; +} + +.island_quests .HolyHauntedForest .portrait { + background-position: -1400px -130px; +} + +.island_quests .Crusade .portrait { + background-position: -1600px -130px; +} + +.island_quests .HeroOfThePopulace .portrait { + background-position: -1800px -130px; +} + +.island_quests .ThreatFromOutside .portrait { + background-position: 0 -260px; +} + +.island_quests .LeonidasPlea .portrait { + background-position: -200px -260px; +} + +.island_quests .ReinforcementOfSparta .portrait { + background-position: -400px -260px; +} + +.island_quests .BuildingTheDefenseLine .portrait { + background-position: -600px -260px; +} + +.island_quests .FirstWave .portrait { + background-position: -800px -260px; +} + +.island_quests .Distraction .portrait { + background-position: -1000px -260px; +} + +.island_quests .DefeatThePersians .portrait { + background-position: -1200px -260px; +} + +.island_quests .CareForTheWounded .portrait { + background-position: -1400px -260px; +} + +.island_quests .PromisingMessage .portrait { + background-position: -1600px -260px; +} + +.island_quests .LastPreparations .portrait { + background-position: -1800px -260px; +} + +.island_quests .LetTheCelebrationBegin .portrait { + background-position: 0 -390px; +} + +.island_quests .Avowals .portrait { + background-position: -200px -390px; +} + +.island_quests .OwingGratitude .portrait { + background-position: -400px -390px; +} + +.island_quests .MurderInTheSenate .portrait { + background-position: -600px -390px; +} + +.island_quests .window_quest_descr .portrait .frame { + width: 231px; + height: 163px; + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quests_sprite_2.58_compressed.png) no-repeat -668px 0; + position: absolute; + top: -7px; + left: -14px; +} + +.island_quests .decisions { + position: absolute; + height: 262px; + top: 250px; + left: 10px; + right: 10px; + text-align: center; + z-index: 1; +} + +.island_quests .decisions .decision { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quests_sprite_2.58_compressed.png) no-repeat -668px -163px; + width: 364px; + height: 262px; + position: absolute; + overflow: visible; + display: block; + opacity: 1; + z-index: 10; + -webkit-transition: opacity ease-in .5s,left ease-out .3s; + -moz-transition: opacity ease-in .5s,left ease-out .3s; + -ms-transition: opacity ease-in .5s,left ease-out .3s; + -o-transition: opacity ease-in .5s,left ease-out .3s; + transition: opacity ease-in .5s,left ease-out .3s; +} + +.island_quests .decisions .decision.hidden { + opacity: 0; + z-index: 1; +} + +.island_quests .decisions .decision.good { + left: 378px; +} + +.island_quests .decisions .decision.evil { + left: 12px; +} + +.island_quests .decisions.in_progress .decision, +.island_quests .decisions.satisfied .decision { + left: 195px; +} + +.island_quests .decisions .banner { + position: absolute; + width: 374px; + height: 83px; + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quests_sprite_2.58_compressed.png) no-repeat 0 0; + top: 2px; + left: -7px; +} + +.island_quests .decisions .good .banner { + background-position: 0 -425px; +} + +.island_quests .decisions .evil .banner { + background-position: 0 -508px; +} + +.island_quests .decisions .description { + position: absolute; + top: 33px; + left: 18px; + right: 23px; + height: 57px; + color: #fc6; + font-size: 12px; + line-height: 125%; +} + +.island_quests .decisions .award_box { + height: 99px; + width: 118px; + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quests_sprite_2.58_compressed.png) no-repeat -374px -425px; + position: absolute; +} + +.island_quests .decisions .award_box.rewards_1_0 { + top: 125px; + left: 116px; +} + +.island_quests .decisions .award_box.rewards_2_0 { + top: 125px; + left: 44px; +} + +.island_quests .decisions .award_box.rewards_2_1 { + top: 125px; + left: 196px; +} + +.island_quests .decisions .award_box .award_icon { + width: 60px; + height: 60px; + margin: 21px 0 0 29px; + float: none; +} + +.island_quests .decisions .award_box .award_icon.power_icon60x60 { + margin: 21px 0 0 0; +} + +.island_quests .decisions .award_box .award_icon.island_quests_helena { + background-image: url(https://gpfr.innogamescdn.com/images/game/awards/island_quests_helena.png); + width: 75px; + height: 74px; + margin: 13px auto; +} + +.island_quests .decisions .award_box .award_icon.island_quests_leonidas { + background-image: url(https://gpfr.innogamescdn.com/images/game/awards/island_quests_leonidas.png); + width: 75px; + height: 74px; + margin: 13px auto; +} + +.island_quests .btn_change_quest { + position: absolute; + top: 195px; + left: -27px; + width: 103px; +} + +.island_quests .btn_goto_island_quest { + position: absolute; + top: 195px; + left: 80px; + width: 103px; +} + +.island_quests .pb_picked_quest { + position: absolute; + top: 91px; + left: 67px; + width: 212px; +} + +.island_quests .btn_take_accept, +.island_quests .btn_take_challenge { + position: absolute; + top: 234px; + left: 71px; +} + +.island_quests .details_window .attack_npc { + position: relative; + padding-bottom: 24px; +} + +.island_quests .details_window .semi-transparent-bg { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/content_sprite.png) repeat-y -505px 0; + width: 505px; + margin-top: 6px; + margin-bottom: 6px; + position: relative; +} + +.island_quests .details_window .semi-transparent-bg .bg-top { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/content_sprite.png) no-repeat 0 0; + width: 505px; + height: 6px; + position: absolute; + top: -6px; + left: 0; +} + +.island_quests .details_window .semi-transparent-bg .bg-bottom { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/content_sprite.png) no-repeat -1010px 0; + width: 505px; + height: 6px; + position: absolute; + bottom: -6px; + left: 0; +} + +.island_quests .details_window .units_in_town { + position: relative; + margin: 0 0 0 12px; + padding-top: 17px; + overflow: hidden; + display: inline-block; +} + +.island_quests .details_window .unit_icon { + display: block; + float: left; + border: 1px inset #c6a061; + border-left-color: #b08b54; + border-right-color: #7b6534; + border-bottom-color: #52432e; + -moz-box-shadow: 10px 10px 5px #888; + -webkit-box-shadow: 10px 10px 5px #888; + box-shadow: 1px 1px 1px #000; + margin: 5px; + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.island_quests .details_window .units_in_town .unit_icon { + cursor: pointer; +} + +.island_quests .details_window .unit_icon .count { + text-shadow: #000 1px 1px; + color: #fff; + font-size: 15px; + position: absolute; + bottom: 2px; + right: 2px; + font-weight: 700; + letter-spacing: -1px; + text-align: right; +} + +.island_quests .details_window .units_in_town_txt { + position: relative; + margin: 0 0 0 12px; + overflow: hidden; +} + +.island_quests .details_window .checkbox_unit_wrapper, +.island_quests .details_window .txt_unit { + position: relative; + display: block; + float: left; + width: 44px; + margin: 0 4px; +} + +.island_quests .details_window .txt_unit input { + text-align: center; +} + +.island_quests .details_window .checkbox_unit_wrapper { + text-align: center; +} + +.island_quests .details_window .cbx_include_hero { + display: inline-block; +} + +.island_quests .btn_change_quest.button_new.double_border .caption, +.island_quests .btn_goto_island_quest.button_new.double_border .caption { + font-size: 11px; + padding: 0 3px; +} + +.island_quests .details_window .buttons_area { + font-weight: 700; + height: 20px; + position: relative; + font-size: 11px; + color: #fc6; +} + +.island_quests .details_window .description { + color: #fc6; + font-size: 12px; + line-height: 125%; + margin: 35px 18px 0; + font-style: italic; +} + +.island_quests .details_window .attack_npc .description { + color: #fc6; + font-size: 12px; + line-height: 125%; + margin: 35px 23px 0; + font-style: italic; +} + +.island_quests .details_window .attack_npc .btn_simulate { + padding-top: 40px; +} + +.island_quests .details_window .btn_select_all_units { + z-index: 2; + cursor: pointer; + margin-left: 17px; + float: left; +} + +.island_quests .details_window .btn_select_all_units:hover { + color: #0584be; +} + +.island_quests .details_window .lbl_defeat_troops { + position: absolute; + top: 12px; + left: 0; + right: 0; + text-align: center; + padding-top: 5px; + z-index: 1; +} + +.island_quests .details_window .btn_simulate { + height: 20px; + padding-top: 20px; + line-height: 22px; + cursor: pointer; + color: #fc6; + font-weight: 700; + font-size: 11px; + padding-left: 23px; + display: inline-block; +} + +.island_quests .details_window .btn_simulate .caption { + display: inline-block; +} + +.island_quests .details_window .btn_simulate:hover { + color: #0584be; +} + +.island_quests .details_window .btn_simulate .left { + width: 23px; + height: 23px; + right: 0; + top: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat -88px 0; + float: left; +} + +.island_quests .details_window .btn_simulate .right { + float: right; +} + +.island_quests .details_window .btn_simulate:hover .left { + background-position: -88px -23px; +} + +.island_quests .details_window .defeat_enemy_troops { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/island_quests_sprite_2.58_compressed.png) -494px -621px; + width: 515px; + height: 68px; + position: relative; + margin: 0 0 0 22px; + text-align: center; +} + +.island_quests .details_window .defeat_enemy_troops .unit_icon { + display: inline-block; + float: none; +} + +.island_quests .details_window .btn_send_attack { + width: 200px; + margin-left: -100px; + left: 50%; + bottom: 14px; + position: absolute; +} + +.island_quests .details_window .provoke_attack { + padding-top: 30px; + padding-bottom: 5px; +} + +.island_quests .details_window .provoke_attack .descr { + font-weight: 700; + font-size: 11px; + text-align: center; + color: #fc6; + min-height: 47px; +} + +.island_quests .details_window .provoke_attack .units_title { + text-align: center; + margin-top: 10px; +} + +.island_quests .details_window .bear_effect { + padding-top: 20px; + padding-bottom: 12px; +} + +.island_quests .details_window .bear_effect .pb_bear_effect_time, +.island_quests .details_window .wait_time .pb_wait_time { + width: 355px; + margin: 0 auto 0; + position: relative; + z-index: 10; +} + +.island_quests .details_window .wait_time .pb_wait_time { + margin-top: 17px; +} + +.island_quests .details_window .bear_effect .content, +.island_quests .details_window .provoke_attack .transp_box, +.island_quests .details_window .wait_time .content { + padding: 26px 67px 0; + width: 371px; + min-height: 117px; + font-size: 11px; + color: #fc6; + font-weight: 700; + text-align: center; + margin: 6px auto; + position: relative; + top: -16px; +} + +.island_quests .details_window .bear_effect .effect { + margin-top: 6px; +} + +.island_quests .details_window .bear_effect .medium_image { + position: relative; + float: left; + width: 45px; + height: 45px; + margin-right: 15px; +} + +.island_quests .details_window .bear_effect .effect_desc { + text-align: left; + width: 311px; + float: left; +} + +.island_quests .details_window .wait_time { + min-height: 202px; +} + +.island_quests .details_window .wait_time .content { + top: 28px; + margin-top: 0; +} + +.island_quests .details_window .provoke_attack .transp_box { + padding-top: 7px; + height: 134px; + margin-top: 8px; + padding-bottom: 10px; +} + +.island_quests .details_window .provoke_attack .defeat_enemy_troops { + background: 0 0; + width: auto; + padding: 0; + margin: 0; + height: 62px; +} + +.island_quests .details_window .provoke_attack .btn_provoke_attack { + width: 212px; +} + +.island_quests .details_window .collect_units { + padding-top: 15px; + min-height: 187px; + padding-bottom: 40px; +} + +.island_quests .details_window .collect_units .population.icon { + background: url(https://gpfr.innogamescdn.com/images/game/res/pop.png); + width: 30px; + height: 30px; + float: right; + position: relative; + left: 32px; + z-index: 1001; + top: 0; +} + +.island_quests .details_window .collect_units .progress_container { + margin: 0 22px 0; +} + +.island_quests .details_window .collect_units .lbl_troops_rallied { + float: left; + width: 45%; + line-height: 27px; + overflow: hidden; +} + +.island_quests .details_window .collect_units .rallied_troops_progress { + float: right; + width: 49%; +} + +.island_quests .details_window .collect_units .units_in_town { + padding-top: 9px; +} + +.island_quests .details_window .collect_units .btn_send_support { + width: 200px; + margin-left: -100px; + left: 50%; + bottom: 10px; + position: absolute; +} + +.island_quests .details_window .attack_npc .btn_select_all_units, +.island_quests .details_window .collect_units .btn_select_all_units { + margin-top: 5px; +} + +.island_quests .details_window .attack_npc .lbl_runtime, +.island_quests .details_window .collect_units .lbl_runtime { + position: absolute; + left: 17px; + font-weight: 700; + font-size: 11px; + color: #fc6; +} + +.island_quests .details_window .attack_npc .lbl_settime, +.island_quests .details_window .collect_units .lbl_settime { + position: absolute; + left: 100px; + font-weight: 700; + font-size: 11px; + color: #fc6; +} + +.island_quests .details_window .attack_npc .lbl_runtime span, +.island_quests .details_window .attack_npc .lbl_settime span, +.island_quests .details_window .collect_units .lbl_runtime span, +.island_quests .details_window .collect_units .lbl_settime span { + display: none; +} + +.tooltip_wait_time div { + float: left; + line-height: 38px; +} + +.tooltip_wait_time .clock { + margin: 9px 5px 0 0; + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat; + bottom: 4px; + height: 30px; + width: 30px; + position: relative; +} + +.iq_power_icon45x45 { + width: 45px; + height: 45px; + float: left; + margin-right: 12px; + margin-bottom: 6px; + background-position: 0 -45px; +} + +.island_quest_details_sprite .attack_npc { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -594px -175px; + width: 50px; + height: 49px; +} + +.island_quest_details_sprite .attack_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -744px -175px; + width: 50px; + height: 49px; +} + +.island_quest_details_sprite .banner_blue_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -417px -307px; + width: 1px; + height: 83px; +} + +.island_quest_details_sprite .banner_blue_side { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -480px -175px; + width: 64px; + height: 83px; +} + +.island_quest_details_sprite .banner_red_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -307px; + width: 1px; + height: 83px; +} + +.island_quest_details_sprite .banner_red_side { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -175px; + width: 64px; + height: 83px; +} + +.island_quest_details_sprite .bear_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -694px -175px; + width: 50px; + height: 49px; +} + +.island_quest_details_sprite .button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -523px -33px; + width: 177px; + height: 46px; +} + +.island_quest_details_sprite .button_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -593px -129px; + width: 177px; + height: 46px; +} + +.island_quest_details_sprite .button_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -523px -79px; + width: 177px; + height: 46px; +} + +.island_quest_details_sprite .button_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -129px; + width: 177px; + height: 46px; +} + +.island_quest_details_sprite .collect_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -544px -175px; + width: 50px; + height: 49px; +} + +.island_quest_details_sprite .frame_illustration { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -33px; + width: 107px; + height: 96px; +} + +.island_quest_details_sprite .icon_jump_to_quest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -808px -129px; + width: 21px; + height: 21px; +} + +.island_quest_details_sprite .icon_rotate { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -794px -175px; + width: 34px; + height: 23px; +} + +.island_quest_details_sprite .island_quest_content_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat 0 -151px; + width: 207px; + height: 260px; +} + +.island_quest_details_sprite .island_quest_none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -700px -33px; + width: 46px; + height: 46px; +} + +.island_quest_details_sprite .island_quest_reward_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -207px -151px; + width: 171px; + height: 99px; +} + +.island_quest_details_sprite .noquest_illustration { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat 0 0; + width: 416px; + height: 151px; +} + +.island_quest_details_sprite .provoke_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -644px -175px; + width: 50px; + height: 49px; +} + +.island_quest_details_sprite .spend_resources { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -258px; + width: 50px; + height: 49px; +} + +.island_quest_details_sprite .title_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px 0; + width: 413px; + height: 33px; +} + +.island_quest_details_sprite .type_attack_npc { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -738px -79px; + width: 38px; + height: 38px; +} + +.island_quest_details_sprite .type_attack_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -784px -33px; + width: 38px; + height: 38px; +} + +.island_quest_details_sprite .type_bear_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -746px -33px; + width: 38px; + height: 38px; +} + +.island_quest_details_sprite .type_collect_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -516px -258px; + width: 38px; + height: 38px; +} + +.island_quest_details_sprite .type_provoke_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -770px -129px; + width: 38px; + height: 38px; +} + +.island_quest_details_sprite .type_spend_resources { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -776px -79px; + width: 38px; + height: 38px; +} + +.island_quest_details_sprite .type_wait_time { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -700px -79px; + width: 38px; + height: 38px; +} + +.island_quest_details_sprite .wait_time { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -466px -258px; + width: 50px; + height: 49px; +} + +.island_quest_portraits .AllJustAnExploit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -90px 0; + width: 90px; + height: 90px; +} + +.island_quest_portraits .CampOfTheDesperate { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -270px -180px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .CaravanWithoutProtection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat 0 -90px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .CelebrationsOfARuler { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -90px -90px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .ChildOfTheGods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -180px 0; + width: 90px; + height: 90px; +} + +.island_quest_portraits .Crusade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -180px -90px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .HeroOfThePopulace { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat 0 -180px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .HolyHauntedForest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -90px -180px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .IntrigueOfMerchants { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -180px -180px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .QuestionOfMathematics { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -270px 0; + width: 90px; + height: 90px; +} + +.island_quest_portraits .RefugeesOrPrey { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -270px -90px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .RiddanceOfThePoor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat 0 0; + width: 90px; + height: 90px; +} + +.island_quest_portraits .TearOffThePast { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat 0 -270px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .TheBrothel { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -90px -270px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .TheDesperateVillage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -180px -270px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .TheDestroyedShrine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -270px -270px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .TheEpidemicPlague { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -360px 0; + width: 90px; + height: 90px; +} + +.island_quest_portraits .TheLonePilgrim { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -360px -90px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .TheStrandedCaptain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -360px -180px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .TheTournamentOfTheChariots { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -360px -270px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .ThreatFromOutside { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat 0 -360px; + width: 90px; + height: 90px; +} + +.island_quest_portraits .island_quest_none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_portraits_34b1ac1.png) no-repeat -90px -360px; + width: 90px; + height: 90px; +} + +.island_quest_details { + margin: 8px 0 0 10px; +} + +.island_quest_details .title_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px 0; + width: 413px; + height: 33px; + line-height: 34px; +} + +.island_quest_details .title_container .title { + text-align: center; + color: #fc6; + font-weight: 600; +} + +.island_quest_details .portrait_button_container { + float: left; + margin: 0 10px 0 0; + width: 114px; +} + +.island_quest_details .portrait_button_container .island_quest_portraits { + margin: 15px 0 3px 10px; +} + +.island_quest_details .portrait_button_container .island_quest_portraits .frame { + position: relative; + left: -8px; + top: -3px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -33px; + width: 107px; + height: 96px; +} + +.island_quest_details .btn_rotate, +.island_quest_details .btn_town_select { + margin: 3px 0 0 5px; + width: 46px; +} + +.island_quest_details .button_new.icon_type_rotate_gold .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -794px -175px; + width: 34px; + height: 23px; + top: -1px; + left: -10px; +} + +.island_quest_details .button_new.icon_type_center .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -808px -129px; + width: 21px; + height: 21px; + top: 0; + left: -5px; +} + +.island_quest_details .description { + min-height: 165px; + padding: 10px; +} + +.island_quest_details .quest_details_container { + position: relative; +} + +.island_quest_details .noquest_illustration { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat 0 0; + width: 416px; + height: 151px; + margin-top: 5px; +} + +.island_quest_details .noquest_description { + padding: 10px; +} + +.island_quest_details .headline { + font-weight: 600; + text-align: center; +} + +.island_quest_details .divider { + height: 1px; + width: 360px; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + margin-bottom: 3px; + margin-left: 30px; +} + +.island_quest_details .island_quest_content_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat 0 -151px; + width: 207px; + height: 260px; +} + +.island_quest_details .island_quest_reward_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -207px -151px; + width: 171px; + height: 99px; +} + +.island_quest_details .banner.blue .left, +.island_quest_details .banner.blue .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -480px -175px; + width: 64px; + height: 83px; +} + +.island_quest_details .banner.blue .middle { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/banner_blue_middle.png) repeat-x; +} + +.island_quest_details .banner.red .left, +.island_quest_details .banner.red .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -416px -175px; + width: 64px; + height: 83px; +} + +.island_quest_details .banner.red .middle { + background: url(https://gpfr.innogamescdn.com/images/game/island_quests/banner_red_middle.png) repeat-x; +} + +.island_quest_details .banner .left { + float: left; +} + +.island_quest_details .banner .right { + float: right; + margin-right: -7px; + -webkit-transform: scaleX(-1); + -ms-transform: scaleX(-1); + -o-transform: scaleX(-1); + transform: scaleX(-1); +} + +.island_quest_details .banner .middle { + float: left; + width: 81px; + height: 40px; + display: inline-block; + position: absolute; +} + +.island_quest_details .decision_container { + width: 200px; + display: inline-block; + position: relative; +} + +.island_quest_details .decision_container .teaser { + text-align: center; + color: #fc6; + width: 165px; + overflow: hidden; + position: absolute; + top: 30px; + padding: 0 20px; +} + +.island_quest_details .decision_container .info_icon { + margin: 5px 0 0 91px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + cursor: pointer; + position: absolute; + top: 80px; + z-index: 100; +} + +.island_quest_details .decision_container .rewards_container { + position: absolute; + bottom: 45px; + left: 18px; +} + +.island_quest_details .decision_container .rewards_container .reward { + margin-left: 16px; + margin-top: 20px; + display: inline-block; +} + +.island_quest_details .decision_container .btn_take_accept { + position: absolute; + left: 14px; + bottom: -15px; +} + +.island_quest_details .tasks { + position: relative; +} + +.island_quest_details .tasks .icon_container { + position: absolute; + top: 4px; + left: 2px; + background: url(https://gpfr.innogamescdn.com/images/game/box/background_2.56_compressed.jpg) repeat 0 -61px; +} + +.island_quest_details .tasks .pb_progress { + margin-top: 5px; +} + +.island_quest_details .tasks .task_description { + padding-left: 70px; +} + +.island_quest_details .tasks .icon.type_attack_player { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -784px -33px; + width: 38px; + height: 38px; +} + +.island_quest_details .tasks .icon.type_bear_effect { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -746px -33px; + width: 38px; + height: 38px; +} + +.island_quest_details .tasks .icon.type_spend_resources { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -776px -79px; + width: 38px; + height: 38px; +} + +.island_quest_details .tasks .icon.type_attack_npc { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -738px -79px; + width: 38px; + height: 38px; +} + +.island_quest_details .tasks .icon.type_collect_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -516px -258px; + width: 38px; + height: 38px; +} + +.island_quest_details .tasks .icon.type_provoke_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -770px -129px; + width: 38px; + height: 38px; +} + +.island_quest_details .tasks .icon.type_wait_time { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -700px -79px; + width: 38px; + height: 38px; +} + +.island_quest_details .decision_curtain { + margin-top: 50px; + margin-bottom: 10px; +} + +.island_quest_details .decision_curtain.red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/large_banner_curtain_0ba6ebd.png) no-repeat 0 -157px; + width: 417px; + height: 157px; +} + +.island_quest_details .decision_curtain.blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/large_banner_curtain_0ba6ebd.png) no-repeat 0 0; + width: 417px; + height: 157px; +} + +.island_quest_details .decision_curtain .rewards_title { + text-align: center; + color: #fc6; + padding-top: 15px; + font-weight: 600; + margin-bottom: -5px; +} + +.island_quest_details .decision_curtain ul { + text-align: center; + margin-top: 5px; +} + +.island_quest_details .decision_curtain li.reward { + display: inline-block; + padding: 2px 5px; +} + +.island_quest_details .decision_curtain .btn_challenge { + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + bottom: -25px; +} + +.island_quest_details #quest_error_message { + position: absolute; + top: 40px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + display: none; + width: 100%; +} + +.island_quest_details #quest_error_message .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat -183px 0; + width: 150px; + height: 78px; + margin-right: -1px; + -webkit-transform: scaleX(-1); + -ms-transform: scaleX(-1); + -o-transform: scaleX(-1); + transform: scaleX(-1); +} + +.island_quest_details #quest_error_message .middle { + background: url(https://gpfr.innogamescdn.com/images/game/human_messages/red_mid.png) repeat-x; + height: 73px; + width: 110px; + margin: 1px -6px; +} + +.island_quest_details #quest_error_message .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat -183px 0; + width: 150px; + height: 78px; +} + +.island_quest_details #quest_error_message>div { + display: inline-block; + vertical-align: top; +} + +.island_quest_details #quest_error_message .inner { + font-size: 15px; + color: #fc6; + text-align: center; + margin: 30px -50px 0; + max-width: 500px; + transform: translateY(-50%); + margin: 27px -90px 0; + font-size: 13px; +} + +.island_quest_details .town_group_popup { + top: 170px; + left: 20px; + max-width: 200px; + display: none; +} + +.island_quest_details .town_group_popup .group_towns { + height: 300px; +} + +.island_quest_details .town_groups_list .town_group .group_towns .inner_column { + position: static; + text-align: center; +} + +.island_quest_details .town_groups_list .content { + bottom: 13px; +} + +.unit_picker { + padding: 15px 5px; +} + +.unit_picker .unit { + width: 39px; + height: 14px; + padding-top: 26px; + padding-right: 1px; + position: relative; + display: block; + float: left; + text-align: right; + font-family: Verdana; + font-weight: 700; + font-size: 12px; + margin: 1px; + color: #fff; + text-shadow: 1px 1px 0 #000; + cursor: pointer; + overflow: visible; + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; + margin: 10px 7px 5px 5px; +} + +.unit_picker .unit.hidden { + display: none; +} + +.unit_picker .txt_unit { + position: relative; + display: block; + float: left; + width: 44px; + margin: 0 4px; +} + +.unit_picker .txt_unit input { + text-align: center; +} + +.unit_picker .txt_unit.hidden { + display: none; +} + +.unit_picker .unit_container { + position: relative; + height: 76px; + width: 47px; + float: left; +} + +.unit_picker .line_break { + height: 1px; +} + +.unit_picker .duration { + position: relative; + left: 5px; +} + +.unit_picker .duration .headline { + font-weight: 600; +} + +.unit_picker .duration .max_booty { + float: left; + display: block; + background-position: 0 -16px; + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_small_2.95.png); + background-repeat: no-repeat; + width: 22px; + height: 16px; +} + +.unit_picker .duration .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + display: inline-block; + position: relative; + top: 7px; + left: 5px; + margin-right: 10px; +} + +.unit_picker .duration .arrival_time, +.unit_picker .duration span.way_duration { + float: none; + display: inline-block; +} + +.unit_picker .select_all { + font-weight: 600; + color: #804000; + text-decoration: none; + cursor: pointer; + display: inline-block; + position: relative; +} + +.unit_picker .select_all:hover { + color: #0082be; +} + +.unit_picker .btn_runtime, +.unit_picker .btn_simulate { + display: inline-block; + position: absolute; + cursor: pointer; + width: 23px; + height: 23px; +} + +.unit_picker .btn_simulate { + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat -88px 0; +} + +.unit_picker .btn_simulate:hover { + background-position: -88px -23px; +} + +.unit_picker .capacity_progressbar { + width: 440px; + left: 50px; + height: 30px; +} + +.unit_picker .cbx_include_hero { + position: relative; + display: block; + float: left; + width: 44px; + margin: 0 4px; + height: 25px; +} + +.unit_picker .cbx_include_hero .cbx_icon { + top: 4px; + left: 13px; +} + +.unit_picker .unit_population_info { + position: absolute; +} + +.unit_picker .unit_population_info .population_icon { + background-position: bottom center; + position: absolute; + top: -5px; +} + +.unit_picker .unit_population_info .info_icon { + position: absolute; + left: 15px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; +} + +.unit_population_tooltip { + padding: 5px; +} + +.unit_population_tooltip .title { + font-weight: 600; + margin-bottom: 10px; + text-align: center; +} + +.unit_population_tooltip .description { + margin-bottom: 10px; + text-align: center; +} + +.unit_population_tooltip .unit { + width: 39px; + height: 14px; + padding-top: 26px; + padding-right: 1px; + position: relative; + display: block; + float: left; + text-align: right; + font-family: Verdana; + font-weight: 700; + font-size: 12px; + margin: 1px; + color: #fff; + text-shadow: 1px 1px 0 #000; + cursor: pointer; + overflow: visible; + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; + margin: 10px 7px 5px 5px; +} + +.unit_population_tooltip .unit.hidden { + display: none; +} + +.unit_population_tooltip .txt_unit { + position: relative; + display: block; + float: left; + width: 44px; + margin: 0 4px; +} + +.unit_population_tooltip .txt_unit input { + text-align: center; +} + +.unit_population_tooltip .txt_unit.hidden { + display: none; +} + +.unit_population_tooltip .txt_unit .amount { + line-height: 24px; + text-align: center; +} + +.unit_population_tooltip .unit_container { + position: relative; + height: 76px; + width: 47px; + float: left; +} + +.unit_population_tooltip .unit_container.population_icon { + background-position: bottom center; + top: 5px; + width: 30px; +} + +.colonization_window { + height: 500px; + overflow: hidden; +} + +.colonization_window .content { + padding: 0 10px; +} + +.colonization_window .information_area { + position: absolute; + top: 30px; + left: 30px; + min-width: 280px; +} + +.colonization_window .information_area .content { + min-height: 120px; +} + +.colonization_window .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + display: inline-block; + position: relative; + top: 8px; + right: 4px; +} + +.colonization_window .colonizing_info, +.colonization_window .colonizing_time_headline, +.colonization_window .island_info { + font-weight: 600; +} + +.colonization_window .colonizing_time { + margin-top: 10px; +} + +.colonization_window .clock { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat; + bottom: 8px; + right: 7px; + float: left; + height: 30px; + position: relative; + width: 30px; +} + +.colonization_window .units_container_col { + position: absolute; + top: 160px; + left: 30px; + width: 550px; +} + +.colonization_window .units_container_col .content { + height: 275px; +} + +.colonization_window .button_container { + position: absolute; + bottom: 23px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.colonization_window .button_container .btn_found_town { + min-width: 200px; +} + +.colonization_window .button_container .btn_runtime { + width: 23px; +} + +.colonization_window .error_msg { + position: absolute; + top: 40px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + display: none; + width: 100%; + display: block; + top: 70px; + transform: inherit; + left: inherit; +} + +.colonization_window .error_msg .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat -183px 0; + width: 150px; + height: 78px; + margin-right: -1px; + -webkit-transform: scaleX(-1); + -ms-transform: scaleX(-1); + -o-transform: scaleX(-1); + transform: scaleX(-1); +} + +.colonization_window .error_msg .middle { + background: url(https://gpfr.innogamescdn.com/images/game/human_messages/red_mid.png) repeat-x; + height: 73px; + width: 110px; + margin: 1px -6px; +} + +.colonization_window .error_msg .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/human_messages/human_messages_89b6d5c.png) no-repeat -183px 0; + width: 150px; + height: 78px; +} + +.colonization_window .error_msg>div { + display: inline-block; + vertical-align: top; +} + +.colonization_window .error_msg .inner { + font-size: 15px; + color: #fc6; + text-align: center; + margin: 30px -50px 0; + max-width: 500px; + transform: translateY(-50%); + margin: 27px -90px 0; + font-size: 13px; +} + +.colonization_window .error_msg .middle { + width: 300px; +} + +.colonization_window.requirements .requirements_info { + position: relative; + top: -100px; + padding: 30px; +} + +.colonization_window.requirements .requirements_info .content { + height: 270px; +} + +.colonization_window.requirements .requirements_info .content .headline { + text-align: center; + margin-bottom: 5px; +} + +.colonization_window.requirements .requirements_info .content .headline:after { + height: 1px; + width: 200px; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); + display: block; + content: ''; + margin-left: 150px; +} + +.colonization_window.requirements .requirements_info .content .colonize_ship_requirements, +.colonization_window.requirements .requirements_info .content .foundation_requirements { + display: inline-block; + vertical-align: top; + width: 249px; + height: 220px; + margin-top: 25px; +} + +.colonization_window.requirements .requirements_info .content .colonize_ship_requirements .title, +.colonization_window.requirements .requirements_info .content .foundation_requirements .title { + font-weight: 600; +} + +.colonization_window.requirements .requirements_info .content .requirement { + height: 50px; + width: 170px; + margin: 5px 5px 5px 50px; + display: block; + position: relative; + top: 20px; +} + +.colonization_window.requirements .requirements_info .content .requirement.red { + color: #e72200; +} + +.colonization_window.requirements .requirements_info .content .requirement .icon_container { + position: absolute; + padding: 3px; + margin-top: -15px; + margin-left: -50px; +} + +.colonization_window.requirements .requirements_info .content .requirement .icon_city_points { + display: inline-block; + vertical-align: middle; + width: 40px; +} + +.colonization_window.requirements .requirements_info .content .requirement .icon_research { + position: absolute; + left: -25px; + top: 7px; + z-index: 2; +} + +.colonization_window.requirements .requirements_info .content .requirement .requirement_text { + display: inline; +} + +.tooltip_colonizing_info { + cursor: pointer; + width: 390px; + height: 370px; +} + +.tooltip_colonizing_info .headline { + text-align: center; + font-weight: 600; + margin: 10px; +} + +.tooltip_colonizing_info .building_list { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/colonization/window_1906821.png) no-repeat 0 -239px; + width: 361px; + height: 303px; + position: absolute; + top: 40px; + left: 20px; +} + +.tooltip_colonizing_info .total_points { + bottom: 23px; + position: absolute; + text-align: center; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.tooltip_colonizing_info .total_points .text { + font-weight: 600; + padding: 5px; + min-width: 200px; +} + +.tooltip_colonizing_info .building_info { + width: 170px; + overflow: hidden; + height: 41px; + margin: 5px; + display: inline-block; + float: left; +} + +.tooltip_colonizing_info .building_info.left .building_icon40x40 { + float: left; +} + +.tooltip_colonizing_info .building_info.left .building_name { + left: 10px; + position: relative; + line-height: 40px; + display: inline-block; + float: left; +} + +.tooltip_colonizing_info .building_info.right .building_icon40x40 { + float: right; +} + +.tooltip_colonizing_info .building_info.right .building_name { + text-align: right; + right: 10px; + position: relative; + line-height: 40px; + display: inline-block; + float: right; +} + +.tooltip_colonizing_info .building_info .value { + color: #fff; + text-shadow: 1px 1px 0 #000; + filter: dropshadow(color=#000000,offX=1,offY=1); + position: absolute; + bottom: 2px; + right: 2px; + letter-spacing: -1px; + font-size: 15px; + font-weight: 600; +} + +.tooltip_island_info .info_description { + margin-top: 15px; + padding: 6px; +} + +.tooltip_island_info .info_description.no_farms .summary { + color: red; +} + +.colonization_window .building_agora { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/colonization/window_1906821.png) no-repeat -361px -239px; + width: 40px; + height: 40px; +} + +.colonization_window .building_list { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/colonization/window_1906821.png) no-repeat 0 -239px; + width: 361px; + height: 303px; +} + +.colonization_window .icon_city_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/colonization/window_1906821.png) no-repeat -401px -239px; + width: 40px; + height: 40px; +} + +.colonization_window .icon_culture { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/colonization/window_1906821.png) no-repeat -361px -279px; + width: 31px; + height: 43px; +} + +.colonization_window .icon_research { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/colonization/window_1906821.png) no-repeat -441px -239px; + width: 26px; + height: 31px; +} + +.colonization_window .illustration { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/colonization/window_1906821.png) no-repeat 0 0; + width: 607px; + height: 239px; +} + +.chat_message_window { + overflow: hidden; + margin: 10px; +} + +.chat_message_window .chat_message_content { + margin: 10px; + text-align: center; +} + +.chat_message_window .btn_ok { + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + min-width: 100px; + margin: 10px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1209px -1240px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1462px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1209px -1462px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -806px -1240px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -403px -1462px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -806px -1462px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -708px -992px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1240px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -403px -1240px; + width: 403px; + height: 222px; +} + +.dionysia_overall_sprite .Dionysia_UI_tutorial_high_priestess { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px 0; + width: 285px; + height: 480px; +} + +.dionysia_overall_sprite .awarding_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1884px -1349px; + width: 122px; + height: 36px; +} + +.dionysia_overall_sprite .cone_glow_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1632px -480px; + width: 61px; + height: 72px; +} + +.dionysia_overall_sprite .cone_glow_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -1079px; + width: 56px; + height: 68px; +} + +.dionysia_overall_sprite .cone_glow_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1939px -1402px; + width: 58px; + height: 76px; +} + +.dionysia_overall_sprite .cone_glow_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1532px -1079px; + width: 46px; + height: 57px; +} + +.dionysia_overall_sprite .cone_glow_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1625px -736px; + width: 59px; + height: 69px; +} + +.dionysia_overall_sprite .cone_glow_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1632px -552px; + width: 50px; + height: 59px; +} + +.dionysia_overall_sprite .cone_glow_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1596px -989px; + width: 100px; + height: 71px; +} + +.dionysia_overall_sprite .dionysia_event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1541px -611px; + width: 125px; + height: 125px; +} + +.dionysia_overall_sprite .dionysia_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -611px; + width: 125px; + height: 125px; +} + +.dionysia_overall_sprite .dionysia_event_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1884px -1224px; + width: 125px; + height: 125px; +} + +.dionysia_overall_sprite .finish_preparations_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -430px -1684px; + width: 308px; + height: 79px; +} + +.dionysia_overall_sprite .gained_thyrsos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -327px -1816px; + width: 327px; + height: 148px; +} + +.dionysia_overall_sprite .gained_thyrsos_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1816px; + width: 327px; + height: 148px; +} + +.dionysia_overall_sprite .list_current { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1939px -1478px; + width: 64px; + height: 40px; +} + +.dionysia_overall_sprite .list_done { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1917px -1617px; + width: 64px; + height: 40px; +} + +.dionysia_overall_sprite .list_new { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1578px -1079px; + width: 64px; + height: 40px; +} + +.dionysia_overall_sprite .main_offering_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -854px; + width: 79px; + height: 135px; +} + +.dionysia_overall_sprite .missions_grapes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1658px; + width: 27px; + height: 25px; +} + +.dionysia_overall_sprite .missions_icon_boost { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -2006px -1349px; + width: 16px; + height: 16px; +} + +.dionysia_overall_sprite .missions_icon_prepare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1981px -1617px; + width: 37px; + height: 25px; +} + +.dionysia_overall_sprite .missions_icon_ranking_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1728px -1658px; + width: 26px; + height: 25px; +} + +.dionysia_overall_sprite .missions_icon_scout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1666px -611px; + width: 30px; + height: 28px; +} + +.dionysia_overall_sprite .missions_icon_timer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1997px -1402px; + width: 25px; + height: 24px; +} + +.dionysia_overall_sprite .missions_illustration_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -816px; + width: 321px; + height: 204px; +} + +.dionysia_overall_sprite .missions_illustration_1_90x90 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1535px -736px; + width: 90px; + height: 90px; +} + +.dionysia_overall_sprite .missions_illustration_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px 0; + width: 321px; + height: 204px; +} + +.dionysia_overall_sprite .missions_illustration_2_90x90 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1506px -989px; + width: 90px; + height: 90px; +} + +.dionysia_overall_sprite .missions_illustration_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -204px; + width: 321px; + height: 204px; +} + +.dionysia_overall_sprite .missions_illustration_3_90x90 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1917px -1527px; + width: 90px; + height: 90px; +} + +.dionysia_overall_sprite .missions_illustration_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -408px; + width: 321px; + height: 204px; +} + +.dionysia_overall_sprite .missions_illustration_4_90x90 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1495px -854px; + width: 90px; + height: 90px; +} + +.dionysia_overall_sprite .missions_illustration_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -612px; + width: 321px; + height: 204px; +} + +.dionysia_overall_sprite .missions_illustration_5_90x90 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -989px; + width: 90px; + height: 90px; +} + +.dionysia_overall_sprite .missions_illustration_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1020px; + width: 321px; + height: 204px; +} + +.dionysia_overall_sprite .missions_illustration_6_90x90 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1585px -854px; + width: 90px; + height: 90px; +} + +.dionysia_overall_sprite .missions_overview_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -1147px; + width: 47px; + height: 47px; +} + +.dionysia_overall_sprite .next_procession_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1402px; + width: 238px; + height: 125px; +} + +.dionysia_overall_sprite .ranking_banner_row1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1684px; + width: 430px; + height: 132px; +} + +.dionysia_overall_sprite .ranking_banner_row2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -480px; + width: 216px; + height: 131px; +} + +.dionysia_overall_sprite .ranking_banner_row3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1527px; + width: 216px; + height: 131px; +} + +.dionysia_overall_sprite .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1224px; + width: 183px; + height: 178px; +} + +.dionysia_overall_sprite .reward_glow_mission { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -736px; + width: 119px; + height: 118px; +} + +.dionysia_overall_sprite .reward_teaser_grey { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1472px -1079px; + width: 60px; + height: 60px; +} + +.dionysia_overall_sprite .step_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -708px -744px; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .step_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -992px; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .step_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -744px; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .step_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .step_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -708px -496px; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .step_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -496px; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .step_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -708px -248px; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .step_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -708px 0; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .step_7_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -248px; + width: 708px; + height: 248px; +} + +.dionysia_overall_sprite .unit_tooltip_relief { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1495px -944px; + width: 171px; + height: 37px; +} + +.events_dionysia_single_images .Dionysia_gaining_units_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/Dionysia_gaining_units_bg_ca10bfb.png) no-repeat 0 0; + width: 752px; + height: 410px; +} + +.events_dionysia_single_images .Dionysia_interstitials_end { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/Dionysia_interstitials_end_f228257.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.events_dionysia_single_images .Dionysia_interstitials_start { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/Dionysia_interstitials_start_a97f395.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.events_dionysia_single_images .active_mission_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/active_mission_bg_a1b7d1b.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.events_dionysia_single_images .main_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/main_bg_3e166bf.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.events_dionysia_single_images .main_finish_preparations_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/main_finish_preparations_frame_b3da66d.png) no-repeat 0 0; + width: 308px; + height: 79px; +} + +.events_dionysia_single_images .mission_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/mission_popup_0a677f4.png) no-repeat 0 0; + width: 493px; + height: 462px; +} + +.events_dionysia_single_images .mission_selection_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/mission_selection_bg_1fcc4f2.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.events_dionysia_single_images .missions_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/missions_end_interstitial_ca52668.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.events_dionysia_single_images .missions_welcome { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/missions_welcome_6b063f4.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.events_dionysia_single_images .popup_reward_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/popup_reward_bg_0ddd996.png) no-repeat 0 0; + width: 491px; + height: 331px; +} + +.events_dionysia_single_images .progress_bar_bordeaux { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/progress_bar_bordeaux_8cbcdc1.png) no-repeat 0 0; + width: 1px; + height: 18px; +} + +.events_dionysia_single_images .progress_bar_gold { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/progress_bar_gold_c552bce.png) no-repeat 0 0; + width: 1px; + height: 18px; +} + +.events_dionysia_single_images .send_units_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/send_units_popup_6615113.png) no-repeat 0 0; + width: 491px; + height: 291px; +} + +.events_dionysia_single_images .step_0 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_0_6f2b74a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.events_dionysia_single_images .step_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_1_c466c95.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.events_dionysia_single_images .step_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_2_8cafbc4.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.events_dionysia_single_images .step_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_3_62e43d2.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.events_dionysia_single_images .step_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_4_4814499.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.events_dionysia_single_images .step_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_5_a617541.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.events_dionysia_single_images .step_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_6_1d36d8a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.events_dionysia_single_images .step_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_7_8d1b340.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.events_dionysia_single_images .step_7_finished { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_7_finished_1e131a5.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia_units_sprite .dryad { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -230px 0; + width: 230px; + height: 166px; +} + +.missions_dionysia_units_sprite .dryad_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat 0 -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia_units_sprite .high_kanephora { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat 0 -166px; + width: 230px; + height: 166px; +} + +.missions_dionysia_units_sprite .high_kanephora_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -160px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia_units_sprite .high_priestess { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -460px 0; + width: 230px; + height: 166px; +} + +.missions_dionysia_units_sprite .high_priestess_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -80px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia_units_sprite .pan { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat 0 0; + width: 230px; + height: 166px; +} + +.missions_dionysia_units_sprite .pan_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -40px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia_units_sprite .phallophoros { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -460px -166px; + width: 230px; + height: 166px; +} + +.missions_dionysia_units_sprite .phallophoros_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -120px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia_units_sprite .silenos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -230px -166px; + width: 230px; + height: 166px; +} + +.missions_dionysia_units_sprite .silenos_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -200px -332px; + width: 40px; + height: 40px; +} + +.mission_running { + position: relative; + overflow: hidden; + height: 529px; + width: 758px; +} + +.mission_running .countdown_box { + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + position: absolute; + z-index: 1; +} + +.mission_running .countdown_box .btn_info_overlay { + position: absolute; + bottom: 1px; + left: 50%; + margin-left: -13px; +} + +.mission_running .pg_gold.progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/progress_bar_gold_c552bce.png) no-repeat 0 0; + width: 1px; + height: 18px; + width: 100%; + background-repeat: repeat-x; +} + +.mission_running .mission_image { + position: absolute; + top: 100px; + left: 44px; + width: 316px; + height: 204px; +} + +.mission_running .index_headline { + font-weight: 700; + text-align: center; + width: 297px; + height: 34px; + line-height: 34px; + color: #fff; +} + +.mission_running .mission_title { + font-weight: 700; + color: #fff; + position: absolute; + top: 57px; + text-align: center; + width: 550px; + left: 110px; + text-shadow: 3px 3px 3px #000; +} + +.mission_running .mission_timer_container { + position: absolute; + left: 110px; + top: 294px; + height: 50px; + width: 180px; +} + +.mission_running .mission_timer_container .pg_mission_timer .caption { + z-index: 2; +} + +.mission_running .sub_headline { + font-weight: 700; + text-align: center; +} + +.mission_running .boost_mission_container { + position: absolute; + bottom: 106px; + left: 42px; + width: 322px; + height: 100px; +} + +.mission_running .boost_mission_container .boost.sub_headline { + margin-top: 2px; + margin-bottom: 5px; +} + +.mission_running .boost_mission_container .text_1, +.mission_running .boost_mission_container .text_2 { + line-height: 35px; + margin-left: 10px; + width: 170px; + height: 35px; +} + +.mission_running .boost_mission_container .text_1 div, +.mission_running .boost_mission_container .text_2 div { + line-height: initial; + display: inline-block; +} + +.mission_running .boost_mission_container .btn_boost_mission { + position: absolute; + right: 10px; + top: 30px; + width: 130px; +} + +.mission_running .boost_mission_container .pg_free_boost { + position: absolute; + width: 130px; + right: 10px; + bottom: 11px; +} + +.mission_running .boost_mission_container .pg_free_boost .caption { + z-index: 1000; +} + +.mission_running .boost_mission_container .pg_free_boost .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/progress_bar_gold_c552bce.png) no-repeat 0 0; + width: 1px; + height: 18px; + width: 100%; + background-repeat: repeat-x; +} + +.mission_running .army_container { + position: absolute; + right: 44px; + top: 99px; + width: 331px; + height: 78px; +} + +.mission_running .army_container .army.sub_headline { + margin-top: 2px; + margin-bottom: 5px; +} + +.mission_running .army_container .units_container { + position: relative; + width: 315px; + margin: 0 10px; +} + +.mission_running .army_container .units_container>div { + border: 1px solid #000; +} + +.mission_running .army_container .units_container .count { + text-align: right; + position: absolute; + bottom: 0; + right: 0; +} + +.mission_running .success_container { + position: absolute; + right: 43px; + top: 192px; + width: 323px; + height: 221px; + padding: 0 5px; +} + +.mission_running .success_container .success.sub_headline { + margin-top: 2px; + margin-bottom: 10px; +} + +.mission_running .success_container .btn_mission_report { + bottom: 17px; + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + min-width: 200px; +} + +.mission_running .success_container .base_chance_wrapper { + width: 319px; + margin: 0 5px; + background: url(https://gpfr.innogamescdn.com/images/game/border/bg_tile_dark.png) repeat; + overflow: hidden; +} + +.mission_running .success_container .base_chance_wrapper .base { + height: 20px; + color: #000; + text-align: center; + line-height: 20px; + font-weight: 700; +} + +.mission_running .success_container .pg_total, +.mission_running .success_container .pg_unit { + margin-bottom: 5px; +} + +.mission_running .success_container .pg_total .caption, +.mission_running .success_container .pg_unit .caption { + z-index: 1000; +} + +.mission_running .success_container .pg_total .progress.gold .indicator, +.mission_running .success_container .pg_unit .progress.gold .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/progress_bar_gold_c552bce.png) no-repeat 0 0; + width: 1px; + height: 18px; + width: 100%; + background-repeat: repeat-x; +} + +.mission_rewards_list { + position: relative; + overflow: hidden; + height: 400px; +} + +.mission_rewards_list .list_container { + margin: 10px; + position: relative; + height: 380px; +} + +.mission_rewards_list .reward_list { + height: 100%; + position: relative; + overflow: hidden; +} + +.mission_rewards_list .list_element { + height: 100px; + position: relative; + margin-right: 20px; + width: 345px; +} + +.mission_rewards_list .list_element .reward_box { + background: url(https://gpfr.innogamescdn.com/images/game/box/background_2.56_compressed.jpg) repeat 0 -61px; + position: absolute; + height: 80px; + top: 10px; + width: 80px; + left: 10px; +} + +.mission_rewards_list .list_element .reward_box .reward { + margin: 10px; +} + +.mission_rewards_list .list_element .badge { + position: absolute; + right: -4px; + top: 30px; +} + +.mission_rewards_list .list_element .reward_text_box { + margin-left: 100px; + position: relative; + top: 30px; + line-height: 22px; +} + +.mission_rewards_list .list_element .reward_text_box .reward_name { + font-weight: 600; +} + +.mission_rewards_list .list_element .reward_text_box .not_available_msg { + color: #e72200; +} + +.mission_collect_reward { + position: relative; + overflow: hidden; + width: 493px; + height: 332px; +} + +.mission_collect_reward .headline { + text-align: center; + text-shadow: 3px 3px 3px #000; + font-weight: 600; + line-height: 34px; + color: #fc6; + font-size: 24px; + margin-top: 35px; +} + +.mission_collect_reward .collect_message { + position: absolute; + bottom: 20px; + text-align: center; + padding: 0 30px; + color: #fc6; + margin-bottom: 5px; +} + +.mission_collect_reward .reward, +.mission_collect_reward .reward_glow { + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + position: absolute; +} + +.mission_collect_reward .reward_glow { + top: 53px; +} + +.mission_collect_reward .reward { + top: 115px; +} + +.mission_collection { + position: relative; + overflow: hidden; + height: 529px; + width: 758px; +} + +.mission_collection .countdown_box { + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + position: absolute; + top: 0; + z-index: 1; +} + +.mission_collection .countdown_box .btn_info_overlay { + position: absolute; + bottom: 1px; + left: 50%; + margin-left: -13px; +} + +.mission_collection .current_reward_box { + position: absolute; + right: 9px; + bottom: 13px; + width: 199px; + height: 215px; + text-align: center; +} + +.mission_collection .current_reward_box .headline { + text-shadow: 1px 1px 0 #000; + font-size: 12px; + font-weight: 600; + color: #fc6; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + padding-top: 2px; +} + +.mission_collection .current_reward_box .description { + margin: 10px 10px; + font-size: 12px; +} + +.mission_collection .current_reward_box .next_reward { + margin: 17px 60px 10px; +} + +.mission_collection .current_reward_box .btn_show_more { + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + bottom: 5px; +} + +.mission_collection .rewards_fade { + position: absolute; + display: none; +} + +.mission_collection .rewards_fade.reward_ranking_points { + height: 100%; + width: 100%; + text-align: center; + line-height: 212px; + left: 0; + top: 0; +} + +.mission_collection .rewards_fade.reward_ranking_points .ranking_points_icon { + display: inline-block; + vertical-align: middle; +} + +.mission_collection .rewards_fade.reward_ranking_points .text { + font-weight: 700; + color: #fc6; + position: absolute; + top: 0; + width: 100%; +} + +.mission_collection .current_reward_box .headline, +.mission_collection .ranking_box .headline_wrapper { + height: 33px; + text-shadow: 1px 1px 0 #000; +} + +.mission_collection .ranking_box { + position: absolute; + left: 8px; + bottom: 13px; + width: 201px; + height: 215px; + text-align: center; +} + +.mission_collection .ranking_box .headline_wrapper { + width: 100%; + position: relative; +} + +.mission_collection .ranking_box .headline_wrapper .cooldown, +.mission_collection .ranking_box .headline_wrapper .headline { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + width: 75%; + margin: auto; + position: relative; +} + +.mission_collection .ranking_box .headline_wrapper .headline { + text-align: center; + font-weight: 600; + color: #fc6; + font-size: 12px; + padding-top: 2px; +} + +.mission_collection .ranking_box .headline_wrapper .cooldown { + height: 16px; + margin-top: -1px; +} + +.mission_collection .ranking_box .headline_wrapper .btn_ranking_info { + position: absolute; + top: 7px; + right: 2px; +} + +.mission_collection .ranking_box .list { + width: 196px; + position: relative; + top: 11px; +} + +.mission_collection .ranking_box .list.list_players { + top: 11px; +} + +.mission_collection .ranking_box .list.list_players td.name { + text-align: left; + padding-left: 5px; + max-width: 105px; + width: 105px; +} + +.mission_collection .ranking_box .list .divider { + height: 1px; + width: 115px; + background: linear-gradient(to right,#dcb874,#7c6336,#dcb874); + position: relative; + margin: auto; +} + +.mission_collection .ranking_box .list .divider_row { + height: 10px; +} + +.mission_collection .ranking_box .list .icon { + display: inline-block; +} + +.mission_collection .ranking_box .list th.name { + text-align: center; + position: relative; +} + +.mission_collection .ranking_box .list td { + line-height: 15px; +} + +.mission_collection .ranking_box .list td.position { + padding-left: 2px; +} + +.mission_collection .ranking_box .list td.points { + text-align: right; + padding-right: 6px; +} + +.mission_collection .ranking_box .list td.no_results { + text-align: center; + height: 50px; +} + +.mission_collection .ranking_box .list td.ranking_not_active { + text-align: center; + height: 82px; +} + +.mission_collection .ranking_box .list .selected { + font-weight: 600; +} + +.mission_collection .ranking_box .list .fix_no_wrap { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.mission_collection .ranking_box .list .fix_no_wrap .gp_player_link.is_player { + color: #000; +} + +.mission_collection .ranking_reward_box { + position: absolute; + left: 234px; + bottom: 16px; + width: 288px; + height: 212px; + text-align: center; +} + +.mission_collection .ranking_reward_box .headline { + text-align: center; + width: 100%; + font-weight: 600; + color: #fc6; + font-size: 1.5em; + margin-top: 20px; +} + +.mission_collection .ranking_reward_box .rewards { + position: absolute; + width: 100%; + height: 170px; + bottom: 0; +} + +.mission_collection .ranking_reward_box .rewards .reward .reward_icon { + overflow: visible; +} + +.mission_collection .ranking_reward_box .rewards .reward .reward_icon:not(.instant_gold) .amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -444px -90px; + width: 26px; + height: 26px; + position: absolute; + top: -5px; + right: -5px; + text-align: center; + line-height: 26px; + color: #ecb44d; +} + +.mission_collection .ranking_reward_box .rewards .ranking_reward_1 .reward { + float: left; + margin: 0 10px; +} + +.mission_collection .ranking_reward_box .rewards .ranking_reward_1 .reward.show_glow::before { + content: ''; + position: absolute; + -webkit-animation: fadeInOutIn 5s ease infinite; + -ms-animation: fadeInOutIn 5s ease infinite; + animation: fadeInOutIn 5s ease infinite; + transform: scale(.7); + top: -68px; + right: -51px; +} + +.mission_collection .ranking_reward_box .rewards .ranking_reward_1 .reward.show_glow:first-child::before { + right: 25px; +} + +.mission_collection .ranking_reward_box .rewards .ranking_reward_2, +.mission_collection .ranking_reward_box .rewards .ranking_reward_3 { + position: absolute; + top: 50px; +} + +.mission_collection .ranking_reward_box .rewards .ranking_reward_1 { + position: absolute; + top: 24px; + left: 65px; +} + +.mission_collection .ranking_reward_box .rewards .ranking_reward_2 { + left: 0; +} + +.mission_collection .ranking_reward_box .rewards .ranking_reward_3 { + right: 0; +} + +.mission_collection .ranking_reward_box .rewards .ranking_reward_2 .reward, +.mission_collection .ranking_reward_box .rewards .ranking_reward_3 .reward { + margin-top: 12px; +} + +.mission_collection .collection_box { + margin: 10px 24px; + height: 250px; + position: relative; +} + +.mission_collection .collection_box .btn_collect_reward, +.mission_collection .collection_box .close_container_box, +.mission_collection .collection_box .cooldown_box { + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.mission_collection .collection_box .pg_cooldown { + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +.mission_collection .collection_box .close_container_box, +.mission_collection .collection_box .cooldown_box { + bottom: 0; +} + +.mission_collection .collection_box .close_container_box .glow, +.mission_collection .collection_box .cooldown_box .glow { + position: absolute; + opacity: 0; + -webkit-animation: fadeInOutIn 6s ease infinite; + -ms-animation: fadeInOutIn 6s ease infinite; + animation: fadeInOutIn 6s ease infinite; +} + +.mission_collection .collection_box .cooldown_box { + text-align: center; +} + +.mission_collection .collection_box .btn_skip_cooldown, +.mission_collection .collection_box .pg_cooldown { + margin-bottom: 5px; + width: 185px; +} + +.mission_collection .collection_box .text_cooldown { + text-align: center; + margin: 25px 20px 5px; + text-shadow: 1px 1px 1px #000; + color: #fc6; +} + +.mission_collection .collection_box .btn_collect_reward { + top: 31px; + width: 217px; + position: relative; +} + +.missions_list { + position: relative; + overflow: hidden; + height: 529px; + width: 758px; +} + +.missions_list.collected_items_tooltip { + text-align: center; + min-width: 400px; +} + +.missions_list.collected_items_tooltip .description { + padding-top: 10px; + text-align: left; + margin: 0 10px; +} + +.missions_list.collected_items_tooltip .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: relative; + margin: 3px auto 10px auto; +} + +.missions_list.collected_items_tooltip .collected_items { + margin-top: 5px; +} + +.missions_list.collected_items_tooltip .collected_items .item { + display: inline-block; + box-shadow: inset 0 0 4px #000; + margin: 0 10px; +} + +.missions_list.collected_items_tooltip .collected_items .value { + margin-top: 25px; + margin-right: 1px; + margin-left: 0; + color: #fff; + font-weight: 600; + font-size: 12px; + text-align: right; + text-shadow: 1px 1px 0 #000; +} + +.missions_list.collected_items_tooltip ul { + list-style: square; + display: inline-block; + margin-top: 10px; +} + +.missions_list.collected_items_tooltip li { + text-align: left; +} + +.missions_list .countdown_box { + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + position: absolute; + z-index: 1; +} + +.missions_list .countdown_box .btn_info_overlay { + position: absolute; + bottom: 1px; + left: 50%; + margin-left: -13px; +} + +.missions_list .headline { + text-shadow: 3px 3px 3px #000; + text-align: center; + line-height: 71px; + width: 758px; + height: 71px; + font-size: 1.5em; + font-weight: 600; + color: #fc6; +} + +.missions_list .second_headline { + font-weight: 700; + text-align: center; +} + +.mission_running .collected_items_indicator, +.missions_list .collected_items_indicator { + position: absolute; + top: 10px; + left: 207px; + padding: 5px 0 0 11px; + width: 340px; + height: 26px; +} + +.missions_list_index { + float: left; + width: 297px; + padding-left: 7px; + padding-top: 59px; +} + +.missions_list_index .index_headline { + font-weight: 700; + text-align: center; + width: 297px; + height: 34px; + line-height: 34px; + color: #fff; +} + +.missions_list_index .missions { + padding-top: 4px; + background-color: rgba(221,185,115,.3); +} + +.missions_list_index .missions .mission { + height: 154px; + cursor: pointer; +} + +.missions_list_index .missions .mission_headline { + font-weight: 700; + text-align: center; + width: 277px; + color: #000; + padding: 10px 10px 0 10px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.missions_list_index .missions .mission_middle { + width: 297px; + height: 50px; + line-height: 50px; + text-align: center; +} + +.missions_list_index .missions .mission_middle div, +.missions_list_index .missions .mission_middle span { + display: inline-block; + vertical-align: middle; +} + +.missions_list_index .missions .mission_bottom { + width: 297px; +} + +.missions_list_index .missions .mission_left { + margin-right: 25px; +} + +.missions_list_index .missions .mission_left.mission_type_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -744px -175px; + width: 50px; + height: 49px; +} + +.missions_list_index .missions .mission_left.mission_type_escort { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -644px -175px; + width: 50px; + height: 49px; +} + +.missions_list_index .missions .mission_left.mission_type_scout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -544px -175px; + width: 50px; + height: 49px; +} + +.missions_list_index .missions .mission_center { + margin-right: 30px; +} + +.missions_list_index .missions .mission_timer { + margin-right: 10px; +} + +.missions_list_index .missions .mission_ranking_points { + margin-right: 10px; +} + +.missions_list_index .missions .btn_new_mission { + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + min-width: 100px; + margin-top: 7px; +} + +.missions_list_index .missions .active { + background-color: rgba(255,255,255,.2); +} + +.missions_list_details { + padding-top: 64px; + padding-left: 8px; + float: left; +} + +.missions_list_details .details_headline { + font-weight: 700; + text-align: center; + width: 437px; + height: 34px; + line-height: 34px; + color: #fff; +} + +.details { + width: 437px; +} + +.details b { + color: #822331; +} + +.details .details_description { + height: 98px; + padding-top: 23px; + padding-left: 20px; + padding-right: 20px; +} + +.details .details_description .thumb { + margin-right: 20px; + height: 90px; + width: 91px; + float: left; +} + +.details .details_hint { + height: 76px; +} + +.details .details_hint div { + margin-top: 5px; + padding-left: 20px; + padding-right: 20px; +} + +.details .details_resources { + margin: 10px 17px 10px 20px; + height: 46px; + line-height: 46px; +} + +.details .btn_send_units { + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + margin: 5px; + min-width: 100px; +} + +.details .details_resources_center, +.details .details_resources_left, +.details .details_resources_right { + text-align: center; +} + +.details .details_resources_left { + float: left; + margin-left: 10px; + margin-right: 10px; + width: 100px; +} + +.details .details_resources_center { + float: left; + margin-left: 10px; + margin-right: 10px; + width: 150px; +} + +.details .details_resources_right { + float: left; + margin-left: 10px; + width: 100px; +} + +.details .details_ranking_points, +.details .details_resources_capacity, +.details .details_resources_timer { + vertical-align: middle; +} + +.details .details_resources_capacity { + display: inline-block; + margin-right: 6px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -697px -647px; + width: 25px; + height: 20px; +} + +.details .details_resources_timer { + display: inline-block; + margin-right: 10px; +} + +.details .details_ranking_points { + display: inline-block; + margin-right: 10px; +} + +.missions_units_wrapper { + position: absolute; + bottom: 0; + left: 14px; +} + +.missions_units_wrapper .missions_unit { + float: left; + width: 118px; + height: 83px; + margin: 0 2px; +} + +.missions_units_wrapper .missions_unit:first-child { + width: 116px; +} + +.missions_units_wrapper .missions_unit:last-child { + margin: 0 1px; +} + +.missions_units_wrapper .unit { + width: 39px; + height: 14px; + padding-top: 26px; + padding-right: 1px; + position: relative; + display: block; + float: left; + text-align: right; + font-family: Verdana; + font-weight: 700; + font-size: 12px; + margin: 1px; + color: #fff; + text-shadow: 1px 1px 0 #000; + cursor: pointer; + overflow: visible; + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; + margin: 10px 7px 5px 5px; + float: none; + padding: 0; + margin: 0 40px; + cursor: default; +} + +.missions_units_wrapper .unit.hidden { + display: none; +} + +.missions_units_wrapper .unit:first-child { + margin: 0 39px; +} + +.missions_units_wrapper .text { + text-align: center; + line-height: 16px; + padding-top: 4px; +} + +.missions_units_wrapper .button { + width: 100%; +} + +.missions_collected_items_tooltip { + text-align: center; + min-width: 400px; +} + +.missions_collected_items_tooltip .description { + padding-top: 10px; + text-align: left; + margin: 0 10px; +} + +.missions_collected_items_tooltip .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: relative; + margin: 3px auto 10px auto; +} + +.missions_collected_items_tooltip .collected_items { + margin-top: 5px; +} + +.missions_collected_items_tooltip .collected_items .item { + display: inline-block; + box-shadow: inset 0 0 4px #000; + margin: 0 10px; +} + +.missions_collected_items_tooltip .collected_items .value { + margin-top: 25px; + margin-right: 1px; + margin-left: 0; + color: #fff; + font-weight: 600; + font-size: 12px; + text-align: right; + text-shadow: 1px 1px 0 #000; +} + +.missions_collected_items_tooltip ul { + list-style: square; + display: inline-block; + margin-top: 10px; +} + +.missions_collected_items_tooltip li { + text-align: left; +} + +.send_units { + width: 491px; + height: 332px; +} + +.send_units .unit_picker { + padding: 5px 20px 0; +} + +.send_units .unit_picker .units_box { + padding: 0 75px; +} + +.send_units .unit_picker .select_all { + display: none; +} + +.send_units .unit_picker .unit_container { + height: 82px; + width: 50px; +} + +.send_units .unit_picker .unit { + padding: 0; +} + +.send_units .unit_picker .txt_unit { + width: auto; +} + +.send_units .headline { + font-weight: 700; + text-align: center; + padding-top: 60px; + margin: 0 22px; + width: 450px; +} + +.send_units .headline .text { + width: 400px; + margin: 0 auto; +} + +.send_units .capacity_bar { + overflow: hidden; + height: 24px; + width: 370px; + margin-bottom: 3px; + display: inline-block; +} + +.send_units .btn_send_units { + position: absolute; + left: 200px; + top: 237px; + width: 109px; +} + +.send_units .unit_population_info .population_icon { + top: -102px; +} + +.send_units .unit_population_info .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + top: -87px; + left: 13px; +} + +.send_units .progressbar_wrapper { + position: relative; + width: 410px; + height: 24px; + top: 18px; + margin: auto; +} + +.send_units .progressbar_wrapper .population_icon { + display: inline-block; +} + +.send_units .mission_info_container { + position: absolute; + top: 205px; + left: 200px; +} + +.send_units .mission_info_container .mission_info_text { + font-weight: 600; + margin-right: 5px; + display: inline-block; + vertical-align: middle; +} + +.send_units .mission_info_container .mission_info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + display: inline-block; + vertical-align: middle; +} + +.missions_info { + padding: 20px 20px 10px 20px; +} + +.missions_info .headline { + font-weight: 600; + padding-bottom: 20px; +} + +.missions_info .details { + width: auto; +} + +.missions_info .details div { + margin-bottom: 10px; +} + +.event_icons .advent_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat 0 0; + width: 100px; + height: 100px; +} + +.event_icons .assassins_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -100px 0; + width: 100px; + height: 100px; +} + +.event_icons .campaign_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat 0 -100px; + width: 100px; + height: 100px; +} + +.event_icons .demeter_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -100px -100px; + width: 100px; + height: 100px; +} + +.event_icons .divine_trials_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -200px 0; + width: 100px; + height: 100px; +} + +.event_icons .easter_hen_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -200px -100px; + width: 100px; + height: 100px; +} + +.event_icons .grepolympia_worldcup_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat 0 -200px; + width: 100px; + height: 100px; +} + +.event_icons .gridevent_battleships_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -100px -200px; + width: 100px; + height: 100px; +} + +.event_icons .gridevent_gods_gifts_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -300px -300px; + width: 80px; + height: 80px; +} + +.event_icons .henolympia_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -200px -200px; + width: 100px; + height: 100px; +} + +.event_icons .incantation_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -300px 0; + width: 100px; + height: 100px; +} + +.event_icons .missions_dionysia_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -300px -100px; + width: 100px; + height: 100px; +} + +.event_icons .nwot_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -300px -200px; + width: 100px; + height: 100px; +} + +.event_icons .rota_epic_battle_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat 0 -300px; + width: 100px; + height: 100px; +} + +.event_icons .rota_spring_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -100px -300px; + width: 100px; + height: 100px; +} + +.event_icons .slinger_event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_icons/event_icons_100x100_9e93d37.png) no-repeat -200px -300px; + width: 100px; + height: 100px; +} + +.mission_result { + position: relative; + width: 493px; + height: 461px; + overflow: hidden; + z-index: 4; +} + +.mission_result .result_status { + position: relative; + text-align: center; + overflow: hidden; + width: 200px; + height: 55px; + top: 30px; + margin: auto; +} + +.mission_result .result_status div { + color: #fc6; + text-shadow: 1px 1px 0 #000; + font-size: 21px; + font-weight: 600; + margin-top: 0; +} + +.mission_result .result_box { + width: 332px; + height: 155px; + position: relative; + top: 55px; +} + +.mission_result .result_box .result_capture_text { + width: 100%; + height: 20px; + text-align: center; + color: #000; + font-size: 12px; + font-weight: 600; + margin-top: 5px; +} + +.mission_result .result_box .result_capture_image { + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + top: 10px; +} + +.mission_result .result_capture_banner { + position: absolute; + width: 100%; + text-align: center; + top: 172px; +} + +.mission_result .result_reward_box { + width: 100%; + position: absolute; + bottom: 42px; + height: 112px; +} + +.mission_result .result_reward_box .result_reward_title { + width: 100%; + text-align: center; + color: #fc6; + text-shadow: 1px 1px 0 #000; + font-weight: 600; +} + +.mission_result .result_reward_box .rewards { + position: relative; + height: 60px; + width: 245px; + margin: auto; + text-align: center; + top: 28px; +} + +.mission_result .result_reward_box .rewards .reward { + display: inline-block; + position: relative; +} + +.mission_result .result_reward_box .rewards .reward .reward_glow { + position: relative; + -webkit-animation: fadeInOutIn 5s ease infinite; + -ms-animation: fadeInOutIn 5s ease infinite; + animation: fadeInOutIn 5s ease infinite; +} + +.mission_result .result_reward_box .rewards .reward .reward_icon { + position: absolute; + top: 30px; + left: 30px; +} + +.mission_result .result_reward_box .rewards .reward .reward_amount { + position: absolute; + bottom: 12px; + width: 100%; + color: #fff; + text-shadow: 1px 1px 0 #000; + font-weight: 600; + text-align: center; +} + +.mission_result .button_container { + text-align: center; + position: absolute; + bottom: 15px; + width: 100%; +} + +.missions_dionysia .progress_bar_indicator { + width: 100%; + background-repeat: repeat-x; +} + +.missions_dionysia.mission_running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/active_mission_bg_a1b7d1b.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.missions_dionysia.mission_running .mission_title { + top: 65px; +} + +.missions_dionysia.mission_running .pg_free_boost .progress .indicator, +.missions_dionysia.mission_running .pg_mission_timer .progress .indicator, +.missions_dionysia.mission_running .pg_total .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/progress_bar_bordeaux_8cbcdc1.png) no-repeat 0 0; + width: 1px; + height: 18px; + background-repeat: repeat-x; +} + +.missions_dionysia.mission_running .pg_free_boost .progress .gold .indicator, +.missions_dionysia.mission_running .pg_mission_timer .progress .gold .indicator, +.missions_dionysia.mission_running .pg_total .progress .gold .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/progress_bar_gold_c552bce.png) no-repeat 0 0; + width: 1px; + height: 18px; + background-repeat: repeat-x; +} + +.missions_dionysia.mission_running .mission_image.mission_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -816px; + width: 321px; + height: 204px; +} + +.missions_dionysia.mission_running .mission_image.mission_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px 0; + width: 321px; + height: 204px; +} + +.missions_dionysia.mission_running .mission_image.mission_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -204px; + width: 321px; + height: 204px; +} + +.missions_dionysia.mission_running .mission_image.mission_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -408px; + width: 321px; + height: 204px; +} + +.missions_dionysia.mission_running .mission_image.mission_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -612px; + width: 321px; + height: 204px; +} + +.missions_dionysia.mission_running .mission_image.mission_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1020px; + width: 321px; + height: 204px; +} + +.missions_dionysia.collected_items_tooltip { + text-align: center; + min-width: 400px; +} + +.missions_dionysia.collected_items_tooltip .description { + padding-top: 10px; + text-align: left; + margin: 0 10px; +} + +.missions_dionysia.collected_items_tooltip .divider { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/shared/sprite_images/shared_event_images_6d2f35c.png) no-repeat -438px -300px; + width: 158px; + height: 1px; + position: relative; + margin: 3px auto 10px auto; +} + +.missions_dionysia.collected_items_tooltip .collected_items { + margin-top: 5px; +} + +.missions_dionysia.collected_items_tooltip .collected_items .item { + display: inline-block; + box-shadow: inset 0 0 4px #000; + margin: 0 10px; +} + +.missions_dionysia.collected_items_tooltip .collected_items .value { + margin-top: 25px; + margin-right: 1px; + margin-left: 0; + color: #fff; + font-weight: 600; + font-size: 12px; + text-align: right; + text-shadow: 1px 1px 0 #000; +} + +.missions_dionysia.collected_items_tooltip ul { + list-style: square; + display: inline-block; + margin-top: 10px; +} + +.missions_dionysia.collected_items_tooltip li { + text-align: left; +} + +.missions_dionysia .collected_items_indicator div { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1658px; + width: 27px; + height: 25px; + display: inline-block; + margin-right: 7px; + left: 1px; + top: -1px; +} + +.missions_dionysia.send_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/send_units_popup_6615113.png) no-repeat 0 0; + width: 491px; + height: 291px; +} + +.missions_dionysia.missions_list { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/mission_selection_bg_1fcc4f2.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.missions_dionysia.missions_list .mission_left { + margin-right: 25px; +} + +.missions_dionysia.missions_list .mission_left.mission_type_hunt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1981px -1617px; + width: 37px; + height: 25px; +} + +.missions_dionysia.missions_list .mission_left.mission_type_escort { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/island_quests/quest_details_8941e2d.png) no-repeat -644px -175px; + width: 50px; + height: 49px; +} + +.missions_dionysia.missions_list .mission_left.mission_type_search { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1666px -611px; + width: 30px; + height: 28px; +} + +.missions_dionysia.missions_list .details_resources_timer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1997px -1402px; + width: 25px; + height: 24px; +} + +.missions_dionysia.missions_list .details_ranking_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1728px -1658px; + width: 26px; + height: 25px; +} + +.missions_dionysia.missions_list .mission_timer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1997px -1402px; + width: 25px; + height: 24px; +} + +.missions_dionysia.missions_list .mission_ranking_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1728px -1658px; + width: 26px; + height: 25px; +} + +.missions_dionysia.missions_list .active_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -1147px; + width: 47px; + height: 47px; + left: 272px; + top: -77px; + position: relative; +} + +.missions_dionysia.missions_list .thumb.mission_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1535px -736px; + width: 90px; + height: 90px; +} + +.missions_dionysia.missions_list .thumb.mission_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1506px -989px; + width: 90px; + height: 90px; +} + +.missions_dionysia.missions_list .thumb.mission_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1917px -1527px; + width: 90px; + height: 90px; +} + +.missions_dionysia.missions_list .thumb.mission_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1495px -854px; + width: 90px; + height: 90px; +} + +.missions_dionysia.missions_list .thumb.mission_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -989px; + width: 90px; + height: 90px; +} + +.missions_dionysia.missions_list .thumb.mission_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1585px -854px; + width: 90px; + height: 90px; +} + +.missions_dionysia.missions_list .missions_list_index { + padding-top: 80px; +} + +.missions_dionysia.missions_list .missions_list_details { + padding-top: 68px; +} + +.missions_dionysia.missions_list .missions_list_details .details_description { + padding-top: 16px; +} + +.missions_dionysia.missions_list .missions_list_details .details { + height: 335px; + position: relative; +} + +.missions_dionysia.missions_list .missions_list_details .details_resources { + margin: 0; + width: 412px; + bottom: 47px; + left: 13px; + position: absolute; +} + +.missions_dionysia.missions_list .missions_list_details .details_resources_left { + margin-right: 0; + width: 110px; +} + +.missions_dionysia.missions_list .missions_list_details .details_resources_center { + margin: 0 5px; + width: 155px; +} + +.missions_dionysia.missions_list .missions_list_details .details_resources_right { + width: 110px; +} + +.missions_dionysia.missions_list .missions_list_details .details_resources_boost, +.missions_dionysia.missions_list .missions_list_details .details_resources_capacity, +.missions_dionysia.missions_list .missions_list_details .details_resources_timer { + margin-right: 5px; +} + +.missions_dionysia.missions_list .missions_list_details .btn_send_units { + bottom: 8px; + position: absolute; +} + +.missions_dionysia .mission_result { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/mission_popup_0a677f4.png) no-repeat 0 0; + width: 493px; + height: 462px; +} + +.missions_dionysia .missions_units_wrapper { + left: 27px; +} + +.missions_dionysia .missions_units_wrapper .missions_unit { + width: 115px; + margin-left: 0; + margin-right: 2px; +} + +.missions_dionysia .missions_units_wrapper .missions_unit .unit { + margin: 0; + left: 38px; + top: 4px; +} + +.missions_dionysia.unit_card .deco_statue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1495px -944px; + width: 171px; + height: 37px; + top: 197px; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + margin: 0; +} + +.missions_dionysia.unit_card .portrait .unit_icon228x165.dryads { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -230px 0; + width: 230px; + height: 166px; +} + +.missions_dionysia.unit_card .portrait .unit_icon228x165.high_priests { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -460px 0; + width: 230px; + height: 166px; +} + +.missions_dionysia.unit_card .portrait .unit_icon228x165.kanephoroi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat 0 -166px; + width: 230px; + height: 166px; +} + +.missions_dionysia.unit_card .portrait .unit_icon228x165.panes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat 0 0; + width: 230px; + height: 166px; +} + +.missions_dionysia.unit_card .portrait .unit_icon228x165.phallophoros { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -460px -166px; + width: 230px; + height: 166px; +} + +.missions_dionysia.unit_card .portrait .unit_icon228x165.silens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -230px -166px; + width: 230px; + height: 166px; +} + +.missions_dionysia.unit_card .statistics li { + width: 100%; + font-weight: 400; + position: relative; + line-height: initial; + height: auto; + background-color: rgba(163,119,73,.3); +} + +.missions_dionysia.unit_card .statistics li:nth-child(even) { + background-color: rgba(97,61,23,.3); +} + +.missions_dionysia.unit_card .statistics li span { + display: inline-block; + margin: 5px 5px; +} + +.missions_dionysia .collected_items .item[data-item_id=dryads], +.missions_dionysia .collected_items .item[data-unit_id=dryads], +.missions_dionysia .unit[data-item_id=dryads], +.missions_dionysia .unit[data-unit_id=dryads], +.missions_dionysia.unit[data-item_id=dryads], +.missions_dionysia.unit[data-unit_id=dryads] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat 0 -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia .collected_items .item[data-item_id=high_priests], +.missions_dionysia .collected_items .item[data-unit_id=high_priests], +.missions_dionysia .unit[data-item_id=high_priests], +.missions_dionysia .unit[data-unit_id=high_priests], +.missions_dionysia.unit[data-item_id=high_priests], +.missions_dionysia.unit[data-unit_id=high_priests] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -80px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia .collected_items .item[data-item_id=kanephoroi], +.missions_dionysia .collected_items .item[data-unit_id=kanephoroi], +.missions_dionysia .unit[data-item_id=kanephoroi], +.missions_dionysia .unit[data-unit_id=kanephoroi], +.missions_dionysia.unit[data-item_id=kanephoroi], +.missions_dionysia.unit[data-unit_id=kanephoroi] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -160px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia .collected_items .item[data-item_id=panes], +.missions_dionysia .collected_items .item[data-unit_id=panes], +.missions_dionysia .unit[data-item_id=panes], +.missions_dionysia .unit[data-unit_id=panes], +.missions_dionysia.unit[data-item_id=panes], +.missions_dionysia.unit[data-unit_id=panes] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -40px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia .collected_items .item[data-item_id=phallophoros], +.missions_dionysia .collected_items .item[data-unit_id=phallophoros], +.missions_dionysia .unit[data-item_id=phallophoros], +.missions_dionysia .unit[data-unit_id=phallophoros], +.missions_dionysia.unit[data-item_id=phallophoros], +.missions_dionysia.unit[data-unit_id=phallophoros] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -120px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia .collected_items .item[data-item_id=silens], +.missions_dionysia .collected_items .item[data-unit_id=silens], +.missions_dionysia .unit[data-item_id=silens], +.missions_dionysia .unit[data-unit_id=silens], +.missions_dionysia.unit[data-item_id=silens], +.missions_dionysia.unit[data-unit_id=silens] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/missions_units_a28ffd8.png) no-repeat -200px -332px; + width: 40px; + height: 40px; +} + +.missions_dionysia.collected_items { + height: 570px; + width: 770px; +} + +.missions_dionysia.collected_items .dialog_wrapper { + padding: 15px 20px 0; +} + +.missions_dionysia.collected_items .button_wrapper, +.missions_dionysia.collected_items .checkbox_container { + padding: 5px 0; +} + +.missions_dionysia.collected_items .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/Dionysia_gaining_units_bg_ca10bfb.png) no-repeat 0 0; + width: 752px; + height: 410px; + margin: 0 auto; +} + +.missions_dionysia.collected_items .values div { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1884px -1349px; + width: 122px; + height: 36px; + font-size: 16px; + position: absolute; + top: 350px; + line-height: 36px; + text-align: center; + font-weight: 600; + color: #edb; +} + +.missions_dionysia.collected_items .values div[data-item_id=panes] { + left: 45px; +} + +.missions_dionysia.collected_items .values div[data-item_id=silens] { + left: 155px; +} + +.missions_dionysia.collected_items .values div[data-item_id=phallophoros] { + left: 265px; +} + +.missions_dionysia.collected_items .values div[data-item_id=kanephoroi] { + left: 375px; +} + +.missions_dionysia.collected_items .values div[data-item_id=dryads] { + left: 500px; +} + +.missions_dionysia.collected_items .values div[data-item_id=high_priests] { + left: 610px; +} + +.missions_dionysia.welcome_window_container.missions_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/Dionysia_interstitials_end_f228257.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.missions_dionysia.welcome_window_container.missions_welcome { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/Dionysia_interstitials_start_a97f395.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.missions_dionysia.missions_end_interstitial .window_content, +.missions_dionysia.missions_welcome .window_content { + padding: 0; +} + +.missions_dionysia.missions_end_interstitial .yellowBox, +.missions_dionysia.missions_welcome .yellowBox { + top: 10px; + bottom: 15px; + left: 285px; + right: 0; +} + +.missions_dionysia.mission_rewards_list .badge.done { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1917px -1617px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .badge.new { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1578px -1079px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .badge.current { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1939px -1478px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .reward[data-reward_id=extra_reward] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1472px -1079px; + width: 60px; + height: 60px; +} + +.missions_dionysia.mission_collect_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/popup_reward_bg_0ddd996.png) no-repeat 0 0; + width: 491px; + height: 331px; +} + +.missions_dionysia.mission_collect_reward .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1224px; + width: 183px; + height: 178px; +} + +.missions_dionysia.mission_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/main_bg_3e166bf.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.missions_dionysia.mission_collection .ranking_reward_1 .reward.show_glow::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1224px; + width: 183px; + height: 178px; +} + +.missions_dionysia.mission_collection .countdown_box { + left: 50%; + transform: translate(-50%,0); +} + +.missions_dionysia.mission_collection .collection_box .gradient_box, +.missions_dionysia.mission_collection .collection_box_fade .gradient_box { + background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5)); + bottom: 0; + width: 100%; + height: 20px; + position: absolute; +} + +.missions_dionysia.mission_collection .collection_box .close_container_box, +.missions_dionysia.mission_collection .collection_box_fade .close_container_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -430px -1684px; + width: 308px; + height: 79px; +} + +.missions_dionysia.mission_collection .collection_box .cooldown_box, +.missions_dionysia.mission_collection .collection_box_fade .cooldown_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1402px; + width: 238px; + height: 125px; +} + +.missions_dionysia.mission_collection .collection_box .glow, +.missions_dionysia.mission_collection .collection_box_fade .glow { + background: 0 0; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="0"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="0"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_0_6f2b74a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="1"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_1_c466c95.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="2"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="2"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_2_8cafbc4.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="3"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="3"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_3_62e43d2.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="4"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="4"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_4_4814499.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="5"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="5"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_5_a617541.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="6"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="6"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_6_1d36d8a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="7"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="7"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_7_8d1b340.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box .symbols, +.missions_dionysia.mission_collection .collection_box_fade .symbols { + position: absolute; + content: ''; + -webkit-animation: fadeInOutIn 5s ease infinite; + -ms-animation: fadeInOutIn 5s ease infinite; + animation: fadeInOutIn 5s ease infinite; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_1, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1632px -480px; + width: 61px; + height: 72px; + top: 154px; + left: 175px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_2, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -1079px; + width: 56px; + height: 68px; + top: 184px; + left: 125px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_3, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1939px -1402px; + width: 58px; + height: 76px; + top: 141px; + left: 89px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_4, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1532px -1079px; + width: 46px; + height: 57px; + top: 112px; + left: 161px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_5, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1625px -736px; + width: 59px; + height: 69px; + top: 85px; + left: 107px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_6, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1632px -552px; + width: 50px; + height: 59px; + top: 48px; + left: 154px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_7, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1596px -989px; + width: 100px; + height: 71px; + top: -2px; + left: 113px; +} + +.missions_dionysia .collection_box .pg_cooldown .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/progress_bar_bordeaux_8cbcdc1.png) no-repeat 0 0; + width: 1px; + height: 18px; + background-repeat: repeat-x; +} + +.missions_dionysia .rewards_fade.reward_ranking_points .text { + top: 47px; +} + +.missions_dionysia .rewards_fade.reward_ranking_points .ranking_points_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -854px; + width: 79px; + height: 135px; +} + +.missions_dionysia.mission_rewards_list .badge.done { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1917px -1617px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .badge.new { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1578px -1079px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .badge.current { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1939px -1478px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .reward[data-reward_id=extra_reward] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1472px -1079px; + width: 60px; + height: 60px; +} + +.missions_dionysia.mission_collect_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/popup_reward_bg_0ddd996.png) no-repeat 0 0; + width: 491px; + height: 331px; +} + +.missions_dionysia.mission_collect_reward .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1224px; + width: 183px; + height: 178px; +} + +.missions_dionysia.mission_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/main_bg_3e166bf.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.missions_dionysia.mission_collection .ranking_reward_1 .reward.show_glow::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1224px; + width: 183px; + height: 178px; +} + +.missions_dionysia.mission_collection .countdown_box { + left: 50%; + transform: translate(-50%,0); +} + +.missions_dionysia.mission_collection .collection_box .gradient_box, +.missions_dionysia.mission_collection .collection_box_fade .gradient_box { + background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5)); + bottom: 0; + width: 100%; + height: 20px; + position: absolute; +} + +.missions_dionysia.mission_collection .collection_box .close_container_box, +.missions_dionysia.mission_collection .collection_box_fade .close_container_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -430px -1684px; + width: 308px; + height: 79px; +} + +.missions_dionysia.mission_collection .collection_box .cooldown_box, +.missions_dionysia.mission_collection .collection_box_fade .cooldown_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1402px; + width: 238px; + height: 125px; +} + +.missions_dionysia.mission_collection .collection_box .glow, +.missions_dionysia.mission_collection .collection_box_fade .glow { + background: 0 0; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="0"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="0"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_0_6f2b74a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="1"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_1_c466c95.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="2"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="2"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_2_8cafbc4.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="3"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="3"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_3_62e43d2.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="4"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="4"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_4_4814499.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="5"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="5"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_5_a617541.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="6"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="6"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_6_1d36d8a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="7"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="7"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_7_8d1b340.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box .symbols, +.missions_dionysia.mission_collection .collection_box_fade .symbols { + position: absolute; + content: ''; + -webkit-animation: fadeInOutIn 5s ease infinite; + -ms-animation: fadeInOutIn 5s ease infinite; + animation: fadeInOutIn 5s ease infinite; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_1, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1632px -480px; + width: 61px; + height: 72px; + top: 154px; + left: 175px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_2, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -1079px; + width: 56px; + height: 68px; + top: 184px; + left: 125px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_3, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1939px -1402px; + width: 58px; + height: 76px; + top: 141px; + left: 89px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_4, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1532px -1079px; + width: 46px; + height: 57px; + top: 112px; + left: 161px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_5, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1625px -736px; + width: 59px; + height: 69px; + top: 85px; + left: 107px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_6, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1632px -552px; + width: 50px; + height: 59px; + top: 48px; + left: 154px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_7, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1596px -989px; + width: 100px; + height: 71px; + top: -2px; + left: 113px; +} + +.missions_dionysia.missions_overall_ranking .ranking_place[data-rank="1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1684px; + width: 430px; + height: 132px; +} + +.missions_dionysia.missions_overall_ranking .ranking_place[data-rank="2"], +.missions_dionysia.missions_overall_ranking .ranking_place[data-rank="3"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -480px; + width: 216px; + height: 131px; +} + +.missions_dionysia.missions_overall_ranking .ranking_place { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1527px; + width: 216px; + height: 131px; +} + +.missions_dionysia.mission_rewards_list .badge.done { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1917px -1617px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .badge.new { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1578px -1079px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .badge.current { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1939px -1478px; + width: 64px; + height: 40px; +} + +.missions_dionysia.mission_rewards_list .reward[data-reward_id=extra_reward] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1472px -1079px; + width: 60px; + height: 60px; +} + +.missions_dionysia.mission_collect_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/popup_reward_bg_0ddd996.png) no-repeat 0 0; + width: 491px; + height: 331px; +} + +.missions_dionysia.mission_collect_reward .reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1224px; + width: 183px; + height: 178px; +} + +.missions_dionysia.mission_collection { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/main_bg_3e166bf.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.missions_dionysia.mission_collection .ranking_reward_1 .reward.show_glow::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1224px; + width: 183px; + height: 178px; +} + +.missions_dionysia.mission_collection .countdown_box { + left: 50%; + transform: translate(-50%,0); +} + +.missions_dionysia.mission_collection .collection_box .gradient_box, +.missions_dionysia.mission_collection .collection_box_fade .gradient_box { + background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5)); + bottom: 0; + width: 100%; + height: 20px; + position: absolute; +} + +.missions_dionysia.mission_collection .collection_box .close_container_box, +.missions_dionysia.mission_collection .collection_box_fade .close_container_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -430px -1684px; + width: 308px; + height: 79px; +} + +.missions_dionysia.mission_collection .collection_box .cooldown_box, +.missions_dionysia.mission_collection .collection_box_fade .cooldown_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1402px; + width: 238px; + height: 125px; +} + +.missions_dionysia.mission_collection .collection_box .glow, +.missions_dionysia.mission_collection .collection_box_fade .glow { + background: 0 0; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="0"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="0"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_0_6f2b74a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="1"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_1_c466c95.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="2"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="2"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_2_8cafbc4.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="3"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="3"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_3_62e43d2.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="4"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="4"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_4_4814499.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="5"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="5"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_5_a617541.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="6"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="6"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_6_1d36d8a.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box[data-sub_level="7"], +.missions_dionysia.mission_collection .collection_box_fade[data-sub_level="7"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/step_7_8d1b340.png) no-repeat 0 0; + width: 708px; + height: 248px; +} + +.missions_dionysia.mission_collection .collection_box .symbols, +.missions_dionysia.mission_collection .collection_box_fade .symbols { + position: absolute; + content: ''; + -webkit-animation: fadeInOutIn 5s ease infinite; + -ms-animation: fadeInOutIn 5s ease infinite; + animation: fadeInOutIn 5s ease infinite; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_1, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1632px -480px; + width: 61px; + height: 72px; + top: 154px; + left: 175px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_2, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -1079px; + width: 56px; + height: 68px; + top: 184px; + left: 125px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_3, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1939px -1402px; + width: 58px; + height: 76px; + top: 141px; + left: 89px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_4, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1532px -1079px; + width: 46px; + height: 57px; + top: 112px; + left: 161px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_5, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1625px -736px; + width: 59px; + height: 69px; + top: 85px; + left: 107px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_6, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1632px -552px; + width: 50px; + height: 59px; + top: 48px; + left: 154px; +} + +.missions_dionysia.mission_collection .collection_box .symbols.symbol_glow_7, +.missions_dionysia.mission_collection .collection_box_fade .symbols.symbol_glow_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1596px -989px; + width: 100px; + height: 71px; + top: -2px; + left: 113px; +} + +.missions_dionysia.missions_overall_ranking .ranking_place[data-rank="1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1684px; + width: 430px; + height: 132px; +} + +.missions_dionysia.missions_overall_ranking .ranking_place[data-rank="2"], +.missions_dionysia.missions_overall_ranking .ranking_place[data-rank="3"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px -480px; + width: 216px; + height: 131px; +} + +.missions_dionysia.missions_overall_ranking .ranking_place { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1701px -1527px; + width: 216px; + height: 131px; +} + +.missions_dionysia.mission_result { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/single_images/mission_popup_0a677f4.png) no-repeat 0 0; + width: 493px; + height: 462px; +} + +.missions_dionysia.mission_result .result_box { + margin: auto; +} + +.missions_dionysia.mission_result.success .result_capture_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -327px -1816px; + width: 327px; + height: 148px; +} + +.missions_dionysia.mission_result.success .result_capture_banner { + display: none; +} + +.missions_dionysia.mission_result.failure .result_capture_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1816px; + width: 327px; + height: 148px; +} + +.missions_dionysia.mission_result.failure .result_capture_text { + display: none; +} + +.missions_tutorial .speechbubble { + position: absolute; + width: 430px; + right: 15px; + top: 45px; +} + +.missions_tutorial .speechbubble .content { + min-height: 310px; +} + +.missions_tutorial .speechbubble .speechbubble_arrow_l { + left: -6px; + top: 55px; +} + +.missions_tutorial .speechbubble .button_wrapper { + width: 100%; + text-align: center; +} + +.missions_tutorial .speechbubble .btn_wnd.close { + top: 6px; + right: 8px; + position: absolute; +} + +.missions_tutorial .text { + margin: 20px 0 10px 5px; +} + +.missions_tutorial .tutorial_image { + margin: 5px auto; + position: relative; +} + +.missions_tutorial .image_text_wrapper { + position: absolute; + top: 14px; + left: 24px; + width: 331px; + height: 181px; +} + +.missions_tutorial .image_text_wrapper .headline { + margin-top: 2px; + margin-bottom: 10px; + font-weight: 600; + text-align: center; +} + +.missions_tutorial .character { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1416px 0; + width: 285px; + height: 480px; + position: absolute; + bottom: 8px; + left: 7px; +} + +.missions_tutorial.step_1 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1209px -1240px; + width: 403px; + height: 222px; +} + +.missions_tutorial.step_2 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1462px; + width: 403px; + height: 222px; +} + +.missions_tutorial.step_3 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -1209px -1462px; + width: 403px; + height: 222px; +} + +.missions_tutorial.step_4 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -806px -1240px; + width: 403px; + height: 222px; +} + +.missions_tutorial.step_5 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -403px -1462px; + width: 403px; + height: 222px; +} + +.missions_tutorial.step_6 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -806px -1462px; + width: 403px; + height: 222px; +} + +.missions_tutorial.step_7 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -708px -992px; + width: 403px; + height: 222px; +} + +.missions_tutorial.step_8 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat 0 -1240px; + width: 403px; + height: 222px; +} + +.missions_tutorial.step_9 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/missions/dionysia/dionysia_overall_af8f24a.png) no-repeat -403px -1240px; + width: 403px; + height: 222px; +} + +.missions_overall_ranking { + height: 420px; + width: 710px; + position: relative; + overflow: hidden; +} + +.missions_overall_ranking .overall_ranking_wrapper { + padding: 20px; + text-align: center; +} + +.missions_overall_ranking .overall_ranking_wrapper .ranking_row { + width: 100%; + text-align: center; + margin-top: 15px; +} + +.missions_overall_ranking .overall_ranking_wrapper .ranking_place { + display: inline-block; + position: relative; +} + +.missions_overall_ranking .overall_ranking_wrapper .ranking_place .caption { + position: absolute; + width: 100%; + top: 4px; + font-size: 16px; + font-weight: 600; + color: #fc6; +} + +.missions_overall_ranking .overall_ranking_wrapper .ranking_place[data-rank="1"] .caption { + top: 8px; + left: 2px; +} + +.missions_overall_ranking .overall_ranking_wrapper .ranking_place[data-rank="1"] .rewards { + left: 110px; +} + +.missions_overall_ranking .overall_ranking_wrapper .ranking_place[data-rank="1"] .award { + right: 90px; +} + +.missions_overall_ranking .overall_ranking_wrapper .rewards { + left: 35px; + bottom: 17px; + position: absolute; +} + +.missions_overall_ranking .overall_ranking_wrapper .rewards .reward { + display: inline-block; + margin-right: 15px; +} + +.missions_overall_ranking .overall_ranking_wrapper .rewards .reward_icon { + overflow: visible; +} + +.missions_overall_ranking .overall_ranking_wrapper .rewards .reward_icon:not(.instant_gold) .amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -444px -90px; + width: 26px; + height: 26px; + position: absolute; + top: -5px; + right: -5px; + text-align: center; + line-height: 26px; + color: #ecb44d; +} + +.missions_overall_ranking .overall_ranking_wrapper .award { + display: inline-block; + right: 25px; + bottom: 10px; + position: absolute; +} + +.missions_overall_ranking .overall_ranking_wrapper .no_award .rewards { + left: 0; + right: 0; +} + +.missions_overall_ranking .overall_ranking_wrapper .no_award .rewards .reward { + margin: 0; +} + +.survey_icons .feedback_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/survey/icons_b582679.png) no-repeat -156px 0; + width: 92px; + height: 69px; +} + +.survey_icons .feedback_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/survey/icons_b582679.png) no-repeat 0 -98px; + width: 92px; + height: 69px; +} + +.survey_icons .poll_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/survey/icons_b582679.png) no-repeat 0 0; + width: 78px; + height: 98px; +} + +.survey_icons .poll_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/survey/icons_b582679.png) no-repeat -78px 0; + width: 78px; + height: 98px; +} + +.notification .community_goal_reached { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat 0 0; + width: 40px; + height: 40px; +} + +.notification .mass_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat -40px 0; + width: 40px; + height: 40px; +} + +.notification .notification_domination { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat 0 -40px; + width: 40px; + height: 40px; +} + +.notification .notification_ww { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat -40px -40px; + width: 40px; + height: 40px; +} + +.notification .planned_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/notifications/icons_ba99621.png) no-repeat -80px 0; + width: 40px; + height: 40px; +} + +.ui_highlights .circle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat -186px -21px; + width: 53px; + height: 53px; +} + +.ui_highlights .powers_list { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat 0 0; + width: 186px; + height: 44px; +} + +.ui_highlights .resources { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat 0 -44px; + width: 91px; + height: 56px; +} + +.ui_highlights .square { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat 0 -100px; + width: 63px; + height: 63px; +} + +.ui_highlights .square_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat -239px -21px; + width: 39px; + height: 39px; +} + +.ui_highlights .unit_box_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat 0 -163px; + width: 147px; + height: 21px; +} + +.ui_highlights .unit_box_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat -186px 0; + width: 147px; + height: 21px; +} + +.ui_highlights_single_images .unit_box_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/single_images/unit_box_middle_5e4eb1a.png) no-repeat 0 0; + width: 147px; + height: 1px; +} + +@-webkit-keyframes fade_and_blink_animation { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-ms-keyframes fade_and_blink_animation { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@keyframes fade_and_blink_animation { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.units_land .ui_highlight[data-type=land_units_bar], +.units_land .ui_highlight[data-type=naval_units_bar], +.units_naval .ui_highlight[data-type=land_units_bar], +.units_naval .ui_highlight[data-type=naval_units_bar] { + top: 0; + left: 0; + height: 100%; + width: 100%; + z-index: 6; + padding-top: 10px; + padding-bottom: 18px; + box-sizing: border-box; +} + +.units_land .ui_highlight[data-type=land_units_bar] .ui_highlight_top, +.units_land .ui_highlight[data-type=naval_units_bar] .ui_highlight_top, +.units_naval .ui_highlight[data-type=land_units_bar] .ui_highlight_top, +.units_naval .ui_highlight[data-type=naval_units_bar] .ui_highlight_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat -186px 0; + width: 147px; + height: 21px; + top: -16px; + position: relative; +} + +.units_land .ui_highlight[data-type=land_units_bar] .ui_highlight_middle, +.units_land .ui_highlight[data-type=naval_units_bar] .ui_highlight_middle, +.units_naval .ui_highlight[data-type=land_units_bar] .ui_highlight_middle, +.units_naval .ui_highlight[data-type=naval_units_bar] .ui_highlight_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/single_images/unit_box_middle_5e4eb1a.png) no-repeat 0 0; + width: 147px; + height: 1px; + background-repeat: repeat-y; + position: relative; + height: 100%; + top: -16px; +} + +.units_land .ui_highlight[data-type=land_units_bar] .ui_highlight_bottom, +.units_land .ui_highlight[data-type=naval_units_bar] .ui_highlight_bottom, +.units_naval .ui_highlight[data-type=land_units_bar] .ui_highlight_bottom, +.units_naval .ui_highlight[data-type=naval_units_bar] .ui_highlight_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat 0 -163px; + width: 147px; + height: 21px; + bottom: 16px; + position: relative; +} + +.ui_highlight { + position: absolute; + display: none; + user-select: none; + pointer-events: none; +} + +.ui_highlight.fade_and_blink { + -webkit-animation: fade_and_blink_animation 1s infinite; + -ms-animation: fade_and_blink_animation 1s infinite; + animation: fade_and_blink_animation 1s infinite; +} + +.ui_highlight[data-type=main_menu] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat -186px -21px; + width: 53px; + height: 53px; + top: -11px; + right: -10px; +} + +.ui_highlight[data-type=resource_bar] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat 0 -44px; + width: 91px; + height: 56px; +} + +.ui_highlight[data-type=resource_bar][data-subtype=iron], +.ui_highlight[data-type=resource_bar][data-subtype=population], +.ui_highlight[data-type=resource_bar][data-subtype=stone], +.ui_highlight[data-type=resource_bar][data-subtype=wood] { + top: -12px; + right: -12px; +} + +.ui_highlight[data-type=gods_area][data-subtype=favor] { + top: -36px; + right: -10px; +} + +.ui_highlight[data-type=bubble_menu] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat -239px -21px; + width: 39px; + height: 39px; + top: -7px; + left: -7px; + z-index: 5; +} + +.ui_highlight[data-type=casted_powers_bar] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/ui_highlights/ui_highlights_01dfe7d.png) no-repeat 0 0; + width: 186px; + height: 44px; + top: 15px; + left: 10px; + z-index: 5; +} + +.god_selection { + width: 786px; + height: 504px; + position: relative; + margin: 10px; +} + +.god_selection .background { + position: absolute; + right: 10px; + bottom: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/buildings/temple_ea3cf9c.jpg) no-repeat 0 0; + width: 500px; + height: 400px; + margin-right: 17px; + margin-bottom: 17px; +} + +.god_selection #temple_button { + position: absolute; +} + +.god_selection #temple_priest_hint { + left: 7px; +} + +.god_selection #temple_favor_bar, +.god_selection #temple_fury_bar { + position: absolute; + left: 100px; +} + +.god_selection #temple_favor_bar .favor_bar, +.god_selection #temple_fury_bar .favor_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -235px -525px; + width: 290px; + height: 47px; +} + +.god_selection #temple_favor_bar .resource_icon, +.god_selection #temple_fury_bar .resource_icon { + position: absolute; + top: 7px; + left: 5px; +} + +.god_selection #temple_favor_bar { + top: 305px; +} + +.god_selection #temple_favor_bar .resource_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat 0 -60px; + width: 30px; + height: 30px; +} + +.god_selection #temple_fury_bar { + top: 360px; +} + +.god_selection #temple_fury_bar .resource_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -90px 0; + width: 30px; + height: 30px; +} + +.god_selection #temple_favor_bar_progress, +.god_selection #temple_fury_bar_progress { + position: absolute; + left: 40px; + width: 246px; +} + +.god_selection #temple_fury_bar_progress { + height: 100%; +} + +.god_selection #temple_fury_bar_progress .body, +.god_selection #temple_fury_bar_progress .border_l, +.god_selection #temple_fury_bar_progress .border_r { + display: none; +} + +.god_selection #temple_fury_bar_progress .caption { + text-shadow: none; + color: #000; + font-weight: 400; +} + +.god_selection #temple_fury_bar_progress .progress { + left: 0; + right: 0; + top: 25px; +} + +.god_selection #temple_fury_bar_progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -543px; + width: 246px; + height: 18px; +} + +.god_selection #temple_favor_bar_progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -525px; + width: 246px; + height: 18px; +} + +.god_selection .js-list-viewport { + height: 360px; + overflow: visible; + top: 5px; + width: 58px; +} + +.god_selection .js-list { + width: 50px; + right: 0; + left: 0; +} + +.god_selection .js-list .aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -290px 0; + width: 235px; + height: 236px; +} + +.god_selection .js-list .aphrodite_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -437px; + width: 50px; + height: 50px; +} + +.god_selection .js-list .ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 -289px; + width: 235px; + height: 236px; +} + +.god_selection .js-list .ares_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -487px; + width: 50px; + height: 50px; +} + +.god_selection .js-list .arrow_button_down { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -737px; + width: 45px; + height: 15px; +} + +.god_selection .js-list .arrow_button_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -860px -472px; + width: 45px; + height: 15px; +} + +.god_selection .js-list .arrow_button_up { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -905px -472px; + width: 45px; + height: 14px; +} + +.god_selection .js-list .arrow_button_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -950px -472px; + width: 45px; + height: 14px; +} + +.god_selection .js-list .artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -235px -289px; + width: 235px; + height: 236px; +} + +.god_selection .js-list .artemis_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -537px; + width: 50px; + height: 50px; +} + +.god_selection .js-list .athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px 0; + width: 235px; + height: 236px; +} + +.god_selection .js-list .athena_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -587px; + width: 50px; + height: 50px; +} + +.god_selection .js-list .favor_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -525px; + width: 246px; + height: 18px; +} + +.god_selection .js-list .fury_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -543px; + width: 246px; + height: 18px; +} + +.god_selection .js-list .god_select { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -380px; + width: 58px; + height: 57px; +} + +.god_selection .js-list .hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -236px; + width: 235px; + height: 236px; +} + +.god_selection .js-list .hades_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -637px; + width: 50px; + height: 50px; +} + +.god_selection .js-list .hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -760px 0; + width: 235px; + height: 236px; +} + +.god_selection .js-list .hera_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -687px; + width: 50px; + height: 50px; +} + +.god_selection .js-list .none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 0; + width: 290px; + height: 289px; +} + +.god_selection .js-list .poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -760px -236px; + width: 235px; + height: 236px; +} + +.god_selection .js-list .poseidon_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -760px -472px; + width: 50px; + height: 50px; +} + +.god_selection .js-list .resbar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -235px -525px; + width: 290px; + height: 47px; +} + +.god_selection .js-list .selection_column_fade_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -860px -487px; + width: 58px; + height: 10px; +} + +.god_selection .js-list .selection_column_fade_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -918px -487px; + width: 58px; + height: 10px; +} + +.god_selection .js-list .temple_slider_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px 0; + width: 71px; + height: 380px; +} + +.god_selection .js-list .zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 -525px; + width: 235px; + height: 236px; +} + +.god_selection .js-list .zeus_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -810px -472px; + width: 50px; + height: 50px; +} + +.god_selection .js-list>li { + margin: 5px auto; +} + +.god_selection .js-list>li.selected::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -380px; + width: 58px; + height: 57px; + content: ''; + position: absolute; + margin-left: -4px; + margin-top: -3px; +} + +.god_selection #temple_gods { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px 0; + width: 71px; + height: 380px; + position: absolute; + left: 10px; + top: 6px; + margin: 20px auto; +} + +.god_selection #temple_gods .btn_left, +.god_selection #temple_gods .btn_right { + position: absolute; + left: 14px; +} + +.god_selection #temple_gods .btn_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -905px -472px; + width: 45px; + height: 14px; + top: -15px; +} + +.god_selection #temple_gods .btn_left:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -950px -472px; + width: 45px; + height: 14px; +} + +.god_selection #temple_gods .btn_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -737px; + width: 45px; + height: 15px; + bottom: -15px; +} + +.god_selection #temple_gods .btn_right:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -860px -472px; + width: 45px; + height: 15px; +} + +.god_selection #temple_gods .content { + height: 370px; + margin: 5px 0 5px 7px; + padding: 0; + overflow: hidden; + position: absolute; + width: 70px; +} + +.god_selection #temple_gods .content .fade_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -918px -487px; + width: 58px; + height: 10px; + position: absolute; + top: 0; + left: 0; +} + +.god_selection #temple_gods .content .fade_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -860px -487px; + width: 58px; + height: 10px; + position: absolute; + bottom: 0; + left: 0; +} + +.god_selection #temple_gods.animated .js-list { + -webkit-transition: top .1s linear; + -moz-transition: top .1s linear; + -ms-transition: top .1s linear; + -o-transition: top .1s linear; + transition: top .1s linear; +} + +.domination .banner_red_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -346px -170px; + width: 172px; + height: 26px; +} + +.domination .banner_red_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -174px -170px; + width: 172px; + height: 26px; +} + +.domination .button_frame_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -7px -332px; + width: 7px; + height: 65px; +} + +.domination .button_frame_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 -332px; + width: 7px; + height: 65px; +} + +.domination .dominance_icon_free_cities { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -588px -200px; + width: 30px; + height: 30px; +} + +.domination .dominance_icon_own_alliance { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -588px -230px; + width: 30px; + height: 30px; +} + +.domination .dominance_icon_world_cities { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -120px -272px; + width: 30px; + height: 30px; +} + +.domination .domination_timer_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 -170px; + width: 174px; + height: 30px; +} + +.domination .map_icon_60x60 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -348px -200px; + width: 60px; + height: 60px; +} + +.domination .map_icon_60x60_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -528px -200px; + width: 60px; + height: 60px; +} + +.domination .map_icon_peace60x60 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -408px -200px; + width: 60px; + height: 60px; +} + +.domination .rank2_60x60 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -60px -272px; + width: 60px; + height: 60px; +} + +.domination .rank2_72x72 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -216px -200px; + width: 72px; + height: 72px; +} + +.domination .rank3_60x60 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 -272px; + width: 60px; + height: 60px; +} + +.domination .rank3_72x72 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -144px -200px; + width: 72px; + height: 72px; +} + +.domination .rank4_60x60 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -288px -200px; + width: 60px; + height: 60px; +} + +.domination .rank4_72x72 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -72px -200px; + width: 72px; + height: 72px; +} + +.domination .rank5_60x60 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -468px -200px; + width: 60px; + height: 60px; +} + +.domination .rank5_72x72 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 -200px; + width: 72px; + height: 72px; +} + +.domination .ranking_last_stand_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -518px -170px; + width: 20px; + height: 21px; +} + +.domination .strategic_map_icon_star { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -538px -170px; + width: 12px; + height: 14px; +} + +.domination .winner_pedestal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 0; + width: 631px; + height: 170px; +} + +.domination_single_images .banner_red_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/banner_red_middle_30d496b.png) no-repeat 0 0; + width: 1px; + height: 26px; +} + +.domination_single_images .button_frame_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/button_frame_middle_40214f1.png) no-repeat 0 0; + width: 54px; + height: 65px; +} + +.domination_single_images .dominance_end_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/dominance_end_bg_f013f43.jpg) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.domination_single_images .dominance_last_stand_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/dominance_last_stand_bg_870c8ba.jpg) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.domination_single_images .dominance_start_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/dominance_start_bg_adbf78f.jpg) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.domination_single_images .domination_bg_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/domination_bg_banner_21369c5.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.domination_single_images .domination_bg_banner_curtain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/domination_bg_banner_curtain_ae0ead1.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.domination_single_images .domination_ranking_flags { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/domination_ranking_flags_2d414e9.png) no-repeat 0 0; + width: 631px; + height: 170px; +} + +.domination_single_images .header_brown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/header_brown_27eb26b.png) no-repeat 0 0; + width: 150px; + height: 80px; +} + +.domination_single_images .ranking_last_stand_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/ranking_last_stand_highlight_8a2ed34.png) no-repeat 0 0; + width: 739px; + height: 1px; +} + +#map.night #map_towns div.domination_area_marker, +#map_towns div.domination_area_marker { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -348px -200px; + width: 60px; + height: 60px; +} + +#map.night #map_towns div.domination_area_marker .domination_area_marker_glow, +#map.night #map_towns div.domination_area_marker .tile, +#map_towns div.domination_area_marker .domination_area_marker_glow, +#map_towns div.domination_area_marker .tile { + position: absolute; + top: 0; + left: 0; +} + +#map.night #map_towns div.domination_area_marker .domination_area_marker_glow, +#map_towns div.domination_area_marker .domination_area_marker_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -528px -200px; + width: 60px; + height: 60px; + -webkit-animation: fadeOutIn 1s ease-in-out infinite alternate; + -ms-animation: fadeOutIn 1s ease-in-out infinite alternate; + animation: fadeOutIn 1s ease-in-out infinite alternate; +} + +#map.night #map_towns div.domination_area_marker a.tile, +#map_towns div.domination_area_marker a.tile { + background: 0 0; + width: 100%; + height: 100%; + cursor: move; +} + +#map.night #map_towns div.domination_area_marker.post_domination, +#map_towns div.domination_area_marker.post_domination { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -408px -200px; + width: 60px; + height: 60px; +} + +#map.night #map_towns div.domination_area_marker.post_domination .domination_area_marker_glow, +#map_towns div.domination_area_marker.post_domination .domination_area_marker_glow { + display: none; + -webkit-animation: none; + -ms-animation: none; + animation: none; +} + +.domination .window_content .domination_ranking { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/domination_bg_banner_21369c5.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.domination .window_content .domination_info, +.domination .window_content .domination_status { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/domination_bg_banner_curtain_ae0ead1.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.domination .domination_ranking .available_artifact { + width: 30px; +} + +.domination .domination_ranking .available_artifact>div { + margin: auto; +} + +.domination .domination_ranking .ranking_change_countdown { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 -170px; + width: 174px; + height: 30px; + top: 10px; + left: 291px; + text-align: center; + line-height: 27px; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + color: #fc6; +} + +.domination .domination_ranking .ranking_change_countdown .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + top: 2px; + right: 5px; +} + +.domination .domination_ranking.post_domination .ranking_change_countdown, +.domination .domination_ranking.pre_domination .ranking_change_countdown { + display: none; +} + +.domination .domination_ranking .ranking { + position: absolute; + width: 700px; + height: 320px; + bottom: 20px; + left: 35px; +} + +.domination .domination_ranking .game_border { + height: 290px; + overflow: hidden; +} + +.domination .domination_ranking .main_ranking .header_data:nth-child(2) { + width: 150px; +} + +.domination .domination_ranking .winner_pedestal_wrapper { + position: absolute; + top: 33px; + left: 67px; +} + +.domination .domination_ranking .winner_pedestal_wrapper .winner_pedestal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 0; + width: 631px; + height: 170px; + position: absolute; + pointer-events: none; +} + +.domination .domination_ranking .winner_pedestal_wrapper .winner_pedestal .winner_rank { + color: #edb; + font-weight: 600; + width: 30px; + height: 30px; + position: absolute; + line-height: 30px; + text-align: center; +} + +.domination .domination_ranking .winner_pedestal_wrapper .winner_pedestal .rank_2 { + top: 117px; + left: 208px; +} + +.domination .domination_ranking .winner_pedestal_wrapper .winner_pedestal .rank_3 { + top: 117px; + right: 208px; +} + +.domination .domination_ranking .winner_pedestal_wrapper .winner_pedestal .rank_1 { + top: 100px; + left: 300px; +} + +.domination .domination_ranking .winner_pedestal_wrapper .alliance_flag { + position: absolute; + width: 44px; + height: 46px; +} + +.domination .domination_ranking .winner_pedestal_wrapper .alliance_flag img { + width: 100%; +} + +.domination .domination_ranking .winner_pedestal_wrapper .flag_1 { + left: 294px; + top: 37px; +} + +.domination .domination_ranking .winner_pedestal_wrapper .flag_3 { + left: 386px; + top: 53px; +} + +.domination .domination_ranking .winner_pedestal_wrapper .flag_2 { + left: 200px; + top: 53px; +} + +.domination .domination_ranking .brown_header_light tbody tr.row_highlight, +.domination .domination_ranking .brown_header_light tbody tr.row_highlight.highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/ranking_last_stand_highlight_8a2ed34.png) no-repeat 0 0; + width: 739px; + height: 1px; + height: 26px; + background-repeat: repeat-y; +} + +.domination .domination_ranking .brown_header_light tbody tr.row_highlight td:last-child::after, +.domination .domination_ranking .brown_header_light tbody tr.row_highlight.highlight td:last-child::after { + content: ''; + position: absolute; + top: 1px; + right: 0; + left: 0; + margin: 0 auto; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -518px -170px; + width: 20px; + height: 21px; +} + +.domination .domination_ranking .highlight .alliance_link:not(:hover), +.domination .domination_ranking .search_highlight .alliance_link:not(:hover) { + color: #000; +} + +.domination .domination_info.domination .progress_wrapper .progress_title { + top: 50%; + position: relative; + margin-top: -10px; + margin-left: 20px; + margin-right: 20px; +} + +.domination .domination_info.domination .progress_wrapper .progress_title.without_alliance { + margin-top: -22px; +} + +.domination .domination_info.domination .alliance_wrapper { + position: absolute; + width: 100%; + bottom: 5px; +} + +.domination .domination_info.domination .alliance_wrapper .alliance_button_label { + padding-top: 5px; +} + +.domination .domination_info .progress_wrapper { + position: absolute; + width: 600px; + height: 120px; + top: 50px; + left: 85px; + text-align: center; +} + +.domination .domination_info .progress_wrapper .progress_title { + text-align: center; + font-weight: 600; + margin-top: 27px; +} + +.domination .domination_info .progress_wrapper .pg_progress_era { + margin-top: 3px; + width: 500px; + display: inline-block; +} + +.domination .domination_info .progress_wrapper .progress_bar_wrapper { + position: relative; +} + +.domination .domination_info .progress_wrapper .progress_bar_wrapper .pg_progress_era_countdown { + width: 100%; + text-align: center; + color: #fff; + position: absolute; + font-weight: 600; + top: 6px; + z-index: 2002; +} + +.domination .domination_info .progress_wrapper .title { + font-weight: 600; +} + +.domination .domination_info .info_wrapper { + position: absolute; + width: 716px; + top: 192px; + left: 27px; + height: 335px; + overflow: hidden; + text-align: center; +} + +.domination .domination_info .info_wrapper .description { + text-align: center; + margin: 12px 0; +} + +.domination .domination_info .info_wrapper .gift_curtain { + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/large_banner_curtain_0ba6ebd.png) no-repeat 0 -157px; + width: 417px; + height: 157px; +} + +.domination .domination_info .info_wrapper .rewards { + margin-top: 20px; + display: inline-block; +} + +.domination .domination_info .info_wrapper .reward_scroll_large { + width: 370px; +} + +.domination .domination_info .info_wrapper .scroll li { + display: inline-block; + vertical-align: middle; + margin-right: -15px; + margin-left: -15px; + position: relative; +} + +.domination .domination_info .info_wrapper .glow { + margin-top: -20px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px 0; + width: 119px; + height: 118px; +} + +.domination .domination_info .info_wrapper .js-scrollbar-content { + margin: 0 25px; +} + +.domination .domination_info .info_wrapper .domination_crown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -216px -200px; + width: 72px; + height: 72px; + position: absolute; + top: 0; + left: 26px; +} + +.domination .domination_info .info_wrapper .domination_reward { + position: absolute; + top: 10px; + left: 33px; +} + +.domination .domination_info .info_wrapper .domination_award { + position: absolute; + top: 0; + left: 20px; +} + +.domination .domination_info .info_wrapper .domination_peace_wrapper, +.domination .domination_info .info_wrapper .domination_rule_wrapper { + margin: 15px 0 10px; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper { + text-align: left; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/header_brown_27eb26b.png) no-repeat 0 0; + width: 150px; + height: 80px; + background-repeat: repeat-x; + height: 30px; + line-height: 30px; + width: 100%; + cursor: pointer; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .header .text { + color: #fff; + text-shadow: 1px 1px 0 #000; + font-weight: 600; + display: inline-block; + margin-left: 5px; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper.close .arrow { + width: 0; + height: 0; + border-top: 8px solid transparent; + border-bottom: 8px solid transparent; + border-left: 8px solid #fff; + margin-left: 18px; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper.close .rules { + display: none; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper.open .arrow { + width: 0; + height: 0; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-top: 8px solid #fff; + margin-left: 10px; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper.open .expand_text { + display: none; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .arrow { + display: inline-block; + vertical-align: middle; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .domination_rule_description { + min-height: 50px; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .expand_text { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + padding-left: 18px; + height: 30px; + line-height: 30px; + border-bottom: 1px solid #82775f; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .rules { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + padding-left: 18px; + padding-right: 18px; + height: auto; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .rules p { + margin: 0; + padding-top: 10px; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .rules ul { + list-style: disc; + padding-left: 30px; +} + +.domination .domination_info .info_wrapper .domination_rule_wrapper .rules ul:last-child { + padding-bottom: 10px; +} + +.domination_winner_ranks .winner_rank[data-rank=rank2] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -60px -272px; + width: 60px; + height: 60px; +} + +.domination_winner_ranks .winner_rank[data-rank=rank3] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 -272px; + width: 60px; + height: 60px; +} + +.domination_winner_ranks .winner_rank[data-rank=rank4] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -288px -200px; + width: 60px; + height: 60px; +} + +.domination_winner_ranks .winner_rank[data-rank=rank5] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -468px -200px; + width: 60px; + height: 60px; +} + +.domination_winner_ranks .winner_rank .caption, +.domination_winner_ranks .winner_rank .icon { + display: inline-block; + vertical-align: middle; + max-width: 300px; +} + +.domination_status .icon, +.domination_status .info_icon, +.domination_status .valid_towns .text { + display: inline-block; + vertical-align: middle; +} + +.domination_status .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; +} + +.domination_status .world { + position: relative; + top: 54px; + margin: 10px 30px; +} + +.domination_status .alliance_status_wrapper { + position: relative; + top: 50px; + height: 100px; + margin: 0 100px; + padding: 20px 0 18px; +} + +.domination_status .alliance_status_wrapper #caption { + display: inline-block; + vertical-align: middle; + line-height: 13px; +} + +.domination_status .alliance_status_wrapper .title { + position: absolute; + color: #fff; + top: 0; + width: 100%; + text-align: center; +} + +.domination_status .alliance_status { + height: 50px; + line-height: 50px; +} + +.domination_status .alliance_status #caption { + width: 160px; + margin-right: 5px; +} + +.domination_status .alliance_status .pg_alliance_status { + display: inline-block; + vertical-align: middle; + width: 355px; +} + +.domination_status .alliance_status_empty { + height: 100px; + line-height: 100px; + text-align: center; +} + +.domination_status .alliance_total { + height: 50px; + line-height: 50px; +} + +.domination_status .alliance_total .icon_wrapper { + width: 12px; + height: 16px; + margin: 17px 15px 0 0; + float: left; +} + +.domination_status .alliance_total .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -588px -230px; + width: 30px; + height: 30px; + bottom: 17px; + right: 6px; + position: relative; +} + +.domination_status .alliance_total #caption { + max-width: 460px; +} + +.domination_status .alliance_total .town_count { + display: inline-block; + vertical-align: middle; + margin-left: 5px; +} + +.domination_status .last_stand_wrapper, +.domination_status .world_status_wrapper { + position: relative; + width: 338px; + height: 200px; +} + +.domination_status .last_stand_wrapper .game_header, +.domination_status .world_status_wrapper .game_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/header_brown_27eb26b.png) no-repeat 0 0; + width: 150px; + height: 80px; + background-repeat: repeat-x; + height: 17px; + width: 325px; +} + +.domination_status .last_stand_wrapper .game_body, +.domination_status .world_status_wrapper .game_body { + height: 172px; +} + +.domination_status .world_status_wrapper { + float: left; +} + +.domination_status .world_status_wrapper .valid_towns { + margin: 10px; +} + +.domination_status .world_status_wrapper .valid_towns.total .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -120px -272px; + width: 30px; + height: 30px; +} + +.domination_status .world_status_wrapper .valid_towns.free .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -588px -200px; + width: 30px; + height: 30px; +} + +.domination_status .world_status_wrapper .btn_world_view { + left: 103px; + bottom: 5px; + position: absolute; +} + +.domination_status .world_status_wrapper .text { + max-width: 270px; +} + +.domination_status .last_stand_wrapper { + float: right; +} + +.domination_status .last_stand_wrapper .info_icon { + position: absolute; + right: 5px; + top: 0; +} + +.domination_status .last_stand_wrapper .activated .button_frame { + display: none; +} + +.domination_status .last_stand_wrapper .wrapper { + margin: 10px; +} + +.domination_status .last_stand_wrapper .text { + font-weight: 600; + padding-bottom: 5px; +} + +.domination_status .last_stand_wrapper .button_frame_wrapper { + text-align: center; + width: 96%; + bottom: 10px; + position: absolute; +} + +.domination_status .last_stand_wrapper .button_frame { + display: inline-block; +} + +.domination_status .last_stand_wrapper .button_frame .button_frame_left, +.domination_status .last_stand_wrapper .button_frame .button_frame_middle, +.domination_status .last_stand_wrapper .button_frame .button_frame_right { + display: inline-block; + position: relative; +} + +.domination_status .last_stand_wrapper .button_frame .button_frame_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat 0 -332px; + width: 7px; + height: 65px; + float: left; +} + +.domination_status .last_stand_wrapper .button_frame .button_frame_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/sprite_images/domination_d3e215b.png) no-repeat -7px -332px; + width: 7px; + height: 65px; + float: left; +} + +.domination_status .last_stand_wrapper .button_frame .button_frame_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/button_frame_middle_40214f1.png) no-repeat 0 0; + width: 54px; + height: 65px; + background-repeat: repeat-x; + width: auto; + float: left; +} + +.domination_status .last_stand_wrapper .button_frame .last_stand_btn { + margin-top: 10px; + min-width: 305px; +} + +.domination_status .last_stand_wrapper .progress_wrapper { + position: relative; +} + +.domination_status .last_stand_wrapper .progress_wrapper .last_stand_countdown { + width: 100%; + text-align: center; + color: #fff; + position: absolute; + font-weight: 600; + top: 4px; + z-index: 2002; +} + +.map_movements .movement_icon_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/movements/sprite_images/map_movements_dfb84f2.png) no-repeat 0 0; + width: 25px; + height: 33px; +} + +.map_movements .movement_icon_return_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/movements/sprite_images/map_movements_dfb84f2.png) no-repeat -25px 0; + width: 19px; + height: 19px; +} + +.map_movements_single_images .map_movement_path { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/movements/single_images/map_movement_path_d55270e.png) no-repeat 0 0; + width: 13px; + height: 13px; +} + +.map_movements_single_images .map_movement_path_darker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/movements/single_images/map_movement_path_darker_e3fd91c.png) no-repeat 0 0; + width: 13px; + height: 13px; +} + +@-webkit-keyframes moveToEnd { + to { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + -o-transform: translateX(100%); + transform: translateX(100%); + } +} + +@-ms-keyframes moveToEnd { + to { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + -o-transform: translateX(100%); + transform: translateX(100%); + } +} + +@keyframes moveToEnd { + to { + -webkit-transform: translateX(100%); + -ms-transform: translateX(100%); + -o-transform: translateX(100%); + transform: translateX(100%); + } +} + +#map_movements { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 2; +} + +#map_movements .movement_main { + position: absolute; + z-index: 4; + height: 13px; + -webkit-transform-origin: 0; + transform-origin: 0; + text-align: center; +} + +#map_movements .movement_main .movement_path_wrapper { + height: 100%; + display: inline-block; + vertical-align: top; +} + +#map_movements .movement_main .movement_path { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/movements/single_images/map_movement_path_d55270e.png) no-repeat 0 0; + width: 13px; + height: 13px; + background-repeat: repeat; + overflow: hidden; + width: 100%; +} + +#map_movements .movement_main .movement_moving_path { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/movements/single_images/map_movement_path_darker_e3fd91c.png) no-repeat 0 0; + width: 13px; + height: 13px; + width: 100%; +} + +#map_movements .movement_main .movement_icon_wrapper { + position: relative; + left: 0; + height: 62px; + top: -43px; +} + +#map_movements .movement_main .movement_icon { + position: absolute; + height: 33px; + width: 25px; + -webkit-transform-origin: 100%; + transform-origin: 100%; + transform-origin: bottom right; +} + +#map_movements .movement_main .movement_icon .movement_icon_indicator { + position: absolute; + left: 50%; +} + +#map_movements .movement_main .movement_icon .movement_icon_indicator.attack_land { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/movements/sprite_images/map_movements_dfb84f2.png) no-repeat 0 0; + width: 25px; + height: 33px; +} + +#map_movements .movement_main .movement_icon .movement_icon_indicator.incoming:after { + content: ''; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/movements/sprite_images/map_movements_dfb84f2.png) no-repeat -25px 0; + width: 19px; + height: 19px; + position: absolute; + top: 2px; + left: 3px; +} + +.map_general .map_asset_large_temple_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat -108px -30px; + width: 20px; + height: 21px; +} + +.map_general .map_asset_olympus_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat -108px 0; + width: 30px; + height: 30px; +} + +.map_general .map_asset_small_temple_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat -108px -51px; + width: 20px; + height: 21px; +} + +.map_general .olympus_temple_tooltip_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat -49px 0; + width: 59px; + height: 72px; +} + +.map_general .olympus_temple_tooltip_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat 0 0; + width: 49px; + height: 92px; +} + +.main_ranking { + width: 100%; +} + +.main_ranking table { + border-spacing: 0; + border-collapse: collapse; + width: 100%; +} + +.main_ranking.brown_header_light thead tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/header_brown_27eb26b.png) no-repeat 0 0; + width: 150px; + height: 80px; +} + +.main_ranking.purple_header thead tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/header_purple_7c5e2e6.png) no-repeat 0 0; + width: 150px; + height: 80px; +} + +.main_ranking.brown_header_light thead tr, +.main_ranking.green_header thead tr, +.main_ranking.purple_header thead tr { + background-repeat: repeat-x; + height: 30px; + text-align: center; + color: #fff; + text-shadow: 1px 1px 0 #000; + border-bottom: 1px solid #d0be97; + position: relative; + cursor: default; +} + +.main_ranking.brown_header_light tbody tr, +.main_ranking.green_header tbody tr, +.main_ranking.purple_header tbody tr { + text-align: center; + height: 26px; + position: relative; + cursor: default; +} + +.main_ranking.brown_header_light tbody tr.highlight, +.main_ranking.brown_header_light tbody tr.search_highlight, +.main_ranking.green_header tbody tr.highlight, +.main_ranking.green_header tbody tr.search_highlight, +.main_ranking.purple_header tbody tr.highlight, +.main_ranking.purple_header tbody tr.search_highlight { + background-color: #f5d590; + font-weight: 600; +} + +.main_ranking.brown_header_light tbody td, +.main_ranking.green_header tbody td, +.main_ranking.purple_header tbody td { + position: relative; +} + +.main_ranking.brown_header_light tbody tr:nth-child(even).highlight, +.main_ranking.brown_header_light tbody tr:nth-child(odd).highlight, +.main_ranking.green_header tbody tr:nth-child(even).highlight, +.main_ranking.green_header tbody tr:nth-child(odd).highlight, +.main_ranking.purple_header tbody tr:nth-child(even).highlight, +.main_ranking.purple_header tbody tr:nth-child(odd).highlight { + background: 0 0; +} + +.main_ranking.brown_header_light tbody tr:nth-child(odd), +.main_ranking.green_header tbody tr:nth-child(odd), +.main_ranking.purple_header tbody tr:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +.main_ranking.brown_header_light tbody tr:nth-child(even), +.main_ranking.green_header tbody tr:nth-child(even), +.main_ranking.purple_header tbody tr:nth-child(even) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; +} + +.main_ranking .header { + position: relative; + left: -2px; + height: 26px; + line-height: 26px; +} + +.main_ranking .header .main_ranking_pgr { + float: left; + margin-top: 3px; + width: 295px; +} + +.main_ranking .header .jump_to_my_rank { + float: right; + margin-top: 1px; + display: inline-block; + max-width: 130px; +} + +.main_ranking .header .search_wrapper { + float: right; + width: 240px; + display: inline-block; + margin-top: 1px; + padding-left: 5px; + padding-right: 5px; +} + +.main_ranking .header .main_ranking_search_btn, +.main_ranking .header .main_ranking_search_textbox { + display: inline-block; + float: right; +} + +.main_ranking .header .main_ranking_search_btn { + max-width: 130px; +} + +.main_ranking .header .main_ranking_search_textbox input { + max-width: 100px; +} + +.artifact_distribution_tooltip .artifact { + float: left; +} + +.artifact_distribution_tooltip .description { + margin-left: 66px; +} + +.collected_items .dialog_wrapper { + padding: 0 20px 20px; +} + +.collected_items .dialog_wrapper .text { + padding-bottom: 10px; +} + +.collected_items .dialog_wrapper .btn_confirm { + min-width: 120px; +} + +.collected_items .dialog_wrapper .btn_confirm, +.collected_items .dialog_wrapper .checkbox_container { + text-align: center; +} + +.collected_items .headline { + padding: 10px 0; +} + +.collected_items .dialog_wrapper, +.collected_items .headline { + text-align: center; +} + +.collected_items_tooltip { + text-align: center; + min-width: 450px; +} + +.collected_items_tooltip h3 { + margin-bottom: 5px; +} + +.collected_items_tooltip .description { + padding-top: 10px; + text-align: left; + margin: 0 10px; +} + +.collected_items_tooltip .collected_items { + margin-top: 10px; +} + +.collected_items_tooltip .collected_items .item { + display: inline-block; + margin-left: -55px; +} + +.collected_items_tooltip .collected_items .value { + margin-top: 25px; + margin-left: 76px; + color: #000; + font-weight: 600; + font-size: 15px; + text-align: right; + white-space: nowrap; +} + +.collected_items_tooltip ul { + list-style: square; + display: inline-block; + margin-top: 10px; + margin-bottom: 15px; +} + +.collected_items_tooltip ul li { + text-align: left; +} + +.collected_items_indicator div { + display: inline-block; + position: relative; +} + +.collected_items_indicator div.new:after { + content: ''; + position: absolute; + right: -4px; + top: 0; + background: #e72200; + height: 6px; + width: 6px; + border-radius: 50%; +} + +.profile_domination_crowns .rank1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat 0 0; + width: 100px; + height: 33px; +} + +.profile_domination_crowns .rank2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat 0 -33px; + width: 100px; + height: 33px; +} + +.profile_domination_crowns .rank3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat 0 -66px; + width: 100px; + height: 33px; +} + +.profile_domination_crowns .rank4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat -100px 0; + width: 100px; + height: 33px; +} + +.profile_domination_crowns .rank5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/domination/profile_crowns_e656c58.png) no-repeat -100px -33px; + width: 100px; + height: 33px; +} + +.profile_wonders_crowns .rank1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat 0 0; + width: 100px; + height: 33px; +} + +.profile_wonders_crowns .rank2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat 0 -33px; + width: 100px; + height: 33px; +} + +.profile_wonders_crowns .rank3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat 0 -66px; + width: 100px; + height: 33px; +} + +.profile_wonders_crowns .rank4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat -100px 0; + width: 100px; + height: 33px; +} + +.profile_wonders_crowns .rank5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/wonders/profile_crowns_df3b8a8.png) no-repeat -100px -33px; + width: 100px; + height: 33px; +} + +.profile_olympus_crowns .rank1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank1_64c39bb.png) no-repeat 0 0; + width: 363px; + height: 167px; +} + +.profile_olympus_crowns .rank2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank2_3ba1f67.png) no-repeat 0 0; + width: 363px; + height: 171px; +} + +.profile_olympus_crowns .rank3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank3_16f5baa.png) no-repeat 0 0; + width: 363px; + height: 171px; +} + +.profile_olympus_crowns .rank4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank4_d9d7333.png) no-repeat 0 0; + width: 363px; + height: 171px; +} + +.profile_olympus_crowns .rank5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/profile/olympus/rank5_f1a4b1a.png) no-repeat 0 0; + width: 363px; + height: 171px; +} + +.notification_popup.domination_era_started, +.notification_popup.domination_value_reached { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/dominance_start_bg_adbf78f.jpg) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.domination_last_stand_failed, +.notification_popup.domination_last_stand_started { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/dominance_last_stand_bg_870c8ba.jpg) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.domination_world_won { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/domination/single_images/dominance_end_bg_f013f43.jpg) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.olympus_small_temple_stage_started { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_small_temple_stage_notification_837493a.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.notification_popup.olympus_large_temple_stage_started { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_large_temple_stage_notification_b79dca5.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.notification_popup.olympus_olympus_stage_started { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_olympus_stage_notification_a4aa530.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.notification_popup.olympus_olympus_jumped { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_olympus_jumped_notification_d476755.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.notification_popup.olympus_olympus_conquered { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_olympus_conquered_notification_86faf4b.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.notification_popup.olympus_post_temple_stage_started { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_post_temple_stage_notification_05b0b8f.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.notification_popup.world_wonders_end, +.notification_popup.world_wonders_start { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_general_notification_e848f8c.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonders_end.small_window, +.notification_popup.world_wonders_start.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_general_notification_small_window_668d6f9.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.colossus_of_rhodes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_colossus_c3621be.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.colossus_of_rhodes.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_colossus_small_window_4703f65.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.hanging_gardens_of_babylon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_gardens_2b72845.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.hanging_gardens_of_babylon.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_gardens_small_window_8bef888.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.lighthouse_of_alexandria { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_lighthouse_ca1ecfe.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.lighthouse_of_alexandria.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_lighthouse_small_window_15e4541.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.mausoleum_of_halicarnassus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_mausoleum_6338b29.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.mausoleum_of_halicarnassus.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_mausoleum_small_window_8370860.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.great_pyramid_of_giza { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_pyramids_ea8b8bf.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.great_pyramid_of_giza.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_pyramids_small_window_7242aa4.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.statue_of_zeus_at_olympia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_zeus_25bc873.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.statue_of_zeus_at_olympia.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_zeus_small_window_dc81615.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.temple_of_artemis_at_ephesus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_temple_69834fa.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed.temple_of_artemis_at_ephesus.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_temple_small_window_1264cd9.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_completed .description { + color: #fff; + padding: 5px 92px 5px 98px; + max-height: 80px; + overflow: hidden; + position: relative; + top: 9px; + max-height: 140px; +} + +.notification_popup.world_wonder_damaged { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_battle_notification_40c1cdb.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_damaged.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_battle_notification_small_window_dc8723e.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_upgraded { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_construction_notification_be0a0bd.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_upgraded.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_construction_notification_small_window_e6cbf8b.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonders_all_built { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_won_notification_6b8c056.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonders_all_built.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_won_notification_small_window_aaf61d3.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonders_winner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_won_notification_6b8c056.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonders_winner.small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_won_notification_small_window_aaf61d3.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.world_wonder_damaged .description, +.notification_popup.world_wonder_upgraded .description, +.notification_popup.world_wonders_all_built .description, +.notification_popup.world_wonders_end .description, +.notification_popup.world_wonders_start .description, +.notification_popup.world_wonders_winner .description { + color: #fff; + padding: 5px 92px 5px 98px; + max-height: 80px; + overflow: hidden; + position: relative; + top: 9px; +} + +.notification_popup.world_wonder_completed .banner_wrapper, +.notification_popup.world_wonder_damaged .banner_wrapper, +.notification_popup.world_wonder_upgraded .banner_wrapper, +.notification_popup.world_wonders_all_built .banner_wrapper, +.notification_popup.world_wonders_end .banner_wrapper, +.notification_popup.world_wonders_start .banner_wrapper, +.notification_popup.world_wonders_winner .banner_wrapper { + padding-top: 20px; +} + +.notification_popup.world_wonder_completed .banner_left, +.notification_popup.world_wonder_damaged .banner_left, +.notification_popup.world_wonder_upgraded .banner_left, +.notification_popup.world_wonders_all_built .banner_left, +.notification_popup.world_wonders_end .banner_left, +.notification_popup.world_wonders_start .banner_left, +.notification_popup.world_wonders_winner .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -89px -164px; + width: 89px; + height: 64px; +} + +.notification_popup.world_wonder_completed .banner_middle, +.notification_popup.world_wonder_damaged .banner_middle, +.notification_popup.world_wonder_upgraded .banner_middle, +.notification_popup.world_wonders_all_built .banner_middle, +.notification_popup.world_wonders_end .banner_middle, +.notification_popup.world_wonders_start .banner_middle, +.notification_popup.world_wonders_winner .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_green_short_middle_91dabb6.png) no-repeat 0 0; + width: 1px; + height: 64px; +} + +.notification_popup.world_wonder_completed .banner_right, +.notification_popup.world_wonder_damaged .banner_right, +.notification_popup.world_wonder_upgraded .banner_right, +.notification_popup.world_wonders_all_built .banner_right, +.notification_popup.world_wonders_end .banner_right, +.notification_popup.world_wonders_start .banner_right, +.notification_popup.world_wonders_winner .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -178px -164px; + width: 89px; + height: 64px; +} + +.notification_popup.olympus_large_temple_stage_started .description, +.notification_popup.olympus_olympus_conquered .description, +.notification_popup.olympus_olympus_jumped .description, +.notification_popup.olympus_olympus_stage_started .description, +.notification_popup.olympus_post_temple_stage_started .description, +.notification_popup.olympus_small_temple_stage_started .description { + color: #fff; + padding: 5px 92px 5px 98px; + max-height: 80px; + overflow: hidden; +} + +.notification_popup.olympus_large_temple_stage_started .alliance_link, +.notification_popup.olympus_olympus_conquered .alliance_link, +.notification_popup.olympus_olympus_jumped .alliance_link, +.notification_popup.olympus_olympus_stage_started .alliance_link, +.notification_popup.olympus_post_temple_stage_started .alliance_link, +.notification_popup.olympus_small_temple_stage_started .alliance_link { + color: #ffdc8a; +} + +.notification_popup.olympus_large_temple_stage_started .alliance_link:hover, +.notification_popup.olympus_olympus_conquered .alliance_link:hover, +.notification_popup.olympus_olympus_jumped .alliance_link:hover, +.notification_popup.olympus_olympus_stage_started .alliance_link:hover, +.notification_popup.olympus_post_temple_stage_started .alliance_link:hover, +.notification_popup.olympus_small_temple_stage_started .alliance_link:hover { + color: #0082be; +} + +.notification_popup.olympus_large_temple_stage_started .banner_left, +.notification_popup.olympus_olympus_conquered .banner_left, +.notification_popup.olympus_olympus_jumped .banner_left, +.notification_popup.olympus_olympus_stage_started .banner_left, +.notification_popup.olympus_post_temple_stage_started .banner_left, +.notification_popup.olympus_small_temple_stage_started .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -89px -228px; + width: 89px; + height: 64px; +} + +.notification_popup.olympus_large_temple_stage_started .banner_middle, +.notification_popup.olympus_olympus_conquered .banner_middle, +.notification_popup.olympus_olympus_jumped .banner_middle, +.notification_popup.olympus_olympus_stage_started .banner_middle, +.notification_popup.olympus_post_temple_stage_started .banner_middle, +.notification_popup.olympus_small_temple_stage_started .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_purple_middle_9400555.png) no-repeat 0 0; + width: 1px; + height: 64px; +} + +.notification_popup.olympus_large_temple_stage_started .banner_right, +.notification_popup.olympus_olympus_conquered .banner_right, +.notification_popup.olympus_olympus_jumped .banner_right, +.notification_popup.olympus_olympus_stage_started .banner_right, +.notification_popup.olympus_post_temple_stage_started .banner_right, +.notification_popup.olympus_small_temple_stage_started .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -178px -228px; + width: 89px; + height: 64px; +} + +.notification_popup.domination_era_started .banner_left, +.notification_popup.domination_last_stand_failed .banner_left, +.notification_popup.domination_last_stand_started .banner_left, +.notification_popup.domination_value_reached .banner_left, +.notification_popup.domination_world_won .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -222px -60px; + width: 110px; + height: 60px; +} + +.notification_popup.domination_era_started .banner_middle, +.notification_popup.domination_last_stand_failed .banner_middle, +.notification_popup.domination_last_stand_started .banner_middle, +.notification_popup.domination_value_reached .banner_middle, +.notification_popup.domination_world_won .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/red_triple_ribbon_middle_05679c4.png) no-repeat 0 0; + width: 1px; + height: 60px; +} + +.notification_popup.domination_era_started .banner_right, +.notification_popup.domination_last_stand_failed .banner_right, +.notification_popup.domination_last_stand_started .banner_right, +.notification_popup.domination_value_reached .banner_right, +.notification_popup.domination_world_won .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat -222px 0; + width: 110px; + height: 60px; +} + +.notification_popup.artifact_ambrosia_level_received .banner_wrapper, +.notification_popup.artifact_athenas_cornucopia_level_received .banner_wrapper, +.notification_popup.artifact_golden_fleece_level_received .banner_wrapper, +.notification_popup.artifact_palladion_level_received .banner_wrapper, +.notification_popup.artifact_silver_kantharos_level_received .banner_wrapper, +.notification_popup.artifact_zeus_spark_level_received .banner_wrapper { + padding-top: 20px; +} + +.notification_popup.artifact_ambrosia_level_received .banner_wrapper .banner_title, +.notification_popup.artifact_athenas_cornucopia_level_received .banner_wrapper .banner_title, +.notification_popup.artifact_golden_fleece_level_received .banner_wrapper .banner_title, +.notification_popup.artifact_palladion_level_received .banner_wrapper .banner_title, +.notification_popup.artifact_silver_kantharos_level_received .banner_wrapper .banner_title, +.notification_popup.artifact_zeus_spark_level_received .banner_wrapper .banner_title { + color: #fff; +} + +.notification_popup.artifact_ambrosia_level_received .banner_left, +.notification_popup.artifact_athenas_cornucopia_level_received .banner_left, +.notification_popup.artifact_golden_fleece_level_received .banner_left, +.notification_popup.artifact_palladion_level_received .banner_left, +.notification_popup.artifact_silver_kantharos_level_received .banner_left, +.notification_popup.artifact_zeus_spark_level_received .banner_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 -164px; + width: 89px; + height: 64px; +} + +.notification_popup.artifact_ambrosia_level_received .banner_middle, +.notification_popup.artifact_athenas_cornucopia_level_received .banner_middle, +.notification_popup.artifact_golden_fleece_level_received .banner_middle, +.notification_popup.artifact_palladion_level_received .banner_middle, +.notification_popup.artifact_silver_kantharos_level_received .banner_middle, +.notification_popup.artifact_zeus_spark_level_received .banner_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/single_images/ribbon_orange_middle_0cc85a8.png) no-repeat 0 0; + width: 1px; + height: 64px; +} + +.notification_popup.artifact_ambrosia_level_received .banner_right, +.notification_popup.artifact_athenas_cornucopia_level_received .banner_right, +.notification_popup.artifact_golden_fleece_level_received .banner_right, +.notification_popup.artifact_palladion_level_received .banner_right, +.notification_popup.artifact_silver_kantharos_level_received .banner_right, +.notification_popup.artifact_zeus_spark_level_received .banner_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ribbon/sprite_images/ribbon_2f6ee00.png) no-repeat 0 -228px; + width: 89px; + height: 64px; +} + +.notification_popup.artifact_ambrosia_level_received .description, +.notification_popup.artifact_athenas_cornucopia_level_received .description, +.notification_popup.artifact_golden_fleece_level_received .description, +.notification_popup.artifact_palladion_level_received .description, +.notification_popup.artifact_silver_kantharos_level_received .description, +.notification_popup.artifact_zeus_spark_level_received .description { + position: absolute; + left: 0; + right: 0; + bottom: 90px; + width: 560px; + margin: 0 auto; + color: #fff; +} + +.notification_popup.artifact_ambrosia_level_received .button_wrapper, +.notification_popup.artifact_athenas_cornucopia_level_received .button_wrapper, +.notification_popup.artifact_golden_fleece_level_received .button_wrapper, +.notification_popup.artifact_palladion_level_received .button_wrapper, +.notification_popup.artifact_silver_kantharos_level_received .button_wrapper, +.notification_popup.artifact_zeus_spark_level_received .button_wrapper { + bottom: 12px; +} + +.notification_popup.artifact_ambrosia_level_received { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_ambrosia_dd52914.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.artifact_athenas_cornucopia_level_received { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_athenas_cornucopia_5e1de9e.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.artifact_golden_fleece_level_received { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_golden_fleece_b0af758.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.artifact_palladion_level_received { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_palladion_ae3cdfc.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.artifact_silver_kantharos_level_received { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_silver_kantharos_a725af4.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup.artifact_zeus_spark_level_received { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_zeus_spark_418e19b.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.notification_popup .banner_wrapper { + width: 100%; + text-align: center; + padding-top: 10px; +} + +.notification_popup .banner_wrapper .banner { + display: inline-block; +} + +.notification_popup .banner_wrapper .part { + float: left; +} + +.notification_popup .banner_wrapper .banner_middle { + background-repeat: repeat-x; + width: auto; +} + +.notification_popup .banner_wrapper .banner_title { + line-height: 38px; + white-space: nowrap; + text-overflow: ellipsis; + font-weight: 600; + color: #fc6; + text-shadow: 1px 1px 0 #000; +} + +.notification_popup .description { + padding: 15px; +} + +.notification_popup .description_with_transparent_background { + color: #fff; + padding: 5px 92px 5px 98px; + max-height: 80px; + overflow: hidden; +} + +.notification_popup .button_wrapper { + position: absolute; + bottom: 26px; + width: 250px; + height: 30px; + left: 224px; + text-align: center; +} + +.notification_popup .button_wrapper .close_btn { + min-width: 235px; +} + +.casual_worlds_blessed_town .bowl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/casual_worlds_blessed_town/sprite_images/casual_worlds_blessed_town_b4c1f30.png) no-repeat 0 0; + width: 570px; + height: 170px; +} + +.casual_worlds_blessed_town .tyches_blessing_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/casual_worlds_blessed_town/sprite_images/casual_worlds_blessed_town_b4c1f30.png) no-repeat 0 -170px; + width: 160px; + height: 160px; +} + +.casual_worlds_blessed_town_single_images .agora_blessing_tab_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/casual_worlds_blessed_town/single_images/agora_blessing_tab_bg_2d1ef1f.png) no-repeat 0 0; + width: 808px; + height: 503px; +} + +.blessed_tab_content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/casual_worlds_blessed_town/single_images/agora_blessing_tab_bg_2d1ef1f.png) no-repeat 0 0; + width: 808px; + height: 503px; + position: absolute; + overflow: hidden; + top: -9px; + left: -9px; +} + +.blessed_tab_content.blessed .tyches_blessing_effect { + overflow: visible; +} + +.blessed_tab_content.blessed .tyches_blessing_effect::before { + content: ''; + position: absolute; + top: -55px; + left: -42px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/casual_worlds_blessed_town/sprite_images/casual_worlds_blessed_town_b4c1f30.png) no-repeat 0 -170px; + width: 160px; + height: 160px; + pointer-events: none; +} + +.blessed_tab_content .header { + width: 100%; + text-align: center; + height: 140px; + top: 35px; + position: absolute; +} + +.blessed_tab_content .header .description { + color: #fff; + display: inline-block; + width: 680px; + margin-top: 5px; + text-shadow: 1px 1px 0 #000; +} + +.blessed_tab_content .content_wrapper { + width: 100%; + text-align: center; + height: 205px; + bottom: 85px; + position: absolute; + z-index: 0; +} + +.blessed_tab_content .content_wrapper .content { + width: 750px; + height: 100%; + display: inline-block; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); +} + +.blessed_tab_content .content_wrapper .content .game_border { + height: 100%; +} + +.blessed_tab_content .content_wrapper .content .change_blessed_town_text, +.blessed_tab_content .content_wrapper .content .changing_question, +.blessed_tab_content .content_wrapper .content .waiting_info { + padding: 10px; + font-weight: 600; +} + +.blessed_tab_content .content_wrapper .content .new_city_selection { + background-image: url(https://gpfr.innogamescdn.com/images/game/border/brown.png); + border-bottom: 1px solid #bfa978; + border-top: 1px solid #bfa978; + text-align: left; + padding: 5px 10px; + font-weight: 600; +} + +.blessed_tab_content .content_wrapper .content .new_city_selection .text { + float: left; + max-width: 500px; +} + +.blessed_tab_content .content_wrapper .content #dd_towns { + width: 180px; + float: right; +} + +.blessed_tab_content .footer { + width: 100%; + text-align: center; + height: 170px; + bottom: 0; + position: absolute; + pointer-events: none; +} + +.blessed_tab_content .footer .bowl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/casual_worlds_blessed_town/sprite_images/casual_worlds_blessed_town_b4c1f30.png) no-repeat 0 0; + width: 570px; + height: 170px; + display: inline-block; +} + +#dd_towns_list.dropdown-list.default .item-list { + max-height: 126px; +} + +.town_overlay_images .city_fire_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_fire_1_12235c1.png) no-repeat 0 0; + width: 89px; + height: 80px; +} + +.town_overlay_images .city_fire_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_fire_2_d5f22a5.png) no-repeat 0 0; + width: 88px; + height: 80px; +} + +.town_overlay_images .city_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_shield_cd2b0df.png) no-repeat 0 0; + width: 120px; + height: 72px; +} + +.town_overlay_images .city_shield_blessing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_shield_blessing_a222cce.png) no-repeat 0 0; + width: 120px; + height: 72px; +} + +.town_overlay_images .city_smoke { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_smoke_6e4f258.png) no-repeat 0 0; + width: 83px; + height: 74px; +} + +.town_overlay_images .colo_map_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/colo_map_icon_163ec86.png) no-repeat 0 0; + width: 55px; + height: 60px; +} + +.town_overlay_images .colo_map_icon_city_day { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/colo_map_icon_city_day_f16df6c.png) no-repeat 0 0; + width: 55px; + height: 60px; +} + +.town_overlay_images .colo_map_icon_city_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/colo_map_icon_city_night_c37c29b.png) no-repeat 0 0; + width: 55px; + height: 60px; +} + +.town_overlay_images .large_temple_aphrodite_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_aphrodite_shield_259d05b.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.town_overlay_images .large_temple_ares_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_ares_shield_ed6fd73.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.town_overlay_images .large_temple_artemis_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_artemis_shield_a6a3281.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.town_overlay_images .large_temple_athena_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_athena_shield_89be67b.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.town_overlay_images .large_temple_hades_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_hades_shield_bd8347d.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.town_overlay_images .large_temple_hera_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_hera_shield_f66018b.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.town_overlay_images .large_temple_poseidon_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_poseidon_shield_15aaf34.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.town_overlay_images .large_temple_zeus_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_zeus_shield_2c14ba5.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.town_overlay_images .olympus_shield { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/olympus_shield_22775c9.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.black_friday_sale_icon .black_friday_sale_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat 0 0; + width: 125px; + height: 125px; +} + +.black_friday_sale_icon .black_friday_sale_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat -125px 0; + width: 125px; + height: 125px; +} + +.black_friday_sale_icon .black_friday_sale_icon_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/black_friday_sale/black_friday_sale_7ca0332.png) no-repeat 0 -125px; + width: 125px; + height: 125px; +} + +.black_friday_window { + position: relative; +} + +.black_friday_window .background { + width: 678px; + height: 455px; + background-image: url(https://gpfr.innogamescdn.com/images/game/interstitials/special_offer/illustration_2.69.jpg); + overflow: hidden; + height: 351px; +} + +.black_friday_window .deco_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 0; + width: 678px; + height: 122px; + position: absolute; + top: 0; + left: 0; +} + +.black_friday_window .deco_top .main_headline { + text-align: center; + font-size: 18px; +} + +.black_friday_window .speechbubble { + position: absolute; + top: 50px; + left: 159px; + padding: 20px; +} + +.black_friday_window .speechbubble .speechbubble_arrow_l { + left: -6px; + top: 30px; +} + +.black_friday_window .speechbubble .content { + width: 320px; + height: auto; + overflow: hidden; + left: 0; + top: 0; +} + +.black_friday_window .speechbubble .headline { + font-weight: 600; + text-align: center; + width: 100%; + margin-bottom: 10px; +} + +.black_friday_window .banner { + position: absolute; + bottom: 40px; + width: 100%; + text-align: center; +} + +.black_friday_window .banner:before { + content: ""; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -125px; + width: 109px; + height: 41px; +} + +.black_friday_window .banner:after { + content: ""; + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px -207px; + width: 109px; + height: 41px; +} + +.black_friday_window .banner .middle { + display: inline-block; + width: 50px; + margin: 0 -4px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat 0 -760px; + width: 193px; + height: 41px; +} + +.black_friday_window .chest_wrapper { + position: absolute; + bottom: 20px; + width: 100%; +} + +.black_friday_window .chest_wrapper .chest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/interstitials/special_offer_e48a2c0.png) no-repeat -832px 0; + width: 125px; + height: 125px; + position: relative; + margin: auto; +} + +.effects_icon .effects_icon_bp_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat 0 -63px; + width: 27px; + height: 27px; +} + +.effects_icon .effects_icon_bp_both { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -27px -63px; + width: 27px; + height: 27px; +} + +.effects_icon .effects_icon_bp_def { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -54px -63px; + width: 27px; + height: 27px; +} + +.effects_icon .effects_icon_construction { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -81px -63px; + width: 27px; + height: 27px; +} + +.effects_icon .effects_icon_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat 0 -90px; + width: 27px; + height: 27px; +} + +.effects_icon .effects_icon_festival { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -27px -90px; + width: 27px; + height: 27px; +} + +.effects_icon .effects_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat 0 0; + width: 66px; + height: 63px; +} + +.effects_icon .effects_icon_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -66px 0; + width: 66px; + height: 63px; +} + +.effects_icon .effects_icon_resource { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -54px -90px; + width: 27px; + height: 27px; +} + +.effects_icon .effects_icon_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -81px -90px; + width: 27px; + height: 27px; +} + +#effects_icon { + display: none; + cursor: pointer; + margin: 10px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -66px 0; + width: 66px; + height: 63px; +} + +#effects_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat 0 0; + width: 66px; + height: 63px; +} + +#effects_icon_tooltip { + margin: 5px; + text-align: center; +} + +#effects_icon_tooltip .icon { + display: inline-block; + vertical-align: middle; +} + +#effects_icon_tooltip .icon[data-type=augmentation_favor] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat 0 -90px; + width: 27px; + height: 27px; +} + +#effects_icon_tooltip .icon[data-type=augmentation_resource] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -54px -90px; + width: 27px; + height: 27px; +} + +#effects_icon_tooltip .icon[data-type=att_kills], +#effects_icon_tooltip .icon[data-type=unit_attack] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat 0 -63px; + width: 27px; + height: 27px; +} + +#effects_icon_tooltip .icon[data-type=def_kills], +#effects_icon_tooltip .icon[data-type=unit_defense] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -54px -63px; + width: 27px; + height: 27px; +} + +#effects_icon_tooltip .icon[data-type=both_kills] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -27px -63px; + width: 27px; + height: 27px; +} + +#effects_icon_tooltip .icon[data-type=building_order_time] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -81px -63px; + width: 27px; + height: 27px; +} + +#effects_icon_tooltip .icon[data-type=unit_order_time] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -81px -90px; + width: 27px; + height: 27px; +} + +#effects_icon_tooltip .icon[data-type=party] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/effects_icon/effects_icon_068ff05.png) no-repeat -27px -90px; + width: 27px; + height: 27px; +} + +#effects_icon_tooltip .effect_wrapper { + text-align: left; + margin: 5px 0; +} + +#effects_icon_tooltip .effect_wrapper .title { + text-align: center; +} + +#effects_icon_tooltip .divider { + height: 1px; + width: 100%; + background: linear-gradient(to right,#fadda1,#b37103,#fadda1); +} + +#effects_icon_tooltip .title { + margin-bottom: 5px; +} + +#effects_icon_tooltip .bonus_wrapper, +#effects_icon_tooltip .end_date>span, +#effects_icon_tooltip .title { + font-weight: 600; +} + +.premium_exchange .premium_exchange_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/premium_exchange/premium_exchange_ddc9958.png) no-repeat 0 0; + width: 786px; + height: 528px; +} + +.premium_exchange .premium_exchange_list_scale { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/premium_exchange/premium_exchange_ddc9958.png) no-repeat -169px -528px; + width: 20px; + height: 20px; +} + +.premium_exchange .premium_exchange_progress_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/premium_exchange/premium_exchange_ddc9958.png) no-repeat 0 -528px; + width: 169px; + height: 60px; +} + +.premium_exchange_single_images .premium_exchange_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/premium_exchange/single_images/premium_exchange_highlight_33a4ada.png) no-repeat 0 0; + width: 739px; + height: 1px; +} + +.april_fools_2019 .elvenar_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2019_3adbc63.png) no-repeat -221px -379px; + width: 208px; + height: 163px; +} + +.april_fools_2019 .elvenar_ship_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2019_3adbc63.png) no-repeat 0 -379px; + width: 221px; + height: 210px; +} + +.april_fools_2019 .interstitial_illustration { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2019_3adbc63.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.april_fools_2023 .submarine { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2023_a0b6c89.png) no-repeat 0 0; + width: 138px; + height: 81px; +} + +.april_fools_2023 .submarine_power_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2023_a0b6c89.png) no-repeat 0 -81px; + width: 86px; + height: 86px; +} + +.layout_game_events_items .town_overlay { + cursor: pointer; + position: absolute; + z-index: 16; +} + +.layout_game_events_items .town_overlay.elven_invasion { + top: 800px; + left: 700px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2019_3adbc63.png) no-repeat -221px -379px; + width: 208px; + height: 163px; +} + +.layout_game_events_items .town_overlay.elven_invasion::after { + content: ''; + position: absolute; + top: -14px; + left: -3px; + pointer-events: none; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2019_3adbc63.png) no-repeat 0 -379px; + width: 221px; + height: 210px; + -webkit-animation: fadeInOutIn 5s ease infinite; + -ms-animation: fadeInOutIn 5s ease infinite; + animation: fadeInOutIn 5s ease infinite; +} + +.layout_game_events_items .town_overlay.poseidons_trident { + top: 800px; + left: 700px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2023_a0b6c89.png) no-repeat 0 0; + width: 138px; + height: 81px; +} + +.town_overlay.column_window .window_content { + padding: 0; +} + +.town_overlay .welcome_window_container.elven_invasion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2019_3adbc63.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.town_overlay.poseidons_trident .temple_power_popup { + padding: 5px; +} + +.temple_power_popup_image.poseidons_trident { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/town_overlay/april_fools_2023_a0b6c89.png) no-repeat 0 -81px; + width: 86px; + height: 86px; +} + +.banner_single_images .banner_blue_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/single_images/banner_blue_middle_b61baff.png) no-repeat 0 0; + width: 1px; + height: 30px; +} + +.banner_sprite .banner_blue_side_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/sprite_images/banner_f56bb32.png) no-repeat 0 -30px; + width: 12px; + height: 74px; +} + +.banner_sprite .banner_blue_side_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/sprite_images/banner_f56bb32.png) no-repeat -12px -30px; + width: 12px; + height: 74px; +} + +.banner_sprite .banner_blue_top_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/sprite_images/banner_f56bb32.png) no-repeat 0 0; + width: 59px; + height: 30px; +} + +.banner_sprite .banner_blue_top_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/banner/sprite_images/banner_f56bb32.png) no-repeat -59px 0; + width: 59px; + height: 30px; +} + +.round_buttons_sprite .button_add_spells_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -48px -48px; + width: 45px; + height: 45px; +} + +.round_buttons_sprite .button_add_spells_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -96px 0; + width: 45px; + height: 45px; +} + +.round_buttons_sprite .button_add_spells_normal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -96px -45px; + width: 45px; + height: 45px; +} + +.round_buttons_sprite .button_add_spells_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat 0 -96px; + width: 45px; + height: 45px; +} + +.round_buttons_sprite .button_counter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -141px -28px; + width: 24px; + height: 28px; +} + +.round_buttons_sprite .button_counter_brown { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -141px 0; + width: 24px; + height: 28px; +} + +.round_buttons_sprite .drag_drop_button_24x24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -141px -56px; + width: 24px; + height: 24px; +} + +.round_buttons_sprite .drag_drop_button_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -45px -96px; + width: 40px; + height: 40px; +} + +.round_buttons_sprite .drag_drop_button_active_24x24 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -141px -80px; + width: 24px; + height: 24px; +} + +.round_buttons_sprite .drag_drop_button_active_40x40 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -85px -96px; + width: 40px; + height: 40px; +} + +.round_buttons_sprite .power_god_not_selected { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat 0 0; + width: 48px; + height: 48px; +} + +.round_buttons_sprite .power_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -48px 0; + width: 48px; + height: 48px; +} + +.round_buttons_sprite .power_not_enough_favor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat 0 -48px; + width: 48px; + height: 48px; +} + +.ornament_frame_sprite .spell_frame_arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat 0 0; + width: 79px; + height: 38px; +} + +.ornament_frame_sprite .spells_frame_bl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat 0 -38px; + width: 28px; + height: 36px; +} + +.ornament_frame_sprite .spells_frame_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat -28px -38px; + width: 28px; + height: 36px; +} + +.ornament_frame_sprite .spells_frame_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat -79px 0; + width: 28px; + height: 36px; +} + +.ornament_frame_sprite .spells_frame_tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat -79px -36px; + width: 28px; + height: 36px; +} + +.ornament_frame_single_images .spells_frame_middle_tileable { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/single_images/spells_frame_middle_tileable_75fe284.png) no-repeat 0 0; + width: 2px; + height: 9px; +} + +.ornament_frame_single_images .spells_frame_sides_tileable { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/single_images/spells_frame_sides_tileable_f64c184.png) no-repeat 0 0; + width: 6px; + height: 1px; +} + +.close_list_layer.chose_spell { + opacity: .5; + background-color: #000; +} + +.dropdown-list.chose_spell { + max-height: 52px; + background: 0 0; + border: 0; + overflow: visible; + text-align: center; +} + +.dropdown-list.chose_spell .ornament_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat 0 -96px; + width: 45px; + height: 45px; + position: absolute; + top: -74px; + left: 183px; +} + +.dropdown-list.chose_spell .ornament_button:before { + content: ''; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat 0 0; + width: 79px; + height: 38px; + top: 34px; + left: -17px; + z-index: 2; +} + +.dropdown-list.chose_spell .js-list-viewport { + display: table; + overflow: visible; + position: relative; +} + +.dropdown-list.chose_spell .item-list { + position: absolute; + height: 56px; + left: -2px; + top: -2px; + display: table-row; + background: url(https://gpfr.innogamescdn.com/images/game/common/backgrounds/marble_brown.jpg); +} + +.dropdown-list.chose_spell .item-list .option { + display: table-cell; + line-height: 56px; +} + +.dropdown-list.chose_spell .item-list .option:hover { + background-color: transparent; +} + +.dropdown-list.chose_spell .item-list .no_power { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat 0 -48px; + width: 48px; + height: 48px; +} + +.dropdown-list.chose_spell .item-list .no_power:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -48px 0; + width: 48px; + height: 48px; +} + +.dropdown-list.chose_spell .left-border { + height: 100%; + margin-left: -26px; + float: left; +} + +.dropdown-list.chose_spell .right-border { + height: 100%; + margin-right: -26px; + float: right; +} + +.dropdown-list.chose_spell .not_selectable { + opacity: .4; +} + +.dropdown-list.chose_spell .border-left-t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat -79px 0; + width: 28px; + height: 36px; +} + +.dropdown-list.chose_spell .border-left-b { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat 0 -38px; + width: 28px; + height: 36px; +} + +.dropdown-list.chose_spell .border-right-t { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat -79px -36px; + width: 28px; + height: 36px; +} + +.dropdown-list.chose_spell .border-right-b { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/sprite_images/ornament_frame_0359aaf.png) no-repeat -28px -38px; + width: 28px; + height: 36px; +} + +.dropdown-list.chose_spell .border-left-t, +.dropdown-list.chose_spell .border-right-t { + margin-top: -10px; +} + +.dropdown-list.chose_spell .border-left-b, +.dropdown-list.chose_spell .border-right-b { + margin-bottom: -12px; +} + +.dropdown-list.chose_spell .border-bottom, +.dropdown-list.chose_spell .border-top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/ornament_frame/single_images/spells_frame_middle_tileable_75fe284.png) no-repeat 0 0; + width: 2px; + height: 9px; + width: 100%; + background-repeat: repeat-x; + position: absolute; +} + +.dropdown-list.chose_spell .border-top { + top: -9px; +} + +.dropdown-list.chose_spell .border-bottom { + bottom: -12px; +} + +.battleships_sprite_images .cannonball_animation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -562px -296px; + width: 16px; + height: 16px; +} + +.battleships_sprite_images .checkmark_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -543px -414px; + width: 21px; + height: 21px; +} + +.battleships_sprite_images .discount_banner_tilted { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -375px -361px; + width: 140px; + height: 89px; +} + +.battleships_sprite_images .event_icon_square_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat 0 -361px; + width: 125px; + height: 125px; +} + +.battleships_sprite_images .event_icon_square_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -125px -361px; + width: 125px; + height: 125px; +} + +.battleships_sprite_images .event_icon_square_light { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -250px -361px; + width: 125px; + height: 125px; +} + +.battleships_sprite_images .figure_rewards_check_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -562px -227px; + width: 16px; + height: 17px; +} + +.battleships_sprite_images .figure_rewards_checkbox { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -562px -209px; + width: 18px; + height: 18px; +} + +.battleships_sprite_images .icon_bonus_double { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -209px; + width: 46px; + height: 44px; +} + +.battleships_sprite_images .icon_bonus_double_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -551px -334px; + width: 30px; + height: 26px; +} + +.battleships_sprite_images .icon_bonus_scout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -296px; + width: 46px; + height: 38px; +} + +.battleships_sprite_images .icon_bonus_scout_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -414px; + width: 27px; + height: 22px; +} + +.battleships_sprite_images .icon_impossible_shot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -253px; + width: 42px; + height: 43px; +} + +.battleships_sprite_images .icon_map_currency { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -551px -374px; + width: 30px; + height: 22px; +} + +.battleships_sprite_images .icon_map_currency_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -558px -276px; + width: 21px; + height: 16px; +} + +.battleships_sprite_images .icon_ship_progression_map_back { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -334px; + width: 35px; + height: 40px; +} + +.battleships_sprite_images .icon_ship_progression_map_forward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -374px; + width: 35px; + height: 40px; +} + +.battleships_sprite_images .icon_shot_currency { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -558px -253px; + width: 24px; + height: 23px; +} + +.battleships_sprite_images .icon_shot_currency_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -64px; + width: 66px; + height: 59px; +} + +.battleships_sprite_images .icon_shot_currency_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -562px -312px; + width: 15px; + height: 14px; +} + +.battleships_sprite_images .icon_splash { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -123px; + width: 56px; + height: 51px; +} + +.battleships_sprite_images .popup_image_buy_currency_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat 0 0; + width: 172px; + height: 361px; +} + +.battleships_sprite_images .popup_image_buy_currency_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -344px 0; + width: 172px; + height: 361px; +} + +.battleships_sprite_images .popup_image_buy_currency_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -172px 0; + width: 172px; + height: 361px; +} + +.battleships_sprite_images .reward_list_checkmark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -174px; + width: 63px; + height: 35px; +} + +.battleships_sprite_images .special_reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px 0; + width: 66px; + height: 64px; +} + +.battleships_grid_images_sprite .cell_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -69px 0; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .cell_highlight_no_currency { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -207px -69px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .icon_bonus_scout_gold_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -303px -207px; + width: 27px; + height: 22px; +} + +.battleships_grid_images_sprite .icon_hit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -69px -69px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .icon_miss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -138px 0; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_bireme_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -138px -69px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_bireme_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat 0 -138px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_brander_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -69px -138px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_fire_ship_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -138px -138px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_fire_ship_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -207px 0; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_hydra_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat 0 0; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_hydra_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -207px -138px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_hydra_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat 0 -207px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_hydra_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -69px -207px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_transport_big_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -138px -207px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_transport_big_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -207px -207px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_transport_ship_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -276px 0; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_trireme_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -276px -69px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_trireme_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -276px -138px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .ship_trireme_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat 0 -69px; + width: 69px; + height: 69px; +} + +.battleships_grid_images_sprite .sink_marker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -276px -207px; + width: 27px; + height: 29px; +} + +.battleships_single_images .battleships_bg_main { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/battleships_bg_main_111a32a.jpg) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.battleships_single_images .compass_inner_part { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/compass_inner_part_44e3ce2.png) no-repeat 0 0; + width: 259px; + height: 260px; +} + +.battleships_single_images .compass_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/compass_overlay_c815d70.png) no-repeat 0 0; + width: 507px; + height: 364px; +} + +.battleships_single_images .end_interstitial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/end_interstitial_bg_ce4e9a0.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.battleships_single_images .popup_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_bg_9a31c33.png) no-repeat 0 0; + width: 507px; + height: 364px; +} + +.battleships_single_images .popup_image_cannonball_found { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_image_cannonball_found_857d049.png) no-repeat 0 0; + width: 504px; + height: 223px; +} + +.battleships_single_images .popup_image_grand_prize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_image_grand_prize_258894f.png) no-repeat 0 0; + width: 501px; + height: 217px; +} + +.battleships_single_images .popup_image_ship_sunk { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_image_ship_sunk_560a482.png) no-repeat 0 0; + width: 501px; + height: 217px; +} + +.battleships_single_images .sailor_tutorial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/sailor_tutorial_8c6a635.png) no-repeat 0 0; + width: 393px; + height: 409px; +} + +.battleships_single_images .welcome_interstitial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/welcome_interstitial_bg_6fce051.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.battleships_tutorial_images_sprite .tutorial_step_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -387px 0; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -387px -432px; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat 0 -216px; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -387px -216px; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat 0 -432px; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -774px 0; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -774px -216px; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -774px -432px; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat 0 -648px; + width: 387px; + height: 216px; +} + +.battleships_tutorial_images_sprite .tutorial_step_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -387px -648px; + width: 387px; + height: 216px; +} + +.gods_gifts_sprite_images .discount_banner_tilted { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -375px -361px; + width: 140px; + height: 89px; +} + +.gods_gifts_sprite_images .double { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -122px; + width: 58px; + height: 58px; +} + +.gods_gifts_sprite_images .double_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -331px; + width: 29px; + height: 29px; +} + +.gods_gifts_sprite_images .event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat 0 -361px; + width: 125px; + height: 125px; +} + +.gods_gifts_sprite_images .event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -125px -361px; + width: 125px; + height: 125px; +} + +.gods_gifts_sprite_images .event_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -250px -361px; + width: 125px; + height: 125px; +} + +.gods_gifts_sprite_images .key_animation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -543px -360px; + width: 27px; + height: 25px; +} + +.gods_gifts_sprite_images .key_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -360px; + width: 27px; + height: 25px; +} + +.gods_gifts_sprite_images .key_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -64px; + width: 58px; + height: 58px; +} + +.gods_gifts_sprite_images .key_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -534px -410px; + width: 17px; + height: 15px; +} + +.gods_gifts_sprite_images .map_currency { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -385px; + width: 26px; + height: 25px; +} + +.gods_gifts_sprite_images .map_currency_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -551px -410px; + width: 16px; + height: 15px; +} + +.gods_gifts_sprite_images .popup_image_buy_currency_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -344px 0; + width: 172px; + height: 361px; +} + +.gods_gifts_sprite_images .popup_image_buy_currency_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -172px 0; + width: 172px; + height: 361px; +} + +.gods_gifts_sprite_images .popup_image_buy_currency_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat 0 0; + width: 172px; + height: 361px; +} + +.gods_gifts_sprite_images .reveal_rewards_check { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -542px -385px; + width: 21px; + height: 21px; +} + +.gods_gifts_sprite_images .reveal_rewards_marker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -410px; + width: 18px; + height: 18px; +} + +.gods_gifts_sprite_images .reveal_rewards_slot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -563px -385px; + width: 18px; + height: 18px; +} + +.gods_gifts_sprite_images .reward_list_checkmark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -296px; + width: 63px; + height: 35px; +} + +.gods_gifts_sprite_images .sneak_peak_icon_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -238px; + width: 58px; + height: 58px; +} + +.gods_gifts_sprite_images .sneak_peak_icon_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -545px -331px; + width: 29px; + height: 29px; +} + +.gods_gifts_sprite_images .sneak_peak_special_icon_large { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -180px; + width: 58px; + height: 58px; +} + +.gods_gifts_sprite_images .special_reward_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px 0; + width: 66px; + height: 64px; +} + +.gods_gifts_grid_images_sprite .icon_hit { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -372px -68px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .icon_miss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -136px -236px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_aphrodite_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 -100px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_artemis_horizontal_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -68px -100px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_artemis_horizontal_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -168px 0; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_artemis_vertical_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -168px -68px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_artemis_vertical_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 -168px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_athena_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -68px -168px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_athena_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -136px -168px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_athena_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -236px 0; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_hades_horizontal_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -236px -68px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_hades_horizontal_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -236px -136px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_hades_vertical_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 -236px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_hades_vertical_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -68px -236px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_hera_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -100px 0; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_poseidon_horizontal_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -204px -236px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_poseidon_horizontal_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -304px 0; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_poseidon_vertical_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -304px -68px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_poseidon_vertical_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -304px -136px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_zeus_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -304px -204px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_zeus_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 -304px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_zeus_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -68px -304px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .present_zeus_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -136px -304px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .reveal_rewards_check { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -401px -136px; + width: 21px; + height: 21px; +} + +.gods_gifts_grid_images_sprite .slot_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -272px -304px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .slot_glow_no_currency { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -372px 0; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .slot_glow_open { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 0; + width: 100px; + height: 100px; +} + +.gods_gifts_grid_images_sprite .slot_glow_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -204px -304px; + width: 68px; + height: 68px; +} + +.gods_gifts_grid_images_sprite .sneak_peak_special_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -372px -136px; + width: 29px; + height: 29px; +} + +.gods_gifts_single_images .interstitial_end { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/interstitial_end_893df73.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.gods_gifts_single_images .interstitial_start { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/interstitial_start_94b70a8.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.gods_gifts_single_images .popups_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_bg_c012cf5.png) no-repeat 0 0; + width: 507px; + height: 364px; +} + +.gods_gifts_single_images .popups_currencydrop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_currencydrop_956a664.png) no-repeat 0 0; + width: 497px; + height: 208px; +} + +.gods_gifts_single_images .popups_gift_revealed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_gift_revealed_556aeea.png) no-repeat 0 0; + width: 497px; + height: 208px; +} + +.gods_gifts_single_images .popups_grand_prize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_grand_prize_afb22b7.png) no-repeat 0 0; + width: 497px; + height: 208px; +} + +.gods_gifts_single_images .three_slots_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/three_slots_bg_b324ec7.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.gods_gifts_single_images .tutorial_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/tutorial_zeus_7dbd34e.png) no-repeat 0 0; + width: 354px; + height: 475px; +} + +.gods_gifts_single_images .wheel_inner_part { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/wheel_inner_part_b0f751f.png) no-repeat 0 0; + width: 259px; + height: 260px; +} + +.gods_gifts_single_images .wheel_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/wheel_overlay_fe936a2.png) no-repeat 0 0; + width: 507px; + height: 364px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -387px 0; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -387px -432px; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat 0 -216px; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -387px -216px; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat 0 -432px; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -774px 0; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -774px -216px; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -774px -432px; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat 0 -648px; + width: 387px; + height: 216px; +} + +.gods_gifts_tutorial_images_sprite .tutorial_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -387px -648px; + width: 387px; + height: 216px; +} + +.gods_gifts_progression_images_sprite .candle_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -96px -87px; + width: 24px; + height: 34px; +} + +.gods_gifts_progression_images_sprite .candle_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -24px -122px; + width: 24px; + height: 31px; +} + +.gods_gifts_progression_images_sprite .candle_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px -90px; + width: 24px; + height: 29px; +} + +.gods_gifts_progression_images_sprite .candle_12 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -142px 0; + width: 24px; + height: 33px; +} + +.gods_gifts_progression_images_sprite .candle_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -48px -122px; + width: 24px; + height: 31px; +} + +.gods_gifts_progression_images_sprite .candle_14 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px -30px; + width: 23px; + height: 31px; +} + +.gods_gifts_progression_images_sprite .candle_15 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -142px -65px; + width: 24px; + height: 31px; +} + +.gods_gifts_progression_images_sprite .candle_16 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -96px -122px; + width: 24px; + height: 30px; +} + +.gods_gifts_progression_images_sprite .candle_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -142px -33px; + width: 24px; + height: 32px; +} + +.gods_gifts_progression_images_sprite .candle_18 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat 0 -122px; + width: 24px; + height: 31px; +} + +.gods_gifts_progression_images_sprite .candle_19 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -72px -122px; + width: 24px; + height: 30px; +} + +.gods_gifts_progression_images_sprite .candle_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat 0 -87px; + width: 24px; + height: 35px; +} + +.gods_gifts_progression_images_sprite .candle_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px -61px; + width: 24px; + height: 29px; +} + +.gods_gifts_progression_images_sprite .candle_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px -119px; + width: 24px; + height: 29px; +} + +.gods_gifts_progression_images_sprite .candle_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -120px -122px; + width: 24px; + height: 30px; +} + +.gods_gifts_progression_images_sprite .candle_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -72px -87px; + width: 24px; + height: 34px; +} + +.gods_gifts_progression_images_sprite .candle_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -48px -87px; + width: 24px; + height: 34px; +} + +.gods_gifts_progression_images_sprite .candle_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -24px -87px; + width: 24px; + height: 34px; +} + +.gods_gifts_progression_images_sprite .candle_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px 0; + width: 24px; + height: 30px; +} + +.gods_gifts_progression_images_sprite .tree_gift_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat 0 0; + width: 142px; + height: 87px; +} + +.happening_large_icon_container #happening_large_icon.battleships { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat 0 -361px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.battleships.with_countdown:hover, +.happening_large_icon_container #happening_large_icon.battleships:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -250px -361px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.battleships .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -125px -361px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.battleships .amount { + top: 15px; + left: -8px; +} + +@-webkit-keyframes startGlow { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@-ms-keyframes startGlow { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes startGlow { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@-webkit-keyframes fadeGlow { + 0% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 100% { + opacity: 1; + } +} + +@-ms-keyframes fadeGlow { + 0% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 100% { + opacity: 1; + } +} + +@keyframes fadeGlow { + 0% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 100% { + opacity: 1; + } +} + +.battleships.collected_items { + color: #fc6; +} + +.battleships.collected_items .window_content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_bg_9a31c33.png) no-repeat 0 0; + width: 507px; + height: 364px; + margin-left: 7px; + margin-right: 7px; + overflow: hidden; +} + +.battleships.collected_items .button_wrapper, +.battleships.collected_items .checkbox_container { + padding: 5px 0; +} + +.battleships.collected_items .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_image_cannonball_found_857d049.png) no-repeat 0 0; + width: 504px; + height: 223px; + margin-left: -4px; +} + +.battleships.collected_items .highlights { + position: absolute; + right: 70px; + top: 89px; + height: 68px; + width: 68px; +} + +.battleships.collected_items .highlights>div { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -64px; + width: 66px; + height: 59px; + margin: 5px auto; +} + +.battleships.collected_items .values { + position: absolute; + height: 19px; + width: 68px; + right: 70px; + top: 174px; + line-height: 19px; +} + +.battleships.collected_items .values>div { + font-weight: 600; + text-align: center; +} + +.battleships.collected_items_tooltip { + min-width: 385px; +} + +.battleships.collected_items_tooltip .description { + text-align: center; +} + +.battleships.collected_items_tooltip .item { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -64px; + width: 66px; + height: 59px; +} + +.battleships.welcome_window_container.grid_event_welcome_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/welcome_interstitial_bg_6fce051.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.battleships.welcome_window_container.grid_event_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/end_interstitial_bg_ce4e9a0.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.battleships .single_line_text { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.battleships.gridevent .hidden_and_without_pointer_events { + opacity: 0; + pointer-events: none; +} + +.battleships.gridevent .animated_turn_currency { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -562px -296px; + width: 16px; + height: 16px; + opacity: 0; + pointer-events: none; + position: absolute; +} + +.battleships.gridevent .animated_activation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -123px; + width: 56px; + height: 51px; + opacity: 0; + pointer-events: none; + position: absolute; + margin-top: 9px; + margin-left: 7px; +} + +.battleships.gridevent #cloned_inventory_item { + opacity: 0; + pointer-events: none; + display: inline-block; + position: absolute; +} + +.battleships.gridevent .animated_scout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -296px; + width: 46px; + height: 38px; +} + +.battleships.gridevent .grid_main_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/battleships_bg_main_111a32a.jpg) no-repeat 0 0; + width: 756px; + height: 527px; + overflow: hidden; +} + +.battleships.gridevent .banner_titles { + font-weight: 700; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + color: #fff; + top: 6px; + text-align: center; + width: 140px; + height: 20px; + left: 10px; + text-shadow: 3px 3px 3px #000; + position: absolute; +} + +.battleships.gridevent .icon_type_map_currency .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -558px -276px; + width: 21px; + height: 16px; +} + +.battleships.gridevent .countdown_box { + left: 18px; + width: 170px; +} + +.battleships.gridevent .countdown_box .countdown { + display: inline-block; + width: 140px; + vertical-align: middle; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.battleships.gridevent .progression_currency_wrapper { + right: 132px; + width: 65px; +} + +.battleships.gridevent .progression_currency_wrapper .value { + width: 34px; + overflow: hidden; +} + +.battleships.gridevent .progression_currency_wrapper .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -551px -374px; + width: 30px; + height: 22px; +} + +.battleships.gridevent .turn_currency_wrapper { + right: 15px; + width: 105px; +} + +.battleships.gridevent .turn_currency_wrapper .value { + width: 45px; +} + +.battleships.gridevent .turn_currency_wrapper .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -558px -253px; + width: 24px; + height: 23px; +} + +.battleships.gridevent .turn_currency_wrapper .btn_open_shop { + position: absolute; + right: 5px; + top: 3px; +} + +.battleships.gridevent .progression_currency_wrapper .icon, +.battleships.gridevent .turn_currency_wrapper .icon { + top: 3px; + left: 0; +} + +.battleships.gridevent .progression_currency_wrapper .value, +.battleships.gridevent .turn_currency_wrapper .value { + top: 0; + left: 30px; + overflow: hidden; +} + +.battleships.gridevent .progression_currency_wrapper .icon, +.battleships.gridevent .progression_currency_wrapper .value, +.battleships.gridevent .turn_currency_wrapper .icon, +.battleships.gridevent .turn_currency_wrapper .value { + position: absolute; +} + +.battleships.gridevent .countdown_box, +.battleships.gridevent .progression_currency_wrapper, +.battleships.gridevent .turn_currency_wrapper { + position: absolute; + color: #fc6; + height: 28px; + line-height: 28px; + text-align: center; +} + +.battleships.gridevent .battleships_popup_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_bg_9a31c33.png) no-repeat 0 0; + width: 507px; + height: 364px; +} + +.battleships.gridevent .grid_shop_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_bg_9a31c33.png) no-repeat 0 0; + width: 507px; + height: 364px; +} + +.battleships.gridevent .grid_shop_wrapper .shop_item:first-child .item_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat 0 0; + width: 172px; + height: 361px; +} + +.battleships.gridevent .grid_shop_wrapper .shop_item:nth-child(2) .item_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -344px 0; + width: 172px; + height: 361px; +} + +.battleships.gridevent .grid_shop_wrapper .shop_item:last-child .item_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -172px 0; + width: 172px; + height: 361px; +} + +.battleships.gridevent .grid_shop_wrapper .shop_item .caption_big { + color: #fc6; + font-size: 32px; + font-weight: 600; + text-align: center; + text-shadow: 1px 1px 0 #000; +} + +.battleships.gridevent .grid_shop_wrapper .shop_item .amount { + color: #fc6; + font-size: 32px; + font-weight: 600; + text-align: center; + text-shadow: 1px 1px 0 #000; + padding-top: 20px; +} + +.battleships.gridevent .grid_shop_wrapper .shop_item .bonus_ribbon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -375px -361px; + width: 140px; + height: 89px; + position: relative; + left: 15px; +} + +.battleships.gridevent .grid_shop_wrapper .shop_item .bonus_ribbon .caption { + color: #fc6; + font-size: 32px; + font-weight: 600; + text-align: center; + text-shadow: 1px 1px 0 #000; + -webkit-transform: rotate(-7deg); + -ms-transform: rotate(-7deg); + -o-transform: rotate(-7deg); + transform: rotate(-7deg); + top: 20px; + position: relative; +} + +.battleships.gridevent .grid_shop_wrapper .shop_item .btn_buy_item { + position: absolute; + display: block; + margin-left: 36px; + bottom: 40px; + width: 100px; +} + +.battleships.gridevent .rewards_list_wrapper .reward[data-power=GRIDEVENT_HARPY_SCOUT] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -296px; + width: 46px; + height: 38px; +} + +.battleships.gridevent .rewards_list_wrapper .reward[data-power=GRIDEVENT_DOUBLE_REWARD] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -209px; + width: 46px; + height: 44px; +} + +.battleships.gridevent .rewards_list_wrapper .badge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -174px; + width: 63px; + height: 35px; + display: none; + position: absolute; + top: 15px; + right: 17px; +} + +.battleships.gridevent .rewards_list_wrapper .badge.claimed { + display: block; +} + +.battleships.gridevent .figure_rewards_wrapper { + position: absolute; + right: 34px; + top: 149px; + width: 148px; + height: 355px; +} + +.battleships.gridevent .figure_rewards_wrapper .caption { + height: 16px; + margin: 12px 26px; + text-align: center; + font-weight: 600; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.battleships.gridevent .figure_rewards_wrapper .figure_rewards { + height: 295px; + padding: 10px; +} + +.battleships.gridevent .figure_rewards_wrapper .figure_rewards.invisible { + opacity: 0; +} + +.battleships.gridevent .figure_rewards_wrapper .hit_indicators { + width: 85px; +} + +.battleships.gridevent .figure_rewards_wrapper .hit_indicators table { + margin: auto; +} + +.battleships.gridevent .figure_rewards_wrapper .hit_indicators div { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -562px -209px; + width: 18px; + height: 18px; +} + +.battleships.gridevent .figure_rewards_wrapper .hit_indicators div.hit::after { + content: ""; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -562px -227px; + width: 16px; + height: 17px; +} + +.battleships.gridevent .figure_rewards_wrapper .hit_indicators, +.battleships.gridevent .figure_rewards_wrapper .reward { + display: inline-block; + vertical-align: middle; +} + +.battleships.gridevent .figure_rewards_wrapper .figure_reward { + height: 42px; + line-height: 42px; +} + +.battleships.gridevent .figure_rewards_wrapper .figure_reward.complete::after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -543px -414px; + width: 21px; + height: 21px; + content: ''; + right: 10px; + position: absolute; + margin-top: 15px; +} + +.battleships.gridevent .figure_rewards_wrapper .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + right: 2px; + top: 8px; +} + +.battleships.gridevent .player_grid_wrapper { + position: absolute; + top: 50px; + left: 210px; + width: 346px; + height: 415px; + text-align: center; +} + +.battleships.gridevent .player_grid_wrapper.invisible .player_grid { + opacity: 0; +} + +.battleships.gridevent .player_grid_wrapper .btn_reset_grid_wrapper { + display: inline-block; + position: relative; +} + +.battleships.gridevent .player_grid_wrapper .btn_reset_grid_wrapper .btn_reset_grid_label { + display: inline-block; + margin-right: 5px; + color: #fc6; + max-width: 150px; + vertical-align: middle; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.battleships.gridevent .player_grid_wrapper .btn_reset_grid_wrapper .btn_reset_grid { + min-width: 100px; + vertical-align: middle; +} + +.battleships.gridevent .player_grid_wrapper .btn_reset_grid_wrapper .btn_reset_grid .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -562px -312px; + width: 15px; + height: 14px; +} + +.battleships.gridevent .player_grid_wrapper .advanced_power { + display: none; +} + +.battleships.gridevent .player_grid_wrapper .advanced_power.visible { + display: inline-block; +} + +.battleships.gridevent .player_grid_wrapper .advanced_power, +.battleships.gridevent .player_grid_wrapper .btn_info_overlay, +.battleships.gridevent .player_grid_wrapper .btn_reset_grid_wrapper { + top: 14px; +} + +.battleships.gridevent .player_grid_wrapper .reset_timer, +.battleships.gridevent .player_grid_wrapper .shot_costs { + height: 34px; + line-height: 34px; + color: #fc6; + padding: 0 10px; +} + +.battleships.gridevent .player_grid_wrapper .reset_timer>span, +.battleships.gridevent .player_grid_wrapper .shot_costs>span { + max-width: 180px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.battleships.gridevent .player_grid_wrapper .reset_timer .icon, +.battleships.gridevent .player_grid_wrapper .reset_timer .timer, +.battleships.gridevent .player_grid_wrapper .reset_timer>span, +.battleships.gridevent .player_grid_wrapper .shot_costs .icon, +.battleships.gridevent .player_grid_wrapper .shot_costs .timer, +.battleships.gridevent .player_grid_wrapper .shot_costs>span { + vertical-align: middle; + display: inline-block; +} + +.battleships.gridevent .player_grid_wrapper .reset_timer .timer.red, +.battleships.gridevent .player_grid_wrapper .shot_costs .timer.red { + color: #e72200; +} + +.battleships.gridevent .player_grid_wrapper .shot_costs { + float: left; +} + +.battleships.gridevent .player_grid_wrapper .shot_costs .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -558px -253px; + width: 24px; + height: 23px; +} + +.battleships.gridevent .player_grid_wrapper .reset_timer { + float: right; +} + +.battleships.gridevent .player_grid_wrapper .reset_timer .icon { + background: url(https://gpfr.innogamescdn.com/images/game/res/time.png) no-repeat 0 0; + width: 30px; + height: 30px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid { + position: relative; + top: 7px; + left: 0; + width: 345px; + height: 345px; + border-collapse: collapse; + table-layout: fixed; +} + +.battleships.gridevent .player_grid_wrapper .player_grid td { + border-collapse: collapse; + padding: 0; +} + +.battleships.gridevent .player_grid_wrapper .player_grid[data-grid_state=turn_available]:not(.can_take_turn) .grid_cell:not(.completed):hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -207px -69px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid[data-grid_state=scouting] .grid_cell.uncovered { + background: 0 0; + cursor: default; +} + +.battleships.gridevent .player_grid_wrapper .player_grid[data-grid_state=blocked_inventory], +.battleships.gridevent .player_grid_wrapper .player_grid[data-grid_state=blocked_reward] { + background: rgba(0,0,0,.5); +} + +.battleships.gridevent .player_grid_wrapper .player_grid[data-grid_state=blocked_inventory] .grid_cell, +.battleships.gridevent .player_grid_wrapper .player_grid[data-grid_state=blocked_reward] .grid_cell { + cursor: default; + background: 0 0; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell { + width: 69px; + height: 69px; + position: relative; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -69px 0; + width: 69px; + height: 69px; + cursor: pointer; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell.completed { + background: 0 0; + cursor: default; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered.uncovered_scout .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -414px; + width: 27px; + height: 22px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered.uncovered_power .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -303px -207px; + width: 27px; + height: 22px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .icon { + display: block; + position: absolute; + top: 5px; + left: 5px; + pointer-events: none; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .result { + opacity: .7; + position: absolute; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .result .gridevent_double_reward, +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .result .gridevent_harpy_scout { + top: 5px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .result>div { + position: absolute; + top: 3px; + right: 3px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell .icon { + display: none; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell .result.miss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -138px 0; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell .result:not(.miss) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -69px -69px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell .result.horizontal:not(.sea_monster) { + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + -o-transform: rotate(270deg); + transform: rotate(270deg); +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell .result.invisible { + opacity: 0; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -276px -207px; + width: 27px; + height: 29px; + display: block; + position: absolute; + top: 5px; + left: 5px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -276px -69px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -138px -69px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -138px -138px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -138px -207px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.small_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -276px 0; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat 0 0; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.demolition_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -69px -138px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -276px -138px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat 0 -138px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -207px 0; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -207px -207px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -207px -138px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="2"] .result.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat 0 -69px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="2"] .result.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat 0 -207px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="3"] .result.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/grid_images_1a67438.png) no-repeat -69px -207px; + width: 69px; + height: 69px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid_glow { + position: absolute; + top: 41px; + left: 0; + width: 345px; + height: 345px; + pointer-events: none; + -webkit-animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + -ms-animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + display: none; +} + +.battleships.gridevent .player_grid_wrapper .player_grid_glow.yellow { + -moz-box-shadow: inset 0 0 5px 5px #fed935; + -webkit-box-shadow: inset 0 0 5px 5px #fed935; + box-shadow: inset 0 0 5px 5px #fed935; +} + +.battleships.gridevent .player_grid_wrapper .player_grid_glow.red { + -moz-box-shadow: inset 0 0 5px 5px #e72200; + -webkit-box-shadow: inset 0 0 5px 5px #e72200; + box-shadow: inset 0 0 5px 5px #e72200; +} + +.battleships.gridevent .player_grid_wrapper .player_grid_glow.red, +.battleships.gridevent .player_grid_wrapper .player_grid_glow.yellow { + display: block; +} + +.battleships.gridevent .player_grid_wrapper .player_grid_blocked_inventory { + position: absolute; + top: 41px; + left: 0; + width: 265px; + height: 345px; + pointer-events: none; + display: none; + padding: 0 40px; +} + +.battleships.gridevent .player_grid_wrapper .player_grid_blocked_inventory.show { + display: block; +} + +.battleships.gridevent .player_grid_wrapper .player_grid_blocked_inventory .blocked_inventory_text { + display: flex; + justify-content: center; + align-items: center; + color: #fc6; + font-weight: 600; + height: 100%; + width: 100%; +} + +.battleships.gridevent .collected_items_indicator { + position: absolute; + top: 0; + left: 207px; + padding: 3px 0 0 14px; + width: 340px; + height: 26px; +} + +.battleships.gridevent .collected_items_indicator div { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -558px -253px; + width: 24px; + height: 23px; + margin-right: 9px; +} + +.battleships.gridevent .grid_reward_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_bg_9a31c33.png) no-repeat 0 0; + width: 507px; + height: 364px; + text-align: center; +} + +.battleships.gridevent .grid_reward_wrapper .description, +.battleships.gridevent .grid_reward_wrapper .headline { + padding: 10px; + color: #fc6; + text-align: center; +} + +.battleships.gridevent .grid_reward_wrapper .reward_type_bg { + position: relative; + display: inline-block; +} + +.battleships.gridevent .grid_reward_wrapper .reward_type_bg.sink_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_image_ship_sunk_560a482.png) no-repeat 0 0; + width: 501px; + height: 217px; +} + +.battleships.gridevent .grid_reward_wrapper .reward_type_bg.grand_prize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/popup_image_grand_prize_258894f.png) no-repeat 0 0; + width: 501px; + height: 217px; +} + +.battleships.gridevent .grid_reward_wrapper .reward_type_bg.grand_prize .reward { + right: 64px; +} + +.battleships.gridevent .grid_reward_wrapper .reward { + position: absolute; + right: 52px; + top: 70px; + width: 60px; + height: 60px; + padding: 7px 5px 3px; +} + +.battleships.gridevent .banner_info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + top: 4px; +} + +.battleships.gridevent .grand_prize_rewards_wrapper { + display: inline-block; + position: absolute; + top: 40px; + left: 22px; + width: 160px; + height: 100px; +} + +.battleships.gridevent .grand_prize_rewards_wrapper .caption { + font-weight: 700; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + color: #fff; + top: 6px; + text-align: center; + width: 140px; + height: 20px; + left: 10px; + text-shadow: 3px 3px 3px #000; + position: absolute; +} + +.battleships.gridevent .grand_prize_rewards_wrapper .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + top: 4px; + right: -12px; +} + +.battleships.gridevent .grand_prize_rewards_wrapper .next_text { + color: #fc6; + width: 66px; + text-align: center; + font-weight: 700; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + margin-top: 2px; +} + +.battleships.gridevent .grand_prize_rewards_wrapper .grand_prize_rewards { + position: absolute; + top: 34px; + left: 10px; +} + +.battleships.gridevent .grand_prize_rewards_wrapper .grand_prize_rewards .large { + margin-right: 5px; +} + +.battleships.gridevent .daily_special_reward_wrapper { + display: inline-block; + position: absolute; + top: 40px; + right: 29px; + width: 160px; + height: 100px; +} + +.battleships.gridevent .daily_special_reward_wrapper .caption { + font-weight: 700; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + color: #fff; + top: 6px; + text-align: center; + width: 140px; + height: 20px; + left: 10px; + text-shadow: 3px 3px 3px #000; + position: absolute; +} + +.battleships.gridevent .daily_special_reward_wrapper .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + top: 4px; + right: -12px; +} + +.battleships.gridevent .daily_special_reward_wrapper .daily_special_reward { + margin: 40px auto 0; + width: 60px; +} + +.battleships.gridevent .daily_special_reward_wrapper .timer { + position: absolute; + color: #fc6; + width: 70px; + bottom: 23px; + right: 10px; +} + +.battleships.gridevent .progression_wrapper { + position: absolute; + width: 160px; + height: 366px; + display: inline-block; + top: 145px; + left: 22px; +} + +.battleships.gridevent .progression_wrapper .btn_spend_shards { + position: absolute; + left: 15px; + bottom: 0; + width: 130px; +} + +.battleships.gridevent .progression_wrapper .progression_movement { + width: 160px; + height: 340px; +} + +.battleships.gridevent .progression_wrapper #progression_movement_item { + position: absolute; + opacity: 1; +} + +.battleships.gridevent .progression_wrapper #progression_movement_item[data-direction="1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -374px; + width: 35px; + height: 40px; +} + +.battleships.gridevent .progression_wrapper #progression_movement_item[data-direction="-1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -334px; + width: 35px; + height: 40px; +} + +.battleships.gridevent .progression_wrapper #progression_movement_item.invisible { + opacity: 0; +} + +.battleships.gridevent .sub_window_grand_prize_journey .content { + overflow: hidden; +} + +.battleships.gridevent .grand_prize_journey_wrapper { + width: 507px; + height: 364px; + overflow: hidden; +} + +.battleships.gridevent .grand_prize_journey_wrapper .overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/compass_overlay_c815d70.png) no-repeat 0 0; + width: 507px; + height: 364px; + position: absolute; +} + +.battleships.gridevent .grand_prize_journey_wrapper .inner_part { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/compass_inner_part_44e3ce2.png) no-repeat 0 0; + width: 259px; + height: 260px; + position: absolute; + top: 85px; + left: 125px; +} + +.battleships.gridevent .grand_prize_journey_wrapper .description { + position: absolute; + text-align: center; + width: 450px; + left: 28px; + top: 15px; + color: #fc6; +} + +.battleships.gridevent .grand_prize_journey_wrapper .button_wrapper { + width: 507px; + position: absolute; + text-align: center; + bottom: 50px; +} + +.battleships.gridevent .grand_prize_journey_wrapper .button_wrapper .button_close { + display: inline-block; + min-width: 120px; +} + +.battleships.gridevent .inventory_items { + position: absolute; + bottom: 29px; + left: 221px; +} + +.battleships.gridevent .inventory_items .item { + display: inline-block; + vertical-align: middle; + position: relative; + cursor: pointer; +} + +.battleships.gridevent .inventory_items .item:first-child { + left: 0; +} + +.battleships.gridevent .inventory_items .item:nth-child(2) { + left: 6px; +} + +.battleships.gridevent .inventory_items .item:nth-child(3) { + left: 12px; +} + +.battleships.gridevent .inventory_items .item:nth-child(4) { + left: 19px; +} + +.battleships.gridevent .inventory_items .item:nth-child(5) { + left: 27px; +} + +.battleships.gridevent .inventory_items .item:nth-child(6) { + left: 34px; +} + +.battleships.gridevent .inventory_items .item.invisible { + opacity: 0; +} + +.battleships.gridevent .special_event_rewards { + position: absolute; + width: 106px; + height: 38px; + bottom: 28px; + left: 448px; +} + +.battleships.gridevent .special_event_rewards .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px 0; + width: 66px; + height: 64px; + -webkit-animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + -ms-animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + position: absolute; + top: -12px; + left: -8px; + display: none; +} + +.battleships.gridevent .special_event_rewards .reward_multiplier, +.battleships.gridevent .special_event_rewards .scout { + display: inline-block; + vertical-align: middle; + position: relative; + width: 50px; + height: 100%; +} + +.battleships.gridevent .special_event_rewards .reward_multiplier.active .glow, +.battleships.gridevent .special_event_rewards .scout.active .glow { + display: block; +} + +.battleships.gridevent .special_event_rewards .reward_multiplier .icon, +.battleships.gridevent .special_event_rewards .scout .icon { + position: relative; + margin: 8px 11px; +} + +.battleships.gridevent .special_event_rewards .scout .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -414px; + width: 27px; + height: 22px; +} + +.battleships.gridevent .special_event_rewards .reward_multiplier .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -551px -334px; + width: 30px; + height: 26px; +} + +.battleships .gridevent_harpy_scout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -414px; + width: 27px; + height: 22px; +} + +.battleships .gridevent_double_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -551px -334px; + width: 30px; + height: 26px; +} + +.battleships .overlay_tutorial .character { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/single_images/sailor_tutorial_8c6a635.png) no-repeat 0 0; + width: 393px; + height: 409px; +} + +.battleships .overlay_tutorial .dropped_items, +.battleships .overlay_tutorial .progression_cost, +.battleships .overlay_tutorial .reset_cost, +.battleships .overlay_tutorial .time_left, +.battleships .overlay_tutorial .turn_cost { + color: #fc6; +} + +.battleships .overlay_tutorial .sink_rewards { + color: #000; + font-weight: 600; + font-size: 14px; + max-width: 100px; + text-align: center; +} + +.battleships .overlay_tutorial.step_1 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -387px 0; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_2 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -387px -216px; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_2 .content .tutorial_image .turn_cost { + display: block; + top: 22px; + right: 206px; + max-width: 120px; +} + +.battleships .overlay_tutorial.step_3 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat 0 -432px; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_4 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_4 .content .tutorial_image .sink_rewards { + display: block; + right: 16px; + top: 20px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.battleships .overlay_tutorial.step_5 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -774px 0; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_5 .content .tutorial_image .sink_rewards { + display: block; + top: 20px; + left: 125px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.battleships .overlay_tutorial.step_6 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -774px -216px; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_6 .content .tutorial_image .reset_cost { + display: block; + font-weight: 600; + bottom: 57px; + right: 168px; +} + +.battleships .overlay_tutorial.step_6 .content .tutorial_image .time_left { + display: block; + right: 130px; + top: 15px; +} + +.battleships .overlay_tutorial.step_7 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -774px -432px; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_7 .content .tutorial_image .daily_special { + display: block; + left: 95px; + top: 45px; + width: 140px; + text-align: center; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.battleships .overlay_tutorial.step_8 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat 0 -648px; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_8 .content .tutorial_image .dropped_items { + display: block; + right: 54px; + top: 144px; + font-size: 11px; +} + +.battleships .overlay_tutorial.step_9 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -387px -648px; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_9 .content .tutorial_image .progression_cost { + display: block; + font-weight: 600; + bottom: 7px; + left: 109px; +} + +.battleships .overlay_tutorial.step_10 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat -387px -432px; + width: 387px; + height: 216px; +} + +.battleships .overlay_tutorial.step_11 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/tutorial_images_487ca2c.png) no-repeat 0 -216px; + width: 387px; + height: 216px; +} + +.grid_event_end_interstitial .window_content, +.grid_event_welcome_interstitial .window_content { + padding: 0; +} + +.rewards_tooltip_list { + list-style-type: disc; + padding-left: 25px; +} + +.happening_large_icon_container #happening_large_icon.gods_gifts { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat 0 -361px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.gods_gifts.with_countdown:hover, +.happening_large_icon_container #happening_large_icon.gods_gifts:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -250px -361px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.gods_gifts .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -125px -361px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.gods_gifts .amount { + top: 15px; + left: -8px; +} + +@-webkit-keyframes startGlow { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@-ms-keyframes startGlow { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes startGlow { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@-webkit-keyframes fadeGlow { + 0% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 100% { + opacity: 1; + } +} + +@-ms-keyframes fadeGlow { + 0% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 100% { + opacity: 1; + } +} + +@keyframes fadeGlow { + 0% { + opacity: 1; + } + + 50% { + opacity: .4; + } + + 100% { + opacity: 1; + } +} + +.gods_gifts.collected_items { + color: #fc6; +} + +.gods_gifts.collected_items .window_content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_bg_c012cf5.png) no-repeat 0 0; + width: 507px; + height: 364px; + margin-left: 7px; + margin-right: 7px; + overflow: hidden; +} + +.gods_gifts.collected_items .button_wrapper, +.gods_gifts.collected_items .checkbox_container { + padding: 5px 0; +} + +.gods_gifts.collected_items .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_currencydrop_956a664.png) no-repeat 0 0; + width: 497px; + height: 208px; + margin-left: -4px; +} + +.gods_gifts.collected_items .values { + position: absolute; + height: 23px; + width: 69px; + right: 81px; + top: 167px; + line-height: 23px; +} + +.gods_gifts.collected_items .values>div { + font-weight: 600; + text-align: center; +} + +.gods_gifts.collected_items .values>div::after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -534px -410px; + width: 17px; + height: 15px; + content: ''; + display: inline-block; + position: relative; + top: 4px; + left: 4px; +} + +.gods_gifts.collected_items .dialog_wrapper { + padding: 10px 20px 20px; +} + +.gods_gifts.collected_items_tooltip { + min-width: 385px; +} + +.gods_gifts.collected_items_tooltip .description { + text-align: center; +} + +.gods_gifts.collected_items_tooltip .item { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -64px; + width: 58px; + height: 58px; +} + +.gods_gifts.welcome_window_container.grid_event_welcome_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/interstitial_start_94b70a8.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.gods_gifts.welcome_window_container.grid_event_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/interstitial_end_893df73.png) no-repeat 0 0; + width: 713px; + height: 373px; +} + +.gods_gifts.gridevent .hidden_and_without_pointer_events { + opacity: 0; + pointer-events: none; +} + +.gods_gifts.gridevent .animated_turn_currency { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -543px -360px; + width: 27px; + height: 25px; + opacity: 0; + pointer-events: none; + position: absolute; +} + +.gods_gifts.gridevent .animated_activation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 0; + width: 100px; + height: 100px; + opacity: 0; + pointer-events: none; + margin-top: -16px; + margin-left: -16px; + position: absolute; +} + +.gods_gifts.gridevent #cloned_inventory_item { + opacity: 0; + pointer-events: none; + position: absolute; +} + +.gods_gifts.gridevent .animated_scout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -238px; + width: 58px; + height: 58px; +} + +.gods_gifts.gridevent .grid_main_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/three_slots_bg_b324ec7.png) no-repeat 0 0; + width: 756px; + height: 527px; + overflow: hidden; +} + +.gods_gifts.gridevent .banner_titles { + font-weight: 600; + color: #fff; + top: 6px; + text-align: center; + width: 120px; + height: 20px; + left: 20px; + text-shadow: 3px 3px 3px #000; + position: absolute; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts.gridevent .icon_type_map_currency .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -551px -410px; + width: 16px; + height: 15px; + left: 3px; + top: 0; + vertical-align: middle; +} + +.gods_gifts.gridevent .icon_type_map_currency span { + vertical-align: middle; +} + +.gods_gifts.gridevent .countdown_box { + left: 18px; + width: 170px; +} + +.gods_gifts.gridevent .countdown_box .countdown { + display: inline-block; + width: 140px; + vertical-align: middle; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts.gridevent .countdown_box .btn_open_tutorial { + right: 5px; + top: 1px; +} + +.gods_gifts.gridevent .progression_currency_wrapper { + right: 112px; + width: 65px; + top: 2px; +} + +.gods_gifts.gridevent .progression_currency_wrapper .value { + width: 34px; + overflow: hidden; +} + +.gods_gifts.gridevent .progression_currency_wrapper .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -385px; + width: 26px; + height: 25px; +} + +.gods_gifts.gridevent .turn_currency_wrapper { + right: 15px; + width: 95px; + top: 2px; +} + +.gods_gifts.gridevent .turn_currency_wrapper .value { + width: 45px; +} + +.gods_gifts.gridevent .turn_currency_wrapper .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -360px; + width: 27px; + height: 25px; +} + +.gods_gifts.gridevent .turn_currency_wrapper .btn_open_shop { + position: absolute; + right: 0; + top: 3px; +} + +.gods_gifts.gridevent .progression_currency_wrapper .icon, +.gods_gifts.gridevent .turn_currency_wrapper .icon { + top: 3px; + left: 3px; +} + +.gods_gifts.gridevent .progression_currency_wrapper .value, +.gods_gifts.gridevent .turn_currency_wrapper .value { + top: 2px; + left: 30px; + overflow: hidden; +} + +.gods_gifts.gridevent .progression_currency_wrapper .icon, +.gods_gifts.gridevent .progression_currency_wrapper .value, +.gods_gifts.gridevent .turn_currency_wrapper .icon, +.gods_gifts.gridevent .turn_currency_wrapper .value { + position: absolute; +} + +.gods_gifts.gridevent .countdown_box, +.gods_gifts.gridevent .progression_currency_wrapper, +.gods_gifts.gridevent .turn_currency_wrapper { + position: absolute; + color: #fc6; + height: 28px; + line-height: 28px; + text-align: center; +} + +.gods_gifts.gridevent .battleships_popup_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_bg_c012cf5.png) no-repeat 0 0; + width: 507px; + height: 364px; +} + +.gods_gifts.gridevent .grid_shop_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_bg_c012cf5.png) no-repeat 0 0; + width: 507px; + height: 364px; +} + +.gods_gifts.gridevent .grid_shop_wrapper .shop_item:first-child .item_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -344px 0; + width: 172px; + height: 361px; +} + +.gods_gifts.gridevent .grid_shop_wrapper .shop_item:nth-child(2) .item_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -172px 0; + width: 172px; + height: 361px; +} + +.gods_gifts.gridevent .grid_shop_wrapper .shop_item:last-child .item_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat 0 0; + width: 172px; + height: 361px; +} + +.gods_gifts.gridevent .grid_shop_wrapper .shop_item .caption_big { + color: #fc6; + font-size: 32px; + font-weight: 600; + text-align: center; + text-shadow: 1px 1px 0 #000; +} + +.gods_gifts.gridevent .grid_shop_wrapper .shop_item .amount { + color: #fc6; + font-size: 32px; + font-weight: 600; + text-align: center; + text-shadow: 1px 1px 0 #000; + padding-top: 20px; +} + +.gods_gifts.gridevent .grid_shop_wrapper .shop_item .bonus_ribbon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -375px -361px; + width: 140px; + height: 89px; + position: relative; + left: 15px; +} + +.gods_gifts.gridevent .grid_shop_wrapper .shop_item .bonus_ribbon .caption { + color: #fc6; + font-size: 32px; + font-weight: 600; + text-align: center; + text-shadow: 1px 1px 0 #000; + -webkit-transform: rotate(-7deg); + -ms-transform: rotate(-7deg); + -o-transform: rotate(-7deg); + transform: rotate(-7deg); + top: 20px; + position: relative; +} + +.gods_gifts.gridevent .grid_shop_wrapper .shop_item .btn_buy_item { + position: absolute; + display: block; + margin-left: 36px; + bottom: 40px; + width: 100px; +} + +.gods_gifts.gridevent .rewards_list_wrapper .reward[data-power=GRIDEVENT_HARPY_SCOUT] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -238px; + width: 58px; + height: 58px; +} + +.gods_gifts.gridevent .rewards_list_wrapper .reward[data-power=GRIDEVENT_DOUBLE_REWARD] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -122px; + width: 58px; + height: 58px; +} + +.gods_gifts.gridevent .rewards_list_wrapper .badge { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -296px; + width: 63px; + height: 35px; + display: none; + position: absolute; + top: 15px; + right: 17px; +} + +.gods_gifts.gridevent .rewards_list_wrapper .badge.claimed { + display: block; +} + +.gods_gifts.gridevent .figure_rewards_wrapper { + position: absolute; + right: 25px; + top: 149px; + width: 148px; + height: 355px; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .caption { + margin: 20px 30px 0; + font-weight: 600; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .figure_rewards { + height: 295px; + padding: 0 10px 10px 10px; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .figure_rewards.invisible { + opacity: 0; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .hit_indicators { + width: 85px; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .hit_indicators table { + margin: auto; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .hit_indicators div { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -563px -385px; + width: 18px; + height: 18px; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .hit_indicators div.hit::after { + content: ""; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -410px; + width: 18px; + height: 18px; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .hit_indicators, +.gods_gifts.gridevent .figure_rewards_wrapper .reward { + display: inline-block; + vertical-align: middle; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .figure_reward { + height: 37px; + line-height: 37px; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .figure_reward.complete::after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -542px -385px; + width: 21px; + height: 21px; + content: ''; + right: 10px; + position: absolute; + margin-top: 15px; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .figure_reward[data-figure_type=sea_monster] { + height: 43px; + line-height: 43px; +} + +.gods_gifts.gridevent .figure_rewards_wrapper .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + right: 18px; + top: 19px; +} + +.gods_gifts.gridevent .player_grid_wrapper { + position: absolute; + top: 50px; + left: 210px; + width: 348px; + height: 415px; + text-align: center; +} + +.gods_gifts.gridevent .player_grid_wrapper.invisible .player_grid { + opacity: 0; +} + +.gods_gifts.gridevent .player_grid_wrapper .btn_reset_grid_wrapper { + display: inline-block; + position: absolute; + width: 220px; + left: 55px; + top: 390px; +} + +.gods_gifts.gridevent .player_grid_wrapper .btn_reset_grid_wrapper .btn_reset_grid_label { + display: inline-block; + color: #fc6; + font-weight: 600; + max-width: 127px; + position: absolute; + left: 0; + text-align: left; + height: 23px; + line-height: 23px; + padding-left: 5px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts.gridevent .player_grid_wrapper .btn_reset_grid_wrapper .btn_reset_grid { + min-width: 80px; + position: absolute; + left: 132px; +} + +.gods_gifts.gridevent .player_grid_wrapper .btn_reset_grid_wrapper .btn_reset_grid .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -534px -410px; + width: 17px; + height: 15px; + top: -1px; + vertical-align: middle; + left: 5px; +} + +.gods_gifts.gridevent .player_grid_wrapper .btn_reset_grid_wrapper .btn_reset_grid span { + vertical-align: middle; +} + +.gods_gifts.gridevent .player_grid_wrapper .advanced_power { + display: none; +} + +.gods_gifts.gridevent .player_grid_wrapper .advanced_power.visible { + display: inline-block; +} + +.gods_gifts.gridevent .player_grid_wrapper .btn_info_overlay { + position: absolute; + right: 55px; + bottom: 2px; +} + +.gods_gifts.gridevent .player_grid_wrapper .advanced_power { + top: 20px; + left: 92px; +} + +.gods_gifts.gridevent .player_grid_wrapper .reset_timer, +.gods_gifts.gridevent .player_grid_wrapper .shot_costs { + height: 30px; + line-height: 30px; + color: #fc6; + font-weight: 600; + padding: 0 10px; +} + +.gods_gifts.gridevent .player_grid_wrapper .reset_timer>span, +.gods_gifts.gridevent .player_grid_wrapper .shot_costs>span { + max-width: 130px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts.gridevent .player_grid_wrapper .reset_timer .icon, +.gods_gifts.gridevent .player_grid_wrapper .reset_timer .timer, +.gods_gifts.gridevent .player_grid_wrapper .reset_timer>span, +.gods_gifts.gridevent .player_grid_wrapper .shot_costs .icon, +.gods_gifts.gridevent .player_grid_wrapper .shot_costs .timer, +.gods_gifts.gridevent .player_grid_wrapper .shot_costs>span { + vertical-align: middle; + display: inline-block; +} + +.gods_gifts.gridevent .player_grid_wrapper .reset_timer .timer.red, +.gods_gifts.gridevent .player_grid_wrapper .shot_costs .timer.red { + color: #e72200; +} + +.gods_gifts.gridevent .player_grid_wrapper .shot_costs { + float: left; + width: 160px; + padding-right: 0; +} + +.gods_gifts.gridevent .player_grid_wrapper .shot_costs .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -534px -410px; + width: 17px; + height: 15px; +} + +.gods_gifts.gridevent .player_grid_wrapper .reset_timer { + float: right; +} + +.gods_gifts.gridevent .player_grid_wrapper .reset_timer .icon { + width: 30px; + height: 30px; + margin-right: 25px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid { + position: relative; + top: 10px; + left: 5px; + width: 340px; + height: 340px; + border-collapse: collapse; + table-layout: fixed; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid td { + border-collapse: collapse; + padding: 0; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid[data-grid_state=turn_available]:not(.can_take_turn) .grid_cell:not(.completed):hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -372px 0; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid[data-grid_state=scouting] .grid_cell.uncovered { + background: 0 0; + cursor: default; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid[data-grid_state=blocked_inventory] .grid_cell, +.gods_gifts.gridevent .player_grid_wrapper .player_grid[data-grid_state=blocked_reward] .grid_cell { + cursor: default; + background: 0 0; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid[data-grid_state=blocked_inventory] .grid_cell:hover, +.gods_gifts.gridevent .player_grid_wrapper .player_grid[data-grid_state=blocked_reward] .grid_cell:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -204px -304px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell { + width: 68px; + height: 68px; + position: relative; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -272px -304px; + width: 68px; + height: 68px; + cursor: pointer; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell.completed { + background: 0 0; + cursor: default; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered.uncovered_scout .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -545px -331px; + width: 29px; + height: 29px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered.uncovered_power .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -372px -136px; + width: 29px; + height: 29px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .icon { + display: block; + position: absolute; + top: 5px; + left: 5px; + pointer-events: none; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .result { + opacity: .7; + position: absolute; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .result .gridevent_double_reward, +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .result .gridevent_harpy_scout { + top: 5px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell.uncovered .result>div { + position: absolute; + top: 3px; + right: 3px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell .icon { + display: none; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell .result.miss { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -136px -236px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell .result:not(.miss) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -372px -68px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell .result.invisible { + opacity: 0; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -401px -136px; + width: 21px; + height: 21px; + display: block; + position: absolute; + top: 5px; + left: 5px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.horizontal.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -204px -236px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.horizontal.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -68px -100px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.horizontal.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -236px -68px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -68px -168px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -304px -68px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -168px -68px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 -236px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.small_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -100px 0; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -304px -204px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="0"] .result.demolition_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 -100px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.horizontal.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -304px 0; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.horizontal.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -168px 0; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.horizontal.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -236px -136px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -136px -168px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -304px -136px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.attack_ship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 -168px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.big_transporter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -68px -236px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="1"] .result.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat 0 -304px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="2"] .result.trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -236px 0; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="2"] .result.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -68px -304px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid .grid_cell[data-index="3"] .result.sea_monster { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/grid_images_be79f84.png) no-repeat -136px -304px; + width: 68px; + height: 68px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid_glow { + position: absolute; + top: 40px; + left: 5px; + width: 340px; + height: 340px; + pointer-events: none; + -webkit-animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + -ms-animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + display: none; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid_glow.yellow { + -moz-box-shadow: inset 0 0 5px 5px #fed935; + -webkit-box-shadow: inset 0 0 5px 5px #fed935; + box-shadow: inset 0 0 5px 5px #fed935; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid_glow.red { + -moz-box-shadow: inset 0 0 5px 5px #e72200; + -webkit-box-shadow: inset 0 0 5px 5px #e72200; + box-shadow: inset 0 0 5px 5px #e72200; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid_glow.red, +.gods_gifts.gridevent .player_grid_wrapper .player_grid_glow.yellow { + display: block; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid_blocked_inventory { + position: absolute; + top: 40px; + left: 5px; + width: 260px; + height: 340px; + pointer-events: none; + display: none; + padding: 0 40px; +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid_blocked_inventory.show { + display: block; + background: rgba(0,0,0,.6); +} + +.gods_gifts.gridevent .player_grid_wrapper .player_grid_blocked_inventory .blocked_inventory_text { + display: flex; + justify-content: center; + align-items: center; + color: #fc6; + font-weight: 600; + height: 100%; + width: 100%; +} + +.gods_gifts.gridevent .collected_items_indicator { + position: absolute; + top: 3px; + left: 227px; + padding: 3px 0 0 14px; + width: 295px; + height: 26px; +} + +.gods_gifts.gridevent .collected_items_indicator div { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -360px; + width: 27px; + height: 25px; + margin-right: 2px; +} + +.gods_gifts.gridevent .grid_reward_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_bg_c012cf5.png) no-repeat 0 0; + width: 507px; + height: 364px; + text-align: center; +} + +.gods_gifts.gridevent .grid_reward_wrapper .description, +.gods_gifts.gridevent .grid_reward_wrapper .headline { + padding: 10px; + color: #fc6; + text-align: center; +} + +.gods_gifts.gridevent .grid_reward_wrapper .reward_type_bg { + position: relative; + display: inline-block; +} + +.gods_gifts.gridevent .grid_reward_wrapper .reward_type_bg.sink_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_gift_revealed_556aeea.png) no-repeat 0 0; + width: 497px; + height: 208px; +} + +.gods_gifts.gridevent .grid_reward_wrapper .reward_type_bg.grand_prize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/popups_grand_prize_afb22b7.png) no-repeat 0 0; + width: 497px; + height: 208px; +} + +.gods_gifts.gridevent .grid_reward_wrapper .reward { + position: absolute; + right: 62px; + top: 72px; + width: 60px; + height: 60px; + padding: 7px 5px 3px; +} + +.gods_gifts.gridevent .banner_info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; +} + +.gods_gifts.gridevent .grand_prize_rewards_wrapper { + display: inline-block; + position: absolute; + top: 33px; + left: 22px; + width: 160px; + height: 100px; +} + +.gods_gifts.gridevent .grand_prize_rewards_wrapper .caption { + font-weight: 600; + color: #fff; + top: 6px; + text-align: center; + width: 120px; + height: 20px; + left: 20px; + text-shadow: 3px 3px 3px #000; + position: absolute; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts.gridevent .grand_prize_rewards_wrapper .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + right: 145px; +} + +.gods_gifts.gridevent .grand_prize_rewards_wrapper .next_text { + color: #fc6; + width: 66px; + text-align: center; + font-weight: 600; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts.gridevent .grand_prize_rewards_wrapper .grand_prize_rewards { + position: absolute; + top: 30px; + left: 7px; +} + +.gods_gifts.gridevent .grand_prize_rewards_wrapper .grand_prize_rewards .grand_prize_rewards_small { + position: relative; + top: -6px; +} + +.gods_gifts.gridevent .daily_special_reward_wrapper { + display: inline-block; + position: absolute; + top: 33px; + right: 15px; + width: 160px; + height: 100px; +} + +.gods_gifts.gridevent .daily_special_reward_wrapper .caption { + font-weight: 600; + color: #fff; + top: 6px; + text-align: center; + width: 120px; + height: 20px; + left: 20px; + text-shadow: 3px 3px 3px #000; + position: absolute; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts.gridevent .daily_special_reward_wrapper .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + position: absolute; + right: 141px; + top: 1px; +} + +.gods_gifts.gridevent .daily_special_reward_wrapper .daily_special_reward { + margin: 30px auto 0; + width: 60px; +} + +.gods_gifts.gridevent .daily_special_reward_wrapper .timer { + position: absolute; + color: #fc6; + width: 70px; + bottom: 23px; + right: 10px; +} + +.gods_gifts.gridevent .progression_wrapper { + position: absolute; + width: 160px; + height: 366px; + display: inline-block; + top: 145px; + left: 22px; +} + +.gods_gifts.gridevent .progression_wrapper .btn_spend_shards { + position: absolute; + left: 18px; + bottom: -11px; + width: 110px; +} + +.gods_gifts.gridevent .progression_wrapper .btn_spend_shards .icon { + top: -1px; +} + +.gods_gifts.gridevent .progression_wrapper .progression_movement { + width: 160px; + height: 340px; +} + +.gods_gifts.gridevent .progression_wrapper #progression_movement_item { + position: absolute; + opacity: 1; +} + +.gods_gifts.gridevent .progression_wrapper #progression_movement_item[data-direction="1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -374px; + width: 35px; + height: 40px; +} + +.gods_gifts.gridevent .progression_wrapper #progression_movement_item[data-direction="-1"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/battleships/sprite_images_46dfd1b.png) no-repeat -516px -334px; + width: 35px; + height: 40px; +} + +.gods_gifts.gridevent .progression_wrapper #progression_movement_item.invisible { + opacity: 0; +} + +.gods_gifts.gridevent .sub_window_grand_prize_journey .content { + overflow: hidden; +} + +.gods_gifts.gridevent .grand_prize_journey_wrapper { + width: 507px; + height: 364px; + overflow: hidden; +} + +.gods_gifts.gridevent .grand_prize_journey_wrapper .overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/wheel_overlay_fe936a2.png) no-repeat 0 0; + width: 507px; + height: 364px; + position: absolute; +} + +.gods_gifts.gridevent .grand_prize_journey_wrapper .inner_part { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/wheel_inner_part_b0f751f.png) no-repeat 0 0; + width: 259px; + height: 260px; + position: absolute; + top: 78px; + left: 131px; +} + +.gods_gifts.gridevent .grand_prize_journey_wrapper .description { + position: absolute; + text-align: center; + width: 450px; + left: 28px; + top: 15px; + color: #fc6; +} + +.gods_gifts.gridevent .grand_prize_journey_wrapper .button_wrapper { + width: 507px; + position: absolute; + text-align: center; + bottom: 50px; +} + +.gods_gifts.gridevent .grand_prize_journey_wrapper .button_wrapper .button_close { + display: inline-block; + min-width: 120px; +} + +.gods_gifts.gridevent .inventory_items { + position: absolute; + bottom: 29px; + left: 239px; +} + +.gods_gifts.gridevent .inventory_items .item { + display: inline-block; + vertical-align: middle; + position: relative; + cursor: pointer; +} + +.gods_gifts.gridevent .inventory_items .item:first-child { + left: 0; +} + +.gods_gifts.gridevent .inventory_items .item:nth-child(2) { + left: 6px; +} + +.gods_gifts.gridevent .inventory_items .item:nth-child(3) { + left: 12px; +} + +.gods_gifts.gridevent .inventory_items .item:nth-child(4) { + left: 18px; +} + +.gods_gifts.gridevent .inventory_items .item:nth-child(5) { + left: 24px; +} + +.gods_gifts.gridevent .inventory_items .item:nth-child(6) { + left: 30px; +} + +.gods_gifts.gridevent .inventory_items .item.invisible { + opacity: 0; +} + +.gods_gifts.gridevent .special_event_rewards { + position: absolute; + width: 75px; + height: 38px; + bottom: 26px; + left: 460px; +} + +.gods_gifts.gridevent .special_event_rewards .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px 0; + width: 66px; + height: 64px; + -webkit-animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + -ms-animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + animation: startGlow 3s linear 0s 1,fadeGlow 5s ease 3s infinite; + position: absolute; + top: -12px; + display: none; +} + +.gods_gifts.gridevent .special_event_rewards .reward_multiplier, +.gods_gifts.gridevent .special_event_rewards .scout { + display: inline-block; + vertical-align: middle; + position: relative; + width: 29px; + height: 100%; +} + +.gods_gifts.gridevent .special_event_rewards .reward_multiplier.active .glow, +.gods_gifts.gridevent .special_event_rewards .scout.active .glow { + display: block; +} + +.gods_gifts.gridevent .special_event_rewards .reward_multiplier .icon, +.gods_gifts.gridevent .special_event_rewards .scout .icon { + position: absolute; + top: 5px; +} + +.gods_gifts.gridevent .special_event_rewards .scout .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -545px -331px; + width: 29px; + height: 29px; + left: 5px; +} + +.gods_gifts.gridevent .special_event_rewards .scout .glow { + left: -14px; +} + +.gods_gifts.gridevent .special_event_rewards .reward_multiplier .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -331px; + width: 29px; + height: 29px; + left: 8px; +} + +.gods_gifts.gridevent .special_event_rewards .reward_multiplier .glow { + left: -10px; +} + +.gods_gifts .gridevent_harpy_scout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -545px -331px; + width: 29px; + height: 29px; +} + +.gods_gifts .gridevent_double_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/sprite_images_7a29b66.png) no-repeat -516px -331px; + width: 29px; + height: 29px; +} + +.gods_gifts .overlay_tutorial .character { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/single_images/tutorial_zeus_7dbd34e.png) no-repeat 0 0; + width: 354px; + height: 475px; +} + +.gods_gifts .overlay_tutorial .dropped_items, +.gods_gifts .overlay_tutorial .progression_cost, +.gods_gifts .overlay_tutorial .reset_cost, +.gods_gifts .overlay_tutorial .time_left, +.gods_gifts .overlay_tutorial .turn_cost { + color: #fc6; +} + +.gods_gifts .overlay_tutorial .sink_rewards { + color: #000; + font-weight: 600; + font-size: 14px; + max-width: 100px; + text-align: center; +} + +.gods_gifts .overlay_tutorial.step_1 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -387px 0; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_2 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -387px -216px; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_2 .content .tutorial_image .turn_cost { + display: block; + top: 22px; + right: 206px; + max-width: 120px; +} + +.gods_gifts .overlay_tutorial.step_3 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat 0 -432px; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_4 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat 0 0; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_4 .content .tutorial_image .sink_rewards { + display: block; + right: 16px; + top: 20px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts .overlay_tutorial.step_5 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -774px 0; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_5 .content .tutorial_image .sink_rewards { + display: block; + top: 20px; + left: 125px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts .overlay_tutorial.step_6 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -774px -216px; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_6 .content .tutorial_image .reset_cost { + display: block; + font-weight: 600; + bottom: 57px; + right: 168px; +} + +.gods_gifts .overlay_tutorial.step_6 .content .tutorial_image .time_left { + display: block; + right: 130px; + top: 15px; +} + +.gods_gifts .overlay_tutorial.step_7 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -774px -432px; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_7 .content .tutorial_image .daily_special { + display: block; + left: 95px; + top: 45px; + width: 140px; + text-align: center; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.gods_gifts .overlay_tutorial.step_8 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat 0 -648px; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_8 .content .tutorial_image .dropped_items { + display: block; + right: 54px; + top: 144px; + font-size: 11px; +} + +.gods_gifts .overlay_tutorial.step_9 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -387px -648px; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_9 .content .tutorial_image .progression_cost { + display: block; + font-weight: 600; + bottom: 7px; + left: 109px; +} + +.gods_gifts .overlay_tutorial.step_10 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat -387px -432px; + width: 387px; + height: 216px; +} + +.gods_gifts .overlay_tutorial.step_11 .content .tutorial_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/tutorial_images_a9c4d09.png) no-repeat 0 -216px; + width: 387px; + height: 216px; +} + +.gridevent .overlay_tutorial.gods_gifts .character { + bottom: 8px; + left: 20px; +} + +.gridevent .overlay_tutorial.gods_gifts .speechbubble { + right: 20px; + top: 20px; +} + +.gridevent .overlay_tutorial .character { + position: absolute; + bottom: 10px; + left: 7px; +} + +.gridevent .overlay_tutorial .speechbubble { + position: absolute; + width: 430px; + right: 30px; + top: 50px; +} + +.gridevent .overlay_tutorial .speechbubble .content { + min-height: 350px; +} + +.gridevent .overlay_tutorial .speechbubble .speechbubble_arrow_l { + left: -6px; + top: 125px; +} + +.gridevent .overlay_tutorial .speechbubble .button_wrapper { + width: 100%; + text-align: center; + position: absolute; + bottom: 0; +} + +.gridevent .overlay_tutorial .speechbubble .btn_wnd.close { + top: 6px; + right: 8px; + position: absolute; +} + +.gridevent .overlay_tutorial .text { + margin: 20px 20px 0 20px; +} + +.gridevent .overlay_tutorial .tutorial_image { + margin: 5px auto 30px; + position: relative; +} + +.gridevent .overlay_tutorial .image_text_wrapper { + position: absolute; + top: 14px; + left: 24px; + width: 331px; + height: 181px; +} + +.gridevent .overlay_tutorial .image_text_wrapper div { + display: none; + position: absolute; +} + +.gridevent .onestep { + -webkit-animation: moveProgressOneStep 1s ease-out; + -ms-animation: moveProgressOneStep 1s ease-out; + animation: moveProgressOneStep 1s ease-out; + -webkit-animation-fill-mode: forwards; + -moz-animation-fill-mode: forwards; + -o-animation-fill-mode: forwards; + -ms-animation-fill-mode: forwards; + animation-fill-mode: forwards; +} + +@-webkit-keyframes moveProgressOneStep { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 50% { + -webkit-transform: rotate(-290deg); + -ms-transform: rotate(-290deg); + -o-transform: rotate(-290deg); + transform: rotate(-290deg); + } + + 100% { + -webkit-transform: rotate(-300deg); + -ms-transform: rotate(-300deg); + -o-transform: rotate(-300deg); + transform: rotate(-300deg); + } +} + +@-ms-keyframes moveProgressOneStep { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 50% { + -webkit-transform: rotate(-290deg); + -ms-transform: rotate(-290deg); + -o-transform: rotate(-290deg); + transform: rotate(-290deg); + } + + 100% { + -webkit-transform: rotate(-300deg); + -ms-transform: rotate(-300deg); + -o-transform: rotate(-300deg); + transform: rotate(-300deg); + } +} + +@keyframes moveProgressOneStep { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 50% { + -webkit-transform: rotate(-290deg); + -ms-transform: rotate(-290deg); + -o-transform: rotate(-290deg); + transform: rotate(-290deg); + } + + 100% { + -webkit-transform: rotate(-300deg); + -ms-transform: rotate(-300deg); + -o-transform: rotate(-300deg); + transform: rotate(-300deg); + } +} + +.gridevent .twosteps { + -webkit-animation: moveProgressTwoSteps 2s ease-out; + -ms-animation: moveProgressTwoSteps 2s ease-out; + animation: moveProgressTwoSteps 2s ease-out; + -webkit-animation-fill-mode: forwards; + -moz-animation-fill-mode: forwards; + -o-animation-fill-mode: forwards; + -ms-animation-fill-mode: forwards; + animation-fill-mode: forwards; +} + +@-webkit-keyframes moveProgressTwoSteps { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 60% { + -webkit-transform: rotate(-50deg); + -ms-transform: rotate(-50deg); + -o-transform: rotate(-50deg); + transform: rotate(-50deg); + } + + 100% { + -webkit-transform: rotate(-60deg); + -ms-transform: rotate(-60deg); + -o-transform: rotate(-60deg); + transform: rotate(-60deg); + } +} + +@-ms-keyframes moveProgressTwoSteps { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 60% { + -webkit-transform: rotate(-50deg); + -ms-transform: rotate(-50deg); + -o-transform: rotate(-50deg); + transform: rotate(-50deg); + } + + 100% { + -webkit-transform: rotate(-60deg); + -ms-transform: rotate(-60deg); + -o-transform: rotate(-60deg); + transform: rotate(-60deg); + } +} + +@keyframes moveProgressTwoSteps { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 60% { + -webkit-transform: rotate(-50deg); + -ms-transform: rotate(-50deg); + -o-transform: rotate(-50deg); + transform: rotate(-50deg); + } + + 100% { + -webkit-transform: rotate(-60deg); + -ms-transform: rotate(-60deg); + -o-transform: rotate(-60deg); + transform: rotate(-60deg); + } +} + +.gridevent .threesteps { + -webkit-animation: moveProgressThreeSteps 1.5s ease-out; + -ms-animation: moveProgressThreeSteps 1.5s ease-out; + animation: moveProgressThreeSteps 1.5s ease-out; + -webkit-animation-fill-mode: forwards; + -moz-animation-fill-mode: forwards; + -o-animation-fill-mode: forwards; + -ms-animation-fill-mode: forwards; + animation-fill-mode: forwards; +} + +@-webkit-keyframes moveProgressThreeSteps { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 60% { + -webkit-transform: rotate(-170deg); + -ms-transform: rotate(-170deg); + -o-transform: rotate(-170deg); + transform: rotate(-170deg); + } + + 100% { + -webkit-transform: rotate(-180deg); + -ms-transform: rotate(-180deg); + -o-transform: rotate(-180deg); + transform: rotate(-180deg); + } +} + +@-ms-keyframes moveProgressThreeSteps { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 60% { + -webkit-transform: rotate(-170deg); + -ms-transform: rotate(-170deg); + -o-transform: rotate(-170deg); + transform: rotate(-170deg); + } + + 100% { + -webkit-transform: rotate(-180deg); + -ms-transform: rotate(-180deg); + -o-transform: rotate(-180deg); + transform: rotate(-180deg); + } +} + +@keyframes moveProgressThreeSteps { + 0% { + -webkit-transform: rotate(-360deg); + -ms-transform: rotate(-360deg); + -o-transform: rotate(-360deg); + transform: rotate(-360deg); + } + + 60% { + -webkit-transform: rotate(-170deg); + -ms-transform: rotate(-170deg); + -o-transform: rotate(-170deg); + transform: rotate(-170deg); + } + + 100% { + -webkit-transform: rotate(-180deg); + -ms-transform: rotate(-180deg); + -o-transform: rotate(-180deg); + transform: rotate(-180deg); + } +} + +.gods_gifts .progression_steps .progression_item { + position: absolute; +} + +.gods_gifts .progression_steps .progression_item.animated { + -webkit-animation: fadeInOut 1s ease 1; + -ms-animation: fadeInOut 1s ease 1; + animation: fadeInOut 1s ease 1; +} + +.gods_gifts .progression_steps .progression_item:nth-child(1) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -96px -87px; + width: 24px; + height: 34px; + top: 263px; + left: 111px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(2) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat 0 -87px; + width: 24px; + height: 35px; + top: 248px; + left: 49px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(3) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px -61px; + width: 24px; + height: 29px; + top: 231px; + left: 17px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(4) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px -119px; + width: 24px; + height: 29px; + top: 219px; + left: 36px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(5) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -120px -122px; + width: 24px; + height: 30px; + top: 233px; + left: 62px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(6) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -72px -87px; + width: 24px; + height: 34px; + top: 236px; + left: 96px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(7) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -48px -87px; + width: 24px; + height: 34px; + top: 192px; + left: 102px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(8) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -24px -87px; + width: 24px; + height: 34px; + top: 178px; + left: 76px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(9) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px 0; + width: 24px; + height: 30px; + top: 192px; + left: 24px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(10) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -24px -122px; + width: 24px; + height: 31px; + top: 177px; + left: 41px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(11) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px -90px; + width: 24px; + height: 29px; + top: 146px; + left: 37px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(12) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -142px 0; + width: 24px; + height: 33px; + top: 145px; + left: 61px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(13) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -48px -122px; + width: 24px; + height: 31px; + top: 144px; + left: 95px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(14) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -166px -30px; + width: 23px; + height: 31px; + top: 118px; + left: 80px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(15) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -142px -65px; + width: 24px; + height: 31px; + top: 124px; + left: 45px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(16) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -96px -122px; + width: 24px; + height: 30px; + top: 101px; + left: 63px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(17) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -142px -33px; + width: 24px; + height: 32px; + top: 83px; + left: 52px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(18) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat 0 -122px; + width: 24px; + height: 31px; + top: 78px; + left: 79px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(19) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat -72px -122px; + width: 24px; + height: 30px; + top: 50px; + left: 70px; +} + +.gods_gifts .progression_steps .progression_item:nth-child(20) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/grid_event/gods_gifts/progression_images_62ad367.png) no-repeat 0 0; + width: 142px; + height: 87px; + top: 10px; + left: 4px; +} + +.olympus_single_images .header_purple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/header_purple_7c5e2e6.png) no-repeat 0 0; + width: 150px; + height: 80px; +} + +.olympus_single_images .large_temple_info_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_aphrodite_fb472f4.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .large_temple_info_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_ares_3b11f7a.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .large_temple_info_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_artemis_57bdc88.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .large_temple_info_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_athena_873a8a3.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .large_temple_info_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_hades_47bf628.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .large_temple_info_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_hera_358d141.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .large_temple_info_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_poseidon_55c1199.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .large_temple_info_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_zeus_efd1ace.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .olympus_large_temple_stage_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_large_temple_stage_notification_b79dca5.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.olympus_single_images .olympus_olympus_conquered_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_olympus_conquered_notification_86faf4b.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.olympus_single_images .olympus_olympus_jumped_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_olympus_jumped_notification_d476755.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.olympus_single_images .olympus_olympus_stage_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_olympus_stage_notification_a4aa530.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.olympus_single_images .olympus_post_temple_stage_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_post_temple_stage_notification_05b0b8f.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.olympus_single_images .olympus_ranking_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_ranking_background_3aaa71b.png) no-repeat 0 0; + width: 818px; + height: 527px; +} + +.olympus_single_images .olympus_small_temple_stage_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_small_temple_stage_notification_837493a.png) no-repeat 0 0; + width: 680px; + height: 520px; +} + +.olympus_single_images .overview_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/overview_bg_c96badb.png) no-repeat 0 0; + width: 818px; + height: 527px; +} + +.olympus_single_images .overview_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/overview_olympus_dc9b6ad.png) no-repeat 0 0; + width: 288px; + height: 243px; +} + +.olympus_single_images .progress_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/progress_bar_b284ee6.png) no-repeat 0 0; + width: 1px; + height: 19px; +} + +.olympus_single_images .row_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/row_highlight_5881309.png) no-repeat 0 0; + width: 739px; + height: 1px; +} + +.olympus_single_images .rules_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/rules_header_c661450.png) no-repeat 0 0; + width: 127px; + height: 25px; +} + +.olympus_single_images .small_temple_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/small_temple_info_6935093.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_single_images .temple_info_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/temple_info_bg_3b6e7b5.png) no-repeat 0 0; + width: 818px; + height: 527px; +} + +.olympus_overview .brazier { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px -266px; + width: 153px; + height: 124px; +} + +.olympus_overview .curtain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat 0 -298px; + width: 596px; + height: 199px; +} + +.olympus_overview .curtain_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat 0 0; + width: 596px; + height: 298px; +} + +.olympus_overview .heroic_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px -390px; + width: 75px; + height: 75px; +} + +.olympus_overview .large_temple_silhouette { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat 0 -497px; + width: 218px; + height: 156px; +} + +.olympus_overview .olympian_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -671px -390px; + width: 75px; + height: 75px; +} + +.olympus_overview .olympus_flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px 0; + width: 164px; + height: 266px; +} + +.olympus_overview .olympus_tab_laurel { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px -465px; + width: 95px; + height: 18px; +} + +.olympus_overview .primordial_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -218px -497px; + width: 75px; + height: 75px; +} + +.olympus_overview .tab_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -368px -497px; + width: 141px; + height: 36px; +} + +.olympus_overview .tab_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -509px -497px; + width: 141px; + height: 36px; +} + +.olympus_overview .tital_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -293px -497px; + width: 75px; + height: 75px; +} + +.olympus_overview_large_temples .alliance_flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -248px -360px; + width: 32px; + height: 32px; +} + +.olympus_overview_large_temples .arrow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat 0 -360px; + width: 62px; + height: 32px; +} + +.olympus_overview_large_temples .arrow_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -62px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview_large_temples .arrow_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -124px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview_large_temples .arrow_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -186px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview_large_temples .large_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat 0 0; + width: 165px; + height: 180px; +} + +.olympus_overview_large_temples .large_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -165px 0; + width: 165px; + height: 180px; +} + +.olympus_overview_large_temples .large_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -330px 0; + width: 165px; + height: 180px; +} + +.olympus_overview_large_temples .large_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat 0 -180px; + width: 165px; + height: 180px; +} + +.olympus_overview_large_temples .large_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -165px -180px; + width: 165px; + height: 180px; +} + +.olympus_overview_large_temples .large_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -330px -180px; + width: 165px; + height: 180px; +} + +.olympus_overview_large_temples .large_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -495px 0; + width: 165px; + height: 180px; +} + +.olympus_overview_large_temples .large_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -495px -180px; + width: 165px; + height: 180px; +} + +.olympus_temple_info .incoming_attacks_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat -303px -289px; + width: 24px; + height: 24px; +} + +.olympus_temple_info .incoming_support_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat -327px -289px; + width: 24px; + height: 24px; +} + +.olympus_temple_info .olympus_temple_tooltip_br { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat -78px -323px; + width: 59px; + height: 72px; +} + +.olympus_temple_info .olympus_temple_tooltip_tl { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat 0 -396px; + width: 49px; + height: 92px; +} + +.olympus_temple_info .temple_info_olympus_curse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat 0 -323px; + width: 78px; + height: 73px; +} + +.olympus_temple_info .temple_info_olympus_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat 0 0; + width: 303px; + height: 323px; +} + +.olympus_temple_info .temple_info_olympus_illustration { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat -303px 0; + width: 294px; + height: 289px; +} + +.olympus_map_temples .large_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_aphrodite_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px 0; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -128px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_ares_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -128px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -256px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_artemis_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -256px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px 0; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_athena_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -128px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -256px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_hades_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -384px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -384px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_hera_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -384px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -512px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_poseidon_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -512px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -512px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .large_temple_zeus_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px 0; + width: 254px; + height: 128px; +} + +.olympus_map_temples .olympus_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -128px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .olympus_temple_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -256px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -384px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_aphrodite_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -512px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -640px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_ares_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -640px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -640px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_artemis_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -640px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -768px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_athena_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -768px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -768px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_hades_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -768px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px 0; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_hera_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -128px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -256px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_poseidon_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -384px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -512px; + width: 254px; + height: 128px; +} + +.olympus_map_temples .small_temple_zeus_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -640px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.olympus_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -256px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.large_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px 0; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.large_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -512px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.large_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -384px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.large_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -256px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.large_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -384px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.large_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -128px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.large_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px 0; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.large_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -128px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.small_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -640px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.small_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -384px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.small_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -128px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.small_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -640px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.small_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -768px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.small_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -768px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.small_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -512px; + width: 254px; + height: 128px; +} + +#map.night #map_tiles .templetile.small_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -640px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.olympus_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -128px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.large_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -512px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.large_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -512px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.large_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -254px -384px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.large_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -256px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.large_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -256px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.large_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px 0; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.large_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.large_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -128px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.small_temple_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -512px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.small_temple_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px -256px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.small_temple_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -1016px 0; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.small_temple_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -640px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.small_temple_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -508px -768px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.small_temple_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -768px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.small_temple_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat -762px -384px; + width: 254px; + height: 128px; +} + +#map #map_tiles .templetile.small_temple_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_map_temples_18d4fe0.png) no-repeat 0 -640px; + width: 254px; + height: 128px; +} + +#map_islands .temple_link { + position: absolute; + width: 74px; + height: 90px; +} + +#map_islands .city_shield_blessing { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/city_shield_blessing_a222cce.png) no-repeat 0 0; + width: 120px; + height: 72px; +} + +#map_islands .city_shield_blessing.large.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_aphrodite_shield_259d05b.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map_islands .city_shield_blessing.large.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_ares_shield_ed6fd73.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map_islands .city_shield_blessing.large.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_artemis_shield_a6a3281.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map_islands .city_shield_blessing.large.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_athena_shield_89be67b.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map_islands .city_shield_blessing.large.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_hades_shield_bd8347d.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map_islands .city_shield_blessing.large.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_hera_shield_f66018b.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map_islands .city_shield_blessing.large.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_poseidon_shield_15aaf34.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map_islands .city_shield_blessing.large.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/large_temple_zeus_shield_2c14ba5.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +#map_islands .city_shield_blessing.olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/town_overlay/olympus_shield_22775c9.png) no-repeat 0 0; + width: 254px; + height: 128px; +} + +.olympus_purple_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/rules_header_c661450.png) no-repeat 0 0; + width: 127px; + background-repeat: repeat-x; + height: 25px; + line-height: 25px; + width: 100%; + color: #fff; + font-weight: 600; + text-shadow: #fc6; +} + +.olympus_temple_tooltip { + padding: 10px 40px; + text-align: center; + pointer-events: none; + max-width: 300px; +} + +.olympus_temple_tooltip .god_micro { + position: absolute; + right: 15px; +} + +.olympus_temple_tooltip::after, +.olympus_temple_tooltip::before { + content: ''; + position: absolute; +} + +.olympus_temple_tooltip::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat 0 0; + width: 49px; + height: 92px; + top: -12px; + left: -10px; +} + +.olympus_temple_tooltip::after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/general/map_general_24f9f8c.png) no-repeat -49px 0; + width: 59px; + height: 72px; + bottom: -8px; + right: 0; +} + +.olympus_temple_tooltip table { + border-collapse: collapse; + margin: 0 auto; + font-weight: 600; +} + +.olympus_temple_tooltip table td:first-of-type { + display: none; +} + +.alliance_powers { + padding: 10px 40px; + line-height: 16px; +} + +.alliance_powers ul { + list-style-type: disc; + list-style-position: outside; + text-align: left; + display: inline-block; +} + +.alliance_powers:not(.with_points)>ul li:only-child { + list-style: none; +} + +.alliance_powers .title { + font-size: 15px; + margin-bottom: 5px; +} + +.alliance_powers .title>strong { + margin-left: 5px; +} + +.flag_wrapper { + position: relative; + margin: auto; + width: 71px; +} + +.flag_wrapper .owner_flag { + position: absolute; + width: 89px; + height: 110px; + margin: auto; +} + +.flag_wrapper .flag_background { + position: absolute; +} + +.flag_wrapper .flag_background img { + width: 100%; +} + +.olympus_ranking .purple_header tbody tr.row_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/row_highlight_5881309.png) no-repeat 0 0; + width: 739px; + height: 1px; + height: 26px; + background-repeat: repeat; +} + +.olympus_ranking .ranking_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/olympus_ranking_background_3aaa71b.png) no-repeat 0 0; + width: 818px; + height: 527px; + position: relative; + pointer-events: none; +} + +.olympus_ranking .flags_in_background { + position: absolute; + top: 83px; + left: 99px; +} + +.olympus_ranking .flags_in_background .alliance_flag { + position: absolute; + width: 44px; + height: 46px; +} + +.olympus_ranking .flags_in_background .alliance_flag img { + width: 100%; +} + +.olympus_ranking .flags_in_background .flag_1 { + left: 294px; + top: 38px; +} + +.olympus_ranking .flags_in_background .flag_3 { + left: 411px; + top: 75px; +} + +.olympus_ranking .flags_in_background .flag_2 { + left: 178px; + top: 63px; +} + +.olympus_ranking .ranking { + position: absolute; + width: 750px; + bottom: 15px; + left: 40px; + height: 245px; +} + +.olympus_ranking .ranking .game_border { + height: 212px; + overflow: hidden; +} + +.olympus_ranking .available_artifact { + width: 30px; +} + +.olympus_ranking .available_artifact>div { + margin: auto; +} + +.sandy-box .item.temple_command .arrow_left { + display: block; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -725px -152px; + width: 11px; + height: 32px; +} + +.sandy-box .item.temple_command div { + display: inline-block; + vertical-align: middle; +} + +.sandy-box .item.temple_command .temple_link_wrapper { + margin-top: 8px; + display: block; +} + +.sandy-box .item.temple_command .incoming_attacks, +.sandy-box .item.temple_command .incoming_revolts_arising, +.sandy-box .item.temple_command .incoming_support { + min-width: 50px; + font-weight: 600; +} + +.sandy-box .item.temple_command .attack_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -90px -671px; + width: 16px; + height: 16px; +} + +.sandy-box .item.temple_command .support_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -106px -671px; + width: 16px; + height: 16px; +} + +.sandy-box .item.temple_command .revolts_arising_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -122px -671px; + width: 13px; + height: 16px; +} + +.sandy-box .item.temple_command .revolts_active_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -135px -671px; + width: 13px; + height: 16px; +} + +.alliance_temple_overview { + overflow-y: auto; + height: 100%; +} + +.alliance_temple_overview .small_temples_list { + margin-bottom: 20px; +} + +.alliance_temple_overview .expandable_list .arrow { + display: inline-block; + vertical-align: middle; +} + +.alliance_temple_overview .expandable_list .content, +.alliance_temple_overview .expandable_list .expand_text { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; +} + +.alliance_temple_overview .expandable_list .expand_text { + padding-left: 18px; + height: 30px; + line-height: 30px; +} + +.alliance_temple_overview .expandable_list .no_temples { + text-align: center; +} + +.alliance_temple_overview .expandable_list.close .content { + display: none; +} + +.alliance_temple_overview .expandable_list.close .arrow { + width: 0; + height: 0; + border-top: 8px solid transparent; + border-bottom: 8px solid transparent; + border-left: 8px solid #fff; + margin-left: 18px; +} + +.alliance_temple_overview .expandable_list.open .expand_text { + display: none; +} + +.alliance_temple_overview .expandable_list.open .arrow { + width: 0; + height: 0; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-top: 8px solid #fff; + margin-left: 10px; +} + +.alliance_temple_overview .content { + padding: 10px; +} + +.alliance_temple_overview .content table { + width: 100%; + border-collapse: collapse; + border-spacing: 0; + text-align: center; + table-layout: fixed; +} + +.alliance_temple_overview .content thead { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/rules_header_c661450.png) no-repeat 0 0; + width: 127px; + height: 25px; + background-repeat: repeat-x; + padding: 0; + color: #fff; +} + +.alliance_temple_overview .content thead th.temple { + cursor: pointer; +} + +.alliance_temple_overview .content thead th.temple.asc::before, +.alliance_temple_overview .content thead th.temple.desc::before { + display: inline-block; +} + +.alliance_temple_overview .content thead th.temple.asc::before { + content: "\25B2"; +} + +.alliance_temple_overview .content thead th.temple.desc::before { + content: "\25BC"; +} + +.alliance_temple_overview .content thead th { + height: 25px; + width: 150px; +} + +.alliance_temple_overview .content thead th.power { + width: 280px; +} + +.alliance_temple_overview .content tbody tr { + border-bottom: 1px solid #d0be97; + text-align: center; +} + +.alliance_temple_overview .content tbody tr:nth-child(even) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.alliance_temple_overview .content tbody tr:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.alliance_temple_overview .content tbody tr .god_micro { + display: inline-block; + float: none; +} + +.alliance_temple_overview .content td:not(.power) { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.alliance_temple_overview .content thead th.temple { + width: 120px; + cursor: default; +} + +.alliance_temple_overview .content th.god { + width: 50px; +} + +.alliance_temple_overview .content th.stationed_units { + width: 180px; +} + +.alliance_temple_overview .content td { + height: 50px; +} + +.alliance_temple_overview .content td.stationed_units { + text-align: left; +} + +.alliance_temple_overview .content td.stationed_units .ground_units, +.alliance_temple_overview .content td.stationed_units .naval_units { + overflow: hidden; +} + +.alliance_temple_overview .content .unit { + margin: 1px; + border: 1px solid #423515; + width: 25px; + height: 25px; +} + +.alliance_temple_overview .content .unit span { + font-size: 11px; +} + +.alliance_temple_overview .olympus_purple_header { + cursor: pointer; +} + +.alliance_temple_overview .olympus_purple_header>span { + cursor: pointer; + margin: 0 5px; +} + +.alliance_temple_overview .limit { + float: right; +} + +.olympus_overview .overview_tab { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/overview_bg_c96badb.png) no-repeat 0 0; + width: 818px; + height: 527px; +} + +.olympus_overview .overview_tab .tabs { + position: relative; + top: 16px; + width: 564px; + margin: auto; +} + +.olympus_overview .overview_tab .tabs .tab { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -509px -497px; + width: 141px; + height: 36px; + display: inline-table; + cursor: pointer; + vertical-align: top; +} + +.olympus_overview .overview_tab .tabs .tab.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -368px -497px; + width: 141px; + height: 36px; +} + +.olympus_overview .overview_tab .tabs .tab>div { + text-align: center; + word-break: break-word; + padding: 5px 10px; + font-weight: 600; + display: table-cell; + vertical-align: middle; +} + +.olympus_overview .overview_tab .tabs .tab[details="3"]::before { + content: ""; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px -465px; + width: 95px; + height: 18px; + position: absolute; + top: 10px; + left: 23px; + padding: 5px 35px; +} + +.olympus_overview .overview_tab .tab_header { + position: absolute; + width: 580px; + top: 56px; + left: 116px; + padding: 15px 10px 20px; + text-align: center; + height: 75px; +} + +.olympus_overview .overview_tab .tab_header>:only-child { + position: relative; + top: 50%; + transform: translateY(-50%); +} + +.olympus_overview .overview_tab .tab_header .text { + font-weight: 600; +} + +.olympus_overview .overview_tab .tab_header .headline { + margin: 5px 0; + font-weight: 600; +} + +.olympus_overview .single-progressbar { + width: 400px; + margin: auto; +} + +.olympus_overview .single-progressbar .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/progress_bar_b284ee6.png) no-repeat 0 0; + width: 1px; + height: 19px; + background-repeat: repeat-x; +} + +.olympus_overview .brazier { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px -266px; + width: 153px; + height: 124px; + position: absolute; + bottom: 0; +} + +.olympus_overview .brazier.left { + left: 70px; +} + +.olympus_overview .brazier.right { + transform: scaleX(-1); + right: 70px; +} + +.olympus_overview .overview_body { + height: 317px; + width: 735px; + top: 190px; + position: absolute; + left: 28px; + overflow: hidden; + padding: 10px 20px; +} + +.olympus_overview .curtain_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat 0 0; + width: 596px; + height: 298px; + margin: auto; + text-align: center; +} + +.olympus_overview .curtain_big .headline { + padding: 25px 0; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + max-width: 415px; + margin: auto; +} + +.olympus_overview .curtain_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat 0 -298px; + width: 596px; + height: 199px; +} + +.olympus_overview .curtain_big, +.olympus_overview .curtain_small { + margin: auto; + text-align: center; +} + +.olympus_overview .curtain_big .headline, +.olympus_overview .curtain_small .headline { + padding: 25px 0; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + max-width: 415px; + margin: auto; +} + +.olympus_overview .overview_info ul.rewards { + display: inline-block; +} + +.olympus_overview .overview_info ul.rewards li { + display: inline-block; + vertical-align: middle; + margin-right: -15px; + margin-left: -15px; + position: relative; +} + +.olympus_overview .overview_info ul.rewards .glow { + margin-top: -20px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -488px 0; + width: 119px; + height: 118px; +} + +.olympus_overview .overview_info ul.rewards .player_rank_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px -390px; + width: 75px; + height: 75px; + position: absolute; + top: 0; + left: 25px; +} + +.olympus_overview .overview_info ul.rewards .olympus_reward { + position: absolute; + top: 12px; + left: 34px; +} + +.olympus_overview .overview_info ul.rewards .olympus_award { + position: absolute; + top: 0; + left: 18px; +} + +.olympus_overview .olympus_rules { + text-align: left; + margin: 15px 0 10px; +} + +.olympus_overview .olympus_rules .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/rules_header_c661450.png) no-repeat 0 0; + width: 127px; + background-repeat: repeat-x; + height: 25px; + line-height: 25px; + width: 100%; + color: #fff; + font-weight: 600; + text-shadow: #fc6; + cursor: pointer; +} + +.olympus_overview .olympus_rules .header .text { + color: #fff; + text-shadow: 1px 1px 0 #000; + font-weight: 600; + display: inline-block; + margin-left: 5px; +} + +.olympus_overview .olympus_rules.close .arrow { + width: 0; + height: 0; + border-top: 8px solid transparent; + border-bottom: 8px solid transparent; + border-left: 8px solid #fff; + margin-left: 18px; +} + +.olympus_overview .olympus_rules.close .rules { + display: none; +} + +.olympus_overview .olympus_rules.open .arrow { + width: 0; + height: 0; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-top: 8px solid #fff; + margin-left: 10px; +} + +.olympus_overview .olympus_rules.open .expand_text { + display: none; +} + +.olympus_overview .olympus_rules .arrow { + display: inline-block; + vertical-align: middle; +} + +.olympus_overview .olympus_rules .expand_text { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + padding-left: 18px; + height: 30px; + line-height: 30px; + border-bottom: 1px solid #82775f; +} + +.olympus_overview .olympus_rules .rules { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + padding-left: 18px; + padding-right: 18px; + height: auto; +} + +.olympus_overview .olympus_rules .rules p { + margin: 0; + padding-top: 10px; +} + +.olympus_overview .olympus_rules .rules ul { + list-style: disc; + padding-left: 30px; +} + +.olympus_overview .olympus_rules .rules ul:last-child { + padding-bottom: 10px; +} + +.olympus_overview .olympus_rules .rules h5 { + margin-top: 7px; + margin-bottom: 7px; +} + +.olympus_overview .olympus_rules .rules div { + padding-top: 10px; + padding-bottom: 10px; +} + +.olympus_overview .info_footer { + text-align: center; + color: #fc6; + text-shadow: 1px 1px 0 #000; + position: absolute; + margin: auto; + bottom: 40px; + font-weight: 600; + width: 735px; +} + +.olympus_overview .info_footer>div { + display: inline-block; + vertical-align: middle; +} + +.olympus_winner_ranks .winner_rank[data-rank=rank2] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px -390px; + width: 75px; + height: 75px; +} + +.olympus_winner_ranks .winner_rank[data-rank=rank3] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -671px -390px; + width: 75px; + height: 75px; +} + +.olympus_winner_ranks .winner_rank[data-rank=rank4] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -293px -497px; + width: 75px; + height: 75px; +} + +.olympus_winner_ranks .winner_rank[data-rank=rank5] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -218px -497px; + width: 75px; + height: 75px; +} + +.olympus_winner_ranks .winner_rank .caption, +.olympus_winner_ranks .winner_rank .icon { + display: inline-block; + vertical-align: middle; + max-width: 300px; +} + +.olympus_overview .small_temples .brazier { + bottom: 0; +} + +.olympus_overview .small_temples .single-progressbar .caption { + z-index: 1000; +} + +.olympus_overview .small_temples .info_content { + height: 230px; + width: 735px; + position: relative; +} + +.olympus_overview .small_temples .filter_wrapper { + width: 100%; + height: 30px; + text-align: right; +} + +.olympus_overview .small_temples .info_footer { + bottom: 40px; +} + +.olympus_overview .small_temples .tables_wrapper table { + width: 100%; + border-collapse: collapse; + border-spacing: 0; + text-align: center; + table-layout: fixed; +} + +.olympus_overview .small_temples .tables_wrapper thead { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/rules_header_c661450.png) no-repeat 0 0; + width: 127px; + height: 25px; + background-repeat: repeat-x; + padding: 0; + color: #fff; +} + +.olympus_overview .small_temples .tables_wrapper thead th.temple { + cursor: pointer; +} + +.olympus_overview .small_temples .tables_wrapper thead th.temple.asc::before, +.olympus_overview .small_temples .tables_wrapper thead th.temple.desc::before { + display: inline-block; +} + +.olympus_overview .small_temples .tables_wrapper thead th.temple.asc::before { + content: "\25B2"; +} + +.olympus_overview .small_temples .tables_wrapper thead th.temple.desc::before { + content: "\25BC"; +} + +.olympus_overview .small_temples .tables_wrapper thead th { + height: 25px; + width: 150px; +} + +.olympus_overview .small_temples .tables_wrapper thead th.power { + width: 280px; +} + +.olympus_overview .small_temples .tables_wrapper tbody tr { + border-bottom: 1px solid #d0be97; + text-align: center; +} + +.olympus_overview .small_temples .tables_wrapper tbody tr:nth-child(even) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.olympus_overview .small_temples .tables_wrapper tbody tr:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.olympus_overview .small_temples .tables_wrapper tbody tr .god_micro { + display: inline-block; + float: none; +} + +.olympus_overview .small_temples .tables_wrapper td:not(.power) { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.olympus_overview .filters_sub_window { + height: 380px; +} + +.olympus_overview .filters_sub_window .buttons_wrap { + width: 100%; + position: absolute; + bottom: 10px; + height: 30px; + text-align: center; +} + +.olympus_overview .filters_sub_window .filter_section { + width: 230px; + display: inline-block; + float: left; + margin: 10px; +} + +.olympus_overview .filters_sub_window .filter_section .title { + width: 100%; + text-align: center; + font-weight: 600; + margin-bottom: 5px; +} + +.olympus_overview .filters_sub_window .filter_section .alliance_input { + width: 220px; + margin-top: 9px; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox_with_delete_btn { + position: relative; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox_with_delete_btn .cbx_caption { + max-width: 175px; + text-align: left; +} + +.olympus_overview .filters_sub_window .filter_section .delete_checkbox_filter { + width: 20px; + height: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_corners.png) 0 -688px no-repeat; + position: absolute; + top: 10px; + right: 10px; + cursor: pointer; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox { + position: relative; + margin: 5px; + text-align: center; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new .cbx_icon { + margin-top: 4px; + margin-right: 3px; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new .cbx_caption { + display: inline-block; + line-height: 30px; + padding: 0; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption { + width: 30px; + height: 30px; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 0 no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.aphrodite_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px 0 no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -30px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.ares_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -30px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px 0 no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.artemis_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -30px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -60px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.athena_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -60px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -60px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.hades_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px 0 no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -30px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.hera_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -60px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -90px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.none_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -90px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -90px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.poseidon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -90px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -120px 0 no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_caption.zeus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -120px -30px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image .cbx_icon { + margin-right: 5px; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image[data-filter=zeus] .cbx_caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -120px 0 no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image[data-filter=athena] .cbx_caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -60px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image[data-filter=poseidon] .cbx_caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -90px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image[data-filter=hera] .cbx_caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -30px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image[data-filter=hades] .cbx_caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -60px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image[data-filter=artemis] .cbx_caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px 0 no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image[data-filter=aphrodite] .cbx_caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 0 no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section .filter_checkbox.checkbox_new.filter_image[data-filter=ares] .cbx_caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -30px no-repeat; +} + +.olympus_overview .filters_sub_window .filter_section.god_filters { + width: 200px; +} + +.olympus_overview .filters_sub_window .filter_section.god_filters .filter_checkbox { + margin: 7px 8px 8px; +} + +.olympus_overview .large_temples .silhouette { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat 0 -497px; + width: 218px; + height: 156px; + position: relative; + margin: auto; + top: -10px; +} + +.olympus_overview .large_temples .btn_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat 0 -360px; + width: 62px; + height: 32px; + position: absolute; + cursor: pointer; + top: 110px; + left: 45px; +} + +.olympus_overview .large_temples .btn_left:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -186px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview .large_temples .btn_left:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -62px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview .large_temples .btn_left.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -124px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview .large_temples .btn_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat 0 -360px; + width: 62px; + height: 32px; + position: absolute; + cursor: pointer; + top: 110px; + left: 45px; + right: 45px; + left: auto; + transform: rotateZ(180deg); +} + +.olympus_overview .large_temples .btn_right:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -186px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview .large_temples .btn_right:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -62px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview .large_temples .btn_right.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -124px -360px; + width: 62px; + height: 32px; +} + +.olympus_overview .large_temples .flag_wrapper { + position: absolute; + top: -13px; + width: 165px; +} + +.olympus_overview .large_temples .flag_wrapper .flag_background { + top: 7px; + left: 74px; + width: 15px; + height: 17px; +} + +.olympus_overview .large_temples .flag_wrapper .owner_flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -248px -360px; + width: 32px; + height: 32px; + position: relative; +} + +.olympus_overview .large_temples .js-list-viewport { + width: 555px; + height: 190px; + margin: 40px 20px; +} + +.olympus_overview .large_temples .js-list-viewport .js-list { + left: 0; + margin-top: 12px; + -webkit-transition: left .2s linear; + -moz-transition: left .2s linear; + -ms-transition: left .2s linear; + -o-transition: left .2s linear; + transition: left .2s linear; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item { + width: 160px; + height: 90px; + margin: 0 10px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item[data-god=zeus] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -495px -180px; + width: 165px; + height: 180px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item[data-god=poseidon] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -495px 0; + width: 165px; + height: 180px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item[data-god=hera] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -330px -180px; + width: 165px; + height: 180px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item[data-god=artemis] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -330px 0; + width: 165px; + height: 180px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item[data-god=athena] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat 0 -180px; + width: 165px; + height: 180px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item[data-god=hades] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -165px -180px; + width: 165px; + height: 180px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item[data-god=ares] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat -165px 0; + width: 165px; + height: 180px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item[data-god=aphrodite] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_large_temples_a53136c.png) no-repeat 0 0; + width: 165px; + height: 180px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item .tooltip_area { + position: relative; + top: 5px; + left: 12px; + height: 142px; + width: 142px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item .button_wrapper { + top: 9px; + height: 22px; + position: relative; + margin: auto; + width: 44px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item .btn_jump_to, +.olympus_overview .large_temples .js-list-viewport .large_temple_item .btn_temple_info { + position: relative; + float: left; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item .btn_temple_info { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -361px -28px; + width: 22px; + height: 23px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item .btn_jump_to { + background-position: -44px 0; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item .btn_jump_to:hover { + background-position: -44px -23px; +} + +.olympus_overview .large_temples .js-list-viewport .large_temple_item .btn_jump_to.disabled { + background-position: -44px -46px; +} + +.olympus_overview .olympus .olympus_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/overview_olympus_dc9b6ad.png) no-repeat 0 0; + width: 288px; + height: 243px; +} + +.olympus_overview .olympus .olympus_background.active { + cursor: pointer; +} + +.olympus_overview .olympus .grepo_box { + margin: auto; + max-width: 313px; + top: -30px; +} + +.olympus_overview .olympus .flag_wrapper { + position: relative; + top: -192px; +} + +.olympus_overview .olympus .flag_wrapper .owner_flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_overview_6abf77b.png) no-repeat -596px 0; + width: 164px; + height: 266px; + left: -50px; +} + +.olympus_overview .olympus .flag_wrapper .flag_background { + position: absolute; + width: 76px; + height: 81px; + top: 87px; + left: -6px; +} + +.olympus_overview .olympus .btn_open_ranking { + min-width: 100px; +} + +.olympus_overview .olympus .info_footer .text { + margin-left: 20px; +} + +.olympus_temple_info .temple_info_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/temple_info_bg_3b6e7b5.png) no-repeat 0 0; + width: 818px; + height: 527px; + position: relative; + overflow: hidden; +} + +.olympus_temple_info .temple_actions_wrapper, +.olympus_temple_info .temple_image_wrapper, +.olympus_temple_info .temple_info_wrapper { + position: absolute; +} + +.olympus_temple_info .temple_image_wrapper { + top: 86px; + left: 44px; + width: 288px; + height: 311px; +} + +.olympus_temple_info .temple_image_wrapper .header, +.olympus_temple_info .temple_image_wrapper .temple_image, +.olympus_temple_info .temple_image_wrapper .temple_image_border { + position: absolute; +} + +.olympus_temple_info .temple_image_wrapper .temple_image { + top: 25px; +} + +.olympus_temple_info .temple_image_wrapper.olympus .olympus_jump_progress { + position: absolute; + width: 283px; + bottom: 0; + left: 4px; +} + +.olympus_temple_info .temple_image_wrapper.olympus .olympus_jump_progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/progress_bar_b284ee6.png) no-repeat 0 0; + width: 1px; + height: 19px; + background-repeat: repeat-x; +} + +.olympus_temple_info .temple_image_wrapper.olympus .header { + text-align: center; + top: -4px; + left: 2px; + font-size: 13px; +} + +.olympus_temple_info .temple_image_wrapper.olympus .temple_image_border { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat 0 0; + width: 303px; + height: 323px; + top: -6px; + left: -6px; +} + +.olympus_temple_info .temple_image_wrapper.olympus .temple_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat -303px 0; + width: 294px; + height: 289px; + top: 21px; + left: -1px; +} + +.olympus_temple_info .temple_image_wrapper.small .temple_image { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/small_temple_info_6935093.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_temple_info .temple_image_wrapper.large .temple_image[data-god=zeus] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_zeus_efd1ace.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_temple_info .temple_image_wrapper.large .temple_image[data-god=poseidon] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_poseidon_55c1199.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_temple_info .temple_image_wrapper.large .temple_image[data-god=hera] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_hera_358d141.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_temple_info .temple_image_wrapper.large .temple_image[data-god=artemis] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_artemis_57bdc88.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_temple_info .temple_image_wrapper.large .temple_image[data-god=athena] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_athena_873a8a3.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_temple_info .temple_image_wrapper.large .temple_image[data-god=hades] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_hades_47bf628.png) no-repeat 0 0; + width: 288px; + height: 286px; +} +.olympus_temple_info .temple_image_wrapper.large .temple_image[data-god=ares] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_ares_3b11f7a.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_temple_info .temple_image_wrapper.large .temple_image[data-god=aphrodite] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/large_temple_info_aphrodite_fb472f4.png) no-repeat 0 0; + width: 288px; + height: 286px; +} + +.olympus_temple_info .temple_image_wrapper .btn_temple_powers { + margin: auto; + display: block; + top: 220px; +} + +.olympus_temple_info .temple_powers_overlay { + background-color: #d0be97; + opacity: .85; + position: absolute; + top: 0; + width: 100%; + height: 276px; + padding-top: 10px; + font-size: 13px; +} + +.olympus_temple_info .temple_powers_overlay .god_wrapper { + height: 40px; + margin: 0 10px; +} + +.olympus_temple_info .temple_powers_overlay .god_wrapper * { + vertical-align: middle; + font-size: 18px; + font-weight: 600; +} + +.olympus_temple_info .temple_powers_overlay .god_wrapper .god_micro { + float: none; + display: inline-block; + margin-right: 10px; +} + +.olympus_temple_info .temple_powers_overlay ul { + margin: 0 10px 0 25px; + list-style-type: disc; +} + +.olympus_temple_info .temple_powers_overlay li { + margin-top: 10px; +} + +.olympus_temple_info .temple_info_wrapper { + top: 86px; + left: 344px; + width: 429px; + height: 311px; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_bottom, +.olympus_temple_info .temple_info_wrapper .temple_info_middle, +.olympus_temple_info .temple_info_wrapper .temple_info_top { + width: 100%; + position: relative; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_top { + height: 152px; +} + +.olympus_temple_info .temple_info_wrapper .troops_support { + width: 295px; + left: 134px; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + display: inline-block; + vertical-align: middle; + top: -2px; + position: relative; + transform: scale(.8); +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse, +.olympus_temple_info .temple_info_wrapper .troops_support .unit_slots { + width: 294px; + height: 126px; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse { + position: absolute; + top: 25px; + opacity: 0; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse:hover { + opacity: 1; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse .background { + background-color: grey; + opacity: 80%; + width: 100%; + height: 100%; + position: absolute; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse .wrapper { + display: inline-block; + height: 100%; + color: #fff; + text-align: center; + font-weight: 600; + position: relative; + vertical-align: top; + line-height: 126px; + text-shadow: 1px 1px 0 #000; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse .inner_wrapper { + display: inline-block; + vertical-align: middle; + line-height: initial; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat 0 -323px; + width: 78px; + height: 73px; + top: 20px; + position: relative; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse .description, +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse .title { + overflow: hidden; + width: 200px; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .olympus_curse .title { + margin-bottom: 10px; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .unit_slots>div { + position: relative; + float: left; + border: 1px solid #d0be97; + margin: 0; + overflow: hidden; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .unit_slots .empty { + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); + width: 40px; + height: 40px; + z-index: auto; +} + +.olympus_temple_info .temple_info_wrapper .troops_support .unit_slots .empty:nth-child(2n) { + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/even.png); +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle { + height: 28px; + line-height: 28px; + background: url(https://gpfr.innogamescdn.com/images/game/box/background_2.56_compressed.jpg); +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .troops_movements_count { + width: 75%; + height: 100%; + text-align: center; + float: left; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle div { + display: inline-block; + vertical-align: middle; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .incoming_attacks, +.olympus_temple_info .temple_info_wrapper .temple_info_middle .incoming_support { + min-width: 100px; + font-weight: 600; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .incoming_attacks .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat -303px -289px; + width: 24px; + height: 24px; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .incoming_attacks .value { + color: #e72200; + text-shadow: 1px 1px 0 #000; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .incoming_support .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/sprite_images/olympus_temple_info_16afe3f.png) no-repeat -327px -289px; + width: 24px; + height: 24px; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .incoming_support .value { + color: #31e417; + text-shadow: 1px 1px 0 #000; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .troops_movements_filters { + width: 15%; + height: 100%; + text-align: center; + float: right; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .attacks, +.olympus_temple_info .temple_info_wrapper .temple_info_middle .revolts, +.olympus_temple_info .temple_info_wrapper .temple_info_middle .supports { + cursor: pointer; + width: 24px; + height: 48px; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .supports { + background-position: -240px -24px; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .supports.active { + background-position: -240px 0; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .attacks { + background-position: -48px -24px; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .attacks.active { + background-position: -48px 0; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .revolts { + background-position: -216px -24px; +} + +.olympus_temple_info .temple_info_wrapper .temple_info_middle .revolts.active { + background-position: -216px 0; +} + +.olympus_temple_info .temple_info_wrapper .owner, +.olympus_temple_info .temple_info_wrapper .troops_support { + position: absolute; +} + +.olympus_temple_info .temple_info_wrapper .owner { + width: 132px; + height: 151px; + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); +} + +.olympus_temple_info .temple_info_wrapper .owner .flag_wrapper { + width: 100%; + height: 126px; +} + +.olympus_temple_info .temple_info_wrapper .owner .flag_wrapper .owner_flag { + background: url(https://gpfr.innogamescdn.com/images/game/flags/big/layer_top.png); + transform: scale(.7); + left: 22px; +} + +.olympus_temple_info .temple_info_wrapper .owner .flag_wrapper .flag_background { + width: 49px; + height: 52px; + top: 29px; + left: 42px; +} + +.olympus_temple_info .temple_info_wrapper .owner .flag_wrapper .owner_name { + font-weight: 600; + color: #804000; + text-align: center; + bottom: 10px; + position: absolute; + width: 132px; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements { + height: 124px; + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); + overflow: hidden; + margin-left: 2px; + margin-top: 2px; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements .content { + position: relative; + overflow: visible; + min-height: 124px; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements .item.command { + height: 41px; + width: 133px; + line-height: 41px; + text-align: left; + overflow: hidden; + float: left; + padding-left: 4px; + color: #423515; + font-size: 10px; + font-weight: 600; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements .item.command .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -725px -152px; + width: 11px; + height: 32px; + display: inline-block; + vertical-align: middle; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements .item.command .icon { + cursor: pointer; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements .item.revolt { + height: 41px; + width: 133px; + line-height: 41px; + text-align: left; + overflow: hidden; + float: left; + padding-left: 18px; + color: #423515; + font-size: 10px; + font-weight: 600; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements .details_wrapper, +.olympus_temple_info .temple_info_wrapper .troops_movements .icon { + display: inline-block; + line-height: initial; + vertical-align: middle; + overflow: hidden; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements .details_wrapper { + width: 80px; +} + +.olympus_temple_info .temple_info_wrapper .troops_movements .details_wrapper>* { + display: block; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + line-height: normal; +} + +.olympus_temple_info .temple_actions_wrapper { + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); + top: 411px; + left: 44px; + height: 98px; + width: 729px; +} + +.olympus_temple_info .temple_actions_wrapper .action_buttons { + height: 69px; + width: 100%; +} + +.olympus_temple_info .temple_actions_wrapper .btn_attack, +.olympus_temple_info .temple_actions_wrapper .btn_portal_attack, +.olympus_temple_info .temple_actions_wrapper .btn_portal_support, +.olympus_temple_info .temple_actions_wrapper .btn_support { + margin-right: 10px; + min-width: 120px; +} + +.olympus_temple_info .temple_actions_wrapper .state_text { + min-height: 10px; + max-width: 80%; + margin: 10px auto 5px; +} + +.olympus_temple_info .centered_text { + position: absolute; + padding: 15px 0; + margin: auto; + top: 50%; + transform: translateY(-50%); + text-align: center; + width: 100%; +} + +.olympus_temple_info .header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/olympus/single_images/rules_header_c661450.png) no-repeat 0 0; + width: 127px; + background-repeat: repeat-x; + height: 25px; + line-height: 25px; + width: 100%; + color: #fff; + font-weight: 600; + text-shadow: #fc6; + font-size: 13px; +} + +.olympus_temple_info .header>span { + margin-left: 5px; + line-height: 25px; +} + +.olympus_temple_info .header .ocean_number { + position: absolute; + right: 30px; +} + +.olympus_temple_info .ocean_number.olympus { + position: absolute; + bottom: 30px; + width: 283px; + left: 4px; + text-align: center; + color: #fff; + font-weight: 600; +} + +.olympus_temple_info .btn_jump_to { + background-position: -44px 0; +} + +.olympus_temple_info .btn_jump_to:hover { + background-position: -44px -23px; +} + +.olympus_temple_info .btn_jump_to.disabled { + background-position: -44px -46px; +} + +.olympus_temple_info .bb_code_container { + cursor: pointer; + position: absolute; + top: 0; + right: 0; +} + +.olympus_temple_info .bb_code_container .bb_code, +.olympus_temple_info .bb_code_container .btn_bb_code { + vertical-align: middle; +} + +.olympus_temple_info .bb_code_container .bb_code { + height: 16px; + width: 180px; + display: none; + font-size: 13px; +} + +.olympus_temple_info .bb_code_container .btn_bb_code { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/bbcodes/bbcodes_6e4f630.png) no-repeat -361px -28px; + width: 22px; + height: 23px; +} + +.olympus_temple_info .btn_simulate { + cursor: pointer; + position: absolute; + top: 0; + right: 0; + background: url(https://gpfr.innogamescdn.com/images/game/layout/bigbutton_2.53.png) no-repeat -88px 0; + width: 23px; + height: 23px; +} + +.olympus_temple_info .btn_simulate:hover { + background-position: -88px -23px; +} + +.olympus_temple_info .temple_defense_wrapper { + position: relative; + width: 782px; + height: 497px; + margin: 15px auto; +} + +.olympus_temple_info .temple_defense_wrapper .game_list { + height: 440px; +} + +.olympus_temple_info .temple_defense_wrapper .units_list { + overflow: hidden; + display: inline-block; + max-width: 761px; +} + +.olympus_temple_info .temple_defense_wrapper .units_list .unit { + border: 1px solid #724b08; +} + +.olympus_temple_info .temple_defense_wrapper h4 { + padding-left: 5px; +} + +.olympus_temple_info .temple_defense_wrapper li { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.olympus_temple_info .temple_defense_wrapper li:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.olympus_temple_info .temple_defense_wrapper .button_wrapper { + display: inline-block; + vertical-align: top; + margin-top: 5px; + position: relative; + float: left; +} + +.olympus_temple_info .temple_defense_wrapper .button_wrapper .btn_confirm_return_some_units { + margin: 4px 0 0 2px; + display: none; +} + +.olympus_temple_info .temple_defense_wrapper .button_wrapper div { + display: block; + float: none; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_all_units_by_town { + background: url(https://gpfr.innogamescdn.com/images/game/place/sendback_2.44.png) -29px 0; + float: left; + height: 21px; + width: 28px; + margin-left: 2px; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_all_units_by_town:hover { + background-position: -29px -21px; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_all_units_by_town:active { + background-position: -29px -42px; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_all_units_by_town.disabled { + background-position: -29px -63px; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_some_units_by_town { + background: url(https://gpfr.innogamescdn.com/images/game/place/sendback_2.44.png) 0 0; + float: left; + height: 21px; + width: 28px; + margin: 0 0 0 2px; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_some_units_by_town:hover { + background-position: 0 -21px; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_some_units_by_town:active { + background-position: 0 -42px; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_some_units_by_town.disabled { + background-position: 0 -63px; +} + +.olympus_temple_info .temple_defense_wrapper .btn_return_all_units { + margin-top: 2px; + margin-right: 3px; + float: right; +} + +.olympus_temple_info .temple_defense_wrapper .spinner { + margin-left: 4px; + width: 48px; +} + +.olympus_temple_info .temple_defense_wrapper .spinner_horizontal { + margin-left: 9px; + width: 80px; +} + +.olympus_temple_info .temple_defense_wrapper .slot_wrapper { + position: relative; + float: left; +} + +.olympus_temple_info .temple_defense_wrapper .clear_both { + clear: both; +} + +.olympus_temple_info .temple_defense_wrapper .units_input_list { + display: inline-block; +} + +.olympus_temple_info .temple_defense_wrapper .return_some_units_wrapper { + display: none; +} + +.olympus_temple_info .temple_defense_wrapper .return_some_units_wrapper .capacity_bar { + width: 400px; + margin: auto; +} + +.olympus_temple_info .temple_defense_wrapper .scrollbar { + position: relative; + height: 100%; + float: right; +} + +.olympus_temple_info .temple_defense_wrapper .content, +.olympus_temple_info .temple_defense_wrapper .viewport { + overflow: hidden; +} + +.olympus_temple_info .unit .value { + position: absolute; + bottom: 0; + right: 0; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; +} + +.rota_spring_sprite_images .double_reward_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -446px -187px; + width: 32px; + height: 32px; +} + +.rota_spring_sprite_images .double_reward_button_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -541px -292px; + width: 32px; + height: 32px; +} + +.rota_spring_sprite_images .double_reward_marker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -548px -230px; + width: 27px; + height: 24px; +} + +.rota_spring_sprite_images .double_reward_progress_bar_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -69px -424px; + width: 274px; + height: 22px; +} + +.rota_spring_sprite_images .double_reward_progress_bar_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -69px -402px; + width: 274px; + height: 22px; +} + +.rota_spring_sprite_images .double_reward_progress_bar_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -69px -380px; + width: 274px; + height: 22px; +} + +.rota_spring_sprite_images .event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat 0 -255px; + width: 125px; + height: 125px; +} + +.rota_spring_sprite_images .event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -125px -255px; + width: 125px; + height: 125px; +} + +.rota_spring_sprite_images .grand_prize_progress_marker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -548px -200px; + width: 26px; + height: 30px; +} + +.rota_spring_sprite_images .rota_buy_currency_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -358px -187px; + width: 44px; + height: 44px; +} + +.rota_spring_sprite_images .rota_buy_currency_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -402px -187px; + width: 44px; + height: 44px; +} + +.rota_spring_sprite_images .rota_buy_currency_button_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -314px -187px; + width: 44px; + height: 44px; +} + +.rota_spring_sprite_images .shop_banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -250px -255px; + width: 169px; + height: 83px; +} + +.rota_spring_sprite_images .shop_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -314px -169px; + width: 163px; + height: 18px; +} + +.rota_spring_sprite_images .tyche_coin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -548px -254px; + width: 16px; + height: 16px; +} + +.rota_spring_sprite_images .tyche_coin_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -479px -292px; + width: 62px; + height: 58px; +} + +.rota_spring_sprite_images .tyche_coin_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -564px -254px; + width: 12px; + height: 12px; +} + +.rota_spring_sprite_images .utensils { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat 0 0; + width: 314px; + height: 255px; +} + +.rota_spring_sprite_images .wheel_item { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -479px -100px; + width: 98px; + height: 100px; +} + +.rota_spring_sprite_images .wheel_item_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -314px 0; + width: 165px; + height: 169px; +} + +.rota_spring_sprite_images .wheel_item_special { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -479px 0; + width: 98px; + height: 100px; +} + +.rota_spring_sprite_images .wheel_mask_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -479px -200px; + width: 69px; + height: 92px; +} + +.rota_spring_sprite_images .wheel_mask_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat 0 -380px; + width: 69px; + height: 92px; +} + +.rota_spring_tutorial_images .tutorial_00 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat 0 0; + width: 836px; + height: 527px; +} + +.rota_spring_tutorial_images .tutorial_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -836px 0; + width: 836px; + height: 527px; +} + +.rota_spring_tutorial_images .tutorial_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat 0 -527px; + width: 836px; + height: 527px; +} + +.rota_spring_tutorial_images .tutorial_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -836px -527px; + width: 836px; + height: 527px; +} + +.rota_spring_tutorial_images .tutorial_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat 0 -1054px; + width: 836px; + height: 527px; +} + +.rota_spring_tutorial_images .tutorial_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -836px -1054px; + width: 836px; + height: 527px; +} + +.rota_spring_tutorial_images .tutorial_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -1672px 0; + width: 836px; + height: 527px; +} + +.rota_spring_tutorial_images .tutorial_07 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -1672px -527px; + width: 836px; + height: 527px; +} + +.rota_spring_tutorial_images .tutorial_08 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -1672px -1054px; + width: 836px; + height: 527px; +} + +.rota_spring_single_images .currency_drop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/currency_drop_de39044.png) no-repeat 0 0; + width: 575px; + height: 341px; +} + +.rota_spring_single_images .double_reward_tail { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/double_reward_tail_2995744.png) no-repeat 0 0; + width: 52px; + height: 18px; +} + +.rota_spring_single_images .grand_prize_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/grand_prize_overlay_8527f41.png) no-repeat 0 0; + width: 452px; + height: 226px; +} + +.rota_spring_single_images .grand_prize_progress_tail { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/grand_prize_progress_tail_1a6ff9f.png) no-repeat 0 0; + width: 183px; + height: 18px; +} + +.rota_spring_single_images .rota_main_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_bottom_4ff9cd6.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.rota_spring_single_images .rota_main_bottom_10_slots { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_bottom_10_slots_22ca70f.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.rota_spring_single_images .rota_main_bottom_6_slots { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_bottom_6_slots_ab965a6.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.rota_spring_single_images .rota_main_bottom_8_slots { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_bottom_8_slots_37e92d6.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.rota_spring_single_images .rota_main_canvas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_canvas_d99f038.png) no-repeat 0 0; + width: 836px; + height: 297px; +} + +.rota_spring_single_images .shop_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/shop_background_5a43d08.png) no-repeat 0 0; + width: 575px; + height: 341px; +} + +.rota_spring_single_images .spring_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/spring_end_interstitial_bf2fcc9.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.rota_spring_single_images .spring_start_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/spring_start_interstitial_5aaa581.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.rota_epic_battle_sprite_images .event_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/sprite_images_1ff6c27.png) no-repeat 0 0; + width: 125px; + height: 125px; +} + +.rota_epic_battle_sprite_images .event_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/sprite_images_1ff6c27.png) no-repeat -125px 0; + width: 125px; + height: 125px; +} + +.rota_epic_battle_single_images .currency_drop { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/currency_drop_cf5ec26.png) no-repeat 0 0; + width: 575px; + height: 341px; +} + +.rota_epic_battle_single_images .epic_battle_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/epic_battle_end_interstitial_e2d5c22.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.rota_epic_battle_single_images .epic_battle_start_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/epic_battle_start_interstitial_c916d24.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.rota_epic_battle_single_images .rota_main_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/rota_main_bottom_b21b5ff.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.rota_epic_battle_single_images .rota_main_bottom_10_slots { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/rota_main_bottom_10_slots_601a195.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.rota_epic_battle_single_images .rota_main_bottom_6_slots { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/rota_main_bottom_6_slots_76b519f.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.rota_epic_battle_single_images .rota_main_bottom_8_slots { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/rota_main_bottom_8_slots_a081d83.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.rota_event_end_interstitial.column_window .window_content, +.rota_event_welcome_interstitial.column_window .window_content { + padding: 0; +} + +.epic_battle.overlay_tutorial, +.spring.overlay_tutorial { + position: relative; + top: 4px; + left: 7px; +} + +.epic_battle.overlay_tutorial .text, +.spring.overlay_tutorial .text { + position: absolute; + top: 110px; + left: 240px; + height: 106px; + width: 337px; + padding: 0 10px; +} + +.epic_battle.overlay_tutorial .button_wrapper, +.spring.overlay_tutorial .button_wrapper { + position: absolute; + width: 357px; + left: 240px; + top: 220px; + text-align: center; +} + +.epic_battle.overlay_tutorial .btn_wnd.close, +.spring.overlay_tutorial .btn_wnd.close { + position: absolute; + left: 540px; + top: 88px; +} + +.epic_battle.overlay_tutorial.step_1, +.spring.overlay_tutorial.step_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat 0 0; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_2, +.spring.overlay_tutorial.step_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -836px 0; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_3, +.spring.overlay_tutorial.step_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -836px 0; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_4, +.spring.overlay_tutorial.step_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat 0 -527px; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_5, +.spring.overlay_tutorial.step_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat 0 -527px; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_6, +.spring.overlay_tutorial.step_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -836px -527px; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_7, +.spring.overlay_tutorial.step_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat 0 -1054px; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_8, +.spring.overlay_tutorial.step_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -836px -1054px; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_9, +.spring.overlay_tutorial.step_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -1672px 0; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_10, +.spring.overlay_tutorial.step_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -1672px -527px; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_11, +.spring.overlay_tutorial.step_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/tutorial_images_90cbbb6.png) no-repeat -1672px -1054px; + width: 836px; + height: 527px; +} + +.epic_battle.overlay_tutorial.step_7 .text, +.epic_battle.overlay_tutorial.step_8 .text, +.spring.overlay_tutorial.step_7 .text, +.spring.overlay_tutorial.step_8 .text { + top: 360px; +} + +.epic_battle.overlay_tutorial.step_7 .button_wrapper, +.epic_battle.overlay_tutorial.step_8 .button_wrapper, +.spring.overlay_tutorial.step_7 .button_wrapper, +.spring.overlay_tutorial.step_8 .button_wrapper { + top: 468px; +} + +.epic_battle.overlay_tutorial.step_7 .btn_wnd.close, +.epic_battle.overlay_tutorial.step_8 .btn_wnd.close, +.spring.overlay_tutorial.step_7 .btn_wnd.close, +.spring.overlay_tutorial.step_8 .btn_wnd.close { + top: 333px; +} + +.epic_battle.welcome_window_container .yellowBox .vertical_divider, +.epic_battle.welcome_window_container .yellowBox>div:not(.content_box), +.spring.welcome_window_container .yellowBox .vertical_divider, +.spring.welcome_window_container .yellowBox>div:not(.content_box) { + display: none; +} + +.epic_battle.welcome_window_container .yellowBox .content_box, +.spring.welcome_window_container .yellowBox .content_box { + background: 0 0; + bottom: 0; +} + +.epic_battle.welcome_window_container .yellowBox .content, +.spring.welcome_window_container .yellowBox .content { + height: 252px; +} + +.epic_battle.welcome_window_container .yellowBox .content .description_text, +.spring.welcome_window_container .yellowBox .content .description_text { + max-width: 294px; +} + +.epic_battle.welcome_window_container .yellowBox .buttons, +.spring.welcome_window_container .yellowBox .buttons { + height: 32px; + bottom: -2px; +} + +.epic_battle .rota_main, +.spring .rota_main { + position: relative; + height: 527px; +} + +.epic_battle .rota_main_bottom, +.epic_battle .rota_main_canvas, +.spring .rota_main_bottom, +.spring .rota_main_canvas { + position: absolute; + left: 0; + color: #fc6; +} + +.epic_battle .rota_main_canvas, +.spring .rota_main_canvas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_canvas_d99f038.png) no-repeat 0 0; + width: 836px; + height: 297px; + top: 0; +} + +.epic_battle .rota_main_canvas::before, +.spring .rota_main_canvas::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat 0 0; + width: 314px; + height: 255px; + content: ''; + position: absolute; + right: 10px; + top: 15px; + opacity: 0; + transition: opacity .2s; +} + +.epic_battle .rota_main_canvas.blank::before, +.spring .rota_main_canvas.blank::before { + opacity: 1; +} + +.epic_battle .btn_reset, +.epic_battle .btn_spin, +.spring .btn_reset, +.spring .btn_spin { + position: absolute; + bottom: 5px; + width: 127px; +} + +.epic_battle .btn_overlay .icon, +.epic_battle .btn_reset .icon, +.epic_battle .btn_spin .icon, +.spring .btn_overlay .icon, +.spring .btn_reset .icon, +.spring .btn_spin .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -564px -254px; + width: 12px; + height: 12px; + margin-left: 3px; + top: 2px; +} + +.epic_battle .btn_overlay.blocked .caption, +.epic_battle .btn_reset.blocked .caption, +.epic_battle .btn_spin.blocked .caption, +.spring .btn_overlay.blocked .caption, +.spring .btn_reset.blocked .caption, +.spring .btn_spin.blocked .caption { + color: #e72200; +} + +.epic_battle .btn_reset, +.spring .btn_reset { + right: 283px; +} + +.epic_battle .btn_spin, +.spring .btn_spin { + left: 283px; +} + +.epic_battle .btn_overlay, +.spring .btn_overlay { + display: none; + min-width: 100px; +} + +.epic_battle .btn_overlay.active, +.spring .btn_overlay.active { + display: inline-block; +} + +.epic_battle .btn_rewards_list, +.spring .btn_rewards_list { + position: absolute; + top: 121px; + left: 92px; +} + +.epic_battle .double_reward .simple_progressbar, +.spring .double_reward .simple_progressbar { + position: absolute; + left: 281px; + top: 200px; + bottom: 34px; + margin: auto; + overflow: visible; +} + +.epic_battle .double_reward .simple_progressbar .caption, +.spring .double_reward .simple_progressbar .caption { + display: none; +} + +.epic_battle .double_reward .simple_progressbar .progress, +.spring .double_reward .simple_progressbar .progress { + position: relative; + width: 256px; + top: 2px; + left: 9px; +} + +.epic_battle .double_reward .simple_progressbar .indicator, +.spring .double_reward .simple_progressbar .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/double_reward_tail_2995744.png) no-repeat 0 0; + width: 52px; + height: 18px; + background-position: right; + position: relative; +} + +.epic_battle .double_reward .simple_progressbar .indicator::after, +.spring .double_reward .simple_progressbar .indicator::after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -548px -230px; + width: 27px; + height: 24px; + display: block; + content: ""; + position: absolute; + top: -3px; + right: -20px; +} + +.epic_battle .double_reward .simple_progressbar.size_11, +.spring .double_reward .simple_progressbar.size_11 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -69px -424px; + width: 274px; + height: 22px; +} + +.epic_battle .double_reward .simple_progressbar.size_13, +.spring .double_reward .simple_progressbar.size_13 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -69px -402px; + width: 274px; + height: 22px; +} + +.epic_battle .double_reward .simple_progressbar.size_17, +.spring .double_reward .simple_progressbar.size_17 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -69px -380px; + width: 274px; + height: 22px; +} + +.epic_battle .double_reward .double_reward_marker, +.spring .double_reward .double_reward_marker { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -541px -292px; + width: 32px; + height: 32px; + position: absolute; + top: 205px; + right: 250px; +} + +.epic_battle .double_reward .double_reward_marker.active, +.spring .double_reward .double_reward_marker.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -446px -187px; + width: 32px; + height: 32px; +} + +.epic_battle .grand_prize .simple_progressbar, +.spring .grand_prize .simple_progressbar { + position: absolute; + left: 0; + bottom: 238px; + margin: auto; + overflow: visible; +} + +.epic_battle .grand_prize .simple_progressbar .caption, +.spring .grand_prize .simple_progressbar .caption { + display: none; +} + +.epic_battle .grand_prize .simple_progressbar .progress, +.spring .grand_prize .simple_progressbar .progress { + position: relative; + width: 190px; + top: 2px; + left: 9px; +} + +.epic_battle .grand_prize .simple_progressbar .indicator, +.spring .grand_prize .simple_progressbar .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/grand_prize_progress_tail_1a6ff9f.png) no-repeat 0 0; + width: 183px; + height: 18px; + background-position: right; + position: relative; +} + +.epic_battle .grand_prize .simple_progressbar .indicator::after, +.spring .grand_prize .simple_progressbar .indicator::after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -548px -200px; + width: 26px; + height: 30px; + display: block; + content: ""; + position: absolute; + top: -7px; + right: -18px; +} + +.epic_battle .overlay, +.spring .overlay { + position: absolute; + top: 51px; + left: 0; + right: 0; + margin: auto; + overflow: hidden; + display: none; +} + +.epic_battle .overlay .inner_wrapper, +.spring .overlay .inner_wrapper { + width: 452px; + height: 75px; + position: relative; + display: table-cell; + top: 66px; + text-align: center; + vertical-align: middle; +} + +.epic_battle .overlay.active, +.spring .overlay.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/grand_prize_overlay_8527f41.png) no-repeat 0 0; + width: 452px; + height: 226px; + display: block; +} + +.epic_battle .overlay .text_only .text, +.spring .overlay .text_only .text { + margin: 0; +} + +.epic_battle .overlay .text, +.spring .overlay .text { + color: #fff; + text-align: center; + margin: 0 auto 10px; + max-width: 250px; + max-height: 50px; +} + +.epic_battle .grand_prize_preview, +.spring .grand_prize_preview { + position: absolute; + top: 35px; + left: 385px; + overflow: hidden; +} + +.epic_battle .wheel, +.spring .wheel { + position: absolute; + top: 51px; + left: 206px; + overflow: hidden; + height: 170px; + width: 424px; +} + +.epic_battle .wheel .viewport, +.spring .wheel .viewport { + width: 714px; + overflow: visible; + display: inline-block; + position: relative; + left: -34px; + top: 50px; + text-align: left; +} + +.epic_battle .wheel.highlight, +.spring .wheel.highlight { + text-align: center; +} + +.epic_battle .wheel.highlight .viewport, +.spring .wheel.highlight .viewport { + left: 0; +} + +.epic_battle .wheel_mask, +.spring .wheel_mask { + position: absolute; + top: 83px; +} + +.epic_battle .wheel_mask.left, +.spring .wheel_mask.left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -479px -200px; + width: 69px; + height: 92px; + left: 193px; +} + +.epic_battle .wheel_mask.right, +.spring .wheel_mask.right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat 0 -380px; + width: 69px; + height: 92px; + right: 193px; +} + +.epic_battle .wheel_item, +.spring .wheel_item { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -479px -100px; + width: 98px; + height: 100px; + display: inline-block; + position: relative; + transition-duration: 50ms; + transition-timing-function: ease-out; + vertical-align: middle; +} + +.epic_battle .wheel_item.daily_special, +.spring .wheel_item.daily_special { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -479px 0; + width: 98px; + height: 100px; +} + +.epic_battle .wheel_item:not(.focus), +.spring .wheel_item:not(.focus) { + transform: scale(.8); +} + +.epic_battle .wheel_item.focus::after, +.spring .wheel_item.focus::after { + content: ''; + position: absolute; + top: -34px; + left: -32px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -314px 0; + width: 165px; + height: 169px; +} + +.epic_battle .wheel_item .reward_icon, +.spring .wheel_item .reward_icon { + left: 19px; + top: 21px; +} + +.epic_battle .currency_indicator, +.spring .currency_indicator { + font-weight: 600; + position: absolute; + left: 130px; + bottom: 37px; + text-align: center; + width: 37px; +} + +.epic_battle .buy_currency_button, +.spring .buy_currency_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -358px -187px; + width: 44px; + height: 44px; + position: absolute; + bottom: 14px; + left: 82px; +} + +@media (hover:hover) { + .epic_battle .buy_currency_button:hover, + .spring .buy_currency_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -402px -187px; + width: 44px; + height: 44px; + } +} + +.epic_battle .buy_currency_button:active, +.spring .buy_currency_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -314px -187px; + width: 44px; + height: 44px; +} + +.epic_battle .rewards_list_wrapper .list_container, +.spring .rewards_list_wrapper .list_container { + height: 380px; +} + +.epic_battle.collected_items .headline, +.epic_battle.collected_items .text, +.spring.collected_items .headline, +.spring.collected_items .text { + color: #fff; + position: absolute; + width: 575px; +} + +.epic_battle.collected_items .headline, +.spring.collected_items .headline { + font-size: 16px; + font-weight: 700; +} + +.epic_battle.collected_items .text, +.spring.collected_items .text { + top: -262px; +} + +.epic_battle.collected_items .dialog_wrapper, +.spring.collected_items .dialog_wrapper { + position: absolute; + bottom: 0; + padding: 0; + width: 575px; + height: 58px; +} + +.epic_battle.collected_items .dialog_wrapper .button_wrapper, +.spring.collected_items .dialog_wrapper .button_wrapper { + margin-bottom: 6px; +} + +.epic_battle.collected_items .dialog_wrapper .button_wrapper .button, +.spring.collected_items .dialog_wrapper .button_wrapper .button { + min-width: 127px; +} + +.epic_battle.collected_items .dialog_wrapper .cbx_caption, +.spring.collected_items .dialog_wrapper .cbx_caption { + color: #fff; +} + +.epic_battle.collected_items .dialog_wrapper hr, +.spring.collected_items .dialog_wrapper hr { + display: none; +} + +.epic_battle.collected_items .values, +.spring.collected_items .values { + position: absolute; + top: 213px; + left: 244px; + width: 92px; + line-height: 22px; + height: 22px; + text-align: center; + font-weight: 600; + color: #fc6; + font-size: 16px; +} + +.epic_battle .collected_items_indicator, +.spring .collected_items_indicator { + position: absolute; + top: 165px; + left: 40px; + padding: 7px 10px; + height: 37px; + width: 108px; +} + +.epic_battle .collected_items_indicator>div, +.spring .collected_items_indicator>div { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -548px -254px; + width: 16px; + height: 16px; + float: left; + margin: 0 7px 7px 0; +} + +.epic_battle .collected_items_indicator>div:nth-child(10), +.epic_battle .collected_items_indicator>div:nth-child(5), +.spring .collected_items_indicator>div:nth-child(10), +.spring .collected_items_indicator>div:nth-child(5) { + margin: 0; +} + +.epic_battle.collected_items_tooltip .item, +.spring.collected_items_tooltip .item { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -479px -292px; + width: 62px; + height: 58px; +} + +.epic_battle.collected_items_tooltip .description, +.spring.collected_items_tooltip .description { + text-align: center; +} + +.epic_battle.collected_items_tooltip .activity_list, +.spring.collected_items_tooltip .activity_list { + list-style: none; +} + +.epic_battle.collected_items_tooltip .value, +.spring.collected_items_tooltip .value { + margin-left: 67px; +} + +.epic_battle.collected_items_tooltip li, +.spring.collected_items_tooltip li { + text-align: center; + font-weight: 600; +} + +.epic_battle .inventory_items, +.spring .inventory_items { + position: absolute; + right: 30px; + bottom: 18px; + width: 144px; + height: 102px; +} + +.epic_battle .inventory_items .item, +.spring .inventory_items .item { + float: left; + margin: 2px 4px 3px 2px; +} + +.epic_battle .inventory_items .invisible, +.spring .inventory_items .invisible { + opacity: 0; +} + +.epic_battle .reward_icon.cloned, +.spring .reward_icon.cloned { + position: absolute; +} + +.epic_battle .shop_wrapper .shop_bg, +.spring .shop_wrapper .shop_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/shop_background_5a43d08.png) no-repeat 0 0; + width: 575px; + height: 341px; +} + +.epic_battle .shop_wrapper table, +.spring .shop_wrapper table { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.epic_battle .shop_wrapper table td, +.spring .shop_wrapper table td { + position: relative; + width: 174px; +} + +.epic_battle .shop_wrapper .amount, +.epic_battle .shop_wrapper .bonus_ribbon, +.epic_battle .shop_wrapper .description, +.spring .shop_wrapper .amount, +.spring .shop_wrapper .bonus_ribbon, +.spring .shop_wrapper .description { + color: #fff; + text-shadow: 1px 1px 0 #000; + font-weight: 600; +} + +.epic_battle .shop_wrapper .item_bg, +.spring .shop_wrapper .item_bg { + height: 100%; + text-align: center; +} + +.epic_battle .shop_wrapper .description, +.spring .shop_wrapper .description { + position: absolute; + top: 277px; + width: 156px; + text-align: center; + left: 17px; + padding: 0 5px; + height: 30px; +} + +.epic_battle .shop_wrapper .description>div, +.spring .shop_wrapper .description>div { + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); + position: relative; +} + +.epic_battle .shop_wrapper .btn_buy_item, +.spring .shop_wrapper .btn_buy_item { + margin: auto; + width: 100px; + top: 298px; + position: absolute; + left: 8px; + right: 0; + bottom: 0; +} + +.epic_battle .shop_wrapper .amount, +.spring .shop_wrapper .amount { + top: 98px; + position: absolute; + font-size: 30px; + width: 100%; +} + +.epic_battle .shop_wrapper .shop_item:nth-of-type(2) .bonus_ribbon, +.spring .shop_wrapper .shop_item:nth-of-type(2) .bonus_ribbon { + margin-left: 15px; +} + +.epic_battle .shop_wrapper .shop_item:nth-of-type(2) .description, +.spring .shop_wrapper .shop_item:nth-of-type(2) .description { + left: 15px; +} + +.epic_battle .shop_wrapper .shop_item:nth-of-type(2) .btn_buy_item, +.spring .shop_wrapper .shop_item:nth-of-type(2) .btn_buy_item { + left: -8px; +} + +.epic_battle .shop_wrapper .shop_item:nth-of-type(3) .bonus_ribbon, +.spring .shop_wrapper .shop_item:nth-of-type(3) .bonus_ribbon { + margin-left: 10px; +} + +.epic_battle .shop_wrapper .shop_item:nth-of-type(3) .description, +.spring .shop_wrapper .shop_item:nth-of-type(3) .description { + left: 9px; +} + +.epic_battle .shop_wrapper .shop_item:nth-of-type(3) .btn_buy_item, +.spring .shop_wrapper .shop_item:nth-of-type(3) .btn_buy_item { + left: -8px; +} + +.epic_battle .shop_wrapper .bonus_ribbon, +.spring .shop_wrapper .bonus_ribbon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -250px -255px; + width: 169px; + height: 83px; + position: absolute; + top: 20px; +} + +.epic_battle .shop_wrapper .bonus_ribbon .caption, +.spring .shop_wrapper .bonus_ribbon .caption { + position: absolute; + top: 16px; + left: 5px; + color: #fff; + text-shadow: 1px 1px 0 #000; + font-weight: 600; + font-size: 20px; +} + +.epic_battle .daily_special_headline, +.epic_battle .inventory_headline, +.spring .daily_special_headline, +.spring .inventory_headline { + position: absolute; + top: 55px; + color: #fff; + font-weight: 600; + width: 126px; + text-align: center; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + padding: 0 5px; +} + +.epic_battle .daily_special_headline, +.spring .daily_special_headline { + left: 36px; +} + +.epic_battle .inventory_headline, +.spring .inventory_headline { + right: 36px; +} + +.epic_battle .daily_special_reward, +.spring .daily_special_reward { + position: absolute; + left: 82px; + top: 79px; +} + +.epic_battle .countdown, +.spring .countdown { + position: absolute; + color: #fc6; + text-align: center; + font-weight: 600; + width: 136px; + height: 16px; + line-height: 16px; + top: 25px; + right: 36px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.epic_battle .short_animation, +.spring .short_animation { + position: absolute; + top: 57px; + right: 206px; + width: 100px; +} + +.epic_battle .short_animation div, +.spring .short_animation div { + display: inline-block; + vertical-align: middle; +} + +.epic_battle .short_animation .cbx_icon, +.spring .short_animation .cbx_icon { + float: none; +} + +.epic_battle .short_animation .cbx_caption, +.spring .short_animation .cbx_caption { + max-width: 69px; + padding: 0 0 0 5px; +} + +.epic_battle .btn_tutorial, +.spring .btn_tutorial { + position: absolute; + left: 326px; + top: 55px; +} + +.epic_battle .rota_painting, +.spring .rota_painting { + width: 100%; + height: 100%; + position: absolute; +} + +.happening_large_icon_container #happening_large_icon.spring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat 0 -255px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.spring.with_countdown:hover, +.happening_large_icon_container #happening_large_icon.spring:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat 0 -255px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.spring .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/sprite_images_1d3143c.png) no-repeat -125px -255px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.spring .amount { + top: 15px; + left: -8px; +} + +.spring.collected_items .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/currency_drop_de39044.png) no-repeat 0 0; + width: 575px; + height: 341px; +} + +.spring .rota_main_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_bottom_4ff9cd6.png) no-repeat 0 0; + width: 836px; + height: 277px; + top: 250px; +} + +.spring .rota_main_bottom[data-inventory_limit="6"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_bottom_6_slots_ab965a6.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.spring .rota_main_bottom[data-inventory_limit="8"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_bottom_8_slots_37e92d6.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.spring .rota_main_bottom[data-inventory_limit="10"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/rota_main_bottom_10_slots_22ca70f.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.spring.welcome_window_container.rota_event_welcome_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/spring_start_interstitial_5aaa581.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.spring.welcome_window_container.rota_event_welcome_interstitial .yellowBox { + top: 42px; + bottom: 42px; + left: 46px; + right: 306px; +} + +.spring.welcome_window_container.rota_event_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/spring/single_images/spring_end_interstitial_bf2fcc9.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.spring.welcome_window_container.rota_event_end_interstitial .yellowBox { + top: 42px; + bottom: 42px; + left: 319px; + right: 34px; +} + +.happening_large_icon_container #happening_large_icon.epic_battle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/sprite_images_1ff6c27.png) no-repeat 0 0; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.epic_battle.with_countdown:hover, +.happening_large_icon_container #happening_large_icon.epic_battle:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/sprite_images_1ff6c27.png) no-repeat 0 0; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.epic_battle .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/sprite_images_1ff6c27.png) no-repeat -125px 0; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.epic_battle .amount { + top: 15px; + left: -8px; +} + +.epic_battle.collected_items .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/currency_drop_cf5ec26.png) no-repeat 0 0; + width: 575px; + height: 341px; +} + +.epic_battle .rota_main_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/rota_main_bottom_b21b5ff.png) no-repeat 0 0; + width: 836px; + height: 277px; + top: 250px; +} + +.epic_battle .rota_main_bottom[data-inventory_limit="6"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/rota_main_bottom_6_slots_76b519f.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.epic_battle .rota_main_bottom[data-inventory_limit="8"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/rota_main_bottom_8_slots_a081d83.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.epic_battle .rota_main_bottom[data-inventory_limit="10"] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/rota_main_bottom_10_slots_601a195.png) no-repeat 0 0; + width: 836px; + height: 277px; +} + +.epic_battle.welcome_window_container.rota_event_welcome_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/epic_battle_start_interstitial_c916d24.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.epic_battle.welcome_window_container.rota_event_welcome_interstitial .yellowBox { + top: 42px; + bottom: 42px; + left: 46px; + right: 306px; +} + +.epic_battle.welcome_window_container.rota_event_end_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/rota/epic_battle/single_images/epic_battle_end_interstitial_e2d5c22.png) no-repeat 0 0; + width: 723px; + height: 379px; +} + +.epic_battle.welcome_window_container.rota_event_end_interstitial .yellowBox { + top: 42px; + bottom: 42px; + left: 319px; + right: 34px; +} + +.rewards_list_wrapper .description, +.rewards_list_wrapper .list_container { + margin: 10px; + width: 420px; +} + +.rewards_list_wrapper .list_container { + position: relative; + height: 320px; + bottom: 0; +} + +.rewards_list_wrapper .viewport { + height: 100%; + overflow: hidden; + position: relative; +} + +.rewards_list_wrapper .content { + width: 100%; +} + +.rewards_list_wrapper .list_element { + position: relative; + padding: 10px 26px 10px 10px; +} + +.rewards_list_wrapper .title { + font-weight: 600; + overflow: hidden; +} + +.rewards_list_wrapper .reward { + display: inline-block; +} + +.rewards_list_wrapper .text_wrapper { + max-width: 330px; + display: inline-block; + vertical-align: middle; + padding-left: 5px; +} + +.gods_temple_sprite .aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -290px 0; + width: 235px; + height: 236px; +} + +.gods_temple_sprite .aphrodite_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -437px; + width: 50px; + height: 50px; +} + +.gods_temple_sprite .ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 -289px; + width: 235px; + height: 236px; +} + +.gods_temple_sprite .ares_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -487px; + width: 50px; + height: 50px; +} + +.gods_temple_sprite .arrow_button_down { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -737px; + width: 45px; + height: 15px; +} + +.gods_temple_sprite .arrow_button_down_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -860px -472px; + width: 45px; + height: 15px; +} + +.gods_temple_sprite .arrow_button_up { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -905px -472px; + width: 45px; + height: 14px; +} + +.gods_temple_sprite .arrow_button_up_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -950px -472px; + width: 45px; + height: 14px; +} + +.gods_temple_sprite .artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -235px -289px; + width: 235px; + height: 236px; +} + +.gods_temple_sprite .artemis_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -537px; + width: 50px; + height: 50px; +} + +.gods_temple_sprite .athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px 0; + width: 235px; + height: 236px; +} + +.gods_temple_sprite .athena_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -587px; + width: 50px; + height: 50px; +} + +.gods_temple_sprite .favor_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -525px; + width: 246px; + height: 18px; +} + +.gods_temple_sprite .fury_bar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -543px; + width: 246px; + height: 18px; +} + +.gods_temple_sprite .god_select { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -380px; + width: 58px; + height: 57px; +} + +.gods_temple_sprite .hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -525px -236px; + width: 235px; + height: 236px; +} + +.gods_temple_sprite .hades_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -637px; + width: 50px; + height: 50px; +} + +.gods_temple_sprite .hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -760px 0; + width: 235px; + height: 236px; +} + +.gods_temple_sprite .hera_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px -687px; + width: 50px; + height: 50px; +} + +.gods_temple_sprite .none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 0; + width: 290px; + height: 289px; +} + +.gods_temple_sprite .poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -760px -236px; + width: 235px; + height: 236px; +} + +.gods_temple_sprite .poseidon_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -760px -472px; + width: 50px; + height: 50px; +} + +.gods_temple_sprite .resbar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -235px -525px; + width: 290px; + height: 47px; +} + +.gods_temple_sprite .selection_column_fade_bottom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -860px -487px; + width: 58px; + height: 10px; +} + +.gods_temple_sprite .selection_column_fade_top { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -918px -487px; + width: 58px; + height: 10px; +} + +.gods_temple_sprite .temple_slider_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -995px 0; + width: 71px; + height: 380px; +} + +.gods_temple_sprite .zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat 0 -525px; + width: 235px; + height: 236px; +} + +.gods_temple_sprite .zeus_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_temple_13fb61e.png) no-repeat -810px -472px; + width: 50px; + height: 50px; +} + +.gods_default_sprite_30x30 { + width: 30px; + height: 30px; +} + +.gods_default_sprite_30x30.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 0 no-repeat; +} + +.gods_default_sprite_30x30.aphrodite_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px 0 no-repeat; +} + +.gods_default_sprite_30x30.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -30px no-repeat; +} + +.gods_default_sprite_30x30.ares_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -30px no-repeat; +} + +.gods_default_sprite_30x30.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px 0 no-repeat; +} + +.gods_default_sprite_30x30.artemis_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -30px no-repeat; +} + +.gods_default_sprite_30x30.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -60px no-repeat; +} + +.gods_default_sprite_30x30.athena_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -60px no-repeat; +} + +.gods_default_sprite_30x30.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -60px no-repeat; +} + +.gods_default_sprite_30x30.hades_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px 0 no-repeat; +} + +.gods_default_sprite_30x30.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -30px no-repeat; +} + +.gods_default_sprite_30x30.hera_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -60px no-repeat; +} + +.gods_default_sprite_30x30.none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) 0 -90px no-repeat; +} + +.gods_default_sprite_30x30.none_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -30px -90px no-repeat; +} + +.gods_default_sprite_30x30.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -60px -90px no-repeat; +} + +.gods_default_sprite_30x30.poseidon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -90px -90px no-repeat; +} + +.gods_default_sprite_30x30.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -120px 0 no-repeat; +} + +.gods_default_sprite_30x30.zeus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_30x30_f263678.png) -120px -30px no-repeat; +} + +.gods_default_sprite_62x62 { + width: 62px; + height: 62px; +} + +.gods_default_sprite_62x62.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) 0 0 no-repeat; +} + +.gods_default_sprite_62x62.aphrodite_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -62px 0 no-repeat; +} + +.gods_default_sprite_62x62.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) 0 -62px no-repeat; +} + +.gods_default_sprite_62x62.ares_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -62px -62px no-repeat; +} + +.gods_default_sprite_62x62.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -124px 0 no-repeat; +} + +.gods_default_sprite_62x62.artemis_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -124px -62px no-repeat; +} + +.gods_default_sprite_62x62.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) 0 -124px no-repeat; +} + +.gods_default_sprite_62x62.athena_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -62px -124px no-repeat; +} + +.gods_default_sprite_62x62.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -124px -124px no-repeat; +} + +.gods_default_sprite_62x62.hades_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -186px 0 no-repeat; +} + +.gods_default_sprite_62x62.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -186px -62px no-repeat; +} + +.gods_default_sprite_62x62.hera_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -186px -124px no-repeat; +} + +.gods_default_sprite_62x62.none { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) 0 -186px no-repeat; +} + +.gods_default_sprite_62x62.none_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -62px -186px no-repeat; +} + +.gods_default_sprite_62x62.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -124px -186px no-repeat; +} + +.gods_default_sprite_62x62.poseidon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -186px -186px no-repeat; +} + +.gods_default_sprite_62x62.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -248px 0 no-repeat; +} + +.gods_default_sprite_62x62.zeus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_default_62x62_f4a3cc7.png) -248px -62px no-repeat; +} + +.gods_layout_sprite.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat 0 0; + width: 78px; + height: 78px; +} + +.gods_layout_sprite.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -78px 0; + width: 78px; + height: 78px; +} + +.gods_layout_sprite.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat 0 -78px; + width: 78px; + height: 78px; +} + +.gods_layout_sprite.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -78px -78px; + width: 78px; + height: 78px; +} + +.gods_layout_sprite.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -156px 0; + width: 78px; + height: 78px; +} + +.gods_layout_sprite.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -156px -78px; + width: 78px; + height: 78px; +} + +.gods_layout_sprite.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat 0 -156px; + width: 78px; + height: 78px; +} + +.gods_layout_sprite.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_layout_eb0a200.png) no-repeat -78px -156px; + width: 78px; + height: 78px; +} + +.gods_overview_sprite .aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat 0 0; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .aphrodite_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -93px 0; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat 0 -79px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .ares_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -93px -79px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -186px 0; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .artemis_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -186px -79px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat 0 -158px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .athena_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -93px -158px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -186px -158px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .hades_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -279px 0; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -279px -79px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .hera_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -279px -158px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat 0 -237px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .poseidon_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -93px -237px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .selected_highlight { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -372px 0; + width: 72px; + height: 71px; +} + +.gods_overview_sprite .zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -186px -237px; + width: 93px; + height: 79px; +} + +.gods_overview_sprite .zeus_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/gods_overview_756a002.png) no-repeat -279px -237px; + width: 93px; + height: 79px; +} + +.gods_christmas_default_sprite_62x62 { + width: 62px; + height: 62px; +} + +.gods_christmas_default_sprite_62x62.aphrodite_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) 0 0 no-repeat; +} + +.gods_christmas_default_sprite_62x62.aphrodite_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -62px 0 no-repeat; +} + +.gods_christmas_default_sprite_62x62.ares_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) 0 -62px no-repeat; +} + +.gods_christmas_default_sprite_62x62.ares_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -62px -62px no-repeat; +} + +.gods_christmas_default_sprite_62x62.artemis_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -124px 0 no-repeat; +} + +.gods_christmas_default_sprite_62x62.artemis_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -124px -62px no-repeat; +} + +.gods_christmas_default_sprite_62x62.athena_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) 0 -124px no-repeat; +} + +.gods_christmas_default_sprite_62x62.athena_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -62px -124px no-repeat; +} + +.gods_christmas_default_sprite_62x62.hades_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -124px -124px no-repeat; +} + +.gods_christmas_default_sprite_62x62.hades_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -186px 0 no-repeat; +} + +.gods_christmas_default_sprite_62x62.hera_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -186px -62px no-repeat; +} + +.gods_christmas_default_sprite_62x62.hera_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -186px -124px no-repeat; +} + +.gods_christmas_default_sprite_62x62.poseidon_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) 0 -186px no-repeat; +} + +.gods_christmas_default_sprite_62x62.poseidon_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -62px -186px no-repeat; +} + +.gods_christmas_default_sprite_62x62.zeus_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -124px -186px no-repeat; +} + +.gods_christmas_default_sprite_62x62.zeus_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_62x62_c1ea9e6.png) -186px -186px no-repeat; +} + +.gods_christmas_default_sprite_50x50 { + width: 50px; + height: 50px; +} + +.gods_christmas_default_sprite_50x50.aphrodite_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) 0 0 no-repeat; +} + +.gods_christmas_default_sprite_50x50.aphrodite_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -50px 0 no-repeat; +} + +.gods_christmas_default_sprite_50x50.ares_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) 0 -50px no-repeat; +} + +.gods_christmas_default_sprite_50x50.ares_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -50px -50px no-repeat; +} + +.gods_christmas_default_sprite_50x50.artemis_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -100px 0 no-repeat; +} + +.gods_christmas_default_sprite_50x50.artemis_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -100px -50px no-repeat; +} + +.gods_christmas_default_sprite_50x50.athena_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) 0 -100px no-repeat; +} + +.gods_christmas_default_sprite_50x50.athena_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -50px -100px no-repeat; +} + +.gods_christmas_default_sprite_50x50.hades_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -100px -100px no-repeat; +} + +.gods_christmas_default_sprite_50x50.hades_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -150px 0 no-repeat; +} + +.gods_christmas_default_sprite_50x50.hera_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -150px -50px no-repeat; +} + +.gods_christmas_default_sprite_50x50.hera_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -150px -100px no-repeat; +} + +.gods_christmas_default_sprite_50x50.poseidon_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) 0 -150px no-repeat; +} + +.gods_christmas_default_sprite_50x50.poseidon_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -50px -150px no-repeat; +} + +.gods_christmas_default_sprite_50x50.zeus_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -100px -150px no-repeat; +} + +.gods_christmas_default_sprite_50x50.zeus_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_50x50_dcd9602.png) -150px -150px no-repeat; +} + +.gods_christmas_default_sprite_30x30 { + width: 30px; + height: 30px; +} + +.gods_christmas_default_sprite_30x30.aphrodite_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) 0 0 no-repeat; +} + +.gods_christmas_default_sprite_30x30.aphrodite_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -30px 0 no-repeat; +} + +.gods_christmas_default_sprite_30x30.ares_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) 0 -30px no-repeat; +} + +.gods_christmas_default_sprite_30x30.ares_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -30px -30px no-repeat; +} + +.gods_christmas_default_sprite_30x30.artemis_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -60px 0 no-repeat; +} + +.gods_christmas_default_sprite_30x30.artemis_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -60px -30px no-repeat; +} + +.gods_christmas_default_sprite_30x30.athena_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) 0 -60px no-repeat; +} + +.gods_christmas_default_sprite_30x30.athena_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -30px -60px no-repeat; +} + +.gods_christmas_default_sprite_30x30.hades_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -60px -60px no-repeat; +} + +.gods_christmas_default_sprite_30x30.hades_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -90px 0 no-repeat; +} + +.gods_christmas_default_sprite_30x30.hera_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -90px -30px no-repeat; +} + +.gods_christmas_default_sprite_30x30.hera_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -90px -60px no-repeat; +} + +.gods_christmas_default_sprite_30x30.poseidon_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) 0 -90px no-repeat; +} + +.gods_christmas_default_sprite_30x30.poseidon_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -30px -90px no-repeat; +} + +.gods_christmas_default_sprite_30x30.zeus_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -60px -90px no-repeat; +} + +.gods_christmas_default_sprite_30x30.zeus_disabled_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_default_30x30_cfb7e54.png) -90px -90px no-repeat; +} + +.gods_christmas_misc .aphrodite_layout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat 0 -472px; + width: 78px; + height: 78px; +} + +.gods_christmas_misc .aphrodite_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat 0 0; + width: 235px; + height: 236px; +} + +.gods_christmas_misc .ares_layout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -78px -472px; + width: 78px; + height: 78px; +} + +.gods_christmas_misc .ares_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -470px 0; + width: 234px; + height: 236px; +} + +.gods_christmas_misc .artemis_layout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -156px -472px; + width: 78px; + height: 78px; +} + +.gods_christmas_misc .artemis_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat 0 -236px; + width: 234px; + height: 236px; +} + +.gods_christmas_misc .athena_layout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -234px -472px; + width: 78px; + height: 78px; +} + +.gods_christmas_misc .athena_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -704px 0; + width: 232px; + height: 236px; +} + +.gods_christmas_misc .hades_layout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -312px -472px; + width: 78px; + height: 78px; +} + +.gods_christmas_misc .hades_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -234px -236px; + width: 234px; + height: 236px; +} + +.gods_christmas_misc .hera_layout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -390px -472px; + width: 78px; + height: 78px; +} + +.gods_christmas_misc .hera_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -468px -236px; + width: 234px; + height: 236px; +} + +.gods_christmas_misc .poseidon_layout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -468px -472px; + width: 78px; + height: 78px; +} + +.gods_christmas_misc .poseidon_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -235px 0; + width: 235px; + height: 236px; +} + +.gods_christmas_misc .zeus_layout { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -546px -472px; + width: 78px; + height: 78px; +} + +.gods_christmas_misc .zeus_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_misc_b24a8bf.png) no-repeat -704px -236px; + width: 232px; + height: 236px; +} + +.gods_christmas_overview_sprite .aphrodite_christmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat 0 0; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .aphrodite_christmas_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -93px 0; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .ares_christmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat 0 -79px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .ares_christmas_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -93px -79px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .artemis_christmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -186px 0; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .artemis_christmas_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -186px -79px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .athena_christmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat 0 -158px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .athena_christmas_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -93px -158px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .hades_christmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -186px -158px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .hades_christmas_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -279px 0; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .hera_christmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -279px -79px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .hera_christmas_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -279px -158px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .poseidon_christmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat 0 -237px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .poseidon_christmas_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -93px -237px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .zeus_christmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -186px -237px; + width: 93px; + height: 79px; +} + +.gods_christmas_overview_sprite .zeus_christmas_disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/christmas/gods_christmas_overview_0f0d1d7.png) no-repeat -279px -237px; + width: 93px; + height: 79px; +} + +.gods_halloween_default_sprite_62x62 { + width: 62px; + height: 62px; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -62px 0 no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -124px -124px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) 0 -62px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -62px -62px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -124px 0 no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -124px -62px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_inactive_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) 0 -124px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_inactive_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -62px -124px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_inactive_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) 0 0 no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_inactive_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -186px 0 no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_inactive_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -186px -62px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_inactive_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -186px -124px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_inactive_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) 0 -186px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_inactive_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -62px -186px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -124px -186px no-repeat; +} + +.gods_halloween_default_sprite_62x62.favor_gods_halloween_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_62x62_e39ac89.png) -186px -186px no-repeat; +} + +.gods_halloween_default_sprite_50x50 { + width: 50px; + height: 50px; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -50px 0 no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -100px -100px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) 0 -50px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -50px -50px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -100px 0 no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -100px -50px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_inactive_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) 0 -100px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_inactive_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -50px -100px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_inactive_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) 0 0 no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_inactive_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -150px 0 no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_inactive_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -150px -50px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_inactive_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -150px -100px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_inactive_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) 0 -150px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_inactive_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -50px -150px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -100px -150px no-repeat; +} + +.gods_halloween_default_sprite_50x50.favor_gods_halloween_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_50x50_55577a9.png) -150px -150px no-repeat; +} + +.gods_halloween_default_sprite_30x30 { + width: 30px; + height: 30px; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -30px 0 no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -60px -60px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) 0 -30px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -30px -30px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -60px 0 no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -60px -30px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_inactive_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) 0 -60px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_inactive_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -30px -60px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_inactive_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) 0 0 no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_inactive_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -90px 0 no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_inactive_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -90px -30px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_inactive_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -90px -60px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_inactive_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) 0 -90px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_inactive_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -30px -90px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -60px -90px no-repeat; +} + +.gods_halloween_default_sprite_30x30.favor_gods_halloween_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_default_30x30_4036399.png) -90px -90px no-repeat; +} + +.gods_halloween_misc .city_god_aphrodite_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat 0 0; + width: 231px; + height: 231px; +} + +.gods_halloween_misc .city_god_ares_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -231px -462px; + width: 231px; + height: 231px; +} + +.gods_halloween_misc .city_god_artemis_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -231px 0; + width: 231px; + height: 231px; +} + +.gods_halloween_misc .city_god_athena_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat 0 -231px; + width: 231px; + height: 231px; +} + +.gods_halloween_misc .city_god_hades_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -231px -231px; + width: 231px; + height: 231px; +} + +.gods_halloween_misc .city_god_hera_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -462px 0; + width: 231px; + height: 231px; +} + +.gods_halloween_misc .city_god_poseidon_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -462px -231px; + width: 231px; + height: 231px; +} + +.gods_halloween_misc .city_god_zeus_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat 0 -462px; + width: 231px; + height: 231px; +} + +.gods_halloween_misc .gods_layout_aphrodite_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -693px -234px; + width: 78px; + height: 78px; +} + +.gods_halloween_misc .gods_layout_ares_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -540px -462px; + width: 78px; + height: 78px; +} + +.gods_halloween_misc .gods_layout_artemis_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -462px -540px; + width: 78px; + height: 78px; +} + +.gods_halloween_misc .gods_layout_athena_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -540px -540px; + width: 78px; + height: 78px; +} + +.gods_halloween_misc .gods_layout_hades_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -693px 0; + width: 78px; + height: 78px; +} + +.gods_halloween_misc .gods_layout_hera_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -693px -78px; + width: 78px; + height: 78px; +} + +.gods_halloween_misc .gods_layout_poseidon_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -693px -156px; + width: 78px; + height: 78px; +} + +.gods_halloween_misc .gods_layout_zeus_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_misc_698d1f4.png) no-repeat -462px -462px; + width: 78px; + height: 78px; +} + +.gods_halloween_overview_sprite .aphrodite_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -93px 0; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .aphrodite_halloween_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -186px -158px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .ares_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -279px -237px; + width: 93px; + height: 78px; +} + +.gods_halloween_overview_sprite .ares_halloween_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -186px -237px; + width: 93px; + height: 78px; +} + +.gods_halloween_overview_sprite .artemis_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -186px 0; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .artemis_halloween_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -186px -79px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .athena_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat 0 -158px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .athena_halloween_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -93px -158px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .hades_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat 0 0; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .hades_halloween_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -279px 0; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .hera_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -279px -79px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .hera_halloween_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -279px -158px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .poseidon_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat 0 -237px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .poseidon_halloween_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -93px -79px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .zeus_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat 0 -79px; + width: 93px; + height: 79px; +} + +.gods_halloween_overview_sprite .zeus_halloween_dis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/gods/halloween/gods_halloween_overview_9985443.png) no-repeat -93px -237px; + width: 93px; + height: 79px; +} + +.spells_dialog_sprite .banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat 0 0; + width: 72px; + height: 260px; +} + +.spells_dialog_sprite .banner_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -72px 0; + width: 72px; + height: 260px; +} + +.spells_dialog_sprite .close_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -144px 0; + width: 24px; + height: 24px; +} + +.spells_dialog_sprite .pole { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -144px -24px; + width: 18px; + height: 8px; +} + +.spells_dialog_sprite .pole_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -144px -32px; + width: 9px; + height: 8px; +} + +.spells_dialog_sprite .pole_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -153px -32px; + width: 9px; + height: 8px; +} + +.spells_dialog .header { + font-size: 12px; +} + +.spells_dialog .gods_container { + text-align: center; + position: relative; +} + +.spells_dialog .gods_container .god_mini { + position: relative; + display: inline-block; +} + +.spells_dialog .gods_container .banner, +.spells_dialog .gods_container .banner_inactive { + position: relative; + top: -41px; +} + +.spells_dialog .gods_container .banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat 0 0; + width: 72px; + height: 260px; +} + +.spells_dialog .gods_container .banner_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -72px 0; + width: 72px; + height: 260px; +} + +.spells_dialog .gods_container .god_container { + display: inline-block; + position: relative; + height: 285px; + margin: 0 6px; +} + +.spells_dialog .gods_container .god_container:first-child:nth-last-child(8), +.spells_dialog .gods_container .god_container:first-child:nth-last-child(8)~.god_container { + margin: 0; +} + +.spells_dialog .gods_container .god_container:first-child .pole::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -144px -32px; + width: 9px; + height: 8px; + content: ''; + position: absolute; + left: -6px; +} + +.spells_dialog .gods_container .god_container:last-child .pole::after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -153px -32px; + width: 9px; + height: 8px; + content: ''; + position: absolute; + right: -6px; +} + +.spells_dialog .gods_container .god_container .pole { + position: absolute; + top: 28px; + width: 100%; +} + +.spells_dialog .gods_container .god_container .pole::after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -144px -24px; + width: 18px; + height: 8px; + content: ''; + position: absolute; + right: -15px; +} + +.spells_dialog .gods_container .god_container .favor { + height: 17px; + color: #ecb44d; + line-height: 17px; + top: 58px; + width: 50px; + left: 18px; + font-size: 11px; + position: absolute; +} + +.spells_dialog .gods_container .god_container.disabled .favor { + color: #dadada; +} + +.spells_dialog .gods_container .god_container .powers { + position: absolute; + top: 98px; + width: 100%; +} + +.spells_dialog .gods_container .god_container .powers .power { + position: relative; + margin-bottom: 6px; + cursor: pointer; +} + +.spells_dialog .gods_container .god_container .powers .power.disabled { + cursor: default; +} + +.spells_dialog .has_no_god_in_all_towns { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 0 60px; + text-align: center; +} + +.spells_dialog .has_no_god_in_all_towns .css-ribbon { + margin-top: 154px; +} + +.spells_dialog .has_no_god_in_all_towns .btn_to_temple { + margin-top: 5px; +} + +.spells_dialog .btn_view_report { + margin-top: 10px; + font-weight: 700; + font-size: 12px; + padding-left: 38px; + height: 26px; + padding-top: 10px; + display: inline-block; + position: relative; +} + +.spells_dialog .btn_view_report .icon { + background: url(https://gpfr.innogamescdn.com/images/game/layout/alpha_sprite_2.69.png) no-repeat -53px -72px; + width: 36px; + height: 36px; + display: block; + position: absolute; + top: 0; + left: 0; +} + +.spells_dialog .css-view-report-box { + display: none; +} + +.cast_spell.confirmation { + padding: 30px 10px; +} + +.cast_spell.god_mini { + position: absolute; + top: -26px; + left: 50%; + transform: translate(-50%); +} + +.grepo_box_window.dialog { + top: -9px; + left: -9px; + right: -9px; + bottom: -9px; + display: block; +} + +.grepo_box_window.dialog .grepo_box_background { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; + box-shadow: inset 0 0 10px #555; +} + +.grepo_box_window.dialog .content { + z-index: 6; + color: #000; +} + +.grepo_box_window.dialog .centering_box { + margin: 0 30px; +} + +.grepo_box_window.dialog .spells_dialog { + margin: 10px; + position: relative; +} + +.grepo_box_window.dialog .btn_close { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/spells_dialog/spells_dialog_d793cd5.png) no-repeat -144px 0; + width: 24px; + height: 24px; + position: absolute; + top: 0; + right: 0; +} + +.city_skins_overview_sprite .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat 0 0; + width: 608px; + height: 417px; +} + +.city_skins_overview_sprite .card { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat 0 -417px; + width: 148px; + height: 219px; +} + +.city_skins_overview_sprite .card_world_only { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -608px 0; + width: 176px; + height: 237px; +} + +.city_skins_overview_sprite .locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -608px -237px; + width: 130px; + height: 90px; +} + +.city_skins_overview_sprite .portrait_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -608px -327px; + width: 130px; + height: 90px; +} + +.city_skins_overview_sprite .portrait_domination { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -148px -417px; + width: 130px; + height: 90px; +} + +.city_skins_overview_sprite .portrait_fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -278px -417px; + width: 130px; + height: 90px; +} + +.city_skins_overview_sprite .portrait_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -408px -417px; + width: 130px; + height: 90px; +} + +.city_skins_overview_sprite .portrait_world_wonder { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -538px -417px; + width: 130px; + height: 90px; +} + +.city_skins_overview_sprite .potrait_10th_anniversary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -148px -507px; + width: 130px; + height: 90px; +} + +.city_skins_overview { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat 0 0; + width: 608px; + height: 417px; + position: absolute; + margin: -9px; +} + +.city_skins_overview .description { + text-align: center; + height: 40px; + color: #fff; + position: relative; +} + +.city_skins_overview .description>div { + top: 50%; + transform: translateY(-50%); + position: relative; +} + +.city_skins_overview .js-scrollbar-viewport { + height: 367px; + overflow: hidden; + position: relative; +} + +.city_skins_overview .js-scrollbar-content { + text-align: center; + position: absolute; +} + +.city_skins_overview .card { + display: inline-block; + margin: 0 10px 10px; + position: relative; +} + +.city_skins_overview .card .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat 0 -417px; + width: 148px; + height: 219px; +} + +.city_skins_overview .card.world_only .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -608px 0; + width: 176px; + height: 237px; +} + +.city_skins_overview .card.world_only .skin_name { + color: #fff; +} + +.city_skins_overview .card.world_only .skin_description { + font-weight: 400; + color: #fff; + position: absolute; + top: 135px; + margin: 0 25px; + text-align: center; + width: 126px; +} + +.city_skins_overview .card.selected { + -moz-box-shadow: 0 5px 10px 0 #000; + -webkit-box-shadow: 0 5px 10px 0 #000; + box-shadow: 0 5px 10px 0 #000; +} + +.city_skins_overview .card.selected .game_border>:not(.background) { + display: block; +} + +.city_skins_overview .card.selected .selected_text { + display: block; + bottom: 15px; +} + +.city_skins_overview .card.selected .btn_select_skin { + display: none; +} + +.city_skins_overview .card .skin_name { + font-weight: 600; + position: absolute; + top: 115px; + margin: 0 15px; + text-align: center; + width: 126px; +} + +.city_skins_overview .card .game_border>:not(.background), +.city_skins_overview .card .selected_text { + display: none; +} + +.city_skins_overview .card .btn_select_skin, +.city_skins_overview .card .selected_text { + position: absolute; + bottom: 10px; + transform: translateX(-50%); + left: 50%; +} + +.city_skins_overview .card .preview { + position: absolute; + top: 13px; + left: 13px; + z-index: 1; +} + +.city_skins_overview .card .locked { + position: absolute; + top: 13px; + left: 13px; + z-index: 2; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -608px -237px; + width: 130px; + height: 90px; +} + +.city_skins_overview .card .default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -608px -327px; + width: 130px; + height: 90px; +} + +.city_skins_overview .card .ten_anniversary { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -148px -507px; + width: 130px; + height: 90px; +} + +.city_skins_overview .card .world_wonders { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -538px -417px; + width: 130px; + height: 90px; +} + +.city_skins_overview .card .domination { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -148px -417px; + width: 130px; + height: 90px; +} + +.city_skins_overview .card .olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -408px -417px; + width: 130px; + height: 90px; +} + +.city_skins_overview .card .fleet_port { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/city_skins_overview/city_skins_overview_8032a0d.png) no-repeat -278px -417px; + width: 130px; + height: 90px; +} + +.town_skins .city_skin_10th_anniversary { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_10th_anniversary_649f083.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_10th_anniversary_night { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_10th_anniversary_night_566e190.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_default { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_default_391c30b.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_default_night { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_default_night_943074e.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_domination { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_domination_8371008.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_domination_night { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_domination_night_56cf1e0.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_fleet_port { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_fleet_port_b7c9775.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_fleet_port_night { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_fleet_port_night_bb2212a.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_olympus { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_olympus_2e6ed65.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_olympus_night { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_olympus_night_e2d4fe2.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_world_wonder { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_world_wonder_a1b8d99.png); + background-repeat: no-repeat; +} + +.town_skins .city_skin_world_wonder_night { + background-image: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/town_skins/city_skin_world_wonder_night_817865a.png); + background-repeat: no-repeat; +} + +.towns_sprite_images .abandoned_flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -20px -24px; + width: 19px; + height: 28px; +} + +.towns_sprite_images .abandoned_flag_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat 0 -24px; + width: 20px; + height: 28px; +} + +.towns_sprite_images .flag_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -39px -24px; + width: 19px; + height: 28px; +} + +.towns_sprite_images .flag_big_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -66px 0; + width: 19px; + height: 28px; +} + +.towns_sprite_images .flag_small { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -66px -28px; + width: 14px; + height: 23px; +} + +.towns_sprite_images .flag_small_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat 0 -52px; + width: 14px; + height: 23px; +} + +.towns_sprite_images .founding_flag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat 0 0; + width: 33px; + height: 24px; +} + +.towns_sprite_images .founding_flag_night { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/map/towns/towns_59cb9ed.png) no-repeat -33px 0; + width: 33px; + height: 24px; +} + +.artifacts_sprite.ambrosia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -255px 0; + width: 232px; + height: 164px; +} + +.artifacts_sprite.artifact_level_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -232px -330px; + width: 67px; + height: 67px; +} + +.artifacts_sprite.artifacts_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat 0 0; + width: 255px; + height: 166px; +} + +.artifacts_sprite.athenas_cornucopia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat 0 -166px; + width: 232px; + height: 164px; +} + +.artifacts_sprite.golden_fleece { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -232px -166px; + width: 232px; + height: 164px; +} + +.artifacts_sprite.palladion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -487px 0; + width: 232px; + height: 164px; +} + +.artifacts_sprite.silver_kantharos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -487px -164px; + width: 232px; + height: 164px; +} + +.artifacts_sprite.zeus_spark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat 0 -330px; + width: 232px; + height: 164px; +} + +.artifact_icons20x20 { + width: 20px; + height: 20px; +} + +.artifact_icons20x20.ambrosia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_20x20_d807f43.png) 0 0 no-repeat; +} + +.artifact_icons20x20.athenas_cornucopia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_20x20_d807f43.png) -20px 0 no-repeat; +} + +.artifact_icons20x20.golden_fleece { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_20x20_d807f43.png) 0 -20px no-repeat; +} + +.artifact_icons20x20.palladion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_20x20_d807f43.png) -20px -20px no-repeat; +} + +.artifact_icons20x20.silver_kantharos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_20x20_d807f43.png) -40px 0 no-repeat; +} + +.artifact_icons20x20.zeus_spark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_20x20_d807f43.png) -40px -20px no-repeat; +} + +.artifact_icons56x56 { + width: 56px; + height: 56px; +} + +.artifact_icons56x56.ambrosia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_56x56_cf8d94b.png) 0 0 no-repeat; +} + +.artifact_icons56x56.athenas_cornucopia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_56x56_cf8d94b.png) -56px 0 no-repeat; +} + +.artifact_icons56x56.golden_fleece { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_56x56_cf8d94b.png) 0 -56px no-repeat; +} + +.artifact_icons56x56.palladion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_56x56_cf8d94b.png) -56px -56px no-repeat; +} + +.artifact_icons56x56.silver_kantharos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_56x56_cf8d94b.png) -112px 0 no-repeat; +} + +.artifact_icons56x56.zeus_spark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/icons/artifact_icons_56x56_cf8d94b.png) -112px -56px no-repeat; +} + +.artifact_profile_icons76x76 { + width: 76px; + height: 76px; +} + +.artifact_profile_icons76x76.artifacts_profile_ambrosia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/profile/artifact_profile_icon_76x76_ca4b52f.png) 0 0 no-repeat; +} + +.artifact_profile_icons76x76.artifacts_profile_athenas_cornucopia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/profile/artifact_profile_icon_76x76_ca4b52f.png) -76px 0 no-repeat; +} + +.artifact_profile_icons76x76.artifacts_profile_golden_fleece { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/profile/artifact_profile_icon_76x76_ca4b52f.png) 0 -76px no-repeat; +} + +.artifact_profile_icons76x76.artifacts_profile_palladion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/profile/artifact_profile_icon_76x76_ca4b52f.png) -76px -76px no-repeat; +} + +.artifact_profile_icons76x76.artifacts_profile_silver_kantharos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/profile/artifact_profile_icon_76x76_ca4b52f.png) -152px 0 no-repeat; +} + +.artifact_profile_icons76x76.artifacts_profile_zeus_spark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/profile/artifact_profile_icon_76x76_ca4b52f.png) -152px -76px no-repeat; +} + +.artifacts_notifications_single_images .artifact_notification_ambrosia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_ambrosia_dd52914.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.artifacts_notifications_single_images .artifact_notification_athenas_cornucopia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_athenas_cornucopia_5e1de9e.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.artifacts_notifications_single_images .artifact_notification_golden_fleece { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_golden_fleece_b0af758.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.artifacts_notifications_single_images .artifact_notification_palladion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_palladion_ae3cdfc.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.artifacts_notifications_single_images .artifact_notification_silver_kantharos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_silver_kantharos_a725af4.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.artifacts_notifications_single_images .artifact_notification_zeus_spark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/notifications/single_images/artifact_notification_zeus_spark_418e19b.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.artifacts_wrapper { + width: 806px; + height: 527px; + text-align: center; + overflow: hidden; + position: relative; +} + +.artifacts_wrapper .js-scrollbar-content { + padding: 30px 0; + overflow: hidden; +} + +.artifacts_wrapper.levels_enabled { + margin: 0 auto; +} + +.artifacts_wrapper.levels_enabled .artifact { + margin: 10px 20px; +} + +.artifacts_wrapper .scrollbar { + float: right; + position: relative; + height: 100%; +} + +.artifact_card { + position: relative; + width: 257px; + display: inline-block; + vertical-align: top; + text-align: left; +} + +.artifact_card .lock_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat 0 0; + width: 255px; + height: 166px; + position: absolute; + top: 30px; + left: 1px; + z-index: 6; +} + +.artifact_card .lock_overlay div { + position: relative; + top: 18px; + text-align: center; + font-size: 16px; +} + +.artifact_card .grepo_box_content div { + box-shadow: 0 0 30px 2px #000; +} + +.artifact_card .deco_statue_facewithwings { + position: absolute; + z-index: 8; + top: 185px; + left: 50%; + margin-left: -87px; +} + +.artifact_card .artifact_info { + position: relative; + margin: 21px 10px 0 10px; + box-shadow: 0 0 30px 2px #000; +} + +.artifact_card .artifact_info.show_chains:after, +.artifact_card .artifact_info.show_chains:before { + content: ''; + display: block; + position: absolute; + top: -24px; + width: 18px; + height: 22px; + background: url(https://gpfr.innogamescdn.com/images/game/common/lines_vertical.png) repeat 0 0; +} + +.artifact_card .artifact_info.show_chains:before { + left: 20px; +} + +.artifact_card .artifact_info.show_chains:after { + right: 20px; +} + +.artifact_card .description { + overflow: hidden; + border-left: none; + border-right: none; + border-top: none; + color: #fc6; +} + +.artifact_card .bonus_description, +.artifact_card .effect { + font-weight: 600; +} + +.artifact_card .bonus_description, +.artifact_card .description, +.artifact_card .effect, +.artifact_card .requirement { + padding: 10px; +} + +.artifact_card .artifact_image.ambrosia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -255px 0; + width: 232px; + height: 164px; +} + +.artifact_card .artifact_image.artifact_level_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -232px -330px; + width: 67px; + height: 67px; +} + +.artifact_card .artifact_image.artifacts_locked { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat 0 0; + width: 255px; + height: 166px; +} + +.artifact_card .artifact_image.athenas_cornucopia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat 0 -166px; + width: 232px; + height: 164px; +} + +.artifact_card .artifact_image.golden_fleece { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -232px -166px; + width: 232px; + height: 164px; +} + +.artifact_card .artifact_image.palladion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -487px 0; + width: 232px; + height: 164px; +} + +.artifact_card .artifact_image.silver_kantharos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -487px -164px; + width: 232px; + height: 164px; +} + +.artifact_card .artifact_image.zeus_spark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat 0 -330px; + width: 232px; + height: 164px; +} + +.artifact_card .artifact_level_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifacts_521f058.png) no-repeat -232px -330px; + width: 67px; + height: 67px; + position: absolute; + right: -12px; + bottom: -12px; + z-index: 6; +} + +.artifact_card .artifact_level_frame:after { + position: absolute; + content: ""; + left: -3px; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); +} + +.artifact_icon.lvl1:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -126px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl1:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -126px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl2:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -54px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl2:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -54px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl3:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -108px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl3:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -108px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl4:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -144px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl4:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -144px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl5:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -74px -144px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl5:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -74px -144px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl6:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -148px -144px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl6:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -148px -144px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl7:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -162px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl7:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -162px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl8:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -74px -162px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl8:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -74px -162px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl9:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -148px -162px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl9:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -148px -162px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl10:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -126px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl10:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -126px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl11:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px 0; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl11:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px 0; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl12:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -18px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl12:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -18px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl13:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -36px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl13:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -36px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl14:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -72px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl14:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -72px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl15:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -90px; + width: 74px; + height: 18px; +} + +.artifact_level_frame.lvl15:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -150px -90px; + width: 74px; + height: 18px; +} + +.artifact_icon.lvl16:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -54px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl16:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -54px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl17:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -36px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl17:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -36px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl18:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -54px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl18:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -54px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl19:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px 0; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl19:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px 0; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl20:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -18px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl20:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -18px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl21:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -36px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl21:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -36px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl22:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 0; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl22:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 0; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl23:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -18px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl23:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -18px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl24:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -72px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl24:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -72px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl25:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -72px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl25:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -72px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl26:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -90px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl26:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -90px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl27:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -90px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl27:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -90px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl28:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -108px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl28:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -108px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl29:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -108px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl29:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat -75px -108px; + width: 75px; + height: 18px; +} + +.artifact_icon.lvl30:after { + position: absolute; + content: ""; + left: -19px; + bottom: 5px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -126px; + width: 75px; + height: 18px; +} + +.artifact_level_frame.lvl30:after { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/artifacts/artifact_levels_f0ed0d6.png) no-repeat 0 -126px; + width: 75px; + height: 18px; +} + +.world_wonders_single_images .finished_colossus_of_rhodes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_colossus_of_rhodes_60c40c1.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders_single_images .finished_great_pyramid_of_giza { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_great_pyramid_of_giza_471032a.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders_single_images .finished_hanging_gardens_of_babylon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_hanging_gardens_of_babylon_32f15ed.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders_single_images .finished_lighthouse_of_alexandria { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_lighthouse_of_alexandria_f81df61.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders_single_images .finished_mausoleum_of_halicarnassus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_mausoleum_of_halicarnassus_311b643.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders_single_images .finished_statue_of_zeus_at_olympia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_statue_of_zeus_at_olympia_c6656be.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders_single_images .finished_temple_of_artemis_at_ephesus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_temple_of_artemis_at_ephesus_e30fbd4.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders_single_images .ww_battle_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_battle_notification_40c1cdb.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_battle_notification_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_battle_notification_small_window_dc8723e.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_colossus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_colossus_c3621be.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_colossus_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_colossus_small_window_4703f65.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_gardens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_gardens_2b72845.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_gardens_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_gardens_small_window_8bef888.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_lighthouse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_lighthouse_ca1ecfe.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_lighthouse_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_lighthouse_small_window_15e4541.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_mausoleum { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_mausoleum_6338b29.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_mausoleum_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_mausoleum_small_window_8370860.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_pyramids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_pyramids_ea8b8bf.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_pyramids_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_pyramids_small_window_7242aa4.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_temple_69834fa.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_temple_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_temple_small_window_1264cd9.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_zeus_25bc873.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_completed_zeus_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_completed_zeus_small_window_dc81615.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_construction_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_construction_notification_be0a0bd.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_construction_notification_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_construction_notification_small_window_e6cbf8b.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_general_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_general_notification_e848f8c.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_general_notification_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_general_notification_small_window_668d6f9.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_main_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_main_frame_93e1ad7.png) no-repeat 0 0; + width: 818px; + height: 527px; +} + +.world_wonders_single_images .ww_ranking_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_ranking_frame_e67c562.png) no-repeat 0 0; + width: 818px; + height: 527px; +} + +.world_wonders_single_images .ww_sub_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_sub_header_a6ef10d.png) no-repeat 0 0; + width: 150px; + height: 80px; +} + +.world_wonders_single_images .ww_won_notification { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_won_notification_6b8c056.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_won_notification_small_window { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_won_notification_small_window_aaf61d3.png) no-repeat 0 0; + width: 678px; + height: 518px; +} + +.world_wonders_single_images .ww_wonder_construction { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_wonder_construction_da3db7b.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.ww_sprite_images .colossus_of_rhodes_26x26 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -30px -60px; + width: 26px; + height: 26px; +} + +.ww_sprite_images .great_pyramid_of_giza_26x26 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -56px -60px; + width: 26px; + height: 26px; +} + +.ww_sprite_images .hanging_gardens_of_babylon_26x26 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -90px 0; + width: 26px; + height: 26px; +} + +.ww_sprite_images .lighthouse_of_alexandria_26x26 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -90px -26px; + width: 26px; + height: 26px; +} + +.ww_sprite_images .map_icon_colossus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat 0 0; + width: 30px; + height: 30px; +} + +.ww_sprite_images .map_icon_gardens { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -30px 0; + width: 30px; + height: 30px; +} + +.ww_sprite_images .map_icon_lighthouse { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat 0 -30px; + width: 30px; + height: 30px; +} + +.ww_sprite_images .map_icon_mausoleum { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +.ww_sprite_images .map_icon_pyramids { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -60px 0; + width: 30px; + height: 30px; +} + +.ww_sprite_images .map_icon_temple { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -60px -30px; + width: 30px; + height: 30px; +} + +.ww_sprite_images .map_icon_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat 0 -60px; + width: 30px; + height: 30px; +} + +.ww_sprite_images .mausoleum_of_halicarnassus_26x26 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -90px -52px; + width: 26px; + height: 26px; +} + +.ww_sprite_images .statue_of_zeus_26x26 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat 0 -90px; + width: 26px; + height: 26px; +} + +.ww_sprite_images .temple_of_artemis_26x26 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -26px -90px; + width: 26px; + height: 26px; +} + +.ww_frame_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_main_frame_93e1ad7.png) no-repeat 0 0; + width: 818px; + height: 527px; + position: absolute; + top: 0; + left: 7px; +} + +.ww_frame_background.wonder_finished { + z-index: 1001; +} + +#ww_time_progressbar { + width: 286px; + margin: 0 auto; +} + +#ww_time_progressbar .caption .text { + text-shadow: none; + line-height: 20px; +} + +#ww_time_progressbar .caption .curr { + line-height: 18px; +} + +.world_wonders .gpwindow_content { + padding: 80px 30px 0; + bottom: 8px; +} + +.world_wonders .gpwindow_content .ww_frame_background { + top: -9px; + left: -9px; +} + +.world_wonders .gpwindow_content .ww_construction { + position: absolute; + top: 46px; + left: 7px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_wonder_construction_da3db7b.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders.possible_wonder_sites { + overflow: hidden; + position: absolute; + top: -9px; + left: -9px; + height: 451px; + width: 800px; + padding: 9px; +} + +.world_wonders.possible_wonder_sites .description { + text-align: center; + margin: 0 0 5px; +} + +.world_wonders.possible_wonder_sites .scrollbar { + position: relative; + height: 469px; + float: right; + right: -9px; + top: -9px; +} + +.world_wonders.possible_wonder_sites .content { + overflow: hidden; +} + +.world_wonders.possible_wonder_sites #dd_filter_ocean { + left: 2px; + margin-bottom: 5px; + min-width: 150px; +} + +.world_wonders.possible_wonder_sites table.present_data th.island { + min-width: 150px; +} + +.world_wonders.possible_wonder_sites table.present_data th.position { + min-width: 200px; +} + +.world_wonders.possible_wonder_sites table.present_data td.island, +.world_wonders.possible_wonder_sites table.present_data td.position { + text-align: left; +} + +.world_wonders.possible_wonder_sites table.present_data tbody tr { + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/even.png); +} + +.world_wonders.possible_wonder_sites table.present_data tbody tr:nth-child(2n) { + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); +} + +.world_wonders.possible_wonder_sites table.present_data tbody tr td { + border-bottom: 1px solid #d0be97; +} + +.world_wonders table.present_data th { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_sub_header_a6ef10d.png) no-repeat 0 0; + width: 150px; + height: 80px; + background-repeat: repeat-x; + height: 28px; +} + +.world_wonders div.wonder_state.wonder_finished .finished_wonder_box { + width: 760px; + bottom: 20px; + left: 20px; +} + +.world_wonders .wonder_finished { + left: 0; + overflow: hidden; +} + +.world_wonders .wonder_finished .finished_image { + position: absolute; + top: 47px; + left: 7px; +} + +.world_wonders .wonder_finished .finished_image.great_pyramid_of_giza { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_great_pyramid_of_giza_471032a.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders .wonder_finished .finished_image.lighthouse_of_alexandria { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_lighthouse_of_alexandria_f81df61.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders .wonder_finished .finished_image.mausoleum_of_halicarnassus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_mausoleum_of_halicarnassus_311b643.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders .wonder_finished .finished_image.statue_of_zeus_at_olympia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_statue_of_zeus_at_olympia_c6656be.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders .wonder_finished .finished_image.temple_of_artemis_at_ephesus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_temple_of_artemis_at_ephesus_e30fbd4.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders .wonder_finished .finished_image.colossus_of_rhodes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_colossus_of_rhodes_60c40c1.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders .wonder_finished .finished_image.hanging_gardens_of_babylon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/finished_hanging_gardens_of_babylon_32f15ed.png) no-repeat 0 0; + width: 787px; + height: 472px; +} + +.world_wonders_ranking thead tr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_sub_header_a6ef10d.png) no-repeat 0 0; + width: 150px; + height: 80px; + height: 26px; + background-repeat: repeat; +} + +.world_wonders_ranking thead tr .header_data div { + display: inline-block; + top: 2px; + position: relative; +} + +.world_wonders_ranking thead tr .header_data div[data-id=great_pyramid_of_giza] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -56px -60px; + width: 26px; + height: 26px; +} + +.world_wonders_ranking thead tr .header_data div[data-id=lighthouse_of_alexandria] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -90px -26px; + width: 26px; + height: 26px; +} + +.world_wonders_ranking thead tr .header_data div[data-id=mausoleum_of_halicarnassus] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -90px -52px; + width: 26px; + height: 26px; +} + +.world_wonders_ranking thead tr .header_data div[data-id=statue_of_zeus_at_olympia] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat 0 -90px; + width: 26px; + height: 26px; +} + +.world_wonders_ranking thead tr .header_data div[data-id=temple_of_artemis_at_ephesus] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -26px -90px; + width: 26px; + height: 26px; +} + +.world_wonders_ranking thead tr .header_data div[data-id=colossus_of_rhodes] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -30px -60px; + width: 26px; + height: 26px; +} + +.world_wonders_ranking thead tr .header_data div[data-id=hanging_gardens_of_babylon] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/general/ww_sprite_2fbc594.png) no-repeat -90px 0; + width: 26px; + height: 26px; +} + +.world_wonders_ranking .ranking_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/single_images/ww_ranking_frame_e67c562.png) no-repeat 0 0; + width: 818px; + height: 527px; + position: relative; + pointer-events: none; +} + +.world_wonders_ranking .flags_in_background { + position: absolute; + top: 83px; + left: 99px; +} + +.world_wonders_ranking .flags_in_background .alliance_flag { + position: absolute; + width: 44px; + height: 46px; +} + +.world_wonders_ranking .flags_in_background .alliance_flag img { + width: 100%; +} + +.world_wonders_ranking .flags_in_background .flag_1 { + left: 294px; + top: 38px; +} + +.world_wonders_ranking .flags_in_background .flag_3 { + left: 411px; + top: 75px; +} + +.world_wonders_ranking .flags_in_background .flag_2 { + left: 178px; + top: 63px; +} + +.world_wonders_ranking .ranking { + position: absolute; + width: 750px; + bottom: 15px; + left: 40px; + height: 245px; +} + +.world_wonders_ranking .ranking .game_border { + height: 212px; + overflow: hidden; +} + +.world_wonders_ranking .available_artifact { + width: 30px; +} + +.world_wonders_ranking .available_artifact>div { + margin: auto; +} + +.world_wonders_ranking .data_column.red { + color: #e72200; +} + +.world_wonders_ranking .data_column[data-level][data-level="0"] { + cursor: default; +} + +.world_wonders_ranking .data_column[data-level]:not([data-level="0"]) { + cursor: pointer; +} + +.world_wonders_ranking .data_column[data-level]:not([data-level="0"]):hover { + text-decoration: underline; +} + +.wonders_tooltip .island { + font-weight: 600; +} + +.wonders_tooltip .coordinates * { + vertical-align: middle; +} + +.wonders_tooltip .sea_coords { + padding-right: 2px; +} + +.world_wonders_info .world_wonders_info_content { + padding: 92px 50px 0; + height: 439px; +} + +.world_wonders_info .world_wonders_info_content .game_border { + width: 100%; +} + +.ww_report_sprite_images .colossus_of_rhodes_202x130 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -231px -210px; + width: 202px; + height: 130px; +} + +.ww_report_sprite_images .colossus_of_rhodes_76x56 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -465px -260px; + width: 76px; + height: 56px; +} + +.ww_report_sprite_images .great_pyramid_of_giza_202x130 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -465px 0; + width: 202px; + height: 130px; +} + +.ww_report_sprite_images .great_pyramid_of_giza_76x56 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -541px -260px; + width: 76px; + height: 56px; +} + +.ww_report_sprite_images .hanging_gardens_of_babylon_202x130 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -465px -130px; + width: 202px; + height: 130px; +} + +.ww_report_sprite_images .hanging_gardens_of_babylon_76x56 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -402px -501px; + width: 76px; + height: 56px; +} + +.ww_report_sprite_images .lighthouse_of_alexandria_202x130 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat 0 -371px; + width: 202px; + height: 130px; +} + +.ww_report_sprite_images .lighthouse_of_alexandria_76x56 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -478px -501px; + width: 76px; + height: 56px; +} + +.ww_report_sprite_images .mausoleum_of_halicarnassus_202x130 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -202px -371px; + width: 202px; + height: 130px; +} + +.ww_report_sprite_images .mausoleum_of_halicarnassus_76x56 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -554px -501px; + width: 76px; + height: 56px; +} + +.ww_report_sprite_images .statue_of_zeus_at_olympia_202x130 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -404px -371px; + width: 202px; + height: 130px; +} + +.ww_report_sprite_images .statue_of_zeus_at_olympia_76x56 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -402px -557px; + width: 76px; + height: 56px; +} + +.ww_report_sprite_images .temple_of_artemis_at_ephesus_202x130 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat 0 -501px; + width: 202px; + height: 130px; +} + +.ww_report_sprite_images .temple_of_artemis_at_ephesus_76x56 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -478px -557px; + width: 76px; + height: 56px; +} + +.ww_report_sprite_images .wonder_curtain { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat 0 0; + width: 465px; + height: 210px; +} + +.ww_report_sprite_images .wonder_frame { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat 0 -210px; + width: 231px; + height: 161px; +} + +.ww_report_sprite_images .ww_won_illustration { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/world_wonders/report/ww_report_sprite_5d845ff.png) no-repeat -202px -501px; + width: 200px; + height: 130px; +} + +.tasks_divine_trials_single_images .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/single_images/background_0f1a7e2.png) no-repeat 0 0; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_single_images .interstitial_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/single_images/interstitial_bg_354d65a.png) no-repeat 0 0; + width: 721px; + height: 379px; +} + +.tasks_divine_trials_single_images .interstitial_bg_overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/single_images/interstitial_bg_overlay_3a66c7e.png) no-repeat 0 0; + width: 307px; + height: 426px; +} + +.tasks_divine_trials_overall_sprite .button_reduction_buildings { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -501px -70px; + width: 18px; + height: 15px; +} + +.tasks_divine_trials_overall_sprite .button_reduction_quests { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -519px -70px; + width: 18px; + height: 15px; +} + +.tasks_divine_trials_overall_sprite .button_reduction_research { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -537px -70px; + width: 18px; + height: 15px; +} + +.tasks_divine_trials_overall_sprite .button_reduction_silver { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -555px -70px; + width: 18px; + height: 15px; +} + +.tasks_divine_trials_overall_sprite .button_reduction_spells { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -573px -70px; + width: 18px; + height: 15px; +} + +.tasks_divine_trials_overall_sprite .button_reduction_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -591px -70px; + width: 18px; + height: 15px; +} + +.tasks_divine_trials_overall_sprite .button_reduction_villages { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -483px -70px; + width: 18px; + height: 15px; +} + +.tasks_divine_trials_overall_sprite .check_mark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -971px -147px; + width: 35px; + height: 28px; +} + +.tasks_divine_trials_overall_sprite .collect_grand_prize_button_bracket_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -998px -109px; + width: 6px; + height: 20px; +} + +.tasks_divine_trials_overall_sprite .collect_grand_prize_button_bracket_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -992px -109px; + width: 6px; + height: 20px; +} + +.tasks_divine_trials_overall_sprite .daily_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -375px -212px; + width: 165px; + height: 70px; +} + +.tasks_divine_trials_overall_sprite .divine_trials_event_icon_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -125px -212px; + width: 125px; + height: 125px; +} + +.tasks_divine_trials_overall_sprite .divine_trials_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat 0 -212px; + width: 125px; + height: 125px; +} + +.tasks_divine_trials_overall_sprite .divine_trials_event_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -250px -212px; + width: 125px; + height: 125px; +} + +.tasks_divine_trials_overall_sprite .ep_icon_grand_prize { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -992px -93px; + width: 16px; + height: 16px; +} + +.tasks_divine_trials_overall_sprite .ep_icon_reward { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -939px -178px; + width: 25px; + height: 26px; +} + +.tasks_divine_trials_overall_sprite .ep_icon_reward_big { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -939px -147px; + width: 32px; + height: 31px; +} + +.tasks_divine_trials_overall_sprite .grand_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat 0 0; + width: 483px; + height: 93px; +} + +.tasks_divine_trials_overall_sprite .grand_prizes_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -939px -93px; + width: 53px; + height: 54px; +} + +.tasks_divine_trials_overall_sprite .ongoing_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -483px 0; + width: 529px; + height: 70px; +} + +.tasks_divine_trials_overall_sprite .points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat 0 -337px; + width: 113px; + height: 77px; +} + +.tasks_divine_trials_overall_sprite .reward_banner_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -113px -337px; + width: 103px; + height: 63px; +} + +.tasks_divine_trials_overall_sprite .reward_banner_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -216px -337px; + width: 103px; + height: 63px; +} + +.tasks_divine_trials_overall_sprite .tile_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat 0 -93px; + width: 189px; + height: 119px; +} + +.tasks_divine_trials_overall_sprite .tile_active_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -189px -93px; + width: 189px; + height: 119px; +} + +.tasks_divine_trials_overall_sprite .tile_completed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -567px -93px; + width: 186px; + height: 119px; +} + +.tasks_divine_trials_overall_sprite .tile_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -753px -93px; + width: 186px; + height: 119px; +} + +.tasks_divine_trials_overall_sprite .tile_viable { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -378px -93px; + width: 189px; + height: 119px; +} + +.tasks_divine_trials_overall_sprite .timer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -540px -212px; + width: 178px; + height: 48px; +} + +.tasks_divine_trials_task_types.task_aphrodite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px 0; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_aphrodite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -292px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_aphrodite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -73px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_aphrodite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -73px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ares_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px 0; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ares_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -73px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ares_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -146px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ares_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -146px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_artemis_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -146px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_artemis_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px 0; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_artemis_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -73px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_artemis_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -146px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_athena_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -219px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_athena_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -219px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_athena_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -219px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_athena_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -219px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_build { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px 0; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_hades_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -73px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_hades_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -146px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_hades_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -219px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_hades_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -292px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_hera_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -292px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_hera_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -292px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_hera_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -292px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_hera_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -292px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -365px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -365px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -365px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_cyclops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -365px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_envoy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -365px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px 0; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -73px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -146px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_hydra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -219px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 0; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_manticor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -365px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -438px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -438px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -438px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -438px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -438px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_mu_zatyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -438px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_nu_bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px 0; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_nu_brander { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -73px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_nu_colony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -146px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_nu_fireship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -219px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_nu_transportbig { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -292px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_nu_transportsmall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -365px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_nu_trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -438px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_poseidon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -511px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_poseidon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -511px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_poseidon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -511px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_poseidon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -511px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_quests { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -511px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_research { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -511px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ru_archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -511px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ru_catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px 0; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ru_chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -73px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ru_hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -146px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ru_horseman { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -219px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ru_slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -292px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_ru_swordsman { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -365px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_silver { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -438px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_villages { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -511px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_zeus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -584px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_zeus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -584px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_zeus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -584px; + width: 91px; + height: 73px; +} + +.tasks_divine_trials_task_types.task_zeus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -584px; + width: 91px; + height: 73px; +} + +.tasks_event_end_interstitial.column_window .window_content, +.tasks_event_welcome_interstitial.column_window .window_content { + padding: 0; +} + +.tasks_event_end_interstitial.column_window::after, +.tasks_event_welcome_interstitial.column_window::after { + content: ''; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/single_images/interstitial_bg_overlay_3a66c7e.png) no-repeat 0 0; + width: 307px; + height: 426px; + top: 42px; + left: 25px; + z-index: 2; +} + +.tasks_event_end_interstitial.welcome_window_container.divine_trials, +.tasks_event_welcome_interstitial.welcome_window_container.divine_trials { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/single_images/interstitial_bg_354d65a.png) no-repeat 0 0; + width: 721px; + height: 379px; +} + +.divine_trials.overlay_tutorial { + position: relative; + top: 4px; + left: 7px; +} + +.divine_trials.overlay_tutorial .text { + position: absolute; + top: 262px; + left: 240px; + height: 106px; + width: 337px; + padding: 0 10px; +} + +.divine_trials.overlay_tutorial .button_wrapper { + position: absolute; + width: 357px; + left: 240px; + top: 370px; + text-align: center; +} + +.divine_trials.overlay_tutorial .btn_wnd.close { + position: absolute; + left: 540px; + top: 239px; +} + +.divine_trials.overlay_tutorial.step_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat 0 0; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -836px 0; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat 0 -461px; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -836px -461px; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat 0 -922px; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -836px -922px; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -836px -922px; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -1672px 0; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -1672px -461px; + width: 836px; + height: 461px; +} + +.divine_trials.overlay_tutorial.step_10 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -1672px -922px; + width: 836px; + height: 461px; +} + +.divine_trials#happening_large_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -125px -212px; + width: 125px; + height: 125px; +} + +.divine_trials#happening_large_icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -250px -212px; + width: 125px; + height: 125px; +} + +.divine_trials#happening_large_icon .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat 0 -212px; + width: 125px; + height: 125px; +} + +.divine_trials#happening_large_icon .amount { + font-size: 16px; +} + +.divine_trials .tasks_main { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/single_images/background_0f1a7e2.png) no-repeat 0 0; + width: 836px; + height: 461px; +} + +.divine_trials .grepo_color_text { + color: #fc6; + font-weight: 600; + text-shadow: 1px 1px 0 #000; +} + +.divine_trials .white_text { + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; +} + +.divine_trials .countdown_box { + position: absolute; + top: 20px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -540px -212px; + width: 178px; + height: 48px; +} + +.divine_trials .countdown_box .text_wrapper { + position: relative; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); + padding-left: 10px; +} + +.divine_trials .countdown_box * { + color: #fc6; + font-weight: 600; + text-shadow: 1px 1px 0 #000; +} + +.divine_trials .currency_box { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat 0 -337px; + width: 113px; + height: 77px; + position: absolute; + right: 60px; + text-align: center; + padding-top: 28px; +} + +.divine_trials .currency_box .caption { + color: #fc6; + font-weight: 600; + text-shadow: 1px 1px 0 #000; +} + +.divine_trials .currency_box .currency_indicator { + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; +} + +.divine_trials .currency_box .btn_info_overlay { + margin: auto; +} + +.divine_trials .task_wrapper { + display: inline-block; +} + +.divine_trials .task { + display: inline-block; + position: relative; + margin-bottom: 10px; + vertical-align: top; +} + +.divine_trials .task.inactive { + opacity: .7; +} + +.divine_trials .task .title { + color: #fc6; + width: 120px; + text-align: center; + font-weight: 600; + padding-top: 3px; + margin: auto; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.divine_trials .task.viable { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -378px -93px; + width: 189px; + height: 119px; +} + +.divine_trials .task.closed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -567px -93px; + width: 186px; + height: 119px; + left: 1px; + margin-right: 2px; +} + +.divine_trials .task.closed .btn_task_action, +.divine_trials .task.closed .points, +.divine_trials .task.closed .progress, +.divine_trials .task.closed .reward, +.divine_trials .task.closed .title { + display: none; +} + +.divine_trials .task.running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat 0 -93px; + width: 189px; + height: 119px; +} + +.divine_trials .task.running .btn_task_action .task_icon { + display: inline-block; + position: relative; + top: 4px; + margin-left: -4px; +} + +.divine_trials .task.satisfied { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -189px -93px; + width: 189px; + height: 119px; +} + +.divine_trials .task.satisfied .reward { + left: 30px; +} + +.divine_trials .task.satisfied .points { + font-size: 16px; + top: 55px; + right: 30px; +} + +.divine_trials .task.satisfied .points .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -939px -147px; + width: 32px; + height: 31px; +} + +.divine_trials .task.satisfied .progress { + display: none; +} + +.divine_trials .task .type_icon { + position: absolute; + top: 24px; + left: 21px; + display: none; +} + +.divine_trials .task .type_icon.task_aphrodite_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px 0; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_aphrodite_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -292px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_aphrodite_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -73px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_aphrodite_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -73px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ares_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px 0; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ares_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -73px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ares_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -146px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ares_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -146px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_artemis_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -146px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_artemis_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px 0; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_artemis_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -73px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_artemis_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -146px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_athena_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -219px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_athena_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -219px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_athena_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -219px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_athena_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -219px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_build { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px 0; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_hades_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -73px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_hades_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -146px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_hades_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -219px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_hades_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -292px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_hera_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -292px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_hera_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -292px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_hera_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -292px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_hera_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -292px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_boar { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -365px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_centaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -365px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_cerberus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -365px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_cyclops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -365px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_envoy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -365px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_fury { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px 0; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_griffin { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -73px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_harpy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -146px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_hydra { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -219px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_ladon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 0; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_manticor { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -365px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_medusa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -438px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_minotaur { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -438px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_pegasus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -438px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_siren { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -438px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_spartoi { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -438px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_mu_zatyr { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -438px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_nu_bireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px 0; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_nu_brander { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -73px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_nu_colony { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -146px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_nu_fireship { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -219px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_nu_transportbig { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -292px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_nu_transportsmall { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -365px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_nu_trireme { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -438px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_poseidon_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -511px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_poseidon_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -511px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_poseidon_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -511px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_poseidon_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -511px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_quests { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -364px -511px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_research { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -455px -511px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ru_archer { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -546px -511px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ru_catapult { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px 0; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ru_chariot { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -73px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ru_hoplite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -146px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ru_horseman { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -219px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ru_slinger { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -292px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_ru_swordsman { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -365px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_silver { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -438px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_villages { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -637px -511px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_zeus_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat 0 -584px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_zeus_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -91px -584px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_zeus_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -182px -584px; + width: 91px; + height: 73px; +} + +.divine_trials .task .type_icon.task_zeus_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_task_types_875b8dd.png) no-repeat -273px -584px; + width: 91px; + height: 73px; +} + +.divine_trials .task .banner { + position: absolute; + right: -6px; + top: 20px; + display: none; +} + +.divine_trials .task.running .banner, +.divine_trials .task.viable .banner { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -113px -337px; + width: 103px; + height: 63px; + display: block; +} + +.divine_trials .task.running .type_icon, +.divine_trials .task.viable .type_icon { + display: block; +} + +.divine_trials .task .points { + color: #fff; + font-weight: 600; + position: absolute; + top: 50px; + right: 2px; +} + +.divine_trials .task .points .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -939px -178px; + width: 25px; + height: 26px; + display: inline-block; +} + +.divine_trials .task .points * { + vertical-align: middle; +} + +.divine_trials .task .btn_task_action { + left: 32px; + bottom: 7px; + width: 125px; + position: absolute; +} + +.divine_trials .task .btn_task_action .caption { + padding: 0 5px; +} + +.divine_trials .task .btn_task_action[data-task=complete_island_quests_task] .task_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -519px -70px; + width: 18px; + height: 15px; +} + +.divine_trials .task .btn_task_action[data-task=complete_units_recruitment_task] .task_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -591px -70px; + width: 18px; + height: 15px; + vertical-align: top; +} + +.divine_trials .task .btn_task_action[data-task=cast_spells_task] .task_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -573px -70px; + width: 18px; + height: 15px; + vertical-align: top; +} + +.divine_trials .task .btn_task_action[data-task=finish_technologies_task] .task_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -537px -70px; + width: 18px; + height: 15px; +} + +.divine_trials .task .reward { + position: absolute; + left: 90px; + top: 25px; +} + +.divine_trials .task .progress { + color: #fff; + background: -webkit-linear-gradient(90deg,rgba(0,0,0,0) 0,rgba(0,0,0,.7) 20%,rgba(0,0,0,.7) 80%,rgba(0,0,0,0) 100%); + background: -moz-linear-gradient(90deg,rgba(0,0,0,0) 0,rgba(0,0,0,.7) 20%,rgba(0,0,0,.7) 80%,rgba(0,0,0,0) 100%); + background: -ms-linear-gradient(90deg,rgba(0,0,0,0) 0,rgba(0,0,0,.7) 20%,rgba(0,0,0,.7) 80%,rgba(0,0,0,0) 100%); + background: -o-linear-gradient(90deg,rgba(0,0,0,0) 0,rgba(0,0,0,.7) 20%,rgba(0,0,0,.7) 80%,rgba(0,0,0,0) 100%); + background: linear-gradient(90deg,rgba(0,0,0,0) 0,rgba(0,0,0,.7) 20%,rgba(0,0,0,.7) 80%,rgba(0,0,0,0) 100%); + display: inline-block; + padding: 0 10px; + position: absolute; + bottom: 30px; + left: 30px; + min-width: 50px; + text-align: center; +} + +.divine_trials #ongoing_tasks { + position: absolute; + top: 200px; + left: 260px; +} + +.divine_trials #ongoing_tasks_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -483px 0; + width: 529px; + height: 70px; + position: absolute; + left: 279px; + top: 110px; +} + +.divine_trials #daily_tasks { + position: absolute; + left: 30px; + top: 200px; + max-width: 189px; +} + +.divine_trials #daily_tasks_header { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -375px -212px; + width: 165px; + height: 70px; + position: absolute; + left: 42px; + top: 110px; +} + +.divine_trials #daily_tasks_header *, +.divine_trials #ongoing_tasks_header * { + text-align: center; +} + +.divine_trials #daily_tasks_header .headline, +.divine_trials #ongoing_tasks_header .headline { + position: relative; + color: #fc6; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + top: 2px; +} + +.divine_trials #daily_tasks_header .text, +.divine_trials #ongoing_tasks_header .text { + position: relative; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + top: 7px; +} + +.divine_trials .btn_replace_daily, +.divine_trials .btn_replace_ongoing { + display: inline-block; + left: 50%; + transform: translateX(-50%); + position: absolute; + bottom: -14px; +} + +.divine_trials .btn_replace_daily:not(.icon_type_gold) .icon, +.divine_trials .btn_replace_ongoing:not(.icon_type_gold) .icon { + display: none; +} + +.divine_trials .grand_prizes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat 0 0; + width: 483px; + height: 93px; + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); + top: -3px; + text-align: center; +} + +.divine_trials .grand_prizes .slot { + display: inline-block; + margin-top: 27px; + position: relative; + width: 60px; + vertical-align: top; +} + +.divine_trials .grand_prizes .slot .reward_icon { + opacity: .7; +} + +.divine_trials .grand_prizes .slot.collectable .reward_icon, +.divine_trials .grand_prizes .slot.disabled .reward_icon { + opacity: 1; +} + +.divine_trials .grand_prizes .slot.disabled .reward::after { + content: ''; + position: absolute; + top: 9px; + left: 16px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -971px -147px; + width: 35px; + height: 28px; +} + +.divine_trials .grand_prizes .slot .cost { + color: #fff; + text-shadow: 1px 1px 0 #000; + position: relative; + font-weight: 600; +} + +.divine_trials .grand_prizes .slot .cost .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -992px -93px; + width: 16px; + height: 16px; + vertical-align: top; + display: inline-block; +} + +.divine_trials .grand_prizes .slot .btn_wrapper { + display: none; +} + +.divine_trials .grand_prizes .slot.collectable::before { + content: ''; + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_overall_584fda5.png) no-repeat -939px -93px; + width: 53px; + height: 54px; + left: 3px; + bottom: 0; +} + +.divine_trials_tooltip { + padding: 5px; +} + +.divine_trials_tooltip .title { + font-weight: 600; +} + +.divine_trials_tooltip .group_daily, +.divine_trials_tooltip .group_ongoing, +.divine_trials_tooltip .no_active_group { + margin-top: 10px; +} + +.divine_trials_tooltip .group_daily .group_title, +.divine_trials_tooltip .group_ongoing .group_title, +.divine_trials_tooltip .no_active_group .group_title { + text-decoration: underline; +} + +.divine_trials_tooltip .inactive { + color: #e72200; +} + +.divine_trials_tooltip .active { + color: #0048e1; +} + +.divine_trials_tooltip .success { + color: green; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat 0 0; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -836px 0; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat 0 -461px; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -836px -461px; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat 0 -922px; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -836px -922px; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -1672px 0; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_8 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -1672px -461px; + width: 836px; + height: 461px; +} + +.tasks_divine_trials_tutorial_sprite .divine_trials_tutorial_9 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/tasks_event/divine_trials/divine_trials_tutorial_db700df.png) no-repeat -1672px -922px; + width: 836px; + height: 461px; +} + +.affront #report_affront_dialog { + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/even.png); + height: 508px; + margin: 10px; +} + +.affront .btn_cancel, +.affront .btn_report_affront { + display: inline-block; +} + +.affront .description { + overflow: auto; + padding: 3px 6px; + height: 188px; + border-top: 1px solid #d1bf91; + border-bottom: 1px solid #d1bf91; +} + +.affront .input, +.affront .player { + background-repeat: repeat; + background-image: url(https://gpfr.innogamescdn.com/images/game/border/odd.png); + padding: 3px 6px; +} + +.affront .input textarea { + width: 772px; + height: 202px; +} + +.activities_movements_sprite .arrow_left_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -240px; + width: 9px; + height: 16px; +} + +.activities_movements_sprite .arrow_right_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -9px -240px; + width: 9px; + height: 16px; +} + +.activities_movements_sprite .attack_support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 0; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_abort { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -60px 0; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -60px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_attack_portal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -60px -60px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_attack_sea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px 0; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_breakthrough { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px -60px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -120px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_colonization_failed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -60px -120px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_conquest { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px -120px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_espionage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -180px 0; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_farm_town_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -180px -60px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_foundation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -180px -120px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -180px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_pillage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -60px -180px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_revolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px -180px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_revolt_arising { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -180px -180px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_revolt_running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px 0; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px -60px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_support_portal { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px -120px; + width: 60px; + height: 60px; +} + +.activities_movements_sprite .movement_type_trade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px -180px; + width: 60px; + height: 60px; +} + +.activities_sprite .activities_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat 0 -84px; + width: 60px; + height: 65px; +} + +.activities_sprite .activities_button_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat -60px -84px; + width: 60px; + height: 65px; +} + +.activities_sprite .extend_button_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat 0 0; + width: 122px; + height: 42px; +} + +.activities_sprite .extend_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat 0 -42px; + width: 122px; + height: 42px; +} + +.activities_sprite .extend_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat -122px 0; + width: 122px; + height: 42px; +} + +#activities_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat 0 -84px; + width: 60px; + height: 65px; + margin: 0 12px 10px; + cursor: pointer; +} + +#activities_icon:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat -60px -84px; + width: 60px; + height: 65px; +} + +.activities_list { + padding: 10px; +} + +.activities_list .list_wrapper { + height: 448px; + overflow-x: hidden; + overflow-y: scroll; +} + +.activities_list .game_list_footer { + display: flex; + align-items: center; + justify-content: space-between; + height: 45px; +} + +.activities_list .game_list_footer>.extend_button { + color: #fc6; + font-weight: 600; + line-height: 42px; +} + +.activities_list .activities_trade, +.activities_list .movement, +.activities_list .no_result, +.activities_list .running_power, +.activities_list .temple_command { + position: relative; + padding: 5px 10px; +} + +.activities_list .activities_trade:nth-child(odd), +.activities_list .movement:nth-child(odd), +.activities_list .no_result:nth-child(odd), +.activities_list .running_power:nth-child(odd), +.activities_list .temple_command:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.activities_list .activities_trade:nth-child(even), +.activities_list .movement:nth-child(even), +.activities_list .no_result:nth-child(even), +.activities_list .running_power:nth-child(even), +.activities_list .temple_command:nth-child(even) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.activities_list .activities_trade.no_result, +.activities_list .movement.no_result, +.activities_list .no_result.no_result, +.activities_list .running_power.no_result, +.activities_list .temple_command.no_result { + text-align: center; +} + +.activities_list .power_info_wrapper { + display: flex; + justify-content: space-between; + vertical-align: middle; + align-items: center; +} + +.activities_list .power_info { + width: calc(100% - 70px); + margin: 0 5px; +} + +.activities_list .power_info.extendable { + width: calc(100% - 192px); +} + +.activities_list .power_info .name { + font-weight: 700; + color: #804000; + margin-bottom: 5px; +} + +.activities_list .power_info .countdown>* { + display: inline-block; + vertical-align: middle; +} + +.activities_list .power_info .countdown .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +.activities_list .power_effect { + margin-top: 5px; +} + +.activities_list .cancel_button, +.activities_list .extend_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat 0 -42px; + width: 122px; + height: 42px; + cursor: pointer; + display: inline-block; + vertical-align: middle; + text-align: center; +} + +.activities_list .cancel_button .icon, +.activities_list .extend_button .icon { + display: inline-block; + vertical-align: middle; +} + +.activities_list .cancel_button:hover, +.activities_list .extend_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat -122px 0; + width: 122px; + height: 42px; +} + +.activities_list .cancel_button:active, +.activities_list .extend_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_8815f11.png) no-repeat 0 0; + width: 122px; + height: 42px; +} + +.activities_list .cancel_button .caption, +.activities_list .extend_button .caption { + padding-top: 3px; + color: #fc6; + font-weight: 400; +} + +.activities_list .cancel_button .price, +.activities_list .extend_button .price { + font-weight: 700; + margin-top: -2px; + color: #fc6; +} + +.activities_list .movement_info_wrapper .icon.movement_type { + width: 60px; + height: 60px; + background-color: #ff0080; + display: inline-block; + vertical-align: middle; + cursor: pointer; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_spy, +.activities_list .movement_info_wrapper .icon.movement_type.revolt_arising, +.activities_list .movement_info_wrapper .icon.movement_type.revolt_running { + cursor: initial; +} + +.activities_list .movement_info_wrapper .icon.movement_type.abort { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -60px 0; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_breakthrough { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px -60px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_incoming { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -60px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack, +.activities_list .movement_info_wrapper .icon.movement_type.attack_land { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -60px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_pillage { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -60px -180px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_portal_attack_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -60px -60px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_portal_support_olympus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px -120px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_sea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px 0; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_spy { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -180px 0; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.attack_takeover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px -120px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.colonization { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -120px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.colonization_failed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -60px -120px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.conqueror { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px -120px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.farm_attack { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -180px -60px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.foundation { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -180px -120px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.illusion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -180px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.revolt { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px -180px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.revolt_arising { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -180px -180px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.revolt_running { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px 0; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.siege { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -120px -120px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px -60px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .icon.movement_type.trade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px -180px; + width: 60px; + height: 60px; +} + +.activities_list .movement_info_wrapper .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -240px; + width: 9px; + height: 16px; + vertical-align: middle; + display: none; +} + +.activities_list .movement_info_wrapper .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -9px -240px; + width: 9px; + height: 16px; + vertical-align: middle; + display: inline-block; +} + +.activities_list .movement_info_wrapper .returning .arrow_right { + display: none; +} + +.activities_list .movement_info_wrapper .returning .arrow_left { + display: inline-block; +} + +.activities_list .movement_info_wrapper .movement_details { + display: inline-block; + vertical-align: middle; + width: calc(100% - 192px); +} + +.activities_list .movement_info_wrapper .countdown>* { + display: inline-block; + vertical-align: middle; +} + +.activities_list .movement_info_wrapper .countdown .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +.activities_list .movement_info_wrapper .cancel_button .caption { + padding: 0; + position: relative; + top: 50%; + transform: translateY(-50%); +} + +.activities_list .temple_command_wrapper { + display: inline-block; +} + +.activities_list .temple_command_wrapper .temple_command_info { + display: inline-block; + vertical-align: middle; +} + +.activities_list .temple_command_wrapper .icon.movement_type { + width: 60px; + height: 60px; + background-color: #ff0080; + display: inline-block; + vertical-align: middle; + cursor: pointer; +} + +.activities_list .temple_command_wrapper .icon.movement_type.attack_support { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 0; + width: 60px; + height: 60px; +} + +.activities_list .temple_command_wrapper div.incoming_attacks, +.activities_list .temple_command_wrapper div.incoming_revolts_active, +.activities_list .temple_command_wrapper div.incoming_revolts_arising, +.activities_list .temple_command_wrapper div.incoming_support { + min-width: 50px; + font-weight: 600; + display: inline-block; +} + +.activities_list .temple_command_wrapper .attack_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -90px -671px; + width: 16px; + height: 16px; +} + +.activities_list .temple_command_wrapper .support_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -106px -671px; + width: 16px; + height: 16px; +} + +.activities_list .temple_command_wrapper .revolts_arising_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -122px -671px; + width: 13px; + height: 16px; +} + +.activities_list .temple_command_wrapper .revolts_active_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -135px -671px; + width: 13px; + height: 16px; +} + +.activities_list .temple_command_wrapper .temple_link_wrapper { + display: inline-block; + width: 100%; +} + +.activities_list .temple_command_wrapper .movement_counters { + display: inline-block; + margin-top: 9px; +} + +.activities_list .temple_command_wrapper .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -240px; + width: 9px; + height: 16px; + vertical-align: middle; + display: inline-block; +} + +.activities_list .trade_info_wrapper .icon_wrapper { + margin-top: 4px; + position: relative; + float: left; +} + +.activities_list .trade_info_wrapper .resource_count { + text-align: left; + min-width: 50px; +} + +.activities_list .trade_info_wrapper .icon { + width: 60px; + height: 60px; + background-color: #ff0080; + display: inline-block; + vertical-align: middle; + cursor: pointer; +} + +.activities_list .trade_info_wrapper .icon.trade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -240px -180px; + width: 60px; + height: 60px; +} + +.activities_list .trade_info_wrapper .arrow_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat 0 -240px; + width: 9px; + height: 16px; + vertical-align: middle; + display: none; +} + +.activities_list .trade_info_wrapper .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -9px -240px; + width: 9px; + height: 16px; + vertical-align: middle; + display: inline-block; +} + +.activities_list .trade_info_wrapper .returning .arrow_right { + display: none; +} + +.activities_list .trade_info_wrapper .returning .arrow_left { + display: inline-block; +} + +.activities_list .trade_info_wrapper .trade_details { + display: inline-block; + vertical-align: middle; + width: calc(100% - 192px); +} + +.activities_list .trade_info_wrapper .countdown>* { + display: inline-block; + vertical-align: middle; +} + +.activities_list .trade_info_wrapper .countdown .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +.activities_list .trade_info_wrapper .cancel_button .caption { + padding: 0; + position: relative; + top: 50%; + transform: translateY(-50%); +} + +.tab .incoming_attacks { + color: #e72200; +} + +.mobile_ui_queue_sprite .cancel_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -116px -99px; + width: 42px; + height: 42px; +} + +.mobile_ui_queue_sprite .cancel_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -116px -141px; + width: 42px; + height: 42px; +} + +.mobile_ui_queue_sprite .cancel_button_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -183px; + width: 42px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_active_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -158px -99px; + width: 4px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_active_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -192px -126px; + width: 115px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_active_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -162px -99px; + width: 3px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_default_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -165px -99px; + width: 3px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_default_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -99px; + width: 116px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_default_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -168px -99px; + width: 3px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_green_default_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -141px; + width: 116px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_green_hover_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -192px 0; + width: 116px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_green_pressed_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -192px -42px; + width: 116px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_hover_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -171px -99px; + width: 3px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_hover_middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -192px -84px; + width: 116px; + height: 42px; +} + +.mobile_ui_queue_sprite .enlarged_button_hover_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -174px -99px; + width: 3px; + height: 42px; +} + +.mobile_ui_queue_sprite .title_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 0; + width: 192px; + height: 33px; +} + +.mobile_ui_queue_sprite .title_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -33px; + width: 192px; + height: 33px; +} + +.mobile_ui_queue_sprite .title_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -66px; + width: 192px; + height: 33px; +} + +.recruiting_list { + height: 493px; + width: 832px; +} + +.recruiting_list .header { + font-weight: 700; + color: #804000; + margin: 5px 0; +} + +.recruiting_list .header .barracks_button, +.recruiting_list .header .harbor_button { + display: inline-block; + position: relative; + text-align: center; + cursor: pointer; +} + +.recruiting_list .header .barracks_button .caption, +.recruiting_list .header .harbor_button .caption { + line-height: 31px; +} + +.recruiting_list .header .barracks_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 0; + width: 192px; + height: 33px; + left: 110px; +} + +.recruiting_list .header .barracks_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -33px; + width: 192px; + height: 33px; +} + +.recruiting_list .header .harbor_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 0; + width: 192px; + height: 33px; + left: 310px; +} + +.recruiting_list .header .harbor_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -33px; + width: 192px; + height: 33px; +} + +.recruiting_list .game_border.wrapper { + width: 94%; + left: 15px; +} + +.recruiting_list .unit_order_wrapper { + text-align: center; + overflow-y: scroll; + overflow-x: hidden; + height: 420px; +} + +.recruiting_list .unit_order_wrapper .game_border_left.divider { + top: 0; + bottom: 0; + left: -4px; +} + +.recruiting_list .section_left { + display: inline-block; + width: 50%; + vertical-align: top; +} + +.recruiting_list .section_left .complete_button { + left: 25px; +} + +.recruiting_list .section_right { + display: inline-block; + width: 49%; + position: relative; + vertical-align: top; +} + +.recruiting_list .section_right .complete_button { + left: 18px; +} + +.recruiting_list .order_info_wrapper { + padding: 11px; + border-bottom: 1px solid #d0be97; +} + +.recruiting_list .order_info_wrapper .construction_queue_sprite.frame { + display: inline-block; + vertical-align: top; +} + +.recruiting_list .order_info_wrapper .construction_queue_sprite.frame .unit_count { + position: absolute; + bottom: 1px; + right: 1px; + font-size: 12px; + line-height: 14px; + height: 14px; +} + +.recruiting_list .order_info_wrapper .countdown>* { + display: inline-block; + vertical-align: middle; +} + +.recruiting_list .order_info_wrapper .countdown .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +.recruiting_list .unit_order { + text-align: left; + height: 67px; +} + +.recruiting_list .unit_order:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.recruiting_list .unit_order:nth-child(even) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.recruiting_list .unit_order .unit-data { + margin: 0 5px; + display: inline-block; + width: 140px; +} + +.recruiting_list .unit_order .unit_info { + font-weight: 700; + color: #804000; + margin-bottom: 4px; +} + +.recruiting_list .unit_order .item_icon { + top: 3px; + left: 3px; +} + +.recruiting_list .unit_order .single-progressbar { + height: 25px; + width: 120px; +} + +.recruiting_list .btn_cancel_order { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -116px -99px; + width: 42px; + height: 42px; + float: right; + top: 2px; + position: relative; +} + +.recruiting_list .btn_cancel_order:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -116px -141px; + width: 42px; + height: 42px; + float: right; + top: 2px; + position: relative; +} + +.recruiting_list .complete_button { + text-align: center; + vertical-align: top; + top: 2px; + height: 42px; +} + +.recruiting_list .complete_button .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -165px -99px; + width: 3px; + height: 42px; + width: 4px; +} + +.recruiting_list .complete_button .left:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -171px -99px; + width: 3px; + height: 42px; + width: 4px; +} + +.recruiting_list .complete_button .caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -99px; + width: 116px; + width: 45px; + height: 42px; +} + +.recruiting_list .complete_button .caption:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -192px -84px; + width: 116px; + height: 42px; + width: 45px; +} + +.recruiting_list .complete_button .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -168px -99px; + width: 3px; + height: 42px; + width: 4px; +} + +.recruiting_list .complete_button .right:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -174px -99px; + width: 3px; + height: 42px; + width: 4px; +} + +.recruiting_list .complete_button .icon { + display: inline-block; + vertical-align: middle; + top: 0; +} + +.recruiting_list .complete_button .caption { + color: #fc6; + font-weight: 700; + line-height: 42px; +} + +.recruiting_list .hidden { + display: none; +} + +.construction_list { + height: 493px; + width: 832px; +} + +.construction_list .header { + font-weight: 700; + color: #804000; + margin: 5px 0; + text-align: center; + width: 820px; +} + +.construction_list .header .senate_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 0; + width: 192px; + height: 33px; + display: inline-block; + cursor: pointer; +} + +.construction_list .header .senate_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -33px; + width: 192px; + height: 33px; +} + +.construction_list .header .senate_button .caption { + line-height: 31px; +} + +.construction_list .building_level { + position: absolute; + bottom: 0; + left: 0; + right: 0; + color: #9ab140; + text-align: right; + background-color: rgba(0,0,0,.4); + height: 11px; + padding: 0 2px; + font-size: 9px; + font-weight: 700; +} + +.construction_list .building_level span { + display: inline-block; +} + +.construction_list .game_border.wrapper { + width: 94%; + left: 15px; +} + +.construction_list .construction_order_wrapper { + text-align: center; + height: 420px; +} + +.construction_list .construction_order_wrapper .game_border_left.divider { + left: 390px; + height: 68px; +} + +.construction_list .construction_order_wrapper .advisor_container { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; + top: 320px; + right: 242px; + width: 244px; + border-bottom: none; +} + +.construction_list .order_info_wrapper { + padding: 11px; +} + +.construction_list .order_info_wrapper .construction_queue_sprite.frame { + display: inline-block; + vertical-align: top; +} + +.construction_list .order_info_wrapper .countdown>* { + display: inline-block; + vertical-align: middle; +} + +.construction_list .order_info_wrapper .countdown .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/resources/resources_size30_e5ca7d1.png) no-repeat -30px -30px; + width: 30px; + height: 30px; +} + +.construction_list .order_info_wrapper .empty_slot { + background-position: -308px -92px; + width: 40px; + height: 40px; + margin: 2px; +} + +.construction_list .building_order { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + border-bottom: 2px solid #d0be97; + text-align: left; + height: 67px; + width: 390px; + float: left; +} + +.construction_list .building_order:nth-child(4n+3), +.construction_list .building_order:nth-child(4n+4) { + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +.construction_list .building_order .order_data { + margin: 0 5px; + display: inline-block; + width: 170px; +} + +.construction_list .building_order .building_info { + font-weight: 700; + color: #804000; + margin-bottom: 4px; +} + +.construction_list .building_order .item_icon { + top: 3px; + left: 3px; +} + +.construction_list .building_order .single-progressbar { + height: 25px; + width: 120px; +} + +.construction_list .btn_cancel_order { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -116px -99px; + width: 42px; + height: 42px; + float: right; + top: 2px; + position: relative; +} + +.construction_list .btn_cancel_order:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -116px -141px; + width: 42px; + height: 42px; + float: right; + top: 2px; + position: relative; +} + +.construction_list .complete_button { + text-align: center; + vertical-align: top; + top: 2px; + height: 42px; +} + +.construction_list .complete_button .left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -165px -99px; + width: 3px; + height: 42px; + width: 4px; +} + +.construction_list .complete_button .left:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -171px -99px; + width: 3px; + height: 42px; + width: 4px; +} + +.construction_list .complete_button .caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -99px; + width: 116px; + width: 45px; + height: 42px; +} + +.construction_list .complete_button .caption:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -192px -84px; + width: 116px; + height: 42px; + width: 45px; +} + +.construction_list .complete_button .right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -168px -99px; + width: 3px; + height: 42px; + width: 4px; +} + +.construction_list .complete_button .right:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -174px -99px; + width: 3px; + height: 42px; + width: 4px; +} + +.construction_list .complete_button .icon { + display: inline-block; + vertical-align: middle; + top: 0; +} + +.construction_list .complete_button .caption { + color: #fc6; + font-weight: 700; + line-height: 42px; +} + +.construction_list .complete_button.disabled { + display: none; +} + +.construction_list .complete_button.type_free .caption { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat 0 -141px; + width: 116px; + width: 45px; + height: 42px; +} + +.construction_list .complete_button.type_free .caption:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_ui_queue/mobile_ui_queue_5639259.png) no-repeat -192px 0; + width: 116px; + height: 42px; + width: 45px; +} + +.construction_list .hidden { + display: none; +} + +.mobile_tutorial_sprite .tutorial_drag { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat 0 0; + width: 203px; + height: 187px; +} + +.mobile_tutorial_sprite .tutorial_push { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat -203px 0; + width: 203px; + height: 187px; +} + +.mobile_tutorial_sprite .tutorial_tooltips { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat 0 -187px; + width: 203px; + height: 187px; +} + +.mobile_tutorial_sprite .tutorial_unlock { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat -203px -187px; + width: 203px; + height: 187px; +} + +.mobile_tutorial_sprite .tutorial_zoom { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat -406px 0; + width: 203px; + height: 187px; +} + +.mobile_tutorial .illustration { + margin: 15px 30px; + display: inline-block; +} + +.mobile_tutorial .illustration.part1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat -203px -187px; + width: 203px; + height: 187px; +} + +.mobile_tutorial .illustration.part2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat -203px 0; + width: 203px; + height: 187px; +} + +.mobile_tutorial .illustration.part3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat 0 -187px; + width: 203px; + height: 187px; +} + +.mobile_tutorial .illustration.part4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat 0 0; + width: 203px; + height: 187px; +} + +.mobile_tutorial .illustration.part5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_tutorial/mobile_tutorial_051ca8b.png) no-repeat -406px 0; + width: 203px; + height: 187px; +} + +.mobile_tutorial .page { + display: none; +} + +.mobile_tutorial .button_box { + margin: 40px 20px 10px; +} + +.mobile_tutorial .button_box .btn_dont_show_tutorial { + margin-left: 5px; +} + +.mobile_tutorial .button_box .show_tutorial_btn_wrapper { + margin-top: 40px; + text-align: left; +} + +.mobile_tutorial .button_box .navigation_btn_wrapper { + text-align: right; +} + +.mobile_tutorial .description { + display: inline-block; + width: 300px; + vertical-align: top; + margin-top: 5px; +} + +.message_report_game_header .game_header, +.message_report_game_header.game_header { + padding: 2px 64px; + text-align: center; +} + +.message_report_game_header .subject { + text-align: center; + width: 100%; + display: inline-block; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.message_report_game_header .next_button, +.message_report_game_header .previous_button { + display: inline-block; + position: absolute; + border: none; +} + +.message_report_game_header .previous_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -19px; + width: 52px; + height: 19px; + left: 6px; +} + +.message_report_game_header .previous_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px 0; + width: 52px; + height: 19px; +} + +.message_report_game_header .previous_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 0; + width: 52px; + height: 19px; +} + +.message_report_game_header .previous_button:disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -19px; + width: 52px; + height: 19px; +} + +.message_report_game_header .next_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -38px; + width: 52px; + height: 19px; + right: 6px; +} + +.message_report_game_header .next_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -57px; + width: 52px; + height: 19px; +} + +.message_report_game_header .next_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -38px; + width: 52px; + height: 19px; +} + +.message_report_game_header .next_button:disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -57px; + width: 52px; + height: 19px; +} + +.enlarged_ui_small_size_base_sprite .battlepoints_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -167px -415px; + width: 74px; + height: 36px; +} + +.enlarged_ui_small_size_base_sprite .city_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -167px -347px; + width: 227px; + height: 68px; +} + +.enlarged_ui_small_size_base_sprite .conquest_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -308px -456px; + width: 49px; + height: 46px; +} + +.enlarged_ui_small_size_base_sprite .conquest_indicator_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -275px -415px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_base_sprite .conquest_indicator_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -241px -415px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_base_sprite .conquest_indicator_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -259px -456px; + width: 49px; + height: 46px; +} + +.enlarged_ui_small_size_base_sprite .conquest_indicator_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -673px -347px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_base_sprite .gods_golden_ring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -196px -456px; + width: 63px; + height: 59px; +} + +.enlarged_ui_small_size_base_sprite .hero_level_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -366px -316px; + width: 43px; + height: 31px; +} + +.enlarged_ui_small_size_base_sprite .heroes_no_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 -456px; + width: 137px; + height: 109px; +} + +.enlarged_ui_small_size_base_sprite .heroes_units_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 -347px; + width: 167px; + height: 109px; +} + +.enlarged_ui_small_size_base_sprite .island_view_jump_to_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -525px -347px; + width: 65px; + height: 58px; +} + +.enlarged_ui_small_size_base_sprite .main_menu_dropout_end { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -394px -347px; + width: 67px; + height: 66px; +} + +.enlarged_ui_small_size_base_sprite .main_menu_dropout_root { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -128px -565px; + width: 52px; + height: 66px; +} + +.enlarged_ui_small_size_base_sprite .main_menu_dropout_segment { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -461px -347px; + width: 64px; + height: 66px; +} + +.enlarged_ui_small_size_base_sprite .main_menu_extra_button_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -137px -456px; + width: 59px; + height: 67px; +} + +.enlarged_ui_small_size_base_sprite .main_menu_main_button_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 -565px; + width: 128px; + height: 116px; +} + +.enlarged_ui_small_size_base_sprite .navigation_city_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -366px -158px; + width: 347px; + height: 158px; +} + +.enlarged_ui_small_size_base_sprite .navigation_island_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -366px 0; + width: 347px; + height: 158px; +} + +.enlarged_ui_small_size_base_sprite .navigation_minimized_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 -189px; + width: 347px; + height: 158px; +} + +.enlarged_ui_small_size_base_sprite .resources_gods_base_spells { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 0; + width: 366px; + height: 189px; +} + +.enlarged_ui_small_size_base_sprite .units_bar_tile { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -590px -347px; + width: 83px; + height: 45px; +} + +.enlarged_ui_small_size_base_sprite .units_goldframe_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -347px -189px; + width: 6px; + height: 79px; +} + +.enlarged_ui_small_size_base_sprite .units_goldframe_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -353px -189px; + width: 6px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_construction_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -237px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_construction_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_construction_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -237px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_overview_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -237px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_overview_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -200px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_overview_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -250px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_recruitment_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -337px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_recruitment_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -337px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .activities_button_recruitment_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -337px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .army_collapse_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -82px -537px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .army_collapse_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -41px -537px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .army_collapse_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -537px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .army_extend_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -469px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .army_extend_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -141px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .army_extend_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -387px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .button_build_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -510px -487px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .button_build_active_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -456px -537px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .button_build_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -540px -487px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .button_build_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -480px -487px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_center_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px 0; + width: 133px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_center_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -68px; + width: 133px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_center_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -34px; + width: 133px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_left_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -320px -102px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_left_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -320px -136px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_left_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -400px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_left_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -320px -170px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_right_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -450px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_right_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -314px -487px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_right_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -348px -487px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .city_container_button_right_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -382px -487px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .close_all_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -246px -537px; + width: 40px; + height: 40px; +} + +.enlarged_ui_small_size_buttons_sprite .close_all_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -286px -537px; + width: 40px; + height: 40px; +} + +.enlarged_ui_small_size_buttons_sprite .close_all_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -326px -537px; + width: 40px; + height: 40px; +} + +.enlarged_ui_small_size_buttons_sprite .gold_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -170px; + width: 83px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .gold_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -136px; + width: 83px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .gold_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -102px; + width: 83px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_city_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -158px; + width: 79px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_city_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -158px -158px; + width: 78px; + height: 78px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_city_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -79px -158px; + width: 79px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_island_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -158px -79px; + width: 79px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_island_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -158px 0; + width: 79px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_island_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -79px -79px; + width: 79px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_menu_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -79px; + width: 79px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_menu_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -79px 0; + width: 79px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .main_button_menu_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 0; + width: 79px; + height: 79px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_advisors_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -100px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_advisors_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -150px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_advisors_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -200px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_alliance_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -250px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_alliance_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -300px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_alliance_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_allianceforum_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_allianceforum_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_allianceforum_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_allianceforum_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_attackplanner_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_attackplanner_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_attackplanner_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -350px -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_domination_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -400px -387px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_domination_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px 0; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_domination_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -50px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_farmingvillages_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -100px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_farmingvillages_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -150px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_farmingvillages_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -200px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_forum_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -250px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_forum_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -300px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_forum_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -350px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_greposcore_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_greposcore_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_greposcore_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -237px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_inventory_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_inventory_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_inventory_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_logout_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_logout_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -350px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_logout_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -400px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_messages_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -450px -437px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_messages_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px 0; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_messages_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -50px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_messages_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -100px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_notes_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -150px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_notes_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -200px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_notes_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -250px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_olympus_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -300px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_olympus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -350px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_olympus_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -400px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_overviews_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -487px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_overviews_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -487px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_overviews_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -487px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_profile_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -150px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_profile_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -100px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_profile_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -50px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_rank_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px 0; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_rank_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -287px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_rank_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -287px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_reports_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -287px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_reports_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -287px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_reports_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -287px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_settings_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -287px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_settings_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -287px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_settings_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -237px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_support_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -237px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_support_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -237px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_support_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -50px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_wiki_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px 0; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_wiki_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -350px -337px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_wiki_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -337px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_ww_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -337px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_ww_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -337px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_button_ww_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -337px; + width: 50px; + height: 50px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_switch_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -123px -537px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_switch_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -164px -537px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .main_menu_switch_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -205px -537px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .minimized_windows_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -94px; + width: 47px; + height: 47px; +} + +.enlarged_ui_small_size_buttons_sprite .minimized_windows_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -47px; + width: 47px; + height: 47px; +} + +.enlarged_ui_small_size_buttons_sprite .minimized_windows_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px 0; + width: 47px; + height: 47px; +} + +.enlarged_ui_small_size_buttons_sprite .minus_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -580px -510px; + width: 10px; + height: 10px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_go_to_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -280px -487px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_go_to_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -301px -204px; + width: 33px; + height: 33px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_go_to_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -300px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_island_view_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -264px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_island_view_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -223px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_island_view_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -182px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_jump_to_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -366px -537px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_jump_to_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -396px -537px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_jump_to_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -426px -537px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_map_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -428px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_map_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -346px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_map_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -305px; + width: 41px; + height: 41px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_ocean_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -487px; + width: 65px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_ocean_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -204px; + width: 64px; + height: 33px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_ocean_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -215px -487px; + width: 65px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_save_location_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -350px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_save_location_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -334px -204px; + width: 33px; + height: 33px; +} + +.enlarged_ui_small_size_buttons_sprite .navi_button_save_location_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -416px -487px; + width: 34px; + height: 34px; +} + +.enlarged_ui_small_size_buttons_sprite .plus_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -510px; + width: 10px; + height: 10px; +} + +.enlarged_ui_small_size_buttons_sprite .spells_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -486px -537px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .spells_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -450px -487px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_buttons_sprite .spells_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -516px -537px; + width: 30px; + height: 30px; +} + +.enlarged_ui_small_size_gods_sprite .favor_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -186px -84px; + width: 45px; + height: 29px; +} + +.enlarged_ui_small_size_gods_sprite .fury_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -186px -55px; + width: 45px; + height: 29px; +} + +.enlarged_ui_small_size_gods_sprite .gods_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat 0 -68px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -55px -68px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -131px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -131px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_golden_ring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -68px 0; + width: 63px; + height: 59px; +} + +.enlarged_ui_small_size_gods_sprite .gods_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat 0 -123px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -55px -123px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -110px -123px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -186px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .no_god { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat 0 0; + width: 68px; + height: 68px; +} + +.enlarged_ui_small_size_gods_sprite .gods_aphrodite_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat 0 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_ares_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -55px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_artemis_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat 0 -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_athena_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -55px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_hades_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -110px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_hera_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -110px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_poseidon_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat 0 -110px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_zeus_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -55px -110px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_aphrodite_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat 0 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_ares_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -55px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_artemis_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat 0 -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_athena_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -55px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_hades_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -110px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_hera_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -110px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_poseidon_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat 0 -110px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_gods_sprite .gods_zeus_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -55px -110px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -57px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -112px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -61px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -61px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -61px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -167px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -167px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -116px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.artemisia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -116px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -116px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -116px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -222px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -222px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -222px -110px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -171px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -171px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -171px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -171px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -171px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px -110px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.hero_assigned_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -336px; + width: 25px; + height: 25px; +} + +.enlarged_ui_small_size_heroes_sprite.hero_attacking_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -245px -336px; + width: 25px; + height: 25px; +} + +.enlarged_ui_small_size_heroes_sprite.hero_injured_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -270px -336px; + width: 25px; + height: 25px; +} + +.enlarged_ui_small_size_heroes_sprite.hero_overlay_black { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px -165px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.hero_overlay_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -226px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.hero_overlay_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -226px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.hyppolita { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -226px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -226px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -226px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -275px -226px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.melampous { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px -110px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px -165px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.no_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 0; + width: 57px; + height: 61px; +} + +.enlarged_ui_small_size_heroes_sprite.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px -220px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -281px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -281px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -281px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -281px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -281px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.polydeukes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -275px -281px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -330px -281px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.sokrates { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px 0; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -55px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -110px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -165px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -220px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -275px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -336px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -336px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -336px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_heroes_sprite.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -336px; + width: 55px; + height: 55px; +} + +.enlarged_ui_small_size_single_images .resources_fill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/resources_fill_a9625c9.png) no-repeat 0 0; + width: 1px; + height: 2px; +} + +.enlarged_ui_small_size_single_images .top_frame_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/top_frame_bg_6107663.png) no-repeat 0 0; + width: 958px; + height: 29px; +} + +.enlarged_ui_small_size_single_images .units_bg_land { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/units_bg_land_b3344fb.png) no-repeat 0 0; + width: 33px; + height: 66px; +} + +.enlarged_ui_small_size_single_images .units_bg_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/units_bg_naval_7ab77c0.png) no-repeat 0 0; + width: 33px; + height: 66px; +} + +.enlarged_ui_small_size_single_images .units_goldframe_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/units_goldframe_center_780d4d3.png) no-repeat 0 0; + width: 1px; + height: 79px; +} + +.enlarged_ui_medium_size_base_sprite .battlepoints_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -233px -582px; + width: 104px; + height: 51px; +} + +.enlarged_ui_medium_size_base_sprite .city_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -233px -486px; + width: 318px; + height: 96px; +} + +.enlarged_ui_medium_size_base_sprite .conquest_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -438px -700px; + width: 68px; + height: 64px; +} + +.enlarged_ui_medium_size_base_sprite .conquest_indicator_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -362px; + width: 47px; + height: 48px; +} + +.enlarged_ui_medium_size_base_sprite .conquest_indicator_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -314px; + width: 47px; + height: 48px; +} + +.enlarged_ui_medium_size_base_sprite .conquest_indicator_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -370px -700px; + width: 68px; + height: 64px; +} + +.enlarged_ui_medium_size_base_sprite .conquest_indicator_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -266px; + width: 47px; + height: 48px; +} + +.enlarged_ui_medium_size_base_sprite .gods_golden_ring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -906px -486px; + width: 85px; + height: 82px; +} + +.enlarged_ui_medium_size_base_sprite .hero_level_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -222px; + width: 61px; + height: 44px; +} + +.enlarged_ui_medium_size_base_sprite .heroes_no_units { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -180px -638px; + width: 190px; + height: 152px; +} + +.enlarged_ui_medium_size_base_sprite .heroes_units_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 -486px; + width: 233px; + height: 152px; +} + +.enlarged_ui_medium_size_base_sprite .island_view_jump_to_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -814px -486px; + width: 92px; + height: 82px; +} + +.enlarged_ui_medium_size_base_sprite .main_menu_dropout_end { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -724px -486px; + width: 90px; + height: 85px; +} + +.enlarged_ui_medium_size_base_sprite .main_menu_dropout_root { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 -800px; + width: 74px; + height: 94px; +} + +.enlarged_ui_medium_size_base_sprite .main_menu_dropout_segment { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -634px -486px; + width: 90px; + height: 85px; +} + +.enlarged_ui_medium_size_base_sprite .main_menu_extra_button_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -551px -486px; + width: 83px; + height: 95px; +} + +.enlarged_ui_medium_size_base_sprite .main_menu_main_button_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 -638px; + width: 180px; + height: 162px; +} + +.enlarged_ui_medium_size_base_sprite .navigation_city_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 -264px; + width: 485px; + height: 222px; +} + +.enlarged_ui_medium_size_base_sprite .navigation_island_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -512px 0; + width: 484px; + height: 222px; +} + +.enlarged_ui_medium_size_base_sprite .navigation_minimized_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -512px -222px; + width: 419px; + height: 222px; +} + +.enlarged_ui_medium_size_base_sprite .resources_gods_base_spells { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 0; + width: 512px; + height: 264px; +} + +.enlarged_ui_medium_size_base_sprite .units_bar_tile { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -370px -638px; + width: 117px; + height: 62px; +} + +.enlarged_ui_medium_size_base_sprite .units_goldframe_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -485px -264px; + width: 9px; + height: 111px; +} + +.enlarged_ui_medium_size_base_sprite .units_goldframe_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -494px -264px; + width: 9px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_construction_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -429px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_construction_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -693px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_construction_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -500px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_overview_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -571px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_overview_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -693px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_overview_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -693px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_recruitment_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -216px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_recruitment_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -287px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .activities_button_recruitment_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -358px; + width: 72px; + height: 71px; +} + +.enlarged_ui_medium_size_buttons_sprite .army_collapse_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -236px -764px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .army_collapse_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -177px -764px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .army_collapse_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -118px -764px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .army_extend_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -59px -764px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .army_extend_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -764px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .army_extend_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -664px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .button_build_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -432px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .button_build_active_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -419px -288px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .button_build_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -504px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .button_build_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -462px -288px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_center_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px 0; + width: 189px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_center_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -96px; + width: 189px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_center_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -48px; + width: 189px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_left_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -451px -240px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_left_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -489px -693px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_left_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -537px -693px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_left_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -642px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_right_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -633px -693px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_right_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -681px -693px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_right_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -729px -693px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .city_container_button_right_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -523px -764px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .close_all_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -467px -764px; + width: 56px; + height: 56px; +} + +.enlarged_ui_medium_size_buttons_sprite .close_all_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -411px -764px; + width: 56px; + height: 56px; +} + +.enlarged_ui_medium_size_buttons_sprite .close_all_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -354px -764px; + width: 57px; + height: 57px; +} + +.enlarged_ui_medium_size_buttons_sprite .gold_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -240px; + width: 118px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .gold_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -192px; + width: 118px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .gold_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -144px; + width: 118px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_city_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -111px -222px; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_city_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 0; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_city_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -222px -222px; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_island_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -222px; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_island_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -222px -111px; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_island_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -222px 0; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_menu_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -111px -111px; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_menu_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -111px; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_button_menu_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -111px 0; + width: 111px; + height: 111px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_advisors_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -477px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_advisors_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -477px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_advisors_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -477px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_alliance_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -333px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_alliance_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -477px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_alliance_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -504px -477px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_allianceforum_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px 0; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_allianceforum_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -72px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_allianceforum_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -144px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_allianceforum_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -216px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_attackplanner_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -288px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_attackplanner_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -360px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_attackplanner_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -432px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_domination_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_domination_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_domination_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_farmingvillages_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_farmingvillages_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_farmingvillages_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_forum_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_forum_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -504px -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_forum_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -576px -549px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_greposcore_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px 0; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_greposcore_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -72px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_greposcore_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -216px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_inventory_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -144px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_inventory_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -216px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_inventory_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -288px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_logout_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -360px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_logout_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -432px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_logout_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -504px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_messages_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_messages_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_messages_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_messages_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_notes_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_notes_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_notes_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_olympus_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -504px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_olympus_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -576px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_olympus_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -648px -621px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_overviews_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px 0; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_overviews_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -72px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_overviews_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -144px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_profile_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -405px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_profile_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -405px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_profile_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -405px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_rank_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -333px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_rank_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -333px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_rank_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -333px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_reports_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -333px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_reports_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -333px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_reports_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -333px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_settings_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -477px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_settings_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -477px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_settings_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -144px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_support_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -72px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_support_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px 0; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_support_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -405px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_wiki_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -405px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_wiki_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -405px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_wiki_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -405px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_ww_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -360px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_ww_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -288px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_button_ww_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -477px; + width: 72px; + height: 72px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_switch_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -295px -764px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_switch_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -192px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .main_menu_switch_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -546px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .minimized_windows_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -64px; + width: 64px; + height: 64px; +} + +.enlarged_ui_medium_size_buttons_sprite .minimized_windows_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -128px; + width: 64px; + height: 64px; +} + +.enlarged_ui_medium_size_buttons_sprite .minimized_windows_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px 0; + width: 64px; + height: 64px; +} + +.enlarged_ui_medium_size_buttons_sprite .minus_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -723px; + width: 15px; + height: 15px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_go_to_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -571px -764px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_go_to_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -451px -144px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_go_to_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -451px -192px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_island_view_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -369px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_island_view_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -310px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_island_view_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -605px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_jump_to_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -288px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_jump_to_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -376px -288px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_jump_to_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -576px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_map_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -251px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_map_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -428px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_map_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -487px; + width: 59px; + height: 59px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_ocean_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -307px -693px; + width: 91px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_ocean_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -693px; + width: 91px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_ocean_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -398px -693px; + width: 91px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_save_location_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -619px -764px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_save_location_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -667px -764px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .navi_button_save_location_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -585px -693px; + width: 48px; + height: 48px; +} + +.enlarged_ui_medium_size_buttons_sprite .plus_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -825px -723px; + width: 14px; + height: 14px; +} + +.enlarged_ui_medium_size_buttons_sprite .spells_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -758px -764px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .spells_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -715px -764px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_buttons_sprite .spells_button_tap { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -801px -764px; + width: 43px; + height: 43px; +} + +.enlarged_ui_medium_size_heroes_sprite.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -81px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -158px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -86px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -86px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -86px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -235px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -235px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -163px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.artemisia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -163px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -163px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -163px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -312px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -312px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -312px -154px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -240px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -240px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -240px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -240px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -240px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px -154px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.hero_assigned_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -471px; + width: 25px; + height: 25px; +} + +.enlarged_ui_medium_size_heroes_sprite.hero_attacking_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -333px -471px; + width: 25px; + height: 25px; +} + +.enlarged_ui_medium_size_heroes_sprite.hero_injured_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -358px -471px; + width: 25px; + height: 25px; +} + +.enlarged_ui_medium_size_heroes_sprite.hero_overlay_black { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px -231px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.hero_overlay_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -317px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.hero_overlay_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -317px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.hyppolita { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -317px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -317px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -317px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -385px -317px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.melampous { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px -154px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px -231px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.no_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 0; + width: 81px; + height: 86px; +} + +.enlarged_ui_medium_size_heroes_sprite.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px -308px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -394px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -394px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -394px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -394px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -394px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.polydeukes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -385px -394px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -462px -394px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.sokrates { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -154px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -231px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -308px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -385px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -471px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -471px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -471px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_heroes_sprite.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -471px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .favor_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -244px -119px; + width: 63px; + height: 42px; +} + +.enlarged_ui_medium_size_gods_sprite .fury_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -244px -77px; + width: 64px; + height: 42px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat 0 -89px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -77px -89px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -167px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -167px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_golden_ring { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -82px 0; + width: 85px; + height: 82px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat 0 -166px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -77px -166px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -154px -166px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -244px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .no_god { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat 0 0; + width: 82px; + height: 89px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_aphrodite_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat 0 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_ares_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -77px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_artemis_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat 0 -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_athena_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -77px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_hades_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -154px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_hera_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -154px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_poseidon_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat 0 -154px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_zeus_xmas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -77px -154px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_aphrodite_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat 0 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_ares_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -77px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_artemis_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat 0 -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_athena_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -77px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_hades_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -154px 0; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_hera_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -154px -77px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_poseidon_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat 0 -154px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_gods_sprite .gods_zeus_halloween { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -77px -154px; + width: 77px; + height: 77px; +} + +.enlarged_ui_medium_size_single_images .resources_fill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/resources_fill_d366ff1.png) no-repeat 0 0; + width: 2px; + height: 6px; +} + +.enlarged_ui_medium_size_single_images .top_frame_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/top_frame_bg_8c947dc.png) no-repeat 0 0; + width: 1339px; + height: 42px; +} + +.enlarged_ui_medium_size_single_images .units_bg_land { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/units_bg_land_a45dcc3.png) no-repeat 0 0; + width: 46px; + height: 92px; +} + +.enlarged_ui_medium_size_single_images .units_bg_naval { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/units_bg_naval_e9baad4.png) no-repeat 0 0; + width: 46px; + height: 92px; +} + +.enlarged_ui_medium_size_single_images .units_goldframe_center { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/units_goldframe_center_8c662b6.png) no-repeat 0 0; + width: 1px; + height: 111px; +} + +#ui_box.mobile::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/top_frame_bg_8c947dc.png) no-repeat 0 0; + width: 1339px; + height: 42px; + background-repeat: repeat-x; + width: auto; +} + +#ui_box.mobile.city-overview-enabled .navigation_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 -264px; + width: 485px; + height: 222px; +} + +#ui_box.mobile .navigation_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -512px 0; + width: 484px; + height: 222px; +} + +#ui_box.mobile .navigation_area .layout_mode_button.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -111px -222px; + width: 111px; + height: 111px; + top: 12px; + left: 30px; +} + +@media (hover:hover) { + #ui_box.mobile .navigation_area .layout_mode_button.active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 0; + width: 111px; + height: 111px; + } +} + +#ui_box.mobile .navigation_area .layout_mode_button.active:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -222px -222px; + width: 111px; + height: 111px; +} + +#ui_box.mobile .navigation_area .layout_mode_button:not(.active) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -222px; + width: 111px; + height: 111px; + top: 12px; + left: 30px; +} + +@media (hover:hover) { + #ui_box.mobile .navigation_area .layout_mode_button:not(.active):hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -222px -111px; + width: 111px; + height: 111px; + } +} + +#ui_box.mobile .navigation_area .layout_mode_button:not(.active):active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -222px 0; + width: 111px; + height: 111px; +} + +#ui_box.mobile .navigation_area .layout_mode_button_small { + top: 146px; + left: 56px; +} + +#ui_box.mobile .navigation_area .layout_mode_button_small[data-id=strategic_map] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -251px; + width: 59px; + height: 59px; +} + +@media (hover:hover) { + #ui_box.mobile .navigation_area .layout_mode_button_small[data-id=strategic_map]:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -428px; + width: 59px; + height: 59px; + } +} + +#ui_box.mobile .navigation_area .layout_mode_button_small[data-id=strategic_map]:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -487px; + width: 59px; + height: 59px; +} + +#ui_box.mobile .navigation_area .layout_mode_button_small[data-id=island_view] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -369px; + width: 59px; + height: 59px; +} + +@media (hover:hover) { + #ui_box.mobile .navigation_area .layout_mode_button_small[data-id=island_view]:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -310px; + width: 59px; + height: 59px; + } +} + +#ui_box.mobile .navigation_area .layout_mode_button_small[data-id=island_view]:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -605px; + width: 59px; + height: 59px; +} + +#ui_box.mobile .navigation_area .navigation_area_middle { + left: 165px; + top: 0; + width: 200px; + height: 60px; +} + +#ui_box.mobile .navigation_area .button_save_location { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -619px -764px; + width: 48px; + height: 48px; + top: 6px; + left: 7px; +} + +@media (hover:hover) { + #ui_box.mobile .navigation_area .button_save_location:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -667px -764px; + width: 48px; + height: 48px; + } +} + +#ui_box.mobile .navigation_area .button_save_location:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -585px -693px; + width: 48px; + height: 48px; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile, +#ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_coordinates { + top: 6px; + left: 55px; + width: 91px; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile { + height: 48px; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile:hover~.ocean_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -693px; + width: 91px; + height: 48px; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile:active~.ocean_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -398px -693px; + width: 91px; + height: 48px; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -307px -693px; + width: 91px; + height: 48px; + top: 6px; + left: 55px; +} + +@media (hover:hover) { + #ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_background:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -693px; + width: 91px; + height: 48px; + } +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_background:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -398px -693px; + width: 91px; + height: 48px; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_coordinates { + font-size: 13px; + padding-top: 6px; +} + +#ui_box.mobile .navigation_area .button_jump_to_coordinates { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -571px -764px; + width: 48px; + height: 48px; + top: 6px; + left: 146px; +} + +@media (hover:hover) { + #ui_box.mobile .navigation_area .button_jump_to_coordinates:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -451px -144px; + width: 48px; + height: 48px; + } +} + +#ui_box.mobile .navigation_area .button_jump_to_coordinates:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -451px -192px; + width: 48px; + height: 48px; +} + +#ui_box.mobile.minimized .navigation_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -512px -222px; + width: 419px; + height: 222px; +} + +#ui_box.mobile .island_view_nav_buttons { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -814px -486px; + width: 92px; + height: 82px; + top: 113px; + left: 101px; +} + +#ui_box.mobile .island_view_nav_buttons .button_jump_to_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -288px; + width: 43px; + height: 43px; + top: 18px; + left: 39px; +} + +@media (hover:hover) { + #ui_box.mobile .island_view_nav_buttons .button_jump_to_town:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -376px -288px; + width: 43px; + height: 43px; + } +} + +#ui_box.mobile .island_view_nav_buttons .button_jump_to_town:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -576px; + width: 43px; + height: 43px; +} + +#ui_box.mobile .resources_population_gods_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 0; + width: 512px; + height: 264px; + top: 0; + right: 0; +} + +#ui_box.mobile .town_name_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -233px -486px; + width: 318px; + height: 96px; + top: 0; + left: 50%; +} + +#ui_box.mobile .town_name_area .arrow_btn { + top: 7px; +} + +#ui_box.mobile .town_name_area .btn_next_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -633px -693px; + width: 48px; + height: 48px; + right: 17px; +} + +@media (hover:hover) { + #ui_box.mobile .town_name_area .btn_next_town:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -681px -693px; + width: 48px; + height: 48px; + } +} + +#ui_box.mobile .town_name_area .btn_next_town:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -523px -764px; + width: 48px; + height: 48px; +} + +#ui_box.mobile .town_name_area .btn_next_town.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -729px -693px; + width: 48px; + height: 48px; +} + +#ui_box.mobile .town_name_area .btn_prev_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -451px -240px; + width: 48px; + height: 48px; + left: 16px; +} + +@media (hover:hover) { + #ui_box.mobile .town_name_area .btn_prev_town:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -489px -693px; + width: 48px; + height: 48px; + } +} + +#ui_box.mobile .town_name_area .btn_prev_town:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -642px; + width: 48px; + height: 48px; +} + +#ui_box.mobile .town_name_area .btn_prev_town.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -537px -693px; + width: 48px; + height: 48px; +} + +#ui_box.mobile .town_name_area .active_town_name { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px 0; + width: 189px; + height: 48px; + top: 7px; + left: 63px; +} + +@media (hover:hover) { + #ui_box.mobile .town_name_area .active_town_name:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -96px; + width: 189px; + height: 48px; + } +} + +#ui_box.mobile .town_name_area .active_town_name:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -48px; + width: 189px; + height: 48px; +} + +#ui_box.mobile .town_name_area .active_town_name .town_name { + top: 2px; + width: 182px; + font-size: 14px; + line-height: 21px; +} + +#ui_box.mobile .town_name_area .active_town_name .town_name.smaller { + font-size: 10px; + line-height: 24px; +} + +#ui_box.mobile .town_name_area .active_town_name .town_name.smallest { + font-size: 7px; + line-height: 24px; +} + +#ui_box.mobile .town_name_area .casted_powers_area { + top: 25px; + left: 3px; + right: 0; + height: 14px; + width: 182px; +} + +#ui_box.mobile .town_name_area .casted_powers_area .rest_amount { + padding-left: 5px; +} + +#ui_box.mobile .activities_wrapper { + top: 4px; +} + +#ui_box.mobile .activities_wrapper .recruitment_queue_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -216px; + width: 72px; + height: 71px; + left: 179px; +} + +@media (hover:hover) { + #ui_box.mobile .activities_wrapper .recruitment_queue_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -287px; + width: 72px; + height: 71px; + } +} + +#ui_box.mobile .activities_wrapper .recruitment_queue_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -358px; + width: 72px; + height: 71px; +} + +#ui_box.mobile .activities_wrapper .construction_queue_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -429px; + width: 72px; + height: 71px; + left: 283px; +} + +@media (hover:hover) { + #ui_box.mobile .activities_wrapper .construction_queue_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -693px; + width: 72px; + height: 71px; + } +} + +#ui_box.mobile .activities_wrapper .construction_queue_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -500px; + width: 72px; + height: 71px; +} + +#ui_box.mobile .activities_wrapper .activities_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -571px; + width: 72px; + height: 71px; + left: 387px; +} + +@media (hover:hover) { + #ui_box.mobile .activities_wrapper .activities_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -693px; + width: 72px; + height: 71px; + } +} + +#ui_box.mobile .activities_wrapper .activities_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -693px; + width: 72px; + height: 71px; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -370px -700px; + width: 68px; + height: 64px; + top: 0; + left: 480px; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content { + left: 10px; + top: 6px; +} + +@media (hover:hover) { + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content .icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -314px; + width: 47px; + height: 48px; + } +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content .icon:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -266px; + width: 47px; + height: 48px; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .countdown { + top: 63px; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator.active .inner_content .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -362px; + width: 47px; + height: 48px; +} + +@media (hover:hover) { + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator.active .inner_content .icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -314px; + width: 47px; + height: 48px; + } +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator.active .inner_content .icon:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -266px; + width: 47px; + height: 48px; +} + +#ui_box.mobile .main_menu_extra_button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -551px -486px; + width: 83px; + height: 95px; + bottom: 114px; + left: 50px; +} + +#ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -504px; + width: 43px; + height: 43px; + top: 6px; + left: 20px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -462px -288px; + width: 43px; + height: 43px; + } +} + +#ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -432px; + width: 43px; + height: 43px; +} + +#ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -432px; + width: 43px; + height: 43px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button.active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -419px -288px; + width: 43px; + height: 43px; + } +} + +#ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button.active:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -504px; + width: 43px; + height: 43px; +} + +#ui_box.mobile .main_menu_wrapper { + bottom: 0; + left: 0; +} + +#ui_box.mobile .main_menu_wrapper .main_menu { + top: 35px; + left: 160px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 -800px; + width: 74px; + height: 94px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .main_menu_nav_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -295px -764px; + width: 59px; + height: 59px; + top: 18px; + left: 4px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .main_menu_nav_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -192px; + width: 59px; + height: 59px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .main_menu_nav_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -546px; + width: 59px; + height: 59px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .active_page_indicator.page_1 { + top: 10px; + left: 14px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .active_page_indicator.page_2 { + top: 7px; + left: 31px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .active_page_indicator.page_3 { + top: 10px; + left: 48px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items { + top: 9px; + left: 74px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -634px -486px; + width: 90px; + height: 85px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item:last-child { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -724px -486px; + width: 90px; + height: 85px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item .main_menu_item_btn { + top: 2px; + left: 8px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_button_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 -638px; + width: 180px; + height: 162px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_button_base .main_menu_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -111px -111px; + width: 111px; + height: 111px; + top: 30px; + left: 35px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_button_base .main_menu_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -111px; + width: 111px; + height: 111px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_button_base .main_menu_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -111px 0; + width: 111px; + height: 111px; +} + +#ui_box.mobile #icons_container_left { + bottom: 200px; + top: initial; + left: 50px; +} + +#ui_box.mobile #icons_container_left #daily_login_icon { + top: -80px; +} + +#ui_box.mobile .server_time_area { + right: 120px; +} + +#ui_box.mobile .heroes_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat 0 -486px; + width: 233px; + height: 152px; +} + +#ui_box.mobile .heroes_area .hero_portrait { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 0; + width: 81px; + height: 86px; + top: 37px; + left: 97px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero { + left: 99px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -81px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -158px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -86px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -86px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -86px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -235px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -235px -77px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -163px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.artemisia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -163px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -163px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -163px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -312px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -312px -77px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -312px -154px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -240px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -240px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -240px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -240px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -240px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px -77px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px -154px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hero_assigned_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -471px; + width: 25px; + height: 25px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hero_attacking_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -333px -471px; + width: 25px; + height: 25px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hero_injured_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -358px -471px; + width: 25px; + height: 25px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hero_overlay_black { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px -231px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hero_overlay_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -317px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hero_overlay_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -317px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.hyppolita { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -317px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -317px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -317px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -385px -317px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.melampous { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px -77px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px -154px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px -231px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.no_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 0; + width: 81px; + height: 86px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -466px -308px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -394px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -394px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -394px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -394px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -394px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.polydeukes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -385px -394px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -462px -394px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.sokrates { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -77px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -154px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -231px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -308px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -543px -385px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -471px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -471px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -154px -471px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -231px -471px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=injured] .overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -77px -317px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=injured] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -358px -471px; + width: 25px; + height: 25px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=assigned] .overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat 0 -317px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=assigned] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -308px -471px; + width: 25px; + height: 25px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=attacking] .overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -389px -231px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=attacking] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/heroes/enlarged_ui_heroes_5894aba.png) no-repeat -333px -471px; + width: 25px; + height: 25px; + top: 13px; +} + +#ui_box.mobile .heroes_area .overlay { + top: 0; + left: 0; + padding-top: 10px; +} + +#ui_box.mobile .heroes_area .overlay .countdown { + font-size: 13px; +} + +#ui_box.mobile .heroes_area .hero_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -931px -222px; + width: 61px; + height: 44px; + right: 20px; + top: 20px; + line-height: 28px; + text-indent: -5px; + font-size: 13px; +} + +#ui_box.mobile .battlepoints_area { + bottom: 5px; + left: 76px; + line-height: 25px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -233px -582px; + width: 104px; + height: 51px; +} + +#ui_box.mobile .battlepoints_area .points { + font-size: 13px; + padding-right: 10px; + padding-left: 24px; +} + +#ui_box.mobile .happening_large_icon_container { + right: 48px; + bottom: 165px; +} + +#ui_box.mobile .units_area .units_area_toggle_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -59px -764px; + width: 59px; + height: 59px; + bottom: 47px; + right: 157px; +} + +@media (hover:hover) { + #ui_box.mobile .units_area .units_area_toggle_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -764px; + width: 59px; + height: 59px; + } +} + +#ui_box.mobile .units_area .units_area_toggle_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -664px; + width: 59px; + height: 59px; +} + +#ui_box.mobile .units_area .units_area_toggle_button.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -236px -764px; + width: 59px; + height: 59px; +} + +@media (hover:hover) { + #ui_box.mobile .units_area .units_area_toggle_button.active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -177px -764px; + width: 59px; + height: 59px; + } +} + +#ui_box.mobile .units_area .units_area_toggle_button.active:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -118px -764px; + width: 59px; + height: 59px; +} + +#ui_box.mobile .units_area .units_wrapper { + bottom: 14px; + right: 226px; +} + +#ui_box.mobile .units_area .units_box { + margin-right: -8px; +} + +#ui_box.mobile .units_area .units_box .bar_tile { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -370px -638px; + width: 117px; + height: 62px; + top: 24px; + width: 12px; + right: -2px; +} + +#ui_box.mobile .units_area .units_box .border_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -485px -264px; + width: 9px; + height: 111px; + left: 0; +} + +#ui_box.mobile .units_area .units_box .border_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/base/enlarged_ui_base_bc22754.png) no-repeat -494px -264px; + width: 9px; + height: 111px; + right: 0; +} + +#ui_box.mobile .units_area .units_box .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/units_goldframe_center_8c662b6.png) no-repeat 0 0; + width: 1px; + height: 111px; + margin: 0 8px; +} + +#ui_box.mobile .units_area .units_box .content { + top: 4px; + min-width: 46px; +} + +#ui_box.mobile .units_area .units_box.ground .content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/units_bg_land_a45dcc3.png) no-repeat 0 0; + width: 46px; + height: 92px; +} + +#ui_box.mobile .units_area .units_box.naval .content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/units_bg_naval_e9baad4.png) no-repeat 0 0; + width: 46px; + height: 92px; +} + +#ui_box.mobile .units_area .units_box .icon { + margin-right: 6px; +} + +#ui_box.mobile .units_area .units_box .units_row_bottom, +#ui_box.mobile .units_area .units_box .units_row_top { + position: relative; + left: 3px; +} + +#ui_box.mobile .units_area .units_box .units_row_top { + top: 3px; +} + +#ui_box.mobile .units_area .units_box .units_row_bottom { + top: 10px; +} + +#ui_box.mobile .units_area .units_box .amount { + right: 0; + bottom: 0; + font-weight: 600; +} + +#ui_box.mobile .minimized_windows_list_wrapper { + bottom: 208px; + left: 162px; +} + +#ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -64px; + width: 64px; + height: 64px; +} + +@media (hover:hover) { + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -128px; + width: 64px; + height: 64px; + } +} + +#ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px 0; + width: 64px; + height: 64px; +} + +#ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list_button .caption { + line-height: 40px; + font-size: 16px; +} + +@media (hover:hover) { + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list .minimized_window:hover { + -moz-box-shadow: inset 0 0 3px 3px #fff; + -webkit-box-shadow: inset 0 0 3px 3px #fff; + box-shadow: inset 0 0 3px 3px #fff; + } +} + +#ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list .minimized_window .btn_close_window { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -104px 0 no-repeat; + width: 52px; + height: 23px; +} + +@media (hover:hover) { + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list .minimized_window .btn_close_window:hover { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -104px -23px no-repeat; + } +} + +#ui_box.mobile .close_all_windows_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -467px -764px; + width: 56px; + height: 56px; + top: 79px; + right: 170px; +} + +@media (hover:hover) { + #ui_box.mobile .close_all_windows_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -411px -764px; + width: 56px; + height: 56px; + } +} + +#ui_box.mobile .close_all_windows_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -354px -764px; + width: 57px; + height: 57px; +} + +#ui_box.mobile .ui_quickbar { + top: 90px; + left: 225px; + right: 225px; +} + +#ui_box.mobile .resources_population_gods_area .gods_area { + top: 70px; + right: 35px; + height: 125px; + width: 125px; +} + +#ui_box.mobile .resources_population_gods_area .gods_area.show_fury .fury_amount { + right: 0; + left: -53px; + top: 8px; +} + +#ui_box.mobile .resources_population_gods_area .gods_area.show_fury .gods_favor_button_area { + left: initial; +} + +#ui_box.mobile .resources_population_gods_area .gods_area .favor_amount { + right: 0; + left: 13px; + top: 8px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat 0 0; + width: 82px; + height: 89px; + top: 17px; + right: 21px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -82px 0; + width: 85px; + height: 82px; + top: 0; + left: 1px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god { + right: 23px; + top: 19px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god::before { + left: -2px; + top: -2px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat 0 -89px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -77px -89px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -167px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -167px -77px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat 0 -166px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -77px -166px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -154px -166px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .resources_population_gods_area .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -244px 0; + width: 77px; + height: 77px; +} + +#ui_box.mobile .resources_population_gods_area .gods_progress { + right: 103px; + top: 15px; +} + +#ui_box.mobile .resources_population_gods_area .gods_progress .fury_progress { + left: -2px; + top: -2px; +} + +#ui_box.mobile .resources_population_gods_area .gods_favor_button_area { + left: initial; + right: 72px; + top: -12px; +} + +#ui_box.mobile .resources_population_gods_area .gods_favor_amount { + line-height: 30px; + font-size: 12px; +} + +#ui_box.mobile .resources_population_gods_area .gods_favor_amount .favor_amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -244px -119px; + width: 63px; + height: 42px; +} + +#ui_box.mobile .resources_population_gods_area .gods_favor_amount .fury_amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/default/enlarged_ui_gods_7a6fc3d.png) no-repeat -244px -77px; + width: 64px; + height: 42px; +} + +#ui_box.mobile .resources_population_gods_area .btn_gods_spells { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -758px -764px; + width: 43px; + height: 43px; + top: 136px; + right: 40px; +} + +@media (hover:hover) { + #ui_box.mobile .resources_population_gods_area .btn_gods_spells:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -715px -764px; + width: 43px; + height: 43px; + } +} + +#ui_box.mobile .resources_population_gods_area .btn_gods_spells:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -801px -764px; + width: 43px; + height: 43px; +} + +body.gods-christmas #ui_box.mobile .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat 0 0; + width: 77px; + height: 77px; +} + +body.gods-christmas #ui_box.mobile .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -77px 0; + width: 77px; + height: 77px; +} + +body.gods-christmas #ui_box.mobile .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat 0 -77px; + width: 77px; + height: 77px; +} + +body.gods-christmas #ui_box.mobile .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -77px -77px; + width: 77px; + height: 77px; +} + +body.gods-christmas #ui_box.mobile .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -154px 0; + width: 77px; + height: 77px; +} + +body.gods-christmas #ui_box.mobile .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -154px -77px; + width: 77px; + height: 77px; +} + +body.gods-christmas #ui_box.mobile .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat 0 -154px; + width: 77px; + height: 77px; +} + +body.gods-christmas #ui_box.mobile .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/christmas/enlarged_ui_gods_35c5bfa.png) no-repeat -77px -154px; + width: 77px; + height: 77px; +} + +body.gods-halloween #ui_box.mobile .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat 0 0; + width: 77px; + height: 77px; +} + +body.gods-halloween #ui_box.mobile .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -77px 0; + width: 77px; + height: 77px; +} + +body.gods-halloween #ui_box.mobile .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat 0 -77px; + width: 77px; + height: 77px; +} + +body.gods-halloween #ui_box.mobile .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -77px -77px; + width: 77px; + height: 77px; +} + +body.gods-halloween #ui_box.mobile .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -154px 0; + width: 77px; + height: 77px; +} + +body.gods-halloween #ui_box.mobile .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -154px -77px; + width: 77px; + height: 77px; +} + +body.gods-halloween #ui_box.mobile .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat 0 -154px; + width: 77px; + height: 77px; +} + +body.gods-halloween #ui_box.mobile .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/gods/halloween/enlarged_ui_gods_4950711.png) no-repeat -77px -154px; + width: 77px; + height: 77px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -621px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -621px; + width: 72px; + height: 72px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn:hover.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -621px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -621px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -621px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.reports .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -333px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.reports .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -333px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.reports .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -333px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px 0; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -72px; + width: 72px; + height: 72px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn:hover.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -144px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -216px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -144px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.inventory .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -144px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.inventory .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -216px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.inventory .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -288px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.notes .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -621px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.notes .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -621px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.notes .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -621px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.logout .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -360px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.logout .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -432px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.logout .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -504px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.premium .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -477px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.premium .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -477px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.premium .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -477px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.farming_villages .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -549px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.farming_villages .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -549px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.farming_villages .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -549px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.attack_planner .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -288px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.attack_planner .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -360px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.attack_planner .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -594px -432px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.alliance .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -333px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.alliance .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -477px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.alliance .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -504px -477px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.ranking .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -333px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.ranking .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -333px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.ranking .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -333px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.profile .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -405px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.profile .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -405px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.profile .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -405px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.settings .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -477px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.settings .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -477px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.settings .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -144px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.overviews .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px 0; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.overviews .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -72px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.overviews .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -738px -144px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.greposcore .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px 0; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.greposcore .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -666px -72px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.greposcore .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -216px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.support .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -72px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.support .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px 0; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.support .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -405px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.forum .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -432px -549px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.forum .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -504px -549px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.forum .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -576px -549px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.wiki .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -405px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.wiki .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -288px -405px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.wiki .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -216px -405px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.olympus .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -504px -621px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.olympus .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -576px -621px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.olympus .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -648px -621px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.domination .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat 0 -549px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.domination .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -72px -549px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.domination .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -144px -549px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.world_wonders .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -360px; + width: 72px; + height: 72px; +} + +@media (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.world_wonders .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -522px -288px; + width: 72px; + height: 72px; + } +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.world_wonders .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -360px -477px; + width: 72px; + height: 72px; +} + +#ui_box.mobile .premium_area.premium_mobile { + height: 48px; + width: 118px; + right: 38px; + top: 7px; +} + +#ui_box.mobile .premium_area.premium_mobile .btn_open_premium_buy_gold_mobile { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -240px; + width: 118px; + height: 48px; + top: 0; + left: 0; +} + +@media (hover:hover) { + #ui_box.mobile .premium_area.premium_mobile .btn_open_premium_buy_gold_mobile:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -192px; + width: 118px; + height: 48px; + } +} + +#ui_box.mobile .premium_area.premium_mobile .btn_open_premium_buy_gold_mobile:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -333px -144px; + width: 118px; + height: 48px; +} + +#ui_box.mobile .premium_area.premium_mobile .btn_open_premium_buy_gold_mobile .js-caption { + height: 48px; + font-size: 14px; +} + +#ui_box.mobile .resources_population_gods_area .resources { + height: 45px; + width: 320px; + left: 35px; + top: 10px; +} + +#ui_box.mobile .resources_population_gods_area .indicator.iron, +#ui_box.mobile .resources_population_gods_area .indicator.population, +#ui_box.mobile .resources_population_gods_area .indicator.stone, +#ui_box.mobile .resources_population_gods_area .indicator.wood { + width: 75px; + height: 25px; + margin-top: 5px; +} + +#ui_box.mobile .resources_population_gods_area .indicator.wood { + left: 6px; +} + +#ui_box.mobile .resources_population_gods_area .indicator.stone { + left: 85px; +} + +#ui_box.mobile .resources_population_gods_area .indicator.iron { + left: 163px; +} + +#ui_box.mobile .resources_population_gods_area .indicator.population { + left: 242px; +} + +#ui_box.mobile .resources_population_gods_area .indicator .progress { + margin-top: 6px; +} + +#ui_box.mobile .resources_population_gods_area .indicator .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/single_images/resources_fill_d366ff1.png) no-repeat 0 0; + width: 2px; + height: 6px; + max-width: 87px; + background-repeat: repeat-x; +} + +#ui_box.mobile .resources_population_gods_area .indicator .res_plenty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -825px -723px; + width: 14px; + height: 14px; + top: -2px; + left: 15px; +} + +#ui_box.mobile .resources_population_gods_area .indicator .res_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/medium_size/buttons/enlarged_ui_buttons_ecc7f30.png) no-repeat -810px -723px; + width: 15px; + height: 15px; + top: -2px; + left: 15px; +} + +#ui_box.mobile .resources_population_gods_area .amount { + font-size: 14px; + margin-top: 3px; +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/top_frame_bg_6107663.png) no-repeat 0 0; + width: 958px; + height: 29px; + background-repeat: repeat-x; + width: auto; + } + + #ui_box.mobile.city-overview-enabled .navigation_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -366px -158px; + width: 347px; + height: 158px; + } + + #ui_box.mobile .navigation_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -366px 0; + width: 347px; + height: 158px; + } + + #ui_box.mobile .navigation_area .layout_mode_button.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -158px; + width: 79px; + height: 79px; + top: 8px; + left: 22px; + } + + #ui_box.mobile .navigation_area .layout_mode_button:not(.active) { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -158px -79px; + width: 79px; + height: 79px; + top: 8px; + left: 22px; + } + + #ui_box.mobile .navigation_area .layout_mode_button_small { + top: 104px; + left: 40px; + } + + #ui_box.mobile .navigation_area .layout_mode_button_small[data-id=strategic_map] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -428px; + width: 41px; + height: 41px; + } + + #ui_box.mobile .navigation_area .layout_mode_button_small[data-id=island_view] { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -264px; + width: 41px; + height: 41px; + } + + #ui_box.mobile .navigation_area .navigation_area_middle { + left: 120px; + top: 0; + width: 140px; + height: 40px; + } + + #ui_box.mobile .navigation_area .button_save_location { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -350px; + width: 34px; + height: 34px; + position: absolute; + top: 5px; + left: 4px; + } + + #ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile, + #ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_coordinates { + top: 5px; + left: 38px; + width: 65px; + } + + #ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile { + height: 34px; + } + + #ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -487px; + width: 65px; + height: 34px; + top: 5px; + left: 38px; + } + + #ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_coordinates { + font-size: 11px; + padding-top: 2px; + } + + #ui_box.mobile .navigation_area .button_jump_to_coordinates { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -280px -487px; + width: 34px; + height: 34px; + top: 5px; + left: 103px; + } + + #ui_box.mobile.minimized .navigation_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 -189px; + width: 347px; + height: 158px; + } + + #ui_box.mobile .island_view_nav_buttons { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -525px -347px; + width: 65px; + height: 58px; + top: 82px; + left: 73px; + } + + #ui_box.mobile .island_view_nav_buttons .button_jump_to_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -366px -537px; + width: 30px; + height: 30px; + top: 12px; + left: 28px; + } + + #ui_box.mobile .resources_population_gods_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 0; + width: 366px; + height: 189px; + top: 0; + right: 0; + } + + #ui_box.mobile .town_name_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -167px -347px; + width: 227px; + height: 68px; + top: 0; + left: 50%; + } + + #ui_box.mobile .town_name_area .arrow_btn { + top: 5px; + } + + #ui_box.mobile .town_name_area .btn_next_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -450px; + width: 34px; + height: 34px; + right: 11px; + } + + #ui_box.mobile .town_name_area .btn_next_town.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -348px -487px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .town_name_area .btn_prev_town { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -320px -102px; + width: 34px; + height: 34px; + left: 11px; + } + + #ui_box.mobile .town_name_area .btn_prev_town.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -400px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .town_name_area .active_town_name { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px 0; + width: 133px; + height: 34px; + top: 5px; + left: 47px; + } + + #ui_box.mobile .town_name_area .active_town_name .town_name { + top: 2px; + width: 130px; + font-size: 12px; + line-height: 21px; + } + + #ui_box.mobile .town_name_area .active_town_name .town_name.smaller { + font-size: 10px; + line-height: 24px; + } + + #ui_box.mobile .town_name_area .active_town_name .town_name.smallest { + font-size: 7px; + line-height: 24px; + } + + #ui_box.mobile .town_name_area .casted_powers_area { + top: 16px; + left: 3px; + right: 0; + height: 14px; + width: 130px; + } + + #ui_box.mobile .town_name_area .casted_powers_area .rest_amount { + padding-left: 5px; + } + + #ui_box.mobile .activities_wrapper { + top: 3px; + } + + #ui_box.mobile .activities_wrapper .recruitment_queue_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -337px; + width: 50px; + height: 50px; + left: 129px; + } + + #ui_box.mobile .activities_wrapper .construction_queue_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -237px; + width: 50px; + height: 50px; + left: 203px; + } + + #ui_box.mobile .activities_wrapper .activities_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -237px; + width: 50px; + height: 50px; + left: 278px; + } + + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -259px -456px; + width: 49px; + height: 46px; + top: 0; + left: 345px; + } + + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content { + left: 7px; + top: 5px; + } + + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content .icon:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -673px -347px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator .countdown { + top: 45px; + font-size: 11px; + } + + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator.active .inner_content .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -275px -415px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .main_menu_extra_button_wrapper { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -137px -456px; + width: 59px; + height: 67px; + bottom: 82px; + left: 36px; + } + + #ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -540px -487px; + width: 30px; + height: 30px; + top: 4px; + left: 15px; + } + + #ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -510px -487px; + width: 30px; + height: 30px; + } + + #ui_box.mobile .main_menu_wrapper { + bottom: 0; + left: 0; + } + + #ui_box.mobile .main_menu_wrapper .main_menu { + top: 30px; + left: 115px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -128px -565px; + width: 52px; + height: 66px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .main_menu_nav_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -123px -537px; + width: 41px; + height: 41px; + top: 13px; + left: 3px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .active_page_indicator.page_1 { + top: 6px; + left: 9px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .active_page_indicator.page_2 { + top: 4px; + left: 21px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .active_page_indicator.page_3 { + top: 6px; + left: 33px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items { + top: 0; + left: 52px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -461px -347px; + width: 64px; + height: 66px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item:last-child { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -394px -347px; + width: 67px; + height: 66px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item .main_menu_item_btn { + top: 8px; + left: 7px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_button_base { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 -565px; + width: 128px; + height: 116px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_button_base .main_menu_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -79px; + width: 79px; + height: 79px; + top: 21px; + left: 25px; + } + + #ui_box.mobile #icons_container_left { + bottom: 150px; + top: initial; + left: 25px; + } + + #ui_box.mobile #icons_container_left #daily_login_icon { + top: -80px; + } + + #ui_box.mobile .server_time_area { + right: 70px; + } + + #ui_box.mobile .heroes_area { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat 0 -347px; + width: 167px; + height: 109px; + } + + #ui_box.mobile .heroes_area .hero_portrait { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 0; + width: 57px; + height: 61px; + top: 26px; + left: 69px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero { + left: 70px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.achilles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -57px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.agamemnon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -112px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.ajax { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -61px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.alexandrios { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -61px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.andromeda { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -61px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.anysia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -167px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.apheledes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -167px -55px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.aristotle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -116px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.artemisia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -116px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.atalanta { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -116px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.cheiron { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -116px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.christopholus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -222px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.daidalos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -222px -55px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.deimos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -222px -110px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.democritus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -171px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.deryntes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -171px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.ephialtes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -171px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.eurybia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -171px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.ferkyon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -171px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hector { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.helen { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px -55px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hercules { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px -110px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hero_assigned_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -336px; + width: 25px; + height: 25px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hero_attacking_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -245px -336px; + width: 25px; + height: 25px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hero_injured_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -270px -336px; + width: 25px; + height: 25px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hero_overlay_black { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px -165px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hero_overlay_blue { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -226px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hero_overlay_red { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -226px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.hyppolita { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -226px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.iason { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -226px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.leonidas { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -226px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.lysippe { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -275px -226px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.medea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.melampous { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px -55px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.melousa { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px -110px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.mihalis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px -165px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.no_hero { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 0; + width: 57px; + height: 61px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.odysseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -332px -220px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.orpheus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -281px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.pariphaistes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -281px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.pelops { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -281px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.perseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -281px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.philoctetes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -281px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.polydeukes { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -275px -281px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.rekonos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -330px -281px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.sokrates { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.telemachos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -55px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.terylea { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -110px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.themistokles { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -165px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.theseus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -220px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.urephon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -387px -275px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.vedouma { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -336px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.xanthos { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -336px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.ylestres { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -110px -336px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero.zuretha { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -165px -336px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero[data-status=injured] .overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -55px -226px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero[data-status=injured] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -270px -336px; + width: 25px; + height: 25px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero[data-status=assigned] .overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat 0 -226px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero[data-status=assigned] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -220px -336px; + width: 25px; + height: 25px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero[data-status=attacking] .overlay { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -277px -165px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .heroes_area .hero_portrait.hero[data-status=attacking] .icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/heroes/enlarged_ui_heroes_7277dfe.png) no-repeat -245px -336px; + width: 25px; + height: 25px; + top: 13px; + } + + #ui_box.mobile .heroes_area .overlay { + top: 0; + left: 1px; + padding-top: 0; + } + + #ui_box.mobile .heroes_area .overlay .countdown { + font-size: 10px; + } + + #ui_box.mobile .heroes_area .hero_level { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -366px -316px; + width: 43px; + height: 31px; + right: 16px; + top: 13px; + line-height: 19px; + text-indent: -2px; + font-size: 10px; + } + + #ui_box.mobile .battlepoints_area { + bottom: 5px; + left: 62px; + line-height: 18px; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -167px -415px; + width: 74px; + height: 36px; + } + + #ui_box.mobile .battlepoints_area .points { + font-size: 10px; + padding-right: 6px; + padding-left: 18px; + } + + #ui_box.mobile .happening_large_icon_container { + right: 20px; + bottom: 140px; + } + + #ui_box.mobile .units_area .units_area_toggle_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -469px; + width: 41px; + height: 41px; + bottom: 35px; + right: 113px; + } + + #ui_box.mobile .units_area .units_area_toggle_button.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -82px -537px; + width: 41px; + height: 41px; + } + + #ui_box.mobile .units_area .units_wrapper { + bottom: 10px; + right: 158px; + } + + #ui_box.mobile .units_area .units_box { + margin-right: 4px; + } + + #ui_box.mobile .units_area .units_box .bar_tile { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -590px -347px; + width: 83px; + height: 45px; + top: 15px; + width: 20px; + right: -16px; + } + + #ui_box.mobile .units_area .units_box .border_left { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -347px -189px; + width: 6px; + height: 79px; + left: -4px; + } + + #ui_box.mobile .units_area .units_box .border_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -353px -189px; + width: 6px; + height: 79px; + right: -4px; + } + + #ui_box.mobile .units_area .units_box .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/units_goldframe_center_780d4d3.png) no-repeat 0 0; + width: 1px; + height: 79px; + margin: 0 2px; + } + + #ui_box.mobile .units_area .units_box .content { + top: 3px; + min-width: 33px; + } + + #ui_box.mobile .units_area .units_box.ground .content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/units_bg_land_b3344fb.png) no-repeat 0 0; + width: 33px; + height: 66px; + } + + #ui_box.mobile .units_area .units_box.naval .content { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/units_bg_naval_7ab77c0.png) no-repeat 0 0; + width: 33px; + height: 66px; + } + + #ui_box.mobile .units_area .units_box .icon { + margin-right: 8px; + } + + #ui_box.mobile .units_area .units_box .units_row_bottom, + #ui_box.mobile .units_area .units_box .units_row_top { + position: relative; + left: 4px; + } + + #ui_box.mobile .units_area .units_box .units_row_top { + top: 4px; + } + + #ui_box.mobile .units_area .units_box .units_row_bottom { + top: 12px; + } + + #ui_box.mobile .units_area .units_box .amount { + font-size: 9px; + font-weight: 400; + right: 0; + bottom: 0; + } + + #ui_box.mobile .minimized_windows_list_wrapper { + bottom: 150px; + left: 116px; + } + + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -94px; + width: 47px; + height: 47px; + } + + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list_button .caption { + line-height: 30px; + font-size: 13px; + } + + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list .minimized_window .btn_close_window { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -104px 0 no-repeat; + width: 52px; + } + + #ui_box.mobile .close_all_windows_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -246px -537px; + width: 40px; + height: 40px; + top: 58px; + right: 120px; + } + + #ui_box.mobile .ui_quickbar { + top: 65px; + left: 155px; + right: 155px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .navigation_area .layout_mode_button.active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -158px -158px; + width: 78px; + height: 78px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .navigation_area .layout_mode_button:not(.active):hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -158px 0; + width: 79px; + height: 79px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .navigation_area .layout_mode_button_small[data-id=strategic_map]:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -346px; + width: 41px; + height: 41px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .navigation_area .layout_mode_button_small[data-id=island_view]:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -223px; + width: 41px; + height: 41px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .navigation_area .button_save_location:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -334px -204px; + width: 33px; + height: 33px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile:hover~.ocean_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -204px; + width: 64px; + height: 33px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_background:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -204px; + width: 64px; + height: 33px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .navigation_area .button_jump_to_coordinates:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -301px -204px; + width: 33px; + height: 33px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .island_view_nav_buttons .button_jump_to_town:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -396px -537px; + width: 30px; + height: 30px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .town_name_area .btn_next_town:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -314px -487px; + width: 34px; + height: 34px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .town_name_area .btn_prev_town:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -320px -136px; + width: 34px; + height: 34px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .town_name_area .active_town_name:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -68px; + width: 133px; + height: 34px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .activities_wrapper .recruitment_queue_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -337px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .activities_wrapper .construction_queue_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -437px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .activities_wrapper .activities_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -200px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content .icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -241px -415px; + width: 34px; + height: 34px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator.active .inner_content .icon:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -241px -415px; + width: 34px; + height: 34px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -480px -487px; + width: 30px; + height: 30px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button.active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -456px -537px; + width: 30px; + height: 30px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .main_menu_nav_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -164px -537px; + width: 41px; + height: 41px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_button_base .main_menu_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -79px 0; + width: 79px; + height: 79px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .units_area .units_area_toggle_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -141px; + width: 41px; + height: 41px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .units_area .units_area_toggle_button.active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -41px -537px; + width: 41px; + height: 41px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -47px; + width: 47px; + height: 47px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list .minimized_window:hover { + -moz-box-shadow: inset 0 0 3px 3px #fff; + -webkit-box-shadow: inset 0 0 3px 3px #fff; + box-shadow: inset 0 0 3px 3px #fff; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .minimized_windows_list_wrapper .minimized_windows_list .minimized_window .btn_close_window:hover { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -104px -23px no-repeat; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .close_all_windows_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -286px -537px; + width: 40px; + height: 40px; + } +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile .navigation_area .layout_mode_button.active:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -79px -158px; + width: 79px; + height: 79px; + } + + #ui_box.mobile .navigation_area .layout_mode_button:not(.active):active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -79px -79px; + width: 79px; + height: 79px; + } + + #ui_box.mobile .navigation_area .layout_mode_button_small[data-id=strategic_map]:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -305px; + width: 41px; + height: 41px; + } + + #ui_box.mobile .navigation_area .layout_mode_button_small[data-id=island_view]:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -182px; + width: 41px; + height: 41px; + } + + #ui_box.mobile .navigation_area .button_save_location:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -416px -487px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile:active~.ocean_background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -215px -487px; + width: 65px; + height: 34px; + } + + #ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_background:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -215px -487px; + width: 65px; + height: 34px; + } + + #ui_box.mobile .navigation_area .button_jump_to_coordinates:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -300px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .island_view_nav_buttons .button_jump_to_town:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -426px -537px; + width: 30px; + height: 30px; + } + + #ui_box.mobile .town_name_area .btn_next_town:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -382px -487px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .town_name_area .btn_prev_town:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -320px -170px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .town_name_area .active_town_name:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -34px; + width: 133px; + height: 34px; + } + + #ui_box.mobile .activities_wrapper .recruitment_queue_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -337px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .activities_wrapper .construction_queue_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -237px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .activities_wrapper .activities_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -250px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content .icon:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/base/enlarged_ui_base_3ba3c4c.png) no-repeat -673px -347px; + width: 34px; + height: 34px; + } + + #ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button.active:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -540px -487px; + width: 30px; + height: 30px; + } + + #ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -510px -487px; + width: 30px; + height: 30px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .main_menu_nav_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -205px -537px; + width: 41px; + height: 41px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_button_base .main_menu_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 0; + width: 79px; + height: 79px; + } + + #ui_box.mobile .units_area .units_area_toggle_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -387px; + width: 41px; + height: 41px; + } + + #ui_box.mobile .units_area .units_area_toggle_button.active:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -537px; + width: 41px; + height: 41px; + } + + #ui_box.mobile .minimized_windows_list_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px 0; + width: 47px; + height: 47px; + } + + #ui_box.mobile .close_all_windows_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -326px -537px; + width: 40px; + height: 40px; + } +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile .resources_population_gods_area .gods_area { + top: 40px; + right: 20px; + height: 100px; + width: 100px; + } + + #ui_box.mobile .resources_population_gods_area .gods_area.show_fury .fury_amount { + right: 0; + left: -53px; + top: 8px; + } + + #ui_box.mobile .resources_population_gods_area .gods_area.show_fury .gods_favor_button_area { + left: initial; + } + + #ui_box.mobile .resources_population_gods_area .gods_area .favor_amount { + right: 0; + left: 13px; + top: 8px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat 0 0; + width: 68px; + height: 68px; + top: 17px; + right: 14px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container::before { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -68px 0; + width: 63px; + height: 59px; + top: 5px; + left: -1px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god { + right: 20px; + top: 24px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god::before { + left: -4px; + top: -2px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat 0 -68px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -55px -68px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -131px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -131px -55px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat 0 -123px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -55px -123px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -110px -123px; + width: 55px; + height: 55px; + } + + #ui_box.mobile .resources_population_gods_area .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -186px 0; + width: 55px; + height: 55px; + } + + #ui_box.mobile .resources_population_gods_area .gods_progress { + right: 79px; + top: 20px; + } + + #ui_box.mobile .resources_population_gods_area .gods_progress .fury_progress { + left: -2px; + top: -2px; + } + + #ui_box.mobile .resources_population_gods_area .gods_favor_button_area { + left: initial; + right: 50px; + top: 0; + } + + #ui_box.mobile .resources_population_gods_area .gods_favor_amount { + line-height: 20px; + font-size: 8px; + } + + #ui_box.mobile .resources_population_gods_area .gods_favor_amount .favor_amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -186px -84px; + width: 45px; + height: 29px; + } + + #ui_box.mobile .resources_population_gods_area .gods_favor_amount .fury_amount { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/default/enlarged_ui_gods_7612ee0.png) no-repeat -186px -55px; + width: 45px; + height: 29px; + } + + #ui_box.mobile .resources_population_gods_area .btn_gods_spells { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -486px -537px; + width: 30px; + height: 30px; + top: 108px; + right: 34px; + } + + body.gods-christmas #ui_box.mobile .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat 0 0; + width: 55px; + height: 55px; + } + + body.gods-christmas #ui_box.mobile .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -55px 0; + width: 55px; + height: 55px; + } + + body.gods-christmas #ui_box.mobile .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat 0 -55px; + width: 55px; + height: 55px; + } + + body.gods-christmas #ui_box.mobile .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -55px -55px; + width: 55px; + height: 55px; + } + + body.gods-christmas #ui_box.mobile .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -110px 0; + width: 55px; + height: 55px; + } + + body.gods-christmas #ui_box.mobile .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -110px -55px; + width: 55px; + height: 55px; + } + + body.gods-christmas #ui_box.mobile .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat 0 -110px; + width: 55px; + height: 55px; + } + + body.gods-christmas #ui_box.mobile .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/christmas/enlarged_ui_gods_74dac7b.png) no-repeat -55px -110px; + width: 55px; + height: 55px; + } + + body.gods-halloween #ui_box.mobile .gods_container.god.aphrodite { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat 0 0; + width: 55px; + height: 55px; + } + + body.gods-halloween #ui_box.mobile .gods_container.god.ares { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -55px 0; + width: 55px; + height: 55px; + } + + body.gods-halloween #ui_box.mobile .gods_container.god.artemis { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat 0 -55px; + width: 55px; + height: 55px; + } + + body.gods-halloween #ui_box.mobile .gods_container.god.athena { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -55px -55px; + width: 55px; + height: 55px; + } + + body.gods-halloween #ui_box.mobile .gods_container.god.hades { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -110px 0; + width: 55px; + height: 55px; + } + + body.gods-halloween #ui_box.mobile .gods_container.god.hera { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -110px -55px; + width: 55px; + height: 55px; + } + + body.gods-halloween #ui_box.mobile .gods_container.god.poseidon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat 0 -110px; + width: 55px; + height: 55px; + } + + body.gods-halloween #ui_box.mobile .gods_container.god.zeus { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/gods/halloween/enlarged_ui_gods_63a39a9.png) no-repeat -55px -110px; + width: 55px; + height: 55px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .resources_population_gods_area .btn_gods_spells:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -450px -487px; + width: 30px; + height: 30px; + } +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile .resources_population_gods_area .btn_gods_spells:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -516px -537px; + width: 30px; + height: 30px; + } +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -450px -437px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -50px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.reports .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -287px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -387px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -387px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.inventory .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -437px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.notes .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -150px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.logout .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -437px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.premium .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -100px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.farming_villages .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -100px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.attack_planner .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -387px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.alliance .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -250px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.ranking .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px 0; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.profile .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -150px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.settings .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -287px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.overviews .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -487px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.greposcore .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -437px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.support .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -237px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.forum .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -250px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.wiki .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px 0; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.olympus .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -300px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.domination .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -400px -387px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.world_wonders .main_menu_item_btn { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -337px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px 0; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn:hover.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -50px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.reports .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -287px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -387px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn:hover.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -387px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.inventory .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -437px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.notes .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -200px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.logout .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -350px -437px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.premium .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -150px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.farming_villages .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -150px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.attack_planner .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -387px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.alliance .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -300px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.ranking .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -287px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.profile .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -100px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.settings .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -287px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.overviews .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -487px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.greposcore .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -437px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.support .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -50px -237px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.forum .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -300px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.wiki .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -350px -337px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.olympus .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -350px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.domination .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px 0; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.world_wonders .main_menu_item_btn:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -337px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -100px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.reports .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -287px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -200px -387px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.inventory .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -437px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.notes .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -250px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.logout .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -400px -437px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.premium .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -200px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.farming_villages .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -200px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.attack_planner .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -350px -387px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.alliance .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -387px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.ranking .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -250px -287px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.profile .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -370px -50px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.settings .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -237px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.overviews .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -100px -487px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.greposcore .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat 0 -237px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.support .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -420px -50px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.forum .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -350px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.wiki .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -300px -337px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.olympus .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -520px -400px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.domination .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -470px -50px; + width: 50px; + height: 50px; + } + + #ui_box.mobile .main_menu_wrapper .main_menu_item.world_wonders .main_menu_item_btn:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -150px -337px; + width: 50px; + height: 50px; + } +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile .premium_area.premium_mobile { + height: 34px; + width: 83px; + right: 27px; + top: 5px; + } + + #ui_box.mobile .premium_area.premium_mobile .btn_open_premium_buy_gold_mobile { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -170px; + width: 83px; + height: 34px; + top: 0; + left: 0; + } + + #ui_box.mobile .premium_area.premium_mobile .btn_open_premium_buy_gold_mobile .js-caption { + height: 34px; + font-size: 10px; + } +} + +@media (max-aspect-ratio:21 / 10) and (hover:hover) { + #ui_box.mobile .premium_area.premium_mobile .btn_open_premium_buy_gold_mobile:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -136px; + width: 83px; + height: 34px; + } +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile .premium_area.premium_mobile .btn_open_premium_buy_gold_mobile:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -237px -102px; + width: 83px; + height: 34px; + } +} + +@media (max-aspect-ratio:21 / 10) { + #ui_box.mobile .resources_population_gods_area .resources { + height: 30px; + width: 225px; + left: 25px; + top: 5px; + } + + #ui_box.mobile .resources_population_gods_area .indicator.iron, + #ui_box.mobile .resources_population_gods_area .indicator.population, + #ui_box.mobile .resources_population_gods_area .indicator.stone, + #ui_box.mobile .resources_population_gods_area .indicator.wood { + width: 52px; + height: 17px; + margin-top: 5px; + } + + #ui_box.mobile .resources_population_gods_area .indicator.wood { + left: 5px; + } + + #ui_box.mobile .resources_population_gods_area .indicator.stone { + left: 61px; + } + + #ui_box.mobile .resources_population_gods_area .indicator.iron { + left: 118px; + } + + #ui_box.mobile .resources_population_gods_area .indicator.population { + left: 174px; + } + + #ui_box.mobile .resources_population_gods_area .indicator .progress { + margin-top: 6px; + } + + #ui_box.mobile .resources_population_gods_area .indicator .progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/single_images/resources_fill_a9625c9.png) no-repeat 0 0; + width: 1px; + height: 2px; + max-width: 87px; + background-repeat: repeat-x; + } + + #ui_box.mobile .resources_population_gods_area .indicator .res_plenty { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -570px -510px; + width: 10px; + height: 10px; + top: 0; + left: 10px; + } + + #ui_box.mobile .resources_population_gods_area .indicator .res_rare { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/enlarged_ui/small_size/buttons/enlarged_ui_buttons_9e457ef.png) no-repeat -580px -510px; + width: 10px; + height: 10px; + top: 0; + left: 10px; + } + + #ui_box.mobile .resources_population_gods_area .amount { + font-size: 10px; + margin-top: 2px; + } +} + +.ui_base { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; +} + +.ui_interactable { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +@-webkit-keyframes fadeIncomingAttack { + 0% { + opacity: .5; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: .5; + } +} + +@-ms-keyframes fadeIncomingAttack { + 0% { + opacity: .5; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: .5; + } +} + +@keyframes fadeIncomingAttack { + 0% { + opacity: .5; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: .5; + } +} + +#ui_box.mobile::before { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + content: ''; + top: 0; + left: 50px; + right: 50px; +} + +#ui_box.mobile.city-overview-enabled .island_view_nav_buttons, +#ui_box.mobile.city-overview-enabled .navigation_area_middle { + display: none; +} + +#ui_box.mobile.city-overview-enabled .activities_wrapper .construction_queue_button, +#ui_box.mobile.city-overview-enabled .activities_wrapper .recruitment_queue_button, +#ui_box.mobile.city-overview-enabled .main_menu_extra_button_wrapper { + display: block; +} + +#ui_box.mobile .navigation_area { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + top: 0; + left: 0; +} + +#ui_box.mobile .navigation_area .layout_mode_button { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .navigation_area .layout_mode_button_small { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .navigation_area .navigation_area_middle { + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + position: absolute; +} + +#ui_box.mobile .navigation_area .button_save_location { + position: absolute; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates #dd_coordinates_mobile { + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + position: absolute; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_background { + position: absolute; +} + +#ui_box.mobile .navigation_area .button_ocean_number_coordinates .ocean_coordinates { + position: absolute; + font-weight: 600; +} + +#ui_box.mobile .navigation_area .button_jump_to_coordinates { + position: absolute; +} + +#ui_box.mobile.minimized .hero_area, +#ui_box.mobile.minimized .incoming_attacks_indicator_wrapper, +#ui_box.mobile.minimized .main_menu, +#ui_box.mobile.minimized .resources_population_gods_area, +#ui_box.mobile.minimized .town_name_area, +#ui_box.mobile.minimized .units_area, +#ui_box.mobile.minimized::before { + display: none; +} + +#ui_box.mobile .island_view_nav_buttons { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; +} + +#ui_box.mobile .island_view_nav_buttons .button_jump_to_town { + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + position: absolute; +} + +#ui_box.mobile .resources_population_gods_area { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; +} + +#ui_box.mobile .town_name_area { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + -webkit-transform: translateX(-50%); + -ms-transform: translateX(-50%); + -o-transform: translateX(-50%); + transform: translateX(-50%); +} + +#ui_box.mobile .town_name_area .arrow_btn { + position: absolute; +} + +#ui_box.mobile .town_name_area .active_town_name { + position: absolute; +} + +#ui_box.mobile .town_name_area .active_town_name .town_name { + position: absolute; + color: #423515; + white-space: nowrap; + height: 100%; + padding-left: 3px; +} + +#ui_box.mobile .town_name_area .casted_powers_area { + position: absolute; + text-align: center; +} + +#ui_box.mobile .town_name_area .casted_powers_area .power_list { + display: inline-block; +} + +#ui_box.mobile .town_name_area .casted_powers_area .rest_amount { + display: inline-block; +} + +#ui_box.mobile .activities_wrapper { + position: absolute; +} + +#ui_box.mobile .activities_wrapper .activities_button, +#ui_box.mobile .activities_wrapper .construction_queue_button, +#ui_box.mobile .activities_wrapper .recruitment_queue_button { + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + position: absolute; +} + +#ui_box.mobile .activities_wrapper .construction_queue_button, +#ui_box.mobile .activities_wrapper .recruitment_queue_button { + display: none; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator.active { + display: block; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator.active .js-caption { + display: block; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content { + position: absolute; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content .icon { + -webkit-animation: fadeIncomingAttack 5s ease infinite; + -ms-animation: fadeIncomingAttack 5s ease infinite; + animation: fadeIncomingAttack 5s ease infinite; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content .icon:active, +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .inner_content .icon:hover { + -webkit-animation: none; + -ms-animation: none; + animation: none; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .countdown { + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + position: absolute; + left: 50%; + -webkit-transform: translate(-50%); + -ms-transform: translate(-50%); + -o-transform: translate(-50%); + transform: translate(-50%); + background: -webkit-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -moz-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -ms-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -o-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + -moz-box-shadow: 0 0 5px 3px rgba(0,0,0,.6); + -webkit-box-shadow: 0 0 5px 3px rgba(0,0,0,.6); + box-shadow: 0 0 5px 3px rgba(0,0,0,.6); +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator .js-caption { + color: #fff; + text-shadow: 1px 1px 0 #000; + font-weight: 600; + position: absolute; + pointer-events: none; + display: none; + bottom: 1px; + right: 2px; +} + +#ui_box.mobile .activities_wrapper .incoming_attacks_indicator.incoming_on_current .js-caption { + color: #fed935; +} + +#ui_box.mobile .main_menu_extra_button_wrapper { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + display: none; +} + +#ui_box.mobile .main_menu_extra_button_wrapper .main_menu_extra_button { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .main_menu_wrapper { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; +} + +#ui_box.mobile .main_menu_wrapper .main_menu { + position: absolute; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .main_menu_nav_btn { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_nav .active_page_indicator { + height: 5px; + width: 5px; + background-color: #fff; + border-radius: 50%; + position: absolute; + box-shadow: 0 0 5px 1px #000; +} + +#ui_box.mobile .main_menu_wrapper .main_menu.hidden { + display: none; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items { + position: absolute; + height: 100%; + display: flex; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item .main_menu_item_btn { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + position: relative; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item.inventory .button_with_counter .counter { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/round_buttons/sprite_images/round_buttons_c0bd9c5.png) no-repeat -141px 0; + width: 24px; + height: 28px; +} + +#ui_box.mobile .main_menu_wrapper .main_menu .main_menu_items .main_menu_item.inventory .counter_number.full { + color: #e72200; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_button_base { + position: relative; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_button_base .main_menu_btn { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .server_time_area { + z-index: 5; + padding: 0; + pointer-events: none; + position: absolute; + bottom: 0; + width: 180px; + color: #fff; + background-color: rgba(0,0,0,.7); + -moz-box-shadow: 0 0 5px 3px rgba(0,0,0,.7); + -webkit-box-shadow: 0 0 5px 3px rgba(0,0,0,.7); + box-shadow: 0 0 5px 3px rgba(0,0,0,.7); + z-index: 4; + height: 15px; + text-align: left; + font-size: 10px; + padding: 1px; +} + +#ui_box.mobile .heroes_area { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + pointer-events: all; + cursor: default; + right: 0; + bottom: 0; +} + +#ui_box.mobile .heroes_area .hero_portrait { + position: absolute; + cursor: pointer; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=assigned] .overlay, +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=attacking] .overlay, +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=injured] .overlay { + display: block; +} + +#ui_box.mobile .heroes_area .hero_portrait.hero[data-status=attacking] .overlay .countdown { + display: none; +} + +#ui_box.mobile .heroes_area .overlay { + display: none; + pointer-events: none; + position: absolute; +} + +#ui_box.mobile .heroes_area .overlay .countdown { + color: #fc6; + text-shadow: 1px 1px 0 #000; +} + +#ui_box.mobile .heroes_area .overlay .icon { + margin: auto; + position: relative; +} + +#ui_box.mobile .heroes_area .hero_level { + position: absolute; + color: #fc6; +} + +#ui_box.mobile .units_area .units_area_toggle_button { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .units_area .units_area_toggle_button:not(.active)+.units_wrapper { + display: none; +} + +#ui_box.mobile .units_area .units_wrapper { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; +} + +#ui_box.mobile .units_area .units_wrapper .border_left, +#ui_box.mobile .units_area .units_wrapper .border_right { + position: absolute; +} + +#ui_box.mobile .units_area .units_wrapper .middle { + position: relative; + width: auto; + background-repeat: repeat-x; +} + +#ui_box.mobile .units_area .units_box { + position: relative; + float: left; +} + +#ui_box.mobile .units_area .units_box .bar_tile { + position: absolute; +} + +#ui_box.mobile .units_area .units_box.ground .content, +#ui_box.mobile .units_area .units_box.naval .content { + width: auto; + background-repeat: repeat-x; + position: relative; +} + +#ui_box.mobile .units_area .units_box .icon { + pointer-events: all; + cursor: default; + float: left; + -moz-box-shadow: inset 0 0 4px #000; + -webkit-box-shadow: inset 0 0 4px #000; + box-shadow: inset 0 0 4px #000; +} + +#ui_box.mobile .units_area .units_box .amount { + position: absolute; + color: #fff; + text-shadow: 1px 1px 0 #000; + text-align: right; +} + +#ui_box.mobile .battlepoints_area { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + text-align: center; +} + +#ui_box.mobile .battlepoints_area .points { + text-align: right; + position: relative; + color: #fc6; +} + +#ui_box.mobile #icons_container_left { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + pointer-events: all; +} + +#ui_box.mobile #icons_container_left #daily_login_icon { + position: absolute; +} + +#ui_box.mobile .minimized_windows_list_wrapper { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 2000; +} + +#ui_box.mobile .minimized_windows_list_button { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .minimized_windows_list_button.disabled { + display: none; +} + +#ui_box.mobile .minimized_windows_list_button .caption { + color: #fc6; + font-weight: 600; +} + +#ui_box.mobile .minimized_windows_list { + position: relative; + display: none; + bottom: 4px; + left: 2px; +} + +#ui_box.mobile .minimized_windows_list.visible { + display: block; +} + +#ui_box.mobile .minimized_windows_list .windows_list { + background: url(https://gpfr.innogamescdn.com/images/game/layout/gpwindow_bg.jpg) repeat 0 0; + box-shadow: inset 0 0 10px #555; + padding-right: 1px; + padding-bottom: 1px; +} + +#ui_box.mobile .minimized_windows_list .column { + display: inline-block; + vertical-align: top; +} + +#ui_box.mobile .minimized_windows_list .column:not(:last-child) { + border-right: 1px solid #d0be97; +} + +#ui_box.mobile .minimized_windows_list .minimized_window { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + background: url(https://gpfr.innogamescdn.com/images/game/border/even.png) repeat 0 0; + border-bottom: 2px solid #d0be97; + position: relative; + padding: 5px; + text-align: left; +} + +#ui_box.mobile .minimized_windows_list .minimized_window:nth-child(odd) { + background: url(https://gpfr.innogamescdn.com/images/game/border/odd.png) repeat 0 0; + border-bottom: 2px solid #d0be97; +} + +#ui_box.mobile .minimized_windows_list .minimized_window .caption { + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + color: #423515; + font-weight: 600; + width: 150px; +} + +#ui_box.mobile .minimized_windows_list .minimized_window .btn_close_window, +#ui_box.mobile .minimized_windows_list .minimized_window .caption { + display: inline-block; + vertical-align: middle; +} + +#ui_box.mobile .close_all_windows_button { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + z-index: 2000; +} + +#ui_box.mobile .close_all_windows_button.disabled { + display: none; +} + +#ui_box.mobile .ui_quickbar { + height: 25px; +} + +#ui_box.mobile .ui_quickbar .button_wrapper { + position: absolute; + left: 0; + top: 0; + height: 100%; +} + +#ui_box.mobile .ui_quickbar .btn_quickbar_settings { + position: absolute; + left: 0; + top: 3px; +} + +#ui_box.mobile .ui_quickbar .container { + display: flex; + flex-flow: row nowrap; + justify-content: space-around; +} + +#ui_box.mobile .ui_quickbar .option { + float: none; + width: auto; + height: auto; + flex: 1 1 0; + margin: 0 10px; + padding: 0; +} + +#ui_box.mobile .ui_quickbar .option .caption { + line-height: 25px; + font-size: unset; +} + +#ui_box.mobile .ui_quickbar .button_wrapper, +#ui_box.mobile .ui_quickbar .option { + background: -webkit-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -moz-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -ms-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: -o-linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + background: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,.9),rgba(0,0,0,.5)); + border-radius: 2px; +} + +#ui_box.mobile .ui_quickbar .dropdown_indicator { + top: 9px; +} + +#button_jump_to_coordinates_list .js-coord-button-mobile { + display: inline-block; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) 0 0 no-repeat; + vertical-align: top; + width: 52px; + height: 23px; + margin-left: 10px; + cursor: pointer; +} + +@media (hover:hover) { + #button_jump_to_coordinates_list .js-coord-button-mobile:hover { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) 0 -23px no-repeat; + } +} + +#button_jump_to_coordinates_list .js-dropdown-item-list { + margin: 10px 5px; +} + +#button_jump_to_coordinates_list .js-dropdown-item-list .middle { + position: initial; + background: 0 0; +} + +#button_jump_to_coordinates_list .js-dropdown-item-list .headline { + display: block; + margin-bottom: 10px; + font-weight: 600; +} + +#button_jump_to_coordinates_list .js-dropdown-item-list .coordinates_wrapper { + display: inline-flex; + justify-content: center; + align-items: center; + width: 70px; + height: 23px; +} + +#button_jump_to_coordinates_list .js-dropdown-item-list .coordinates { + width: 30px; +} + +#button_jump_to_coordinates_list .js-coord-x-mobile, +#button_jump_to_coordinates_list .js-coord-y-mobile { + height: 23px; + margin-right: 10px; +} + +#button_jump_to_coordinates_list .js-coord-x-mobile input, +#button_jump_to_coordinates_list .js-coord-y-mobile input { + max-width: 35px; + text-align: center; +} + +#dd_coordinates_list .item.bookmark, +#dd_coordinates_mobile_list .item.bookmark { + padding-right: 56px; +} + +#dd_coordinates_list .button_new.square.remove, +#dd_coordinates_mobile_list .button_new.square.remove { + width: 52px; + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -104px 0 no-repeat; +} + +@media (hover:hover) { + #dd_coordinates_list .button_new.square.remove:hover, + #dd_coordinates_mobile_list .button_new.square.remove:hover { + background: url(https://gpfr.innogamescdn.com/images/game/overviews/checkswitchdelete_buttons.png) -104px -23px no-repeat; + } +} + +#dd_coordinates_mobile_list .item.bookmark { + padding: 5px 56px 5px 5px; + border-bottom: 1px solid #d0be97; +} + +#dd_coordinates_mobile_list .item.bookmark:last-child { + border: none; +} + +#dd_coordinates_mobile_list .item.bookmark .remove { + top: 7px; +} + +#ui_box.mobile .resources_population_gods_area .gods_area { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +#ui_box.mobile .resources_population_gods_area .gods_area.show_fury .gods_favor_amount { + background: 0 0; + width: auto; + height: auto; +} + +#ui_box.mobile .resources_population_gods_area .gods_container { + position: absolute; +} + +#ui_box.mobile .resources_population_gods_area .gods_container::before { + display: inline-block; + content: ''; + position: relative; +} + +#ui_box.mobile .resources_population_gods_area .gods_progress { + z-index: 8; +} + +#ui_box.mobile .resources_population_gods_area .gods_favor_button_area { + z-index: 8; +} + +#ui_box.mobile .resources_population_gods_area .gods_favor_amount { + background: 0 0; + width: auto; + height: auto; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item { + pointer-events: all; + cursor: pointer; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.messages .main_menu_item_btn.disabled { + cursor: default; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.allianceforum .main_menu_item_btn.disabled { + cursor: default; +} + +#ui_box.mobile .main_menu_wrapper .main_menu_item.attack_planner { + position: initial; + overflow: initial; + padding: 0; + user-select: initial; +} + +.premium_area.premium_mobile { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +.premium_area.premium_mobile .btn_open_premium_buy_gold_mobile { + position: relative; +} + +.premium_area.premium_mobile .btn_open_premium_buy_gold_mobile .js-caption { + display: flex; + justify-content: center; + align-items: center; + color: #fff; + text-shadow: 1px 1px 0 #000; + font-weight: 600; +} + +.resources_population_gods_area .resources { + position: absolute; + z-index: 5; + padding: 0; + pointer-events: none; + z-index: 6; + pointer-events: all; + cursor: pointer; + -webkit-tap-highlight-color: transparent; +} + +.resources_population_gods_area .indicator.iron, +.resources_population_gods_area .indicator.population, +.resources_population_gods_area .indicator.stone, +.resources_population_gods_area .indicator.wood { + position: absolute; + text-align: right; +} + +.resources_population_gods_area .indicator .res_plenty { + position: absolute; +} + +.resources_population_gods_area .indicator .res_rare { + position: absolute; +} + +.resources_population_gods_area .amount { + color: #fc6; + font-weight: 600; +} + +.resources_population_gods_area .amount.limit_reached, +.resources_population_gods_area .amount.negative { + color: #e72200; +} + +.city_list { + height: 493px; + width: 832px; +} + +.city_list .section_left { + display: inline-block; + width: 250px; + height: 480px; + vertical-align: top; +} + +.city_list .section_left .game_border_bottom, +.city_list .section_left .game_border_left, +.city_list .section_left .game_border_top { + visibility: hidden; +} + +.city_list .section_left .game_border { + height: 488px; + top: -5px; +} + +.city_list .section_right { + display: inline-block; + width: 570px; + height: 480px; + position: relative; + left: -5px; +} + +.city_list .sorting { + height: 135px; +} + +.city_list .sorting .label { + left: 8px; + top: 3px; +} + +.city_list .sorting .textbox { + width: 225px; + left: 2px; + margin: 5px; +} + +.city_list .filter_icons { + display: block; + padding: 4px; + width: 250px; +} + +.city_list .sort_icon { + margin: 3px; +} + +.city_list .sort_icon.town_name { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -156px 0; + width: 52px; + height: 54px; +} + +.city_list .sort_icon.town_name:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -104px -54px; + width: 52px; + height: 54px; +} + +.city_list .sort_icon.town_name.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -52px -54px; + width: 52px; + height: 54px; +} + +.city_list .sort_icon.town_points { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -208px 0; + width: 52px; + height: 54px; +} + +.city_list .sort_icon.town_points:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -156px -108px; + width: 52px; + height: 54px; +} + +.city_list .sort_icon.town_points.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -104px -108px; + width: 52px; + height: 54px; +} + +.city_list .sort_icon.town_population_sort { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -52px -108px; + width: 52px; + height: 54px; +} + +.city_list .sort_icon.town_population_sort:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 -108px; + width: 52px; + height: 54px; +} + +.city_list .sort_icon.town_population_sort.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -156px -54px; + width: 52px; + height: 54px; +} + +.city_list .groups { + height: 420px; +} + +.city_list .groups .game_border_bottom, +.city_list .groups .game_border_left, +.city_list .groups .game_border_right { + visibility: hidden; +} + +.city_list .groups .game_border { + height: 330px; + width: 250px; + left: -10px; +} + +.city_list .groups .game_border_top { + visibility: visible; +} + +.city_list .town_info_wrapper { + padding: 15px; + border-bottom: 1px solid #d0be97; +} + +.city_list .town_group_info_wrapper { + padding: 5px; + border-bottom: 1px solid #d0be97; +} + +.city_list .button_order_by { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -104px 0; + width: 52px; + height: 54px; + margin: 3px; +} + +.city_list .button_order_by:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 -54px; + width: 52px; + height: 54px; +} + +.city_list .button_order_by.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 0; + width: 52px; + height: 54px; +} + +.city_list .button_order_by.active:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -52px 0; + width: 52px; + height: 54px; +} + +.city_list .group_name { + padding-left: 5px; +} + +.city_list .city_name, +.city_list .group_name { + outline-style: none; + font-weight: 700; + text-decoration: none; + color: #804000; + cursor: pointer; +} + +.city_list .city_name:hover, +.city_list .group_name:hover { + color: #0082be; +} + +.city_list .group_name.active { + color: #000; +} + +.city_list .arrow_right { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/activities/activities_movements_750ff15.png) no-repeat -9px -240px; + width: 9px; + height: 16px; + vertical-align: middle; + float: right; + display: inline-block; +} + +.city_list .cities .list_wrapper { + height: 488px; + overflow-x: hidden; + overflow-y: scroll; + position: relative; +} + +.city_list .cities .list_wrapper .city.active_town a { + color: #000; +} + +.city_list .attack_icon, +.city_list .conquest_icon, +.city_list .island_quest_icon, +.city_list .revolt_arising_icon, +.city_list .revolt_running_icon, +.city_list .support_icon { + position: relative; + top: -10px; + float: right; + margin-left: 3px; +} + +.city_list .island_quest_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat 0 -162px; + width: 37px; + height: 37px; +} + +.city_list .attack_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -208px -54px; + width: 37px; + height: 37px; +} + +.city_list .support_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -37px -199px; + width: 37px; + height: 37px; +} + +.city_list .revolt_running_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -222px -162px; + width: 37px; + height: 37px; +} + +.city_list .revolt_arising_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -74px -162px; + width: 37px; + height: 37px; +} + +.city_list .conquest_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/mobile_layout/mobile_layout_7917e83.png) no-repeat -148px -162px; + width: 37px; + height: 37px; +} + +.city_list .game_border_corner { + display: none; +} + +.city_list .hidden { + display: none; +} + +.henolympia_overall_sprite .henolympia_event_icon_dark { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/fake_event/henolympia/henolympia_overall_c96aa05.png) no-repeat 0 0; + width: 125px; + height: 125px; +} + +.henolympia_overall_sprite .henolympia_event_icon_glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/fake_event/henolympia/henolympia_overall_c96aa05.png) no-repeat -125px 0; + width: 125px; + height: 125px; +} + +.henolympia_overall_sprite .henolympia_event_icon_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/fake_event/henolympia/henolympia_overall_c96aa05.png) no-repeat 0 -125px; + width: 125px; + height: 125px; +} + +.henolympia_single_images .henolympia_start_interstitial { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/fake_event/henolympia/single_images/henolympia_start_interstitial_da8899d.jpg) no-repeat 0 0; + width: 713px; + height: 372px; +} + +.happening_large_icon_container #happening_large_icon.henolympia { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/fake_event/henolympia/henolympia_overall_c96aa05.png) no-repeat 0 0; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.henolympia.with_countdown:hover, +.happening_large_icon_container #happening_large_icon.henolympia:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/fake_event/henolympia/henolympia_overall_c96aa05.png) no-repeat 0 -125px; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.henolympia .glow { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/fake_event/henolympia/henolympia_overall_c96aa05.png) no-repeat -125px 0; + width: 125px; + height: 125px; +} + +.happening_large_icon_container #happening_large_icon.henolympia .amount { + top: 15px; + left: -8px; +} + +.welcome_window_container.fake_event { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/fake_event/henolympia/single_images/henolympia_start_interstitial_da8899d.jpg) no-repeat 0 0; + width: 713px; + height: 372px; +} + +.column_window.fakeevent .window_content { + padding: 0; + margin-top: 63px; +} + +.column_window.fakeevent .window_content .content { + width: 300px; + position: relative; + left: 370px; + top: 70px; +} + +.column_window.fakeevent .window_content .content .buttons { + top: 235px; +} + +.column_window.fakeevent .window_content .content .description_text { + width: 300px; +} + +.event_pass_single_images .event_pass_activation_popup_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_activation_popup_bg_5aaadcd.png) no-repeat 0 0; + width: 508px; + height: 364px; +} + +.event_pass_single_images .event_pass_bg { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_bg_647d44a.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.event_pass_single_images .event_pass_fillbar_fill { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_fillbar_fill_2dfbbf3.png) no-repeat 0 0; + width: 1px; + height: 19px; +} + +.event_pass_single_images .event_pass_fillbar_tile { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_fillbar_tile_d5b35ae.png) no-repeat 0 0; + width: 184px; + height: 24px; +} + +.event_pass_sprite_images .battleships_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -437px -132px; + width: 35px; + height: 40px; +} + +.event_pass_sprite_images .event_pass_counter_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -267px; + width: 44px; + height: 27px; +} + +.event_pass_sprite_images .event_pass_counter_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -393px -267px; + width: 44px; + height: 27px; +} + +.event_pass_sprite_images .event_pass_counter_button_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -349px -267px; + width: 44px; + height: 27px; +} + +.event_pass_sprite_images .event_pass_counter_button_small_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -296px -159px; + width: 29px; + height: 27px; +} + +.event_pass_sprite_images .event_pass_counter_button_small_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -296px -186px; + width: 29px; + height: 27px; +} + +.event_pass_sprite_images .event_pass_counter_button_small_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -296px -132px; + width: 29px; + height: 27px; +} + +.event_pass_sprite_images .event_pass_divine_activate_button_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat 0 -243px; + width: 141px; + height: 132px; +} + +.event_pass_sprite_images .event_pass_divine_activate_button_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -337px 0; + width: 141px; + height: 132px; +} + +.event_pass_sprite_images .event_pass_divine_activate_button_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -196px 0; + width: 141px; + height: 132px; +} + +.event_pass_sprite_images .event_pass_divine_emblem { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -478px 0; + width: 122px; + height: 140px; +} + +.event_pass_sprite_images .event_pass_divine_prize_tag1_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -337px -132px; + width: 100px; + height: 95px; +} + +.event_pass_sprite_images .event_pass_divine_prize_tag1_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -196px -132px; + width: 100px; + height: 95px; +} + +.event_pass_sprite_images .event_pass_divine_prize_tag2_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -478px -140px; + width: 100px; + height: 169px; +} + +.event_pass_sprite_images .event_pass_divine_prize_tag2_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat 0 -375px; + width: 100px; + height: 169px; +} + +.event_pass_sprite_images .event_pass_divine_prize_tag3_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -98px 0; + width: 98px; + height: 243px; +} + +.event_pass_sprite_images .event_pass_divine_prize_tag3_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat 0 0; + width: 98px; + height: 243px; +} + +.event_pass_sprite_images .event_pass_fillbar_fade { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -243px; + width: 58px; + height: 24px; +} + +.event_pass_sprite_images .event_pass_fillbar_level_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -478px -309px; + width: 48px; + height: 46px; +} + +.event_pass_sprite_images .event_pass_fillbar_level_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -526px -309px; + width: 48px; + height: 46px; +} + +.event_pass_sprite_images .event_pass_fillbar_lion { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -574px -309px; + width: 26px; + height: 24px; +} + +.event_pass_sprite_images .event_pass_grand_prize_tag1_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -141px -243px; + width: 82px; + height: 90px; +} + +.event_pass_sprite_images .event_pass_grand_prize_tag1_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -223px -243px; + width: 82px; + height: 90px; +} + +.event_pass_sprite_images .event_pass_grand_prize_tag2_active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -182px -375px; + width: 82px; + height: 164px; +} + +.event_pass_sprite_images .event_pass_grand_prize_tag2_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -100px -375px; + width: 82px; + height: 164px; +} + +.event_pass_sprite_images .event_pass_prizes_lock { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -437px -172px; + width: 27px; + height: 36px; +} + +.event_pass_sprite_images .rewards_indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -578px -140px; + width: 20px; + height: 24px; +} + +.event_pass_sprite_images .skip_btn_wide_left_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -409px -294px; + width: 52px; + height: 19px; +} + +.event_pass_sprite_images .skip_btn_wide_left_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -313px; + width: 52px; + height: 19px; +} + +.event_pass_sprite_images .skip_btn_wide_left_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -357px -294px; + width: 52px; + height: 19px; +} + +.event_pass_sprite_images .skip_btn_wide_left_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -294px; + width: 52px; + height: 19px; +} + +.event_pass_sprite_images .skip_btn_wide_right_default { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -530px -355px; + width: 52px; + height: 19px; +} + +.event_pass_sprite_images .skip_btn_wide_right_hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -478px -355px; + width: 52px; + height: 19px; +} + +.event_pass_sprite_images .skip_btn_wide_right_inactive { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -415px -243px; + width: 52px; + height: 19px; +} + +.event_pass_sprite_images .skip_btn_wide_right_pressed { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -363px -243px; + width: 52px; + height: 19px; +} + +.event_pass_tutorial_images .tutorial_01 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.event_pass_tutorial_images .tutorial_02 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat -756px 0; + width: 756px; + height: 527px; +} + +.event_pass_tutorial_images .tutorial_03 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat 0 -527px; + width: 756px; + height: 527px; +} + +.event_pass_tutorial_images .tutorial_04 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat -756px -527px; + width: 756px; + height: 527px; +} + +.event_pass_tutorial_images .tutorial_05 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat -1512px 0; + width: 756px; + height: 527px; +} + +.event_pass_tutorial_images .tutorial_06 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat -1512px -527px; + width: 756px; + height: 527px; +} + +.eventpass .background { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_bg_647d44a.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.eventpass .divine_prizes_banner { + top: 82px; +} + +.eventpass .divine_prizes_banner .divine_emblem { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -478px 0; + width: 122px; + height: 140px; + position: relative; + top: 10px; + left: 10px; +} + +.eventpass .grand_prizes_banner { + top: 295px; +} + +.eventpass .divine_prizes_banner, +.eventpass .grand_prizes_banner { + position: absolute; + left: 15px; + text-align: center; + width: 141px; +} + +.eventpass .divine_prizes_banner .headline, +.eventpass .grand_prizes_banner .headline { + text-shadow: 1px 1px 0 #000; + font-weight: 600; + color: #fff; +} + +.eventpass .or { + text-align: center; + position: relative; + top: 8px; + display: inline-block; + width: 100%; +} + +.eventpass .reward_icon.disabled { + opacity: 50%; +} + +.eventpass .divine_prize { + display: inline-block; + position: absolute; +} + +.eventpass .divine_prize .reward_icon { + left: 19px; + top: 10px; +} + +.eventpass .divine_prize .lock { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -437px -172px; + width: 27px; + height: 36px; + position: relative; + top: -6px; +} + +.eventpass .divine_prize.reward_count_1 { + top: 158px; +} + +.eventpass .divine_prize.reward_count_2 { + top: 82px; +} + +.eventpass .divine_prize.reward_count_3 { + top: 7px; +} + +.eventpass .divine_prize.reward_count_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -337px -132px; + width: 100px; + height: 95px; +} + +.eventpass .divine_prize.reward_count_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -478px -140px; + width: 100px; + height: 169px; +} + +.eventpass .divine_prize.reward_count_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -98px 0; + width: 98px; + height: 243px; +} + +.eventpass .divine_prize.inactive.reward_count_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -196px -132px; + width: 100px; + height: 95px; +} + +.eventpass .divine_prize.inactive.reward_count_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat 0 -375px; + width: 100px; + height: 169px; +} + +.eventpass .divine_prize.inactive.reward_count_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat 0 0; + width: 98px; + height: 243px; +} + +.eventpass .divine_prize.row_1 { + left: 180px; +} + +.eventpass .divine_prize.row_2 { + left: 300px; +} + +.eventpass .divine_prize.row_3 { + left: 420px; +} + +.eventpass .divine_prize.row_4 { + left: 540px; +} + +.eventpass .divine_prize.row_5 { + left: 660px; +} + +.eventpass .grand_prize { + display: inline-block; + position: absolute; + top: 300px; +} + +.eventpass .grand_prize .reward_icon { + left: 11px; + top: 15px; +} + +.eventpass .grand_prize .or { + top: 12px; +} + +.eventpass .grand_prize.inactive.reward_count_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -223px -243px; + width: 82px; + height: 90px; +} + +.eventpass .grand_prize.inactive.reward_count_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -100px -375px; + width: 82px; + height: 164px; +} + +.eventpass .grand_prize.reward_count_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -141px -243px; + width: 82px; + height: 90px; +} + +.eventpass .grand_prize.reward_count_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -182px -375px; + width: 82px; + height: 164px; +} + +.eventpass .grand_prize.row_1 { + left: 190px; +} + +.eventpass .grand_prize.row_2 { + left: 310px; +} + +.eventpass .grand_prize.row_3 { + left: 430px; +} + +.eventpass .grand_prize.row_4 { + left: 550px; +} + +.eventpass .grand_prize.row_5 { + left: 670px; +} + +.eventpass .btn_activate { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat 0 -243px; + width: 141px; + height: 132px; +} + +.eventpass .btn_activate:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -337px 0; + width: 141px; + height: 132px; +} + +.eventpass .btn_activate:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -196px 0; + width: 141px; + height: 132px; +} + +.eventpass .btn_activate .caption { + position: relative; + top: 90px; + height: 35px; + max-width: 90px; + margin: 0 auto; +} + +.eventpass .btn_activate .caption span { + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + -o-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); + position: absolute; + top: 50%; + left: 50%; + color: #fc6; + text-shadow: 1px 1px 0 #000; +} + +.eventpass .btn_tutorial { + position: absolute; + top: 9px; + left: 16px; +} + +.eventpass .countdown { + position: absolute; + color: #fc6; + text-align: center; + font-weight: 600; + width: 136px; + height: 16px; + line-height: 16px; + top: 13px; + left: 45px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.eventpass .pages { + position: absolute; + left: 362px; + bottom: 14px; + text-align: center; + width: 47px; +} + +.eventpass .button_first, +.eventpass .button_last, +.eventpass .button_next, +.eventpass .button_prev { + position: absolute; + bottom: 13px; +} + +.eventpass .button_next .reward_indicator, +.eventpass .button_prev .reward_indicator { + position: absolute; + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -578px -140px; + width: 20px; + height: 24px; + color: #fff; + text-align: center; + font-style: 1px 1px 0 #000; + line-height: 20px; +} + +.eventpass .button_next .reward_indicator.limited, +.eventpass .button_prev .reward_indicator.limited { + font-size: 10px; +} + +.eventpass .button_next .reward_indicator[data-amount="0"], +.eventpass .button_prev .reward_indicator[data-amount="0"] { + display: none; +} + +.eventpass .button_next { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -38px; + width: 52px; + height: 19px; + right: 307px; +} + +.eventpass .button_next:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -57px; + width: 52px; + height: 19px; +} + +.eventpass .button_next:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -38px; + width: 52px; + height: 19px; +} + +.eventpass .button_next.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -57px; + width: 52px; + height: 19px; +} + +.eventpass .button_next .reward_indicator { + right: -10px; + top: -12px; +} + +.eventpass .button_prev { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 -19px; + width: 52px; + height: 19px; + left: 307px; +} + +.eventpass .button_prev:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px 0; + width: 52px; + height: 19px; +} + +.eventpass .button_prev:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat 0 0; + width: 52px; + height: 19px; +} + +.eventpass .button_prev.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/common/wide_buttons/wide_buttons_4eee03d.png) no-repeat -52px -19px; + width: 52px; + height: 19px; +} + +.eventpass .button_prev .reward_indicator { + left: -10px; + top: -12px; +} + +.eventpass .button_first { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -409px -294px; + width: 52px; + height: 19px; + left: 255px; +} + +.eventpass .button_first:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -313px; + width: 52px; + height: 19px; +} + +.eventpass .button_first:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -294px; + width: 52px; + height: 19px; +} + +.eventpass .button_first.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -357px -294px; + width: 52px; + height: 19px; +} + +.eventpass .button_last { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -530px -355px; + width: 52px; + height: 19px; + right: 255px; +} + +.eventpass .button_last:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -478px -355px; + width: 52px; + height: 19px; +} + +.eventpass .button_last:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -363px -243px; + width: 52px; + height: 19px; +} + +.eventpass .button_last.disabled { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -415px -243px; + width: 52px; + height: 19px; +} + +.eventpass .grand_prize_progress { + position: absolute; + top: 0; + left: 277px; + height: 45px; +} + +.eventpass .grand_prize_progress>* { + float: left; + position: relative; +} + +.eventpass .grand_prize_progress .progress_wrapper { + width: 120px; + margin: 11px 14px 0 13px; +} + +.eventpass .grand_prize_progress .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_fillbar_fill_2dfbbf3.png) no-repeat 0 0; + width: 1px; + height: 19px; + background-repeat: repeat-x; +} + +.eventpass .grand_prize_progress .caption { + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + position: absolute; + top: 0; + width: 100%; + text-align: center; + line-height: 19px; +} + +.eventpass .grand_prize_progress .info_icon { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/layout/layout_095495a.png) no-repeat -553px -524px; + width: 24px; + height: 24px; + margin-left: 10px; + top: 8px; +} + +.eventpass .grand_prize_progress .event_icon { + left: 0; +} + +.eventpass .grand_prize_progress .event_icon.battleships { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -437px -132px; + width: 35px; + height: 40px; +} + +.eventpass .grand_prize_progress .checkpoint_button { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -267px; + width: 44px; + height: 27px; + top: 7px; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + text-align: center; + line-height: 26px; + user-select: none; + cursor: pointer; +} + +.eventpass .grand_prize_progress .checkpoint_button:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -393px -267px; + width: 44px; + height: 27px; +} + +.eventpass .grand_prize_progress .checkpoint_button:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -349px -267px; + width: 44px; + height: 27px; +} + +.overlay_tutorial.event_pass { + position: relative; + top: 4px; + left: 7px; +} + +.overlay_tutorial.event_pass .text { + position: absolute; + top: 340px; + left: 200px; + height: 106px; + width: 337px; + padding: 0 10px; +} + +.overlay_tutorial.event_pass .button_wrapper { + position: absolute; + width: 357px; + left: 200px; + top: 445px; + text-align: center; +} + +.overlay_tutorial.event_pass .btn_wnd.close { + position: absolute; + left: 500px; + top: 313px; +} + +.overlay_tutorial.event_pass.step_1 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.overlay_tutorial.event_pass.step_2 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat -756px 0; + width: 756px; + height: 527px; +} + +.overlay_tutorial.event_pass.step_3 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat 0 -527px; + width: 756px; + height: 527px; +} + +.overlay_tutorial.event_pass.step_4 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat -756px -527px; + width: 756px; + height: 527px; +} + +.overlay_tutorial.event_pass.step_5 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat -1512px 0; + width: 756px; + height: 527px; +} + +.overlay_tutorial.event_pass.step_6 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat 0 0; + width: 756px; + height: 527px; +} + +.overlay_tutorial.event_pass.step_7 { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/tutorial_images_8904f9d.png) no-repeat -1512px -527px; + width: 756px; + height: 527px; +} + +.tab.event_pass .counter { + color: #e72200; +} + +.eventpass .main_progress { + position: absolute; + top: 251px; + width: 100%; + right: 7px; +} + +.eventpass .main_progress .end, +.eventpass .main_progress .start { + position: absolute; + top: 0; + height: 24px; +} + +.eventpass .main_progress[data-page="1"] { + width: 685px; +} + +.eventpass .main_progress[data-page="1"] .start { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -574px -309px; + width: 26px; + height: 24px; + left: 0; +} + +.eventpass .main_progress[data-page="1"] .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_fillbar_tile_d5b35ae.png) no-repeat 0 0; + width: 184px; + height: 24px; + background-repeat: repeat-x; + margin: 0 58px 0 26px; + width: auto; +} + +.eventpass .main_progress[data-page="1"] .end { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -243px; + width: 58px; + height: 24px; + right: 0; +} + +.eventpass .main_progress[data-page="1"] .progress_bar { + left: 26px; + width: calc(100% - 26px); +} + +.eventpass .main_progress[data-page="1"] .progress_bar_numbers .progress_bar_number.row_1 { + left: 128px; +} + +.eventpass .main_progress[data-page="1"] .progress_bar_numbers .progress_bar_number.row_2 { + left: 248px; +} + +.eventpass .main_progress[data-page="1"] .progress_bar_numbers .progress_bar_number.row_3 { + left: 368px; +} + +.eventpass .main_progress[data-page="1"] .progress_bar_numbers .progress_bar_number.row_4 { + left: 488px; +} + +.eventpass .main_progress[data-page="1"] .progress_bar_numbers .progress_bar_number.row_5 { + left: 608px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"] .progress_bar .indicator { + width: 126px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"] .progress_bar .indicator { + width: 246px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"] .progress_bar .indicator { + width: 366px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"] .progress_bar .indicator { + width: 486px; +} + +.eventpass .main_progress[data-page="1"][data-index="5"] .progress_bar .indicator { + width: 606px; +} + +.eventpass .main_progress .start { + left: 0; +} + +.eventpass .main_progress .middle { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_fillbar_tile_d5b35ae.png) no-repeat 0 0; + width: 184px; + background-repeat: repeat-x; + position: relative; + top: 0; + height: 24px; + width: auto; + margin: 0 58px 0 13px; +} + +.eventpass .main_progress .end { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -305px -243px; + width: 58px; + height: 24px; + right: 0; +} + +.eventpass .main_progress[data-index="0"] .progress_bar .indicator { + width: 0; +} + +.eventpass .main_progress[data-index="1"] .progress_bar .indicator { + width: 223px; +} + +.eventpass .main_progress[data-index="2"] .progress_bar .indicator { + width: 343px; +} + +.eventpass .main_progress[data-index="3"] .progress_bar .indicator { + width: 463px; +} + +.eventpass .main_progress[data-index="4"] .progress_bar .indicator { + width: 583px; +} + +.eventpass .main_progress[data-index="5"] .progress_bar .indicator { + width: 703px; +} + +.eventpass .main_progress.complete[data-index="5"] .progress_bar .indicator { + width: 100%; +} + +.eventpass .main_progress .progress_bar { + position: absolute; + width: calc(100% - 14px); + top: 2px; + left: 14px; +} + +.eventpass .main_progress .progress_bar .indicator { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_fillbar_fill_2dfbbf3.png) no-repeat 0 0; + width: 1px; + height: 19px; + background-repeat: repeat-x; +} + +.eventpass .main_progress .progress_bar_numbers { + position: absolute; + top: 0; +} + +.eventpass .main_progress .progress_bar_numbers .progress_bar_number { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -526px -309px; + width: 48px; + height: 46px; + position: absolute; +} + +.eventpass .main_progress .progress_bar_numbers .progress_bar_number.row_1 { + left: 213px; +} + +.eventpass .main_progress .progress_bar_numbers .progress_bar_number.row_2 { + left: 333px; +} + +.eventpass .main_progress .progress_bar_numbers .progress_bar_number.row_3 { + left: 453px; +} + +.eventpass .main_progress .progress_bar_numbers .progress_bar_number.row_4 { + left: 573px; +} + +.eventpass .main_progress .progress_bar_numbers .progress_bar_number.row_5 { + left: 693px; +} + +.eventpass .main_progress .progress_bar_numbers .progress_bar_number.active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -478px -309px; + width: 48px; + height: 46px; +} + +.eventpass .main_progress .progress_bar_numbers .progress_bar_number .js-caption { + color: #fff; + font-weight: 600; + text-align: center; + margin: 0 auto; + height: 20px; + padding: 21px 5px 5px; + overflow: hidden; + white-space: nowrap; + -ms-text-overflow: ellipsis; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +.eventpass .btn_next_rewards { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -296px -159px; + width: 29px; + height: 27px; + top: -2px; + color: #fff; + font-weight: 600; + text-shadow: 1px 1px 0 #000; + text-align: center; + line-height: 26px; + user-select: none; + cursor: pointer; + display: none; + position: absolute; + right: -1px; + z-index: 2; +} + +.eventpass .btn_next_rewards:hover { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -296px -186px; + width: 29px; + height: 27px; +} + +.eventpass .btn_next_rewards:active { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/event_pass_sprite_images_8a99dc8.png) no-repeat -296px -132px; + width: 29px; + height: 27px; +} + +.eventpass .main_progress[data-index="0"][data-steps="20"] .progress_bar .indicator { + width: 223px; +} + +.eventpass .main_progress[data-index="0"][data-steps="19"] .progress_bar .indicator { + width: 211.85px; +} + +.eventpass .main_progress[data-index="0"][data-steps="18"] .progress_bar .indicator { + width: 200.7px; +} + +.eventpass .main_progress[data-index="0"][data-steps="17"] .progress_bar .indicator { + width: 189.55px; +} + +.eventpass .main_progress[data-index="0"][data-steps="16"] .progress_bar .indicator { + width: 178.4px; +} + +.eventpass .main_progress[data-index="0"][data-steps="15"] .progress_bar .indicator { + width: 167.25px; +} + +.eventpass .main_progress[data-index="0"][data-steps="14"] .progress_bar .indicator { + width: 156.1px; +} + +.eventpass .main_progress[data-index="0"][data-steps="13"] .progress_bar .indicator { + width: 144.95px; +} + +.eventpass .main_progress[data-index="0"][data-steps="12"] .progress_bar .indicator { + width: 133.8px; +} + +.eventpass .main_progress[data-index="0"][data-steps="11"] .progress_bar .indicator { + width: 122.65px; +} + +.eventpass .main_progress[data-index="0"][data-steps="10"] .progress_bar .indicator { + width: 111.5px; +} + +.eventpass .main_progress[data-index="0"][data-steps="9"] .progress_bar .indicator { + width: 100.35px; +} + +.eventpass .main_progress[data-index="0"][data-steps="8"] .progress_bar .indicator { + width: 89.2px; +} + +.eventpass .main_progress[data-index="0"][data-steps="7"] .progress_bar .indicator { + width: 78.05px; +} + +.eventpass .main_progress[data-index="0"][data-steps="6"] .progress_bar .indicator { + width: 66.9px; +} + +.eventpass .main_progress[data-index="0"][data-steps="5"] .progress_bar .indicator { + width: 55.75px; +} + +.eventpass .main_progress[data-index="0"][data-steps="4"] .progress_bar .indicator { + width: 44.6px; +} + +.eventpass .main_progress[data-index="0"][data-steps="3"] .progress_bar .indicator { + width: 33.45px; +} + +.eventpass .main_progress[data-index="0"][data-steps="2"] .progress_bar .indicator { + width: 22.3px; +} + +.eventpass .main_progress[data-index="0"][data-steps="1"] .progress_bar .indicator { + width: 11.15px; +} + +.eventpass .main_progress[data-index="1"][data-steps="20"] .progress_bar .indicator { + width: 343px; +} + +.eventpass .main_progress[data-index="1"][data-steps="19"] .progress_bar .indicator { + width: 337px; +} + +.eventpass .main_progress[data-index="1"][data-steps="18"] .progress_bar .indicator { + width: 331px; +} + +.eventpass .main_progress[data-index="1"][data-steps="17"] .progress_bar .indicator { + width: 325px; +} + +.eventpass .main_progress[data-index="1"][data-steps="16"] .progress_bar .indicator { + width: 319px; +} + +.eventpass .main_progress[data-index="1"][data-steps="15"] .progress_bar .indicator { + width: 313px; +} + +.eventpass .main_progress[data-index="1"][data-steps="14"] .progress_bar .indicator { + width: 307px; +} + +.eventpass .main_progress[data-index="1"][data-steps="13"] .progress_bar .indicator { + width: 301px; +} + +.eventpass .main_progress[data-index="1"][data-steps="12"] .progress_bar .indicator { + width: 295px; +} + +.eventpass .main_progress[data-index="1"][data-steps="11"] .progress_bar .indicator { + width: 289px; +} + +.eventpass .main_progress[data-index="1"][data-steps="10"] .progress_bar .indicator { + width: 283px; +} + +.eventpass .main_progress[data-index="1"][data-steps="9"] .progress_bar .indicator { + width: 277px; +} + +.eventpass .main_progress[data-index="1"][data-steps="8"] .progress_bar .indicator { + width: 271px; +} + +.eventpass .main_progress[data-index="1"][data-steps="7"] .progress_bar .indicator { + width: 265px; +} + +.eventpass .main_progress[data-index="1"][data-steps="6"] .progress_bar .indicator { + width: 259px; +} + +.eventpass .main_progress[data-index="1"][data-steps="5"] .progress_bar .indicator { + width: 253px; +} + +.eventpass .main_progress[data-index="1"][data-steps="4"] .progress_bar .indicator { + width: 247px; +} + +.eventpass .main_progress[data-index="1"][data-steps="3"] .progress_bar .indicator { + width: 241px; +} + +.eventpass .main_progress[data-index="1"][data-steps="2"] .progress_bar .indicator { + width: 235px; +} + +.eventpass .main_progress[data-index="1"][data-steps="1"] .progress_bar .indicator { + width: 229px; +} + +.eventpass .main_progress[data-index="2"][data-steps="20"] .progress_bar .indicator { + width: 463px; +} + +.eventpass .main_progress[data-index="2"][data-steps="19"] .progress_bar .indicator { + width: 457px; +} + +.eventpass .main_progress[data-index="2"][data-steps="18"] .progress_bar .indicator { + width: 451px; +} + +.eventpass .main_progress[data-index="2"][data-steps="17"] .progress_bar .indicator { + width: 445px; +} + +.eventpass .main_progress[data-index="2"][data-steps="16"] .progress_bar .indicator { + width: 439px; +} + +.eventpass .main_progress[data-index="2"][data-steps="15"] .progress_bar .indicator { + width: 433px; +} + +.eventpass .main_progress[data-index="2"][data-steps="14"] .progress_bar .indicator { + width: 427px; +} + +.eventpass .main_progress[data-index="2"][data-steps="13"] .progress_bar .indicator { + width: 421px; +} + +.eventpass .main_progress[data-index="2"][data-steps="12"] .progress_bar .indicator { + width: 415px; +} + +.eventpass .main_progress[data-index="2"][data-steps="11"] .progress_bar .indicator { + width: 409px; +} + +.eventpass .main_progress[data-index="2"][data-steps="10"] .progress_bar .indicator { + width: 403px; +} + +.eventpass .main_progress[data-index="2"][data-steps="9"] .progress_bar .indicator { + width: 397px; +} + +.eventpass .main_progress[data-index="2"][data-steps="8"] .progress_bar .indicator { + width: 391px; +} + +.eventpass .main_progress[data-index="2"][data-steps="7"] .progress_bar .indicator { + width: 385px; +} + +.eventpass .main_progress[data-index="2"][data-steps="6"] .progress_bar .indicator { + width: 379px; +} + +.eventpass .main_progress[data-index="2"][data-steps="5"] .progress_bar .indicator { + width: 373px; +} + +.eventpass .main_progress[data-index="2"][data-steps="4"] .progress_bar .indicator { + width: 367px; +} + +.eventpass .main_progress[data-index="2"][data-steps="3"] .progress_bar .indicator { + width: 361px; +} + +.eventpass .main_progress[data-index="2"][data-steps="2"] .progress_bar .indicator { + width: 355px; +} + +.eventpass .main_progress[data-index="2"][data-steps="1"] .progress_bar .indicator { + width: 349px; +} + +.eventpass .main_progress[data-index="3"][data-steps="20"] .progress_bar .indicator { + width: 583px; +} + +.eventpass .main_progress[data-index="3"][data-steps="19"] .progress_bar .indicator { + width: 577px; +} + +.eventpass .main_progress[data-index="3"][data-steps="18"] .progress_bar .indicator { + width: 571px; +} + +.eventpass .main_progress[data-index="3"][data-steps="17"] .progress_bar .indicator { + width: 565px; +} + +.eventpass .main_progress[data-index="3"][data-steps="16"] .progress_bar .indicator { + width: 559px; +} + +.eventpass .main_progress[data-index="3"][data-steps="15"] .progress_bar .indicator { + width: 553px; +} + +.eventpass .main_progress[data-index="3"][data-steps="14"] .progress_bar .indicator { + width: 547px; +} + +.eventpass .main_progress[data-index="3"][data-steps="13"] .progress_bar .indicator { + width: 541px; +} + +.eventpass .main_progress[data-index="3"][data-steps="12"] .progress_bar .indicator { + width: 535px; +} + +.eventpass .main_progress[data-index="3"][data-steps="11"] .progress_bar .indicator { + width: 529px; +} + +.eventpass .main_progress[data-index="3"][data-steps="10"] .progress_bar .indicator { + width: 523px; +} + +.eventpass .main_progress[data-index="3"][data-steps="9"] .progress_bar .indicator { + width: 517px; +} + +.eventpass .main_progress[data-index="3"][data-steps="8"] .progress_bar .indicator { + width: 511px; +} + +.eventpass .main_progress[data-index="3"][data-steps="7"] .progress_bar .indicator { + width: 505px; +} + +.eventpass .main_progress[data-index="3"][data-steps="6"] .progress_bar .indicator { + width: 499px; +} + +.eventpass .main_progress[data-index="3"][data-steps="5"] .progress_bar .indicator { + width: 493px; +} + +.eventpass .main_progress[data-index="3"][data-steps="4"] .progress_bar .indicator { + width: 487px; +} + +.eventpass .main_progress[data-index="3"][data-steps="3"] .progress_bar .indicator { + width: 481px; +} + +.eventpass .main_progress[data-index="3"][data-steps="2"] .progress_bar .indicator { + width: 475px; +} + +.eventpass .main_progress[data-index="3"][data-steps="1"] .progress_bar .indicator { + width: 469px; +} + +.eventpass .main_progress[data-index="4"][data-steps="20"] .progress_bar .indicator { + width: 703px; +} + +.eventpass .main_progress[data-index="4"][data-steps="19"] .progress_bar .indicator { + width: 697px; +} + +.eventpass .main_progress[data-index="4"][data-steps="18"] .progress_bar .indicator { + width: 691px; +} + +.eventpass .main_progress[data-index="4"][data-steps="17"] .progress_bar .indicator { + width: 685px; +} + +.eventpass .main_progress[data-index="4"][data-steps="16"] .progress_bar .indicator { + width: 679px; +} + +.eventpass .main_progress[data-index="4"][data-steps="15"] .progress_bar .indicator { + width: 673px; +} + +.eventpass .main_progress[data-index="4"][data-steps="14"] .progress_bar .indicator { + width: 667px; +} + +.eventpass .main_progress[data-index="4"][data-steps="13"] .progress_bar .indicator { + width: 661px; +} + +.eventpass .main_progress[data-index="4"][data-steps="12"] .progress_bar .indicator { + width: 655px; +} + +.eventpass .main_progress[data-index="4"][data-steps="11"] .progress_bar .indicator { + width: 649px; +} + +.eventpass .main_progress[data-index="4"][data-steps="10"] .progress_bar .indicator { + width: 643px; +} + +.eventpass .main_progress[data-index="4"][data-steps="9"] .progress_bar .indicator { + width: 637px; +} + +.eventpass .main_progress[data-index="4"][data-steps="8"] .progress_bar .indicator { + width: 631px; +} + +.eventpass .main_progress[data-index="4"][data-steps="7"] .progress_bar .indicator { + width: 625px; +} + +.eventpass .main_progress[data-index="4"][data-steps="6"] .progress_bar .indicator { + width: 619px; +} + +.eventpass .main_progress[data-index="4"][data-steps="5"] .progress_bar .indicator { + width: 613px; +} + +.eventpass .main_progress[data-index="4"][data-steps="4"] .progress_bar .indicator { + width: 607px; +} + +.eventpass .main_progress[data-index="4"][data-steps="3"] .progress_bar .indicator { + width: 601px; +} + +.eventpass .main_progress[data-index="4"][data-steps="2"] .progress_bar .indicator { + width: 595px; +} + +.eventpass .main_progress[data-index="4"][data-steps="1"] .progress_bar .indicator { + width: 589px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="20"] .progress_bar .indicator { + width: 126px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="19"] .progress_bar .indicator { + width: 119.7px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="18"] .progress_bar .indicator { + width: 113.4px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="17"] .progress_bar .indicator { + width: 107.1px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="16"] .progress_bar .indicator { + width: 100.8px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="15"] .progress_bar .indicator { + width: 94.5px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="14"] .progress_bar .indicator { + width: 88.2px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="13"] .progress_bar .indicator { + width: 81.9px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="12"] .progress_bar .indicator { + width: 75.6px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="11"] .progress_bar .indicator { + width: 69.3px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="10"] .progress_bar .indicator { + width: 63px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="9"] .progress_bar .indicator { + width: 56.7px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="8"] .progress_bar .indicator { + width: 50.4px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="7"] .progress_bar .indicator { + width: 44.1px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="6"] .progress_bar .indicator { + width: 37.8px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="5"] .progress_bar .indicator { + width: 31.5px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="4"] .progress_bar .indicator { + width: 25.2px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="3"] .progress_bar .indicator { + width: 18.9px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="2"] .progress_bar .indicator { + width: 12.6px; +} + +.eventpass .main_progress[data-page="1"][data-index="0"][data-steps="1"] .progress_bar .indicator { + width: 6.3px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="20"] .progress_bar .indicator { + width: 246px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="19"] .progress_bar .indicator { + width: 240px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="18"] .progress_bar .indicator { + width: 234px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="17"] .progress_bar .indicator { + width: 228px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="16"] .progress_bar .indicator { + width: 222px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="15"] .progress_bar .indicator { + width: 216px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="14"] .progress_bar .indicator { + width: 210px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="13"] .progress_bar .indicator { + width: 204px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="12"] .progress_bar .indicator { + width: 198px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="11"] .progress_bar .indicator { + width: 192px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="10"] .progress_bar .indicator { + width: 186px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="9"] .progress_bar .indicator { + width: 180px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="8"] .progress_bar .indicator { + width: 174px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="7"] .progress_bar .indicator { + width: 168px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="6"] .progress_bar .indicator { + width: 162px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="5"] .progress_bar .indicator { + width: 156px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="4"] .progress_bar .indicator { + width: 150px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="3"] .progress_bar .indicator { + width: 144px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="2"] .progress_bar .indicator { + width: 138px; +} + +.eventpass .main_progress[data-page="1"][data-index="1"][data-steps="1"] .progress_bar .indicator { + width: 132px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="20"] .progress_bar .indicator { + width: 366px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="19"] .progress_bar .indicator { + width: 360px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="18"] .progress_bar .indicator { + width: 354px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="17"] .progress_bar .indicator { + width: 348px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="16"] .progress_bar .indicator { + width: 342px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="15"] .progress_bar .indicator { + width: 336px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="14"] .progress_bar .indicator { + width: 330px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="13"] .progress_bar .indicator { + width: 324px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="12"] .progress_bar .indicator { + width: 318px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="11"] .progress_bar .indicator { + width: 312px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="10"] .progress_bar .indicator { + width: 306px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="9"] .progress_bar .indicator { + width: 300px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="8"] .progress_bar .indicator { + width: 294px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="7"] .progress_bar .indicator { + width: 288px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="6"] .progress_bar .indicator { + width: 282px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="5"] .progress_bar .indicator { + width: 276px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="4"] .progress_bar .indicator { + width: 270px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="3"] .progress_bar .indicator { + width: 264px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="2"] .progress_bar .indicator { + width: 258px; +} + +.eventpass .main_progress[data-page="1"][data-index="2"][data-steps="1"] .progress_bar .indicator { + width: 252px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="20"] .progress_bar .indicator { + width: 486px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="19"] .progress_bar .indicator { + width: 480px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="18"] .progress_bar .indicator { + width: 474px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="17"] .progress_bar .indicator { + width: 468px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="16"] .progress_bar .indicator { + width: 462px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="15"] .progress_bar .indicator { + width: 456px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="14"] .progress_bar .indicator { + width: 450px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="13"] .progress_bar .indicator { + width: 444px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="12"] .progress_bar .indicator { + width: 438px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="11"] .progress_bar .indicator { + width: 432px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="10"] .progress_bar .indicator { + width: 426px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="9"] .progress_bar .indicator { + width: 420px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="8"] .progress_bar .indicator { + width: 414px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="7"] .progress_bar .indicator { + width: 408px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="6"] .progress_bar .indicator { + width: 402px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="5"] .progress_bar .indicator { + width: 396px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="4"] .progress_bar .indicator { + width: 390px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="3"] .progress_bar .indicator { + width: 384px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="2"] .progress_bar .indicator { + width: 378px; +} + +.eventpass .main_progress[data-page="1"][data-index="3"][data-steps="1"] .progress_bar .indicator { + width: 372px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="20"] .progress_bar .indicator { + width: 606px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="19"] .progress_bar .indicator { + width: 600px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="18"] .progress_bar .indicator { + width: 594px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="17"] .progress_bar .indicator { + width: 588px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="16"] .progress_bar .indicator { + width: 582px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="15"] .progress_bar .indicator { + width: 576px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="14"] .progress_bar .indicator { + width: 570px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="13"] .progress_bar .indicator { + width: 564px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="12"] .progress_bar .indicator { + width: 558px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="11"] .progress_bar .indicator { + width: 552px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="10"] .progress_bar .indicator { + width: 546px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="9"] .progress_bar .indicator { + width: 540px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="8"] .progress_bar .indicator { + width: 534px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="7"] .progress_bar .indicator { + width: 528px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="6"] .progress_bar .indicator { + width: 522px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="5"] .progress_bar .indicator { + width: 516px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="4"] .progress_bar .indicator { + width: 510px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="3"] .progress_bar .indicator { + width: 504px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="2"] .progress_bar .indicator { + width: 498px; +} + +.eventpass .main_progress[data-page="1"][data-index="4"][data-steps="1"] .progress_bar .indicator { + width: 492px; +} + +.sub_window_activation_popup .background { + display: none; +} + +.activation_popup { + background: url(https://gpfr.innogamescdn.com/images/game/autogenerated/events/event_pass/single_images/event_pass_activation_popup_bg_5aaadcd.png) no-repeat 0 0; + width: 508px; + height: 364px; + position: relative; + overflow: hidden; + text-align: center; + color: #fc6; +} + +.activation_popup .content { + width: 80%; + margin: auto; + height: 100px; +} + +.activation_popup .content>div { + position: relative; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); +} + +.activation_popup .btn_activate { + position: relative; + top: 110px; + margin: auto; +} + +.activation_popup .highlight { + position: absolute; +} + +.activation_popup .reward_0 { + top: 120px; + left: 110px; +} + +.activation_popup .reward_1 { + top: 120px; + right: 110px; +} + +.activation_popup .reward_2 { + top: 155px; + left: 40px; +} + +.activation_popup .reward_3 { + top: 155px; + right: 40px; +} + +.activation_popup .reward_4 { + top: 190px; + left: 110px; +} + +.activation_popup .reward_5 { + top: 190px; + right: 110px; +} \ No newline at end of file diff --git a/src/main/resources/static/images/gods_temple/aphrodite.png b/src/main/resources/static/images/gods_temple/aphrodite.png new file mode 100644 index 0000000000000000000000000000000000000000..e4c7933f59f40d6ac192d64e5d3ba7f889e1240c GIT binary patch literal 99045 zcmeAS@N?(olHy`uVBq!ia0y~yV0g{I!0?8Hje&t-Dt}-u0|Ns~x}&cn1H;CC?mvmF z3=9kk$sR$z3=CCj3=9n|3=F>*7#JE}Fff!FFfhDIU|_JC!N4G1FlSew4FdxMTavfC z3&Vd9T(EcfWCjKX_7YEDSN0cdT%3X`+e~jAWnf?sNKW)CV_;y>VqjqU$-uy<#K6G7 z(CgM8$-vOS;OXKRQgQ3e-|{W_H$(4p*FEF1{`08w`<>$CyQe}Yc?k(|csBGhG#j2| zd)(rDyVt!rw<7oQx9YlW)jfQ5+kVfiJI~nMd-umfmi`NDIt~pUPEMUctCpPFp0`hZ z{%7v$_gk;MvA?!Yb@$urdC^Quqmt(ozCXGD^Y6DiugBc~$vZ9ln)Yk^nEl*8vJX@~ zkP&EHS6`jFcT-&Ce8<=ItRfzN_jBE0_^0?m^?=p`#-Anj7eMN_S4SrB?%=jyo#FqT zx$0-5WODBb<7*P7*H)Rj^%`m^X(^R+l{5Zf`7reWTR_b&`S04Vr+!@-!xq8#j=iqM z|4oF}q4LSxKQ8a$NHgO5`hn0pwK zRIHM(SX&GJ$WDE@uh?kC3h#bF$IzEaO3Pesv+kOavD-tMDc9r343Aj>Pxl^(XS{b- z`}ytr)4qCb{AZ@y7|eBFUFm*K&x5rGBbzsyiE9glzI0MK;?mK%AN{zp$`{|MhtbJ^ggF(=hTBU1Ld&+A!#}Q{yA&AE{azVQ+f61R$KjTE1^s)XlM(c=7o}b-)4A2R zjJrg!oV%+oVye8;*LaOLpS>>r3tu1J^>uOtli0+~O#h7!ncuzXx%!ZyhRxw!2?1g~ zTIVSw8YjZ-%P1a|=r}uE0__{CeoHE6Ft5*4}xEJ=zc1FCnX{%pv5c+AF z*8jM<+FdFFv-j(<9hEvcd;J9Y{Ff5ps@acct^GKoH}h;pP*8_*lxy@-Ua#G6EM8je zx>9KJKEh0Q^R}lymOQMuS8!?D8L^!m({tS~v)$TvHrzK{^ylvb`yIY6bNW%Tzixi+ z>#0e9*GDKtIG)q`(;&F-n3VHF-Oz`UQ|1MR8m#hmo0=Xn-N#LIvE#udIvQ(^S2k;u z7;btImDYV?QD(+&58+~I&;7set~}N8P5Rl~MWQ|`|SexkLOP3=P3q?3)1@P+3sxh;T+_ok6xDHF2 zx;I}s@A25f2OmzVyj*z621k3TmQw(4!A1&;Qzu8`y1{B)&BJPd+OKuHQ`-f z_a}5JH03bX$G7C4bba;7FRIF|^xz7unS9=D%}rNVr5Wi&%JQvXpLR<;#4?eBr2=y|S!8q?8urVcc6Ew^62N+_NWHNYRw@F{|l?l|fyKuC8ko*aD7b=mnVW z=~3J+IEOL4C4*K>~$o>K1$5t_nh#kyYL zclce!6^1UMYb0_KHF}vvcL@|`d4v^goiL3vS7_O`B~vb%V8H;%aWV$x&R z;}0KBYIZ&R@ssfLn}-*(9zQ+p=cd$cIn@SQLX+(jU;J0qwC{Zt6EFGwkNS1(qrdiV zblITviQ~ijH7CB!Eh~=@?OEM)aY2gJika73^)3V+eYGMfVCot^@3vIWr#7Xz8rQlD zG;FO5_7QALa+s2Gz(TQ9v;5>SC6^GN`(@lGIa{|uh<*3=6}5QqPwkMgs(k&ds1Dos#a1_%Z z6ciKJF3e>%j7s9^5MRMNM^gF9PioyI!`Zqs%X!rm ziwZU*ENpx{nf3Q^ZoV|{Z|UBB&w0C3uj}4=knHtd_~GtJpAti3>vpYgKfmN_=JO?W zYP!lwZf8^T-TRvrp9ch?(Dag&vLiX!!xfs-cA*~9W5NDW*Yr?*44n1 zOV-U46P@~b3bXe@Cq=Pr-fNK?rfDQZFJ0w*B+@4+>2{!nx53Xn8EcO-dMYO!=w7;k zO^|)ohHFW^t}YurC#XzWdRQUir1kpHll!?3GN^H~EHx2}=k(N>B(j`osl)aAyK~)U zuHC+6kww0t;G`xN$75__Oe$RI9J&f#FJ;_VpYt{!TFB}3e8xI{iD`Wo7cAH`%`sDx z+x?}^y~rLxfsKFvR9LV4m)Pj%Vs}RS%F*f9pZ`6lb!htPPwBlA^EWH4=6e7A+&xnr z+sTf0-F|JR*^j$=KQ>HFJosuunw5l+q$p4J`6FT?TaR0NzvNL9ouQ?W6i`|*+dt8< zLFB@M8H)~7HLkdzYSkO@+;ds;i%%Dg*(SZ_pLtNh?$Rak9ws>xm!>9jK1UDDJBfdl zq&Pe`9(y8d%627fV*hppv0eXKZd4jITrr=o)#aEGyvUPNpKXofGfp?BIqaWe4^Egi zag#}e@|1fDX8$8UFIMekRBubYem>zjZ@0ir>&zXs6=(iEoHKW^>UREgnJ>HFbKsE5ShlT@Tn;&1UiNh(73DAh_o8bWhiX%;}=5m?jBzmYfz-m)p4D?;Yc1 zEN%xQla_l(|9Z8{xQMewWd_SyjyArneM(VM$`YL~7BOcFPX6@1yh&=IOU5+aR*5Ul z83!T~uc=0;EMb}By4yvaQ&=}ESS`LoRVPX%GD-T=^=V>{MOU+3cRO<-V3j~r2Wv_0 z0&gzOi)^Z{PZP}2Z?b;tpZ-Sn{LWf~$G;A8{&wg6tzO(G&a2)%&GqudR+pf^mV*Db zth)E3M($(Hy=@1tNqoF!qoh>7@54EsuBO1)4OXinrLWJ4lPylGJ$3V|VD##rxz$!l z#kpq+A`G=wp9v7^mY)`(T%j!@7n3IZO*cc$K}BRETcK;3l4sM>N4btq6;+R}2&hnu zbUhL*sW@>%>%pB&&vh1dOFS-6J0HEa*FrNSv6w3xlVIZA}lx`8FyScD=emH zQJ~4}e>`wwV~yTcwxlBw-J%9+i;pd2T$HpYL96*}jO!w{Co1)G*XnHhKXapR$My*# z+5r*$-^G#_eBpclxp!>=-`0dlu4^95Jvj5se6iy8lWV@KUEQy8B3t0+3J%_xj9)85 zcg&xD^wnC;qaW@|8roaw?3KK(s=c`D>&1rN!n5CgwY=@+Ouu$)PUPI8s@wz5QjVNj zk!GVaCnLL_>|^iF||oE6!gfyS&Gw}d$Ceq&VY z#4_hWNQ8-`h*7I!$Y;@qygEXh2FDh72F{)tcr7h#ip4>-W^I{m`g{C>*iLYLh%=Zg zG}$3tL#x@TAaOTk+8XB>jt&a>v{#v-Ph6wxdEES#f#0qUrOl+ulQTOzR8!?#xsKFL4`!b<#Yt!G$wv%^7nU`2CWIIXEp<{_ zU3IGQ!qN%z<7|o;o4$+1-_X&1)2|U3rJ-{5dQ@^(o@or?0OD_J3H%b7NMY#a^o?XP$8_5C8n%e7Ue$IQyC_&Tjh> zY`%q@dltD;aF4{Av*Ia=lOi2hMfQ4ozx~8qrmSfvRnG=lvO1s2oi8y* zLPlY#0&hifVB@8zHK8(W6FUwD>}<+#D5y|hFmp}9TE{hqL&O#(>~hgqFoj9@py&cE z7S1h>8(W>NITRPHn!yqjG0B5}5~m)g*ukpq(k8A7_JyG)8t0bH>z*@#LuA?#FD^z? zw(0rq7Ns2$YrbrbYFzbU$04P;N0T(Tylqd&x+U`LE4UHIpHr0>*zTUc~?6YC}l8)v6iaIe_}CU z`>3{ABBsgj)10e}YVT9FiI_0Do* zt#j%A+;lK;vg_QWCPxE{>D_mawG=W<`gH%vFZ1LNY;(+aun2fwTX4F?jNM=+wPB}GN_OgzYp*7Jel2`1cYRS+ z>7i#O2TrX>DK$xpu~_AJa=`}+!AWXt_maHYm)zO3>rl`Gqso8hV())j(5Ep)Z-4&p zw+Ftl+%-FV_!#Fhmdz~MO%lytoeVWL9!uP-aMI~QOiix;4RKek{_TA!I%+N{l7_E7 zwhA15G&yOJkgJEA;l$~T^M39*T5WW4kx7ZBu#Sf4WF9HrM?4XZxoqcpOe4}SOxe)t z>~!P^&)HRhHL5HuSCV4Y6x}BqoJ%s@zWdcdg$!{)me;b+&V5#!lwTIN!ENQ@!nOTjYNCz*Eb=QqyZyjVIpMe9Ru)1SMW3ZAaei;xao z)5kt1PIBWuqm=5>6EC-lUR##j7AL{)-L+_e$;<-}_A2{~?%tk3e{urA#r?Qd4m{(b^uvoie{W8jyH|2M|MNFz z#bmy0Ir`Z3@S>L)&LPU5Jc4SCRR7L-Bwp{g_297+VjpH7J5e6my8gI+Fl+mqS$#L- z6G|Q#O@Y(7He$jh*e5;#IE=Z~k+H5JiX{*_@ zGp}ZBUM;-s`tdol_-@YVi;%v~!{r`W#kS8Obi=VAtAiE(p*zoo&~Fn0CBH&v1^P;W6dYlFcu*`kK-VAAk7J z@T_9`-nq(Y$G0;cyvE$tdYI)!#!IK;2~Q#;?>=houb=UdIKOihGg9qAtfyP8Z=M+jCrou03BPq8IR8ab1&Aa(Y%w&)kM>jZ=)IPg!)& zVyFy0b7mC}Te6|bOWwb#_dROtR!*woS}fY^_<^aHW9m-kBbvNT-}&CNavf~dQQV~X zh`V{MjhW`XG}a5J`zHRaaIaF|G2>G7tiyl?B5 zN_81tuVtktUsW7fd9vZ_$q8$>GR|%m)V|y`HSlbS)uIh;x4!G@KQY$iROfr`P^{lJ z%foQSrk@Y~-m%(s^3#(E7u15RlPil(hl#r#xs2^O8?1C`nckx z(x)rBmR443$6T&&DS2yj`npqsp?%`}XL7%f|JLd6bDVOpfR(32u&40HrYA4O=RL1T zpKkwyec#k-{d=dA{&%GAb})T1-9(i`(5pL0VWqRct}BA+x`HIqTxY<9$wDYx?{-%d!^nWP))$)=JPJ*zKf$2E;rY|c)s zPNxn8Z};$+n9tTdx$T-%lJvsRsMRcivr-S&h|Or9*1YU#LjB2e4||#?-w}E*t8Xzw z-*Q%JU*YYeuiYw&L-x+Oq@FGP^JVP(t4Ck0*}3GDes#JYpV#>vdNcX7mObveda>ba z;n|ljCwzT5q4#9R$r~GkcqM(a+QK%Rd${JMzJt5sPS(xm7Wle!oOmU&(tBFw$$M*0 zZ}B~3dAPzNr9OXpn%VOQ-*OH5t{Oj|acx?vxFm0u-o5Vz5v-v}*A1feX1tdzDB0wG zdCP*zyvQG264tlO5_*=Fh;IM>eaFvBqGH{BW+oLIZ@io^Q978T?ysDh z|MOS=!-ws0r$4=DFk?x&{xHU#FNoD}1)EBfz>AI}lWqLp#yG7xES0z~X3`qvV;+eu z7s{4M7_B~)$`$DFL9uE3mfW;|(!mQZ2~K)Yz45m!yVTi7b9~;hzi3Q9kvmuL!UT>m z1Kkn{AKtf~r}vzFo<2XHcZ=ue&mzpn6*t7VrMc_=RyXFG&bynv_*>tzH}iEiv*ho4 zQgQ9Vmb*bcm9;)EXP$pn{3bnhqm**e1Anbg|5tGxU!fHt`PGm2Fk|*)#^uYL&8p?^ zOno`QGuCjO?BRxN6H|H^jZTN_l$bi4U{B8==U6F1tZ z=~&O&pmIjMMDxiIn;ZM+co*t6`WD)Fj#=$mylsC8#)Q!jdh$LDq?qJh3w-HZ8m?rs_((?8z4=E~T&L9SS;&^(>f-%E=<89_D^hJ&1(apit`{WX>1vp#s z8U;^h*qq4wE@gS^_VXVPIP_ID%XE_6ua}f`ODeivyS6RjZp86xeU7#X0lhDrlFCY& zKDM#TS9M%|e*Sa!`x$(CXjn{aW+!QiZ-r%KB${BpkLRsaa&25q9k6mU9 zRxV^-^F89Z<`DtYZ#k=NHWkj2)mZbTI5>Yo7^l{Wpg`_@1(oVoTRxiomc1Xi88EXW^43gr_+MKU$ zQLJ6g;m>8W_Sa4K1wYnkg{7a>e6aG+Zueu&O?A%K4mNuc4gg>TRwIMh8Hu{mT|MCPYGi_{Pr`?xxPZz-tT>lK(%mGi2%W?~BlzRuTPa)^+NlO7V+0W2kXWY|fVBA?prw9jtU--sXC_pr*!&$LpbX z&)M*sCA+vZH|*Z;T)gK1Kby^$57{q$j{mm*z&LOJADeq2bF8Zwul6kvT;$B7G1I<> zYf+cV(r7mmm6(?+_qeMlAD{bdV}EA!q^mj= zysp^1Qe=g?wZ(bDbQim7B|E$9uB*|XtwQImg{DWckVpCY3AiK%$tA8te$p-<<(cyIeHew4{g@}ex!eV&i?k2 z3a8(9lF#JdRnX&$JSG-Bg@-Nq)hXdyeT$oGIb^#hCqFx_`gw+dZ}-aVIcq<(9<=sP zv{BT3>EwKQtHss`Y0g-0+gU~$>`O#m%wj#eDcNf7hT4ZV2M=79uWt$yx}ARhiFA|G zm!Arnwq@1rpI)dcYFTDzx%Q|eHJ#$f<$1t!Eb4;GrH0RDpW8fHlp{M`3R_swd>$=?GfWV~=Ge4^z0Wb-nCwkz7d|z$mJnaaO_c!`<#Qk zvP+9w{ES^MT65`?PQCcZdfw?(3sy~DQnPr~ztjh-U7ze#n*X!p==mQ>XEz0ZwpIF+ zTz>0b@MXp5)y{tF`z&|crB&A+y7sGM?Nq_nlLZe~ompUTr8PZ3Tq6H--cz5lk3Ni# z4~S1&^u;8%+uC-igy@yD7M|lW@9sVNblm>jWci;QyQ_b<=xws#EXh6n@So!J`L%4p zSJ$k)X7lIQ^^eE4*NU!_+O(%~?$O@q9j+$}K8tKywetAup4X0UsgpNtD(w3DRW!|) z;pB=BC(kjSPCI$=qT;b=uG!sDdxNfPi-dNzdH4uE*Ahv+soSBsX=j~Oyr{|BITAw0 zqSPiE9xXU9+27{i$E1_B{ClLf3Yt7@QjKynX(|>__V^ZMB+;|6a>}C?GZmYzif-?= zjwGLLwG;oz%sRj6W^ABp@SL@RL0%I?l-aU#w%LWAHCw4!Ji$3&LW?<@Yv#$g;Eh+O zufNc+(1n9Zh-sTfV9S)2RVE_mChS@xUZynV-lizau2WxFbuA{hif?(HNFQQ<&&R1dSTf?{)2%=xl9gzqNfgqht%Ka_2nF(H1sa z#vJyl>0!!=1Df0PR-USn)9!6J`?za@Qbcok-=|6}cshg0@WpO=1ftB+s& zq8V!#`SvJmOfIWwp1bBv2ymYh3zZTzIi z4=VbnOi7IVdbob+8n3Q>q4UqCWf=LiDR(qpV0(6&t!G1JR`=b#vUQK|?myMczkePh z>p}OJfTR~E|NqUoG)*qJy2o5)`4ZPdjMq~CKbqmBrqrRDb?toGh0~L6Dz zCMzPDyM3GebT?PkiKmTbPmWsl@Y591I674@TX-@9^v98V-)fQ!bfDC)a7Ll&jyh{_p=3 z+nQbS2mW6xx|YNIUUN_N=ahhNS~COVmnd($er!&(d~sFjoaf693zkM2ZxP#QP+-4(UD&$k-RU~&KTS^X~lv-_tigPycafeU0?jgx0&-=QqwNU6VWaScj^qy2tfP=lT-sT!d%6 zX-JUGy}YUXx7G1>cMi7KTrD}*-qyC3{{4C0B8f}nn$c|2ExQsT`ZV^cFL4R2Vr!mt z@)g(Vo1E(1lCF`@jFk?Ze5aQiQS|DH>zPEK&ywX{`IakH=ep9vc+MhOS9&Orl?z!0w z?`tQdX7@hd^V z;ML08uB*q~kSI>eJ+ktu;p)STj}tv(C0?C+xc6vezeRwj$PJx}m;OQbL}mnao}KgZ zm>U1zmH*kwcbwj;J$+~CSJyuNZCJG*?1fUfQ_m7LIoAQg$D zj~4WLcpTZZT(Ye4L{j&r{tp{wZcJ%iFq21do&4d9QyOcSeVI-s#LkOXZVGodU<_n- zEOaev_6Up=x-jGRbL#^E7g|1duBcqIEoMuHg-ifvLhBQe%Z>hG%3Tr%XZ5f}pG>xV z&$F&*O6{TeP^(i)uN$~uJA8WY>-oLca6ezk{7ly0lA&vkb!<$!H|@dQ!@E9cAD(sg zs$%qN<#TI#Eq5C}eDiC@*OL=2UlzO^$oF?G*TPj=drlwOb}99?Z?>*hS6fHnv=kZF zl`T)3s#52kUH@PC$Wz0N(;A$+e|p9 z)*PtV;?wnkagnHrWKho%CylE@B0Xmlrf2fZb=x2pFSb+FO!N7-DHECkq}<&Pl{HMC z9vwY-r$Wks2#wfl52v**)+wrp2(4OmkN=dV;>ryfyUi_?_p|L0Ncz=dwY%<^$ZAu! zIfl_%zoZwh(zxa>`SxzqYr*^b{>IMlyE&^zve%~cr3QDmHd~~^+Kt!Uza{0LO=!1p zoSY)g&O4*($hGi#+Y;TPg6^Be{e=~qPXGDPB0jIKQR2A(v-@uLH+Szn%&2s*=8mk0 zO`q~@-|zQ_`Q1x$51;(gv3Rer&#cQ50=+w?h#D^Y5R!VbAhox+eD3kFEtF&SS8_j3EUlfIcJUGWye%DTa{M+ee(;vr>AF$m%m7j4b+LQTJUwk* zaaw$Tr>pUDZ_dl9C1y$Pf{&DPxbN8s!pQ zN?c~umXT+brEh<=Nt(WQYN$}|?j}FIOq{IAvMccenqCDK)-)}lyOVv}2^^rL{`+l&+Z~w+rpZS)% zU#Gilj7sj=T*QB3zg*bAd0$U9T&|s%CXjjLTh%#UTT@A6$?CS&#UJK5ZNA%CZ)tiX z;YW*cywJg91H1nl4c*M-t3)r!E;_z_=iejll@DjC?W>6*3Czo{?5LBb8l(y z^Z7q4!u9RXdi&cSpDMn7jM&X@BSGhX*Xd*Vg3cUDQ+FzRvdiy>oiA zU%$TdebsLX-|H54?mvI!ZN2Bmm1LHWKI*KWZ_Y88U0kx^c=o;zy*zEsal1Y-`Pnol zx@IuD=0?h?Uh`kOV3Nfx`z5Q~uPmN*gLU5iUqZKEr$@-Hy(DYC;$lsnzoD>%%Yn%+ zT{(MBKE2-JvN9ppakZ?PF4>$dY_?4K+HvJ$TLY~6Kks$kTW)b%_*Cy{nW&R;JEfH4Y?qlyoINnv zZ@JDP!KoG|Dmj6hx7GFqFZbVUHFwjdolOf91f|4|7mK~+jLlh?y`wU<|8x2Mv$OaA z(f#3gc7e{uYlib>i#F{)eD3UQnRjoJTqSwEa||E-@}6G##<~CFq2u$P%~ZEPl)vxw z^_^8u)fRvC-S@$JA4@pTjop>qRY4m|v!n&$svf$oi@%+0BU$jV@pr`RkOWcX#`JkR z&OJ@<-&vS?aO>>z#lL@r=H0*dcy-xL`Cc2vHW3JtxeYh|V5%GvFDx?+=C&h$I` z_8v|!S>`M2-md;eM!)j4biDuUw3{MlU3#Pz^*Zc(agoJ!o2V#jG{@T0bK7s`q(J-si?%sNCu zFiFUyA!4b7Sczhy(#)u-CebG{{>kn$ka+G{J7bG^-zBM2w;uV_pH*4PJyFet&u?0M zoW<|vRWj}8C*=LO9JS`!j7t*xTql^ z5Y^W6ZK+8`HVYFzTR3dG+a-8bDdVHW{EhXGd3;kjbtJ--PaR}1j#+47ni|3H`PT6B z;pDD^Qyylxn9nb+e$Tc&?@e*RTek4LGM{U$_rGq9_s!HjZ~s%ozwXOpn_v6Be|oZ5 z{?SJM`YGaazb*RhziOPXeZ#qKPeH46__~6s;^sv%iKn_mnEY#YJZ0Wr*Sy^R6QkV! z7wi=eCjPE`!khnaY5)EXO_}HKcZ%yzn;pKs=}&&?-QO}}ErDM9Ps$4ySNx|%-u zxI8{3{e6pm?d$0qHtzF_6_2Ir%-%EJ^7TD)rOi7<-o)%b z_SoO%cJ@4lULHF(DJ3l=tmbt&{*qav(lV|gO-&fUYUVk(5TDVnNyw#IaljR-QRM*$P zo?iI)7Voa3J-_2VONF#dpI6=09KBsYazkyJcC*RiNxR=|ytC^Q)9Tr#>#Hw|UoZ>* zv2(t~v*!2z4eQ=tuh(4}xhY4AkKaE+PBt}f{VyFe_n!~g<)8jo@%VfF-EiaEdyne> zd8A)h`n+NOzn9xL?=GG_b*rx1VlJx-_b$%A;Qio8!q(?6g)ZLXatkfG)_XSY;4v*X zp@S7!`NbY4f6q?Q>FSp%EI;x&MShilvR2oT7IE)M9XsAQyWXEEEjWqeqRWymM^6bX3xNx#iOJoSmuC7I9n3tF!C4p8iUA zGXImQ8J6zL`z!n2P5rq%Uf0x_w_P(j`S8uFj?2rB&zakIBSvzAk&b3ND|38;?>9lA z$A*)1O*XIJx^Tl!)-6vgS7|C9J#wLXSK`rN|GJiM8S^*EZQ8ciHL^c5|Gkm5-2tBP z89m`MW#vDeIX=H}Tk;mGM=yTN*eh+#(43o6HV2Qf1l_vYePhjam$tCWiRGVvz}kB z+*K&)dQD>j)55?j&*fHgKRNJ9BjCw#uQQL;pX)61mVDE-(tLx#3JyobB@Qo?VwdaO z>T90-^mEx%j%sC-YvUQ^*vyNIgqCrTpr=5SV3fn-= zxqK39at#Y*&F5A3ec%6l@11>Rlhfx_O)CHQXY!sOhf25knns0XB|2=v-?fl?xSm0Z@+PO=do`8xMVx~ zhrRiKmEP6;5GuFbac*a~srdV1pDs!J-^SrHbk~2Jw!K#K>>r8s6N|s!J$=;swod=I z9krhsLJwXMow}ZL*8(YDjRKor|BhFjmA-$Z2H)AWwY%c@y?2Jq z4;%g-7JemC`A1p);l_U3lg0XbU8Y8fy{de0Z+FJk4=>u+8AeEcdYWG?+&z~yN$H}- zvp$ZgJQA7bIgE}8n!aD8))?yjfis;+XzC1}ES{`gGTTy(Y%kt@_>#-EH1Or3XYWp= zaC7ZVF38JqTh^?&b4u&~*f)h;EuJ&KOt6&Nw|%X_jw#2zSx%~r9?f?1V*YYh9dp9?;ykE=p{lcpqY00ycMYe~x z=d4fdd%yDGgsYincbqHUut?{l+5Q=e__}PG0*x+dOsfk?-Z1O#HxJ8o7ov|(o<9HS zj~^0>26I9rT0LWp_r1?MQ^NYTZ|C1Dn{7UB?Em;L{y*=$KR@)!WA8lb|9><8iT3_C z+!fD0rr)?}|KQEe;yb11YkjVt7nsI-Ys;LyuXXN!xLe=3{NC5HY5F#&R(@W7V|VS5 zqIn0nwiWPb9Y1v}QZ4x4@gttwA9&ZjpZ@vR^}Q1x?no+qYcl=a{sYSK1zr66e+RCM z+kfu${tvxdx>du3vTr|+h_!58uXOro(`)_M)ZE(cg9RtPN{3q(e^gq2J^aT<`M(VO zwngHz)3xUPSgYJ5GcjsM)myDl)0EF=%>3)W6t3I*!NlKY=keavZOyXHVSRU9565L! zd^)+@V&-A-y$|K?ePCVxbVp=Eii_#Do5z;fvnN&e<(``On$2J3*+d`tzy*GViVuqz z_-7ee9-Z+y3!`XoN8#m~A~Xwn>%)vBkaqNeg}!SfrOC)2l>yB*|{ zS=l}FmV~mQ=C&^#Y6g{cvvcyEHh+7pAvE`-5}WGh>AM+Xd30_cIC%1tHdlIm#?7|o z^W8~b&s{svAJY1J($>PWE2j!ZXDgpu(_^vMEHzuTT6t|xwpyyIWkJZf$Dh7+J`z~$ zamprWVn=CYQFMT$fA<5ajRM$Zjno zuWMm9v+(E4=>^N4PQ1Riv0c7q!qv;d_df03KjCt=_MV63^|qn4v!cW2J&peNWqaZG z!_j+wAFrQL|9!9h0rS6|`ASom`@U(jJuY39*lXB!a!Znhq~T1S$oRWQc)0u4$3DN+ z8=Z5vcH-sd?~Y}3FYBAys~h+E*!7S1;{U0FMnXRBV;At{QFjhA*IN*~M6N0<{J4y~ ztg*zJ1qVK#w>!O;-}Xdnb@-2!^1ltr@0Pa(FJEr+_lfDYbNL_d6o=20eP3L$CE@ug z(Obt7z0SYAd*rd^rdYQyH`U$M#UZxZhY#%JeqQk+biJDHbj!@UlXX2#-e_pNb9@%h zCsm`0$43%X6HNtOH8!+dQs{O_)Vas8R!t>UagXb-CB18cukO2Aw(U*)=Rcnn6*+i0 zolaSAZ7B3Asy&i&s!%PK$3s}~Q=8UhAz#U3M#sLT&d+BGGwok}qKPG4H&94Q$k4^f zV@qt(O;*0=XSZKz{hglMG2bly(fx@@U(Z!FzSrIRciYy&znp#VOXe^yxOP0pmwkp{>zi<7O4|mEQk=%BzJ*N62*X3Sr8QHl7e|Kv09G|y+ z&)c;&Ul;O!?*I4aeqyTWN7?_M?>~H@QTQ|K@Jr+8D_2Q9Hts&&dPga0a=GMuk?{T- z`^$P4?`77zQ$6wIuS~7?k+HfvzkFa`vv%(D>G%G9j#wSDqoDEXR7NWaVI~V{%leNp z>paf%^-KC5o6r`sw`L~0T&2XV+F5s5+0QmTVZOCZCYCp6j?s~$O}BsZxmJAq*%xj2 zss4AL`G=+XKb7jf#`YHq@v{Fu_0jK9==!@4zOMf-G;6~VQ9;fHlWrztoYAwmmJ+l+ zW7#*=w-X=vcy#|_oOztjudB`&T?El}FSjw*S1^=JyxhnwH;kRSlPP zHYQHLEPnp;6Zdrw*p^p*e*br`&A)x+pAXkRX0LeSeeGv*{nz}DtKa`nkgvP%Uh(7M zb)y*hMVbmMb96oIj=QUfbTgV(P6-i{xxdeK%86&O>5+FMmP_#&xSoyWk2_TPw08do zZy&Ss1+U)3PKhhHa;CG#>-ec>W-EEmJnx)(R*{{(I4^$Zsnv1+rRsi$-#@)_tLC;( zIsQD?*PW^OyITL!k-oWer#+5*^l|Zl`M;TO*Zh_L#r)^-{_p-DwWm#1et7RQpQ^%F z$$by||J$)Cx#-@sw@HYo-X-$e%tBmeUAm>}Y~JIh{pUlH(u8NOIpew4+r_IhNVo8U zwbz7;_dAk$jr;?oK5zOsOUm1WadGD*t3?aH=bTek@wK$*o^biSPmkrH#SJN&pRO{S z*;A-qqqCFGt@F3oZkCpveB@Wkfmd6Wt*e=4CfR(aGdkeqWAUPU-71sQ zGiC)}<4X5n%bCC$}STAKCwS@Beq=KThTUb@sV-yyP?6YuR=FF`us~n-x!So+Rhf z=%llj>+@sD(#Xw~FO?LZO-T8uI(xEdS$W>)E0^U{KYxkM$<155uazOTgXdINlF^fb z`u-awK5C-d^W~ac{N_hKH?MpAxMkbJOR>uLzTOj#`+T6I`KIFgdXt90ceeum9g+Vj zRrl=v9}fQg@3t<|7flMUH0#5{~zglf4%n~;XZG7)R}+( ztV7XGZybsjh+UYyF>}43smj^T*SAh*9!X)F80>r`O|HPBGX0v%mA(x;8UYcGYu=un zX>=?5s8H@c!6go6nO;|h<5%OLIQq)qp z$|WnRS^_m=POd#1yDp|~;==_?UNdR0Ud{8mE57#m?jJ|z*RkvGE10>s*7@bbb=<*v zcRnjTf4Bcc!k%+8yPr?|HbY$Qx4?9{x|VdgzXtvPzWn~#UH?75_~ri(=PfIK^M79d z@8S24srSG9-uZmq?w4DZe&I`&5m8Mt+PHUu&*I4pQp#D%Qo7e1w?`!GNi5D4-d@^O zu!-B3+hSVm;jhoTQm~&-t+Hv)Y_nRZjE*E?~#(QkC;pMA_;qg_SZ+Gi` z{K#+Lxms&m_|*97Ef2q3o5XZ__q_KzzLy+4{9Ux=>6~q|KZeGC@2z>U*gvrN!1TZG zc1Paa*Ioa!+5YIiv*H}?>Nm>HC6yhR`TKo(cJb6Jsn2VYKlfg~bMv{$`-E-w^=gk! z|8tirmWmZR`osTD!Bo2ir?{tnzB%d2*O$eH4`cb}`fU6@)5G$^%`Y1juSND~9kYyi z*b(c*L#w1{?p z7ZW_a`2Bx|>+|Zxv{_Ft-C)r<$3A#t?YF#hck0cTZ#%zf-_Ela9S_Im{|kEeYuEb6 z$@ZTP@A*Hyt~>vC{{QkdwV&mmeDnWjT=ymZuf+Q5&(S{*-T#}K@v!(>_r@8w6gM7B z+GrNPX50RGi`8CiT3zok>Fnm&Y>#c1pS$mC!gTWCnu40&4Ucbfn#b)r^y{T@&V1|k zhzK3O4fmW3-pIZY7FU;%J-f5un~j9UP0I&gcKXh%d}VY?#jmer+vYj<&5rDRs9_ot zvA*)dLGC{@<^MR|`>AYys=DrJ;J-KJwX%5y^Y;JTe(&JQg&#`yKUdVdx4BnWXr&e9?s`YRBcr)!7HCodYG$Ok*T&@I&g!Ubp;^K8H zdUje^-~}1Zq@yXiYd6}i_6)o)tQsVDROjUZ)gF$wHSH0);A8 z{TT@-)*YL~s2jRsbC&k=pHJqR9=YSZUGZY;i)pz(YVX~wmrTm4Ti$iG=9B#+`?#g$ zepC0Guj&3c*D_1)Voyo2Q9^0Vrl_zhOOIRn=c=;netrIp&!MPkX4d=2Y~7_IKU;&2 zt_oOj_GBt&i-*X<*PjD>POi+34LFjj@$cku`%{~GE$mY_W@Juld|NC!d-=J-fA@-W z;&+_*awXGETlm&f#anp?9%SE`$yxto|Nqx_KJWjZ{vqjje(eLpdmmKePff4;dtG_y zLFU63XH*3Q-;{cN{6|%TwpQ1s1Jg|1c$$seQzL={ud^;*q+}**y* zZ&G@Djh9RGET7?cus1tAVd4S)jTU}=eH*tj1_y-jU7a?!nfcw`?|Hj+91)YV7ce{L z`_uXUo|BW$m#Jv)`DSWRc;QEBp1kV6hui-f{yX^npV8@Lf%wla+SeOuJiIb3^`dUY zTWPrkE4;6i~pbNh(C(hk#ntrkCq`Y`5>oWO^8ez8E z+HRPgF;(jHi8~dYq1lPindLcFey!77V#2RDq~aQm}Rvj_{Db{(Soh6 zx8G>Co-A>>zLO^?%u>eNrE{-x+x(|xdp^u_jNG)#Dj~c0z%P^42h5h6HecHB6!GM>VY$!_6$&wjS|<};Zlle%KougW!#PEG2!{TJAmW-cir99Q-4rB8xy z+XcDFOgwCzy;C>O+5OxmUH|UkTQ9jqni;3cGj(pWPBRfIi{EoJVb{s1y9W1n9$ooa z{DxKev_%pVZgDJTToPk)?3m1s9#?MXpyng0VK%dvV!2M7?yI}7jO8<1bo90D=NG&3 zx*qM)ovEAlCVuy^9J}X_ocRsnES-1TJbdy(Am8S=`tdn3GDct8=H9LSvtUWlw94B> zZ%>)><)5`IFXT-A<#^`uoj;|fSZlZT+2_>@R=i%UW!Mgg_tgB~%Ufv@yhCQ!?6YT!7^R{a+76|-x+m&<-Y+n+!7O>)bpoxH_n!5`+FbX{S%yn1<@(6rCD4Lk)d`fT?W z^Kr0V8eKNS@#KaTn(D$U*k_yyYUw+?SUK5#k_ug)|-NQG}ro5eMxO};@ z*)nG}*Q2MpmTzEFw|hTJR-vowfy(boPOmm6iloQ%ZF4YwczcJ9#&%A1v;FsP$0x<` zMHaQawl=?ce|M+H@tTb)W}On&YqSD|FU>KSwWjdhJnuVSAFS3;n|xcqv?bypr-+9!T)z&p!GdLd z!BNR4R?V9t6zg+l+FSYJYjySCZ}V8xp6a@4{hBNNf5FSU@m71S9=&lhGrldw9~pVF zQ0(%mC11p}k4Xmy;8?HEeBEf8e*@}txO7*1~ zEuU9>J9T-E%zS~{eamt^H!3Rjyi&Z?xScu7?0UtAhv6IRo+<5H7tnGkby;QT^*6C~ z)4p#1SC{fhDs0;Hn>&9BiNC8gecUduc*bwSj02WFk&9wy2WG{mz13{Wa+z@Qy9dwC@ii}c^eA?E#1`+e@;rfO z#aps(+S@o>y{MBW^X9FvXUo$`N0kiczyJK`X`6St)w~Kn%YCIjS7PT?e6juWwf;k0 zm|5%l|I6#=r_cWxTK8}-_rFvBe^&o6zW?v|j@qxbb8g!mee$A1TyOt@<91*2?)}q# zpZNZo?grgSLXRJ+SbJq0Ijt`9!I@)4M9`@q*JPblGY$03-cNG#opz)1WwQ3>|J_T~ zEtd36DGHV~QLw!k7#Q>NgDsS6fzZ`kb^q&( zw%PYdcul?=u~y0_$fsdRlc$%-B+WIg4~{6Qoqj9Ssh2us2k%Am*ge;yKTqC2H_TxE zq$E?flz<)Ks#oJJOl6DSU72Dm9qi}Jp0lpsVyjV#iH;eO4e78f^MX|L_r776kqib_yXws@#FMnCJ>R)&$ z@p9Uk?`1RP=PXdU=088NuI9kUi@LWe7e&t5u)o?mdL_%@w|8yDPP_U^=xeRJzvJA> zw}ScqV(*{uEN*>1Kl0Nf(H}ckOVYWKlP@n#ychTU{Qs}}&%Ro{uj!|^ z{6qDBU#)N6zT5h-3h!*R+Ze`qFrkulGrO0YE;$3B*^Ks=~nh+UQeI*N{KVy&I_>e-f8Bl-Ce@j%ebdm zFY&a@{~M*8g3d3P5-&b<3*C3I{3nmD>%Q_;fl-|nFL}@B%Dum#bUr$F(i@G{k+-HZ zEtw*}Qcd-kPQ-lkyUyok&Cl9Z@z!`(g!cRGlRur#eq6O{ui?W#$GDb*5vb8cb*Q%-C1=_rK?bg`0nPuD?+6iM@ixBk!IsJ+r1%-J9fiTTEJ5 zp!2jC??eHmPMNhG%-J%r%Wp7+UEfx$ZMQPfGJV^2e_`vg{JYQY-25EDU2R_ea+fRL zjx4EXyW4w~t$rhWC#gPNe08MMw@bz5Kh)n>i1YuO_x_o7e7U}S?W5^0XIXytTVUH} zynM>Do$i*!b+cdV+n&Dvd;Y%umnV&F>VH1I(u+vMTQ`~*J_>lV;#|bBO$V)-P4%psOK$cZi)i;+^sVpQmzldCca_{=>gv-qD!ms-2<3v4Y>OFh)iam*<|^{ZW=qjCF>4=F#>S6%w=ApPjg_Qer* z)jywAQaU%o*z@vvf3~YX&%T^+SzGzqansj}XKnr1a4Ixwu^?}X``W0DCj}-4bqalS zd0C}?C?~fww4iUwf=;iuN^><_lMPa*`AQnDDF2(N`K;L0)M2Z_5!J<+zLEW!dnVlK zdwj)7#7%p)$!B3NX6?tOSDGg`tzzGOC9CXfu*d4zb6juiF65o`_~rb+hJ5AgjP{hs zXXWl&Fimh3(=$d>%T8-gwd@rQx;zWDFKlp$UG}*$c!A*p(F;>rloGmCW6xZhEhSV~ zHi>ub-XxJ{r-hv^2i%x+^HGDr`zoo$PoMqsef5&-@JXra>-hyWCX2VQPX5{@Zudb& zd-Ca+eRWgU|E;}$;Mn{zPS)$hHAFyVf(d_evw~}I9 zFSX3_$=I;COJd56trk3|mt46fe5-BCne*GbmIgUn=Lb%(&ZQ z=iJK5zyBTghEQIKoTmq-NJKAkow~HVv{Q0j!Iwvu_dK6pFMoP6^Sw`B?>Eia-7R8e z!qRiOj-5j?v2&$5OG=TYXU9U-mX4NbBAc(Q;kMM|U4BHsP;AP9isWX;*u}RJ)-1NR zc<|vvOLX`;gUD#r#2x?cq(%uDy534Vcd$41Pr-o|D{kDr{rE}6^hWu@pTG3p|JXTS zWtni7NqU5T4RcPI#`1&c*+wIQu|2>o|w~zhbh3)?}XYBQ;{;FA) zcQ4__n}FY{;q$8|C2Rh?rC%q?e!QDURPyEXl(cEDmsn|fW2Mi-)VZ1O zBfC_EPIA_j%g9`ql7D2c=zdk>12x+e)Z7kE_V^<6aNXkW${4qVb`efD3Cu{95-`lCUH0RiKlZ&NZJrm8g z9~Pgx)qdqFbNj33I_6(F7iF>d-mSf>O4j&gZCj>nrlx$&&2)0&*^DPgt=qMI+;Xc^ ze0v_bdOrH3r=_>udau*bE`?dFPYqMg&wFv8>-<4?rMhdKM=~je(7A45MyEA&p#~>pRqjW{e11h z3&Y2OC)e-a-FWo&&G`qn|9zSN(0kq9_TIOO-Q~7N4L>}ZJWqe$_6Iln&-{45@2z*` z>)Unq`@g<$|M9Ur=JB(_!`FUw)PGWze{g%><7iH`)X90hmPhZV2sN5Ua?JDTU#J+l zZ<@%YNj}TIs)oUL*E=QWSSQ1G&?6cIryH*k`tL1VqZ;I`she= zr^{0J39X5lo`#pDZzmot(!J2uS1BE_rSbJ{_4k@{Y_FFTJ`avuGylptE7_3DTB9Em zwmv&QH+udK@95Pz>-}b|3Gs0=U1}=Qdc4wElg+S6k$d9eh@OeQreD-#AnAB9*Q6Bm5vR**&BJI@y{)(nY(mHoA`S>5}*ccv` ztv~I}e1*pWlP3sFm^V?_$!YhrDN3`fwlpU&yF3H`}>zteDc=+t} zb(h;LwI^$yEjszBVxI7s*(WwdFUk_|l#zc|v`N0`!-t@mA#MG(+}hfwUP;;fjNb27 zUehiA^Z9;{-+L0@Z)RY%ZG7`7`Y8)6~)%kO4@6S8wD(=lQ=GA^Nnz2M6_(+!01>w(Y zU8nO#F|0fD$z$?CwRDA2r^~vUv5sAe%)N_DK8wXy@6k8j9&Ws8PLjJ#ntpZJ|N8izhqR=XM_adUK0c+J(rIF5P-drvE$>J3V99Io;b8 z)62i5@0wwk>iK$p$VRCUHRaR(J=c^pjO4cV&t+y05tC6T~%%~y_YwwVVlV;GG)fzGSPP}6S_7_ycNvqZ8=5EOEG` zc<#X!3Nr65Ev-@9a{9p8*VhdUjbzpr?AY#a%Y$bs}TLYmN8u` zQNaFKW#k4!n`f=J`@H$@9X^%eaa+&m)ZOzDPtToOY&ie<C9GH@n zq{i=lvN$5A%dLAE+*Di}^5%RkiZVWafQLKhsML zFSQ-Xxw-dL|N-M?_xU>Jwo)X5}=y zz;)u!r*SuJ%I7_-ICJi-_(3hrC_X;_9koxnTJ=|ihu^q)Us-2*$!AtA)z}DuTdck> zW}HtyV%9G=jk_Ss@|JPP)=gVYpEk1VOnyA=kovhhr4v`#J$Nx~Q`xOc_xwuK4W4Db zv)q3+>A%+dpEKt_-TyQD{z2#X67&1t>;D$keM_&OH+QeJ&6fkp9ZSxvKRY4cKhLn@ zWWD-5rCgU&Z(iMR)hn)XHe(B)FZ^=Nv43B4iya?pb_IUZ?~A;q9(zWwWwGETHxpA! z1uNB6MIM$?g121r_O5j`xu~|(Ktg8+Qy?Af2H?ZQB(xS+>sloR3 ztQtB(Cck|pPb{4AQ!ll4n#;0zSFar9v3V=6|Ig>)oBx}6KL$H}`@f{Cv^uw@>RwBI z@&B7&Kdrl*J?HKWBMmOL!;`XJe0*}vC-~dkt+h_u3U9u?I@`wHS@H8iU5Uwe-+FEO zb>E>;edQw8nVO9yIPO;{=OOK`!f3bB6P&(%#qn(VYMiGn#^1ogZMccO5fQm z&OCeYtGK0wWm>@c4aJ|WuE*_Yt5{HCqON|1-!J1P$-&!6D*vxDG>ykNtS>%}?3+sPQjsT9(JY|DR{f6Y|QR=8-2N{i#DM zL+RKZzU_(^OB}^=_be~?wtUwNyUh0w|G!GI-EFA(?DV(yxodm(e^_^Ubxg#31G&&O zYj`EaT;G3~a9%3n^7p?^FE{<(d9kO->bYRJ!YoPqrJpUGmzGOyP}{#DN>t?7rER<` zd1uajr2Rq9`i9%no$2;2yK`2$IiHKK5;fFO;F@^kQHo!T&I)&Djt%7o%cXpFKIe_^ zSgIhZR~&uxOUH(Un5pxXP8LTf|KwY%>6l*hI-7MD>zB$ED;iUqC3!baR%~Sv)3-bS z^?BTrPm}$NN|O8k-i`g1clXgZZvDcNnnNc~D!Om~_9E%<%H8K3FMoQHEUz@_d_s79 z#l+dx=9$jz)4SfK9MsVZcFiUuk`*C$^G_jrh87< zuK#Dd=T-OpQ)|W7H=5s=vB^Q^_VH|uBQbjd-!XW0hJ?&KFu^20<=CR!=8#goJCV*> zy4y51YO)7Cb+J-#TV#Bt&SB160n_*M{B*yb(hB4)++XD<4`snUIRx<{=fr(Bc%eO2P;?ee*C4-c&j-Dc+I6W-S2?VoA9^Wc}vYm0ua zmx*%jP*dJxm$+I=o3FF-n(DUxjs2SP-&na$wl)_=_%4y~&{(InSzo{_v(4u3NB+W! zE$vdLZ&l1a`}w)Swgd|q1M3^fmid}&s+y@^A3Z8K_UOY5Ptz2GIRT7mG0Kal?s49t zxSV6Qb$X8DZn3vkN323-*`2=P?B99XdgX&_=7p!3pFGo@SNWd3;=lesqx1IPSlFv~ z->G=1+Q-*7Lso8q#Hy1Gr&3SexiwSwT+FT`_txI7d2{i8l8t0RjmhI{Yh|6XJQbz; zO%px4ZU%epX-!p`b>QJc&dy@su-urmj z{@DJ%&;L(K+Hv+S|NNzInbdC8lwF^9XTIZ=J5f>wE{it)5b^ZvP)p2d+-g=`VBKyp zeQJ2DlP|kVlC+_#r)5Oy%`+aGh3{-QbExmeMN?g`6FO>wYYMj*2K_LaEv9mG$sCFK zyCyugkKqdv%l^!_@2)D+{ z;8_xp+Zu0fvJJ2LK6!pl-nshFjeM&gz1hUQzpO0zk$&E~g0$pAuTFJ%h6adNem}V~ zX0PV@Vyqe*((tAwg2XlfoyWw+m5-QB z=T%GIUbCDR`?T?`;`jUYo&0;gvpSWZi2uJ&KIQe=`$wJAuiucmpYnfcw$Hh^2kWly zn^`F7@%j0WtMPU0+rO7r{*XI<_AqCD)nn!};>AYJ<|(%WCf{XB?s4Hs5=lDYzt|~| z>s*A2r4LsL=NcE2GLP#MeYOdysxDb`kmJ@_&hF$l6+Jf=<DNBbl~x`ps6Wx)(R~8!WEhUvgPi`>@RHgabDm zmpz`~0dltzRK73bgQT|eBql_Tm_nGo)zSh zD=&xF%cjO|zH#^I(&zJ@c9!pLpM5=UiCn)#8TXkA(N#jRdJCf$wYJW98}cc^aN%8< zmsUq4YIZ;P7A*gG`@N6FHD9*doxA#c{e_Exp`y(Xr)(~de{jdP+&DHqy{M`+(N=Mh zJXc*uS7=OTP$n+4`8|w^!J5Z*Q2Pze%8>;h@4&XQ7sLOMAJ~*d=ow z^O-4ZC}(I5?ee;qaMMct%r{|w`{=^A32qtr8|@k{dY!$wnSayA1LB6V=YLNB{~`a= z#^bHW?|s*KT*aTyUH9j>U6)(MW$}Hps^9OQeR$cE#`bq=TR5-I2tFPB{)W8pw{v2m zEHP=bB`0@mQ!0^N)#+!g^Dwo02HVjsvfDn~$Z}FT^r&TqNO-8ovL(@GD|8LwICBq3 zbzBQx;__zY;!8RL=_}Y(o4=N>x)gk^Z`G-HGiPneV$1eWXIwuqA|fWgdydSF2^$ub z9D8J%{;=b{xnkp!>UEnhRXb=tVx8*oY7wQV0H9&qFd|I){q3R^IMW;HXG32dECQDsXkmX}P6o<9Ha%HF9HJ)!eIFd6#9s z=4lJv_rpX{(=b|QL9EjngZbwr&n$nybNo2FkNawqSr#*8H_j;6Dea8#&{S{j7R?IY zlyLLCK;@OItO`w=1*+MuF8Z3otE}nPbt~96>RnW@T=gx(-7j~%Pdq&}-Rj@(|Ci&R z}Q>U@ZZ@E+Tjg#fPbN`&>37tn+&DXsx&iZ?{M9_rgid4{v*2yN; zRqAJjwyS8~uJckTZF(scBChgy#R?BI>AK}28qQAI-dz_A54UzqWA@Rv$ak9Ed_qNV znr>3=z02aqJpzqBv=s#u{k_wr z&UtUoTg)=8uPCBqBrrz&Poj#|Dr=-AZbKi<3v z=v2~N#Kf%IDYry$$%*GJQ#Ms8EmSd_B4u<&ze!};(v4RZ{XBZMAo2hD2f4o2%`Dzt zIMgh)M>k`7=g&7Yu3q(ZTdcXPB;(D6Z3ox+%>2Q4{Jh=iYtO{Wj2?dczIXQC>~@=d zU+tW3C-po!TKMaZWZPuL&4-ioYX3amQ-1H$w)}ZXe(_4BjJeFKPS*5v0H$@#BnQ$BTZ#?ym#*XQ3=Zez{m;0Op~J-T3-#&Q|idud<) zu;q5VxwGfkOz!gHg2$?}^3EOnr|Z$Frnc;|;X?0_eNHknKhF|z;%2?!>c7^^AX|8~ za7NNh-oxSTI(^Yyr!Ji1U2i39S-yW^rcihPbesBwAM5OY+J87CxaaLw(b>yer_b~I zFMsc!b;MCe>RvWd_~W3%$bE#xaPu2I!S2o(cR6PC z-t1u9xZC&*Pu&qC=8QxE4<@CGudS><4*&1qlV0Y*~%XTx9QxxbyrccZ^!Rfv;VBF|HE}y z&WGsvB)e0Qsy3W~X{wDkCc4WEVbrCu#NAlxCXD5^YBOlhqro55VE zXX=wKMmVqsJ=pSPLiMZG#BBdyd)A-31-JLJJU`yF^2-^y1Ls&z{<$J}ddlM8{FOho z-+y@YyuS7Sv;057>)zFM^kc2vnSURC#5L>z!jA5sL-C9Jl@U-u}t_f1A%6)RxSC z=dqzYvD@UPOGk%?*Q{%Sv#olnxmvBS8_oA$(IuI`=aX6wNx3PV-!zzK=#@KaPZjv2g3mE5S7KvZZ)y8H}!van@Zj3@@tOjQ;+@JZ~88^KmLx?#@!dw)7PFqw&C;w;fv=tU+6z1=q?y^ zOrTwDmD&V_mI;cpwQ4?G<>(9-67`+YCUQ7s*4@@Mh?f9^lj?^_(6{^6eDo%x3@ zb}otX(9zvi%d%P1HMw&W%laPl*3U;%nxoAt3Z5%23zYF!*?v!WkKJb(|A+UO?r7eb+cZV@{@>sGXCMA+edTo5 zV)pMd&Um?HE8kkSB+KiQPJEym%Ra4@QQooV9JG>VF1Xy5$~m|1K*WaL<<^sQ)Y!6F zyd-x0?KyU1LE4rk4Y4Pg?bpuDl<_<^TT}jT#eDYP#$Ne5KYE=m&2&Y?X1jNat;<$MxAdGeKKpBj_pB>(?5rLZ@Bd`_P4CU7^18`S zx43HWJS4*YA$rE5$r*ww_ttURsO8M)4C}hEJU-EAPw|y=fo9X5ZhH3c<)`gSH~xzL zyeaeF;&*E@mz1WS`M!>~=o-6a_Flcmb;lM+PdqLt)UoG~Cac{s?(Q`QPBL8hv|3?f z|Kb9ZONxDBKfkYSN?f>0;f&g)MutX4?dXyzjhiEGwkf`w%I~V-yH&>{*!SM~j>j$k z5@av&sgvByI||EAtoF z`p~2!8`e2IXB7N%PKK}H{{NThJ1X7^#sBU-ziExQ%sY8u{!5~(mhv6dQ4c&77;3sz z(<7xRAT#4yx@MuS1iyI5vBgIHGp$;JzgRVDo6fA9v_;8JCR6D`(bDt~$>zNNv!{#Y z?)iOi`h2_o!Q?&ve))bn{$THVy94JQo|CcrRp>p9x8r>5gKPCae^*4Li2+HtPkt_;d-)yCt0x=&0^=#ng{gbDH3Swapf+ z*)P%r*?+hHS^EFqamgd5{`R|%9rd1m^WJTz%+_)~SuPv7fi`Tu|S{^?}-`bPKP%Uz5f#5Cmv34403J|NEa zH0)dir$^_;#wPJ>$Je5sQWt%du32-wZl3e+WzFWyxBN`@Kjll)?@By#exM(7ORlgo z{mi$h_N{g24E!%x9ay`x=)Tk$aV3VTMG+5M-Kyn9xYw$_dUkN>E8b((LYzVD+a`TU zy!cDBlu>fwB$bdmOAbf3_AmNSrfi_K|JTv^=_WE8Yu_nFKi9i-cTdCm>^YH2i+CnJ zKaqMg{ohCXXY%#$V$G6W^%f@EWZU*?%0_u*W&Zdg|7Y=^m;ZmQFZ}($_ulVQ*PZ@{ zr+Wl%uCAMW?P$O`fk^R-k`9{}?D{Ikp1=3(&6{%$Nj@@B_DtsM=c~Mtk!NqzbIx64 z>eE-rUHiZK{}Yq{{ZRhNOn$r5&vy1qw0y>1|9p9;@L2+3m6N;O=P`-(bn5AA?_BGCdhb8; z{-1_mjnZhu=;3SaIap zJ+r@Cd94;R&Q0_)Kiv`9(r@!O&QH#p#W3v3j8#ib*fdr5PJCu=_g(Mwu4m5j^=*+G z4{%VTRI@f-PK$ZJ~2`mflluVwu`5$aMLZLVBKV_ok;0Up^}5vwj&LANIEX z1IMHM%#C?`){ADV_8;~7d-8O3cFfJFJ>?oy*S0yK?$hR>-dm3Muahn{_!n?(zP=6ZfAwIWtMQX^&vZb=B%{rCFyw+`F_$ z`^P-_Ul!;8-LpS=Phr`b{>shYCImy|#|#nat~EZEf@S z%#7{v^;7d}p017%6xMbPX1}$^m~W=nl#LdzGiy2>CZ^dcE!50yXjBZ(QxKKgbLl|E znhdGNfWCJDMMW<XrqiCcsN#aaJf*7vczT|d+R?YW;P=l>Ab zSvBeY-}Zmo-^{!J=%4ldBRkvTe=VK=_;>wv`9(H%3q|?#ZEtb)d|LSQVuyjbw$8B` z4lmcs9&wnWIEQIrXNXJk=?_ieLNAkDlsaQuK6A;YADJsCoz3}w{{DabKX0YSKfAPb zhWNbdS=s)vX}|BJw*BS%dr#`(H?gc--ixuv^Vcbtux~k#)wyKp{L;g3y;>JF=Kt}E zO)@kKIpOwr#`^s=)0eHP_;_@AgkJZ7??Ll+aW+;jZN47*LsU=s#=`I)cP`vEyOt<( z{@~%Gb4v~UtyccnSpQ-B&O+g9!j0Loi$6A@vingxz4Fr&wy7^ae({!X`_}O+=it)b(og>N6U^gxpNw9=_gt|2e?6gv3(VUz z+`?EtA9lWVd6HS5#%$I=k>a}dQpb<>^cGk5=*Ok(`D}Lo$DdfUvV`BKOxFl+ac$03 z^{hW}EzN0-a^Bv$?w5iwHBLtJ4{s9cX*#5P=k1oGp{CcIrmcPVO*^(jNYPHhHB;f< z?6x{N72mymNs*kBJPcy;BhD#JsySqEi)s1EM-nqrRW>SJw4GPK@9Em>em}hJiw`}o zf2RNNmel3;_@CnThxPv*YYO*1S^vwYeRX(pT=iS?8#i}wyp?%+E5Tv=1r7H%ti8eq z*RK}!I(B0PXW*`FO%|>uqNSOhB|V~i;pP{np76RbOEt4zc4EoPBW?TtD%+oG{>xl; z{_xJVzIritQlCFcU1V{%lzqd-zAFpZZENPVU;6ThCp!JbQO#*=!B?MD_4FmZI@+eY0Qg{HaIw$IeMj@BJySpVxb=f3E!I z&G(j1&b(xy*170`$;B=gk13Z0EVo>e(CiF9oA+Kd!+!}&pvb1ebJam}Km5C~bb4ck zcwBA5T*s3dG4E;{R#Xb=?KHZ0rSxdZr;f#s+n?;^3tw-4_|1fB-cx_zX0QH5T|SSpZ9fj_|50k2wRNlMvUJr# z5hj69R;NmXg&Hb_U)q@0h?}fa4G!e+;_%Jpt-Q5xjg$(TtUAZdOA?Mf$;INxmb>8bqRHv& zkIs>~^We@-^^V69ucOwKXFPS5h__f2krdTBDQjwaY~u|9b@p8Kb@_$=F1bG1s+ecs(s$g&mi2XiqaAyau)n+! z^EQP7?WhfG&v`eVbF`Y3GsM;Cr_7H+ny;AOzQV) zG1&FJL*#>yI?Fb$lp~^rc4s`T{U6(GHN0_b(;D8-n=XcCpIWtX|G)pAkM6R4_igU? z`k%LUnidwO_ZFHjp1!n1Sk^#S`_!%wxrO1}ypApWhwrRTC>Lq|KIvNf?pz(#u#6A7 zPOAjw2QB=syyrl<3YTZLZlfvtL$~#wpXV$-TzzM6`Q*4usoyUpbG%+LyXoOOxx;69 zzdWUh(ZG|EDMH z@hRoW2mTy1JR9k%lf26P_?|yA=Re(g{twT0yYJpI^`E_09Gvm>vv}p#)B4S;K60H} zs{ER(EA_z*Ey*h_4<97G{B~_c*Q}pK2Me}rtTIqIyW1sdW5gK;uT5Lz6K*VBEZ8^q zZuge6ikmwf)OkC-GH1&+D;b1u!i`{en4!^O#3bw8@jG*

eE*w+ z-%tL-J)Or(KewH}zHamW`gZT|`HR-q`PB^q`Ry?&a z>S{`7>o&~Y;e47yU+LIhIs4zj_UEeK-+6jyXOGUbnEQ91+$!#$+-G)}Gu^<6*QlnR zUvb-ndkQJiP4CY+Tycn2z9sfvyM^cK+ZCo9vWaIWU1LcLi`_1fuBqiOD_4e zJwMJoe)zL{pRaj{*P~ko4}`pQm^5wA-I{PKkV&39D%r4i`KM{iN_AGXZLa*9W8VEg zDsuMyB8$J~rFY+~`}*l}<nFDLW29f@>$ z#8Oq_sdk zw+>c#2UeZZ^5~w*pszfq++>-GSd)sM=O;Na=Q*l8=G#tM$4*+~Ew$89Nwo4+X7|Tw zpTp-lx$}PZbXb?McBZeGNcwS|Q(XFrZ+j~L?VkVq_a(NgW*1(5tiAu8`Oh!${Vg-x zZ6eKeUdyaG8dB`%$H$Zqd(z=vfY3{mwULijn;m!&;TxLxu~d3N2}|7Mt)gYSTCP0~ zZ7II+Hf7JJt@xwRg_XH-hW;e&Z`t=Vkug zmoTwlUWCUU9yU%@*>lk$DidmbmxxArTnf2-QgpFS;@at(?wvnzIYYVo%GLi9=6=1u zJA!?#OXTbN^^-pF=kr+iSV?*=X4Wr#^J;Sgv?Ln^TGF(jA|M+>KitHA2n`YB_axG&ft%nJZ%`vF>8Xw5M-c zKE7b`T+hBPt?IMwznk{IpHJ~U{mZS#`H>HY1b@*D+wCWJ+UO7$_4gck zEMGJ4Zua$?I}2tW{Q3Dynf`>lc)maP4*z!fYp3<<(JZ#e>sLN^ZQ|T}#Nz!W`4Y(z zcA5M8n^&`1^>(n#*bdxhMIJ>%=vuNJH9#f1g=no4)9^HswX@vm7q%VvA~iU#8$G;M*KxFx&6P zspt0YpbV9KmakuWmQI=C|gR(K#iCyPg;C za=fi=*#GckN&$cQZo}rdQ&IZKcg{y#c^e=1I(`4szBBu`A6PQAt9#kc`nbsG@5aejT2Aj2nRlZ7!A|jm8(%Ix zG<$>h7S12b9Df&xZ{F(oQbaP9L)F68`pL2C{0YlyquytTtLN~q3l3*}^n=e_Zf?=< zW4dy8t`@PL(O=sU(DRrLQWf@uC@~Z6ckJhf2e7{~;9Q=M=q1%vs zyTR2-HLscW%~p7>div&+RqHb69zQOWE$bQ#k}5&a&*A7MFe`eBTetQ?9KWx-_Qt zY-`I9RZf+vdb^R6^`z9CnM$c#|58-f@@cs%+AN#tWXgF_S?35}pc%(utr_~qn2lBBzW||?f*+!pR{yOQ&z4!aPavuMinru5%gRX;w0zBb zomkGbpGbdd%W1VEBwWaFDf6VGuMK?OHA?iBh^d=|SqUxtXm#wSRgZ|4f3UcP;KERm zCf&G+Doxj_TY^_yD=zxear30&;)`rgZ%(oZSDBeoR5IT@zEalTY4xK6A51S?DW1UT z)n0fmk7;kBxajc;LFFxO+>L$KPxdOVGd`kjb;r_=KT<~CaeM!Sk6iIWO`m*Od#`J( zoLKn6R9n};_2}W*>o*twwW?a{Z!?u+TE|B=vv{GemjYr8**H(AESr0FLS@$s3llNH z?;pb^y9=mW`c=)*{}8Ajaru?1hwr463ii8>^W*Z*y?ip|WJ%jvp1|-#n=jYR4X!Dq zoGh|jn#+6p`SzLT{UXmj+p_Gab+?!4>6ddn%g>dWFV2c?%eIcG{$!=@UOr=DAlNMSV_8OP?N=H@sDaUlrmrJf@jeB*q z&~U?sIr$US)hz@Uu-&`faV;^tR3JTi&q_ff-s`6Ek9?b^i0R9$ohriZ9%>zO>(b3P zmt=f*RJ>%pVRihh{vVZH)=m+p_hbYdQ|fVleYItth{w~3OBYSn*mbuh&^~ePe4`g? zRgq@@r61(~Ss%4#ao(~urTM_ImMk{(4uri-(94{g07cVV8zyGyU1%~>h&RA;Zw!cw!A$m+k;pE8~M^jFn+Zp>QkN>HN*`y;{Zm&g> z5Ba6LdX!kpKVFr}5mI7R@z8LYn?&cArfnJ?pIKfm%+$HWJ~L#F+Md6^R$u9soV+u^ zL@dSA?dmlN@iWhT0~eGw$!phaZrI5h-m1A%h0Ako)Y`JI29IB_66)twXSkgZ;~lGK z;3RM|;X#1i3LhUd0!_N=)E{kKUn9D?CBN?5>o+!*58MBrkay7R-ORh_%aU`K zgs!zP>~hd$y~ZXTyT){92+wZL$93&n|21u{{F=Vq{b#@2oWIX9=hQz>@=dzBQu_0A z_q}rp)m6QP+2+nL@jVeEa4{_?$fCQ*w2Jj*n6{8@m#BF;EAMBa*S1bvQil$!PCa&W zYK8a7fK25VLcQ4+&avw@Wj1v=diLb*DE@DEE#yY)a{IXCjT%3f*8g3vF}>jH%F_>m zV}d8Fm~u49EtI7^Lrij4%j96AHU zeJu0h^TMQv#mc<_&N0_7`Yv|(BCPOOV+&`OrBT;H4cAHK$C~0xZ zXrKC8W53H4Rl92&J~Z|}WzM>?RrLy=ymv;;iF;KArOweN6~UKpO}kbxDX+~oZ>5*J zwsU@z$BRDUuEWazp05APBmdV{KDm7NasU4}{?8V-uW8-2a${G4P_g2KzUfnLIlm73 zq2zg7!)xtJmswxq&g_^iE0-tP`-xnApdN?n#z z>uFDZq@&!WaB-3aZ^`iqa-Tf11uNT5{629{L8f>z$NY5@Qw>FU@A}R6TYmahMX$-p zj>|Kal`hF_SLwcJH$h{O%CYW%%C}$GHIf7El)Q{S*{FLbr%Wm=tLm9J$+4Uz*IC4M zN~qvE{d12utXZ3TS(b0&$|aLCmrVPzNak_&vdh8G)ZG(o7oTN}j^4c_)9bdLM4wy9 zWxYd{i(-;rH!b5>#lPlYG`nxJGFQ23{=!vF{b8yKCZc>&%?=l?aIcWQ6jA&oWBw++ z%u}fu;gXJ*t5z+0m{a5vZ29U^@>`<|3eVhk9OVi2F}$q#wy15k+~a5ITPC~jxNNyC z?tz$hPNdQ-DdU-&Y-TGqByCEltLgc=&`fA;MyuDMJ#D*kE$_!JzVD^h{-Lqo?r^t! z)x6v9_evj8SOIZ1i&y+Rw}Q*kki7X0|0uuNp0R>$@UM z&1g$;gz5*|CJ*l|;akqNXw3~se51^J=RwDesm(l-R3==Sdw|PZWU0y8WJ~MRJ!a32 zo!xFx6R~mYYe~Mc&Jv%i*Hm^j2h7{XmEqBN#8YyGh!T&F>qf3xM`dQqeR>6@tfjky zVl4`UbZzZ|1Y9>v~rS3V2gwe#7B6N|PiSY^9x>y~rI_L&w|7K<{c>!g{M-Bj{_ zw&NsAxmoj1!#O^MpH=gs95?c;yW^&CN^DyCjm5#ITt$`2x26V)R7n4NpFUaBm)VH7 zncw&2O(IXyPcsRH> zZgQ;3mdqN(THjqDD5w~>MAcE@iS5Q~5lt@PoQ>vdRs=HzR=e=%@_9Zux5{L> zuFVOtSzQ)=8LzrL)H#+`e0VTHrS0Jdo4XGu#I5gNw7|H>(t4(1?1xtpuLa~5i99P7 z*yPap)gkLd_MFiB_iS%p?MPm;aE;SPN3T7bPxKv;-MYoKv!w57P2XCtW$dbHyB|LK zdb;A}2VdDO)9Tu`$M$Gmh~!&#Q1N5##$UxEah4$>#xndf&Q+~Y68N_Jubg%DbIY0v z{^d4N8YM!4>4taJo<8}~@~}c!RQ1TAix%8&7v7hxoYl5$rNvGAgwH$GJH9k@2wi`h z5aXIGy=$&a)WL!+#~ytVS*vqT)nwaIQ_;xn&TEukz2q_dl5$rj{M(9IU0HFHQkXMT zC-w;j`rLb+w3i|CfY%ys$J*zIznk<6-#X;5*+GMM>(L!t%SEH4vTnCEvOeDsXOw?v zO=0SSJSVGVn@lgi6q$K+hs~mm>0gR`Q+8+EY?;13OtJWls77nQ>LQz?5$8AMG6lJ% z>|k5}>- z_sBL=E8gW3P0r3d``l!za=g5Otu@CJ5BAH4-DB$Bc)pXB*}Qe%xy3JJV;)Q7sY@yzOZ2pboSw8r`EU|*$*hO7L!C4_ z4_3c=*<#Tta7l5=p<|YkVvnPim|CcNTE))VbYv>iV3F$$x0*o zh7`xIi!&nJde{s%PH~xQD#q_$QKWsCW4~8>=K}?$94kh)cb~eSe{Y^C{J-3O`O$q(hd+JE1=BJf+FJkhJG5f*#rLX9yegN9*l}t~ zuD4yu^|*DKS;WD6>r;0c9DgNvkjJec@{!HN@*fco10%Bci|X+=bj`cf zN_(cx6+T$4B@$)%YFVnG<@OUnZxPQm3 zTzTKG&HGR7HP2VrbKIhPjqbXY0`HC6THSXvoGV`DvQ700uhp~_9G7gA183R1zBq;V zq{72bPqkeF{ibj{Qc>&+{*o>wDkH9IyJ^Grx{mZJW6< z!jGYM@-&ZQOXlVk%(2>DbHxR>Mzg+0iL4GY{s38O`^ZF>k8QYSr$g$&q1axDVHa zZI024ycVD%enw8Va991ACtq4l?s<^1Yl+pm6-%GwJc^joxa=kC3pb}!N6(OQhP}L> z_PF1iRxwdYRQrlY!rmWZTMA0pIIE^4BzFjR3d&u#x@4o|ZR)9XQuwTauSBWPp3n6< zogx3^OVZz}Oq49Sd_Jvn+2zicDTbcQQs%h1NF8!X=r~YmbIJYT_Rg>)pF$S29!pq} z(=Z`hvoL7E9_R%JH2CcGBAF44nNq>=1A^>xC3!DAdbmIu$CbGjN( z&63OTy1U>``B%*{BWE$)tSj!{*fk_CzE52e=rzfuWLNB@xHI>@S-Q;nbV|Q&-ph|d z+l4f^P1fZIoKuQwUoFlNtoW+ynq#)~p7ot;l}{^eaukne>FLgtYTIjf`+51HC%#Vv z^cKx7KVijr`lrlN(bQN$O;-{1Da(t?%Fj<;DjB+S$r`RlTl}+G{^s?sxSn2CbmZbi z=5=vJJ#vb5x2AP9z_j+u|q1JIN#N z&v)Hx?1=S>ao=-&P5t?f~t_nYDRI{Sk)`xHEbTSE4HJ!YP9O7ru{o=qhg+=Xfy)BD`Lk4M=&Ro36r za=s*?boJC{RZpcttsJ8)tSuK=)V0h%`?8Ncz)Yt8=V~24zYo`f#Ce})I>zc|`1;Ca z@B6rP{if=lMvK>$X4D$YT|4PyoL7tP$KIu-LX8KfsV*zx$lQ3$k?Zr#CX<(!wt4du z^p84bNkVqrNtR5H>UausXyE@-KFG{oz*m- z^XFcawO_GFn%TVl#x7o0_t%b6bG|xisIgd`UUAxT-`c>;u2SABj9+ghIB4_~@A>*G z`phz+wJd>388sg^sbw;-Zaq6`kxui83ZuojQ7r+9C6_H;c?B~2?p%_WXg1eyw$!Yb zb39X5PU|~)vT5>Bnegljs!m6?=vg#qD{nZrc_C|dpilbV+W^W&fP z`EFLN>vK0eS;{qay_xjWf~CvnZBICmDcCVtO(U%4^@=^qGj&t%8bofBIolPd-~IpS zqOAXGdzQW5v3c1>v13+3Yds!!gt(R@>#}s2bak{GZu{XgWg~hnD`iFcg_qouoDVj;&pY{0vv7~=6bl#L z3vHd+>kC4?_gr(n)4Kl8qvsL#ZI1tVFyZAz#jAyl!t*XoxwC)w`M>3IpALPuId80A z+fW`~-F)*>;w-79N>OhOd|h3HII8y@(w2PGU{(<(YiLy3(W-K_$?Damm*+S7`Yy3v zcz-s>x!Ao&7PJ3WRD7g6_uYhZJI>d9>X`fX?1ek$g(5trbsHZ$9IF?<_sqw|?o+y1 zt*7f1eEu398Grx4)M?f2q&L%-8aT8*t%ra^eNpNI=t^BPXnks3A>U}{mb_cF-PcfYl z(Uk3(BCe?Tsp(_cvAMrRe?0hFy7qZS5`*isX)8o0UJ$;(=Dvaoki+_}j6mdE9POV`h9mNx%kT>oZ&()X+bPp-5sUfs;P zev_!w(Oa#tmm*Jw@B5<`xTrJAH#&MvnM-8LDbYhM6T`NDxbj)*xr|k(Gh^2Ur!~3W zOBSwXo$F%!Vo6W6W_f>ly-Dwt`D}jm-p3!9Tw7)OZg=(EDRpv_)ug6se$wEZsw=oK zhr#&t)YC5Nvpl?gvNJhamxru9A=r{X?Ml(nO%o3)=rYK5`CSukakkSD3A_3@l#lcE ztx!>|JvV1RRW!f9`((n7V@I|7m8YhCdNCo-Uj6mAjA^F(=B^FlT%9QP`0)If&8}Y( z_{!zw7PKzZ(VDi-r9%469kV;?vVzh5wrw6tasQ7^-}(QW@3;4J7wqP|oO)8c{$1+3 z`xPFySTAoo)91JI>#f^4dEX`S*RxKtN!YV=jaSdc8;cHxvAt%V7x#igT_=P^H;Mby z)+No1=UCnH<}4NY+@x}C&hCPVHrH0DIC0&$vCCzViF!ZZVU~%eM*>^4bvM71jE>&@ zX5RiYFJJaJrhDWYEHmWYJJ(QLFFx)6v)gB$2d|5-pLQ^z_wL@)J!WN+J=Zg0MeU3w zH|{I!{5qHW$y~X}Yl~-pzj)Vf@z>HA24=V6)?db^KqhTv4r0&&~8VU;G}@8}GQ~@So!;d6CnamTmEQ-4s^grN1)v z$jwVeGq=ytk&=_ux3ti?SzmEx@#Ch*(898)4LQkTuC3Q~vzzUv8?o+{yDk4eHzZv_ zc!li!O)eS2YRewgwI4iZIqBYnO&TXJ^T=|i@NX(~y3~K5%_AfF+7;L4GbR@eTzN!{ zCOuGHmUl?gk86pL%EV>!)qAQq5BoJud-U`EC&M3~&Se;Azml)4$+z9L$z1Kc@vfO} zDcTms7`uVEEb ze5$omt7*6Jajkj{#@1J57PTcO*8e$l{^Q^MkJ~Nk|8g!no^JAV&c9z`nNvROjQ>~p z?tVRgI`7}S_GNlA{A{C~7qNb2O6yHtTYTtp|9*$u>=2pcxedo2ZgJrj{nga0D_8%} zbxnNGIVrQU?GxroY+lj1TQGcG?6Z&0;~ml^x8JJ~?tc1{zqVzs`uc>Fp3LYe+Y_9B zuh^<~WV_3Tl`~H%Ud_72-n;hs!o3sSLe7djR92cB6sl@8=}Dl}x?fs~zSa^qCmoG_ zc3E@V+LPDK430J}(-epjdU)g3Jx3QqhQnVOyI)Sy>2EGKnRLd_zw(!|{KA#IRacuN z`^{fIvAldaxax7~v21CVxe~X%bWGzauC*tZ%qgfUIrQ~~th*)R8YvB8s!ThWUt6G~*R&)akEowt1Azl=lL@qdI~Za98<|69$NoR5AFqnb^H zHm^Crd8y823cKUxeBE5uby)&dI+m~Ru`iFvO4i6eUJ_aSzU1TI((M1I@^?k7pC2uJ z*l*W8tKZMp#od@t{hHaW(rHrGlxs&cw#1zMuxdliUoC|NXQ-bZeH1r=!c4Hr>#Nk#j0b)(G4S(q}!rxr^Vf zmhtA>2U)@!CTVf)wG>p|+NR;QK7TT|Z{(ayW~P@HONM3(UJDBG&eHmGX#(GGo1b@r z-`JJ)?zrtZLui&+!?~1-idM7L3wA8osCsX!Nv|v8+Lg?m`&Mn-%AH?ntuDm5)?B5q z>ENU<$)_%}eq3<;SB3S0*vmb;A|B;*ds&AZ<$2q@XVucw3wIUH8Ev`tWiy}F+Xc7U ze&#rZMsG7SlgN9!A;#}T37bl$SN@j1Or6a?r|j*nR%uq$e7Nq;6u!qghqns$ZoIRz zbn@K0#X3E_SN4Z;+^uZi;+XY%s>`ftWUm>%k zqwiV``)kjCf3)`b+4FzA#^^#3u#2+xJjQ~&0Osjr&cx_Hf(h3&IE_-`e*{FwIZoOYw%;j(of zECerTbFPWlFp0ze&EY<#2S>c7uV}s;aw31fc@t+$YuJR$Lw7H>v z@=iQ^V7tyO;VI%Gr-d$*Y*IX_aL7b;mw8I^bD_rxa=-DN|YxV5@sr)?~d+Md~y_%<@E!#^zF&=%X>7|(yS@7?Z=&s0P*6a7P z^{U^J*u1T<@82&gCeNE&=IsAr@jAMC&&RFjH(z@lY_8UG-E-%m<5p`#Dxwp6l#80K zg=}dFi@O*7IK1xF@|%B-9Pce~mze%(<`--_B1`*R|Hf8cFm!&+_uj+xv?lbJ2o4 zlSk3Be0rAeHdH%Xbf>v?8GpaUoU<>#{@!sbVeQe*GS*eoS0r-C>x=7d;=DUiqd81- z4gafkDr_&Eqm8CE`Dj-~o>?*9=!Ec^@ALopmR~!Ys6JElZ2XP8FKnwz)6X1R;e74n z3so*<=5#edZ9)Gh7yTZ!s9dTNox^!NT#;pBhz0w^Nf9<)D;Yl2*(a=X3O!TVEuf^L z_vBT_0j-059B&mBKL%ZrUGuRu{_pjip0*Wx4xcr@pY;D8@4Sjay~(WMa&UL{0rdb8x#xU8PZ-M|aD6akS?M&5YezEq zCc1I;iqA_iSYj_xT=U=VY|fzqiv`z+V zX_8HH_HU+Z*Em#X`k&9ZHObG4A%4+f4oP(vCFP)b5$SK6x zzxI*vo^Mm9|2%X456j_)4O=d&`W~LRe$`>YH9BIB=O=osYE>;tm|n2ugH7#H=lbNi z+g3WyH$NE=C-imq1Q!lTurj>lHHGh* z$x7!_M-&fKlspOa>@$3;C6l|MVfCs6xojrZMJuxlrafJ=C{y?E+0qzW{yXaL4VO8p z$NoC3m;G9Lf$*k-3~Ssoedm>ThO|wew@c^5F58ePNw>Nz{5mFyJyhyi=9c+l-P;GN zRNedK7Hv)Xeo9pAGHawrm;TvJiN(otAOCH)xO_=|eX>o-WQoVDsj-_jZatf1_jv94 z{bz#p_Z@juA|&B+>2Y+kftXS61g8AM+)`@`Ho9EV{i*Q$;am2Y+CN$;wi?qsI8R4@ zxZ%a>x9v&fgA7USLkV|Io$BOL7YgUj;mnm5Tf5R`?PrtH1^=$Eb=fp(SH)qxEo&L9c z@}h0`H%2TKxf`*%U$pc$|FOM)K0UoV@rLZzNa+&KYR*cTq6J>v2@gtyWHYDmGseGW zi8?88sw|21FjtuILdR1a*|J>y9?g00{|4_k%&OHq;o)KT#-2mRymk~nP&{oM_xqQ5 z$ES{6D|Y<7C;cQ_Ij-uXvQ0(7bou|k?cK7a*2UD%+H!qi#JQ7Je%<4I6I|@IZE9=V)8qa~ga!-0=6KEOr0tU2u`78I_v{ywmEYBV4DE_MnULRnR$E;1 zZLI4Hy*$g~6`oSspAyAIk3L+Q%5v_C$+b4)rpXqWPA%tV8fYZQ$n|H+Tob)A^{`pr zHa){@2G-FFwk+Fkd1#vICh5o0GtNJsvFxA;H``&s$b0H%jb>%_eVw)St!dRsfhi70 zIq!KdvQh37zT}d8tLvK9n(~m-mg{m>p0<3y_p6kfhhFT?Lx=y?wt0GOxwd@cq`YZ` z|Ib;wa8)%cuFZY<%yKP%;faqGz2*0-`itsL73>i#I(e$8)YO03tG`zM#ZwWlsx3m=-`m}*Hx}J)*|fF3ewSuYg>**w zA&Wg9wSzV>Bnx_^tjW|mem(vl(`@V6cWNHo_2bY_4~aizujXkI~V`t*zEO!-Y@vBUC3<9mD>03==upKrX2hw)qPUa zufiwr;`^_bHdP1iT7S1Je`s@hky~}x?v>Gudu)%fK9(tL+5XTjbFb@*Db42hpWITn z>$@yiRM(cN%YUz~dC@w_{Jel`qE694vJ8(VPUyHXxx-+t*e=mT{^Dc8UsX1?U2Ic( z&vk9Ph$oxmyuPh5KmWpOy;@xihleeCUeXcxf zzW$HtPg_wMVA1mNVeFTEmQL;yDnb;rE>yWsaXHe=A;^8}P!qTHx~=n$ zS--l~m3gzsNWb!X!l(2pQ{q=g{r77-8Cj}d=XIf?96unr4q*Nv|bS;)mDw=$I>owNJ9K>4QwFCug2Ni_PW zeAr{noTj?jY0>4L%Zr`Gj!J%>oZQF%{pO8*EuXpT9v80XibGM67)TJ;-ncNc!hczIJ+zw*^DVV`Hlvv#FcRk`I~I4mn= z_nE(L*3FBWcRxy`vS!&Ww~Y&un`dxy|IwQlS)#?KOrDf>%fNO=^C#FX&za1T zn`cm4BEa^0@9`~(#|y7roECcGft0X>U8>{dsGQ^vaU167TI?-%N>BE<6Ic;{`7C>h zTdYsArRAOHPyX4i$#ppP<=5YW?hhNb?exC&^1|!hf@KfB{Frd@nPppcw9fM7cPgIy zKD#XW{9ODJGu5+6Cm$Ykj{A3Lec{Vj!ZAB)W`4g{%fEfj#gjpETAHoPD+&sl9rMp5 z*`*d1x!sa}u-B2%onNk?=0`*K^m!?Py3H9`Po)l9?`iQ^rO+lOdamvA)DVOD`a5Sm zIda~vcg~y(SG-?&o}3-Ozu))yn*Q%AZb{AMxO7BN({UE3fR@AeJ zXwL2lM)M`EU03B@$t`> zzW*tA>7CW`^yPcLJq@35=|iKxt-G!E$8NTE?th7@7oBRnC;6p1hh3L?Wa4y0@a>{y zbGJ0cJk0qZseL{vvUr0=Wx<{Ydz(3#xbn9_{SBlSHe)~ixUGbBcu97tLw^c|Vmi&+w_U zd|lVAty8uxx3Ycq{NKg>59I%zm0!H)uU_DinX;A_7w@Kgr{^ETJ!PPbmi{>7b>Nn}TW-;qn zKnUx;tis*{H`|H=7q&jnsXDW``gl&P<@ti-7IV|cS;i7QFTSvCN%g!fX7Si_5nrbM z@!7ME=D6LH6h6)={ajz!_3+}`DeT{do$zOA#oKa5#`Ptu$3-JQc$ z9m*554&J)3F6iF+ph&*gEceVRk~=1u%-Q$I;A`2BTe^CCe<-ah)cGzSIIHRC8@=D# zO|n8JJh5D+5wOwih(NXX9M;{@xiZ$(g3ryA_~gvCEpkuW4v|?{dQ=89M z^gvf(O-ZZV^yJy>^@+v)<<-(+y6NWA*2Ld<(&}H=wdQ(iQNbzm{oi~a&3ioaw0Oik z5eb<%j}RHfIg5FB2JZR1dZ9vlkLfk5RX2_1$SviG5?ncv>(sHLJsOp7uW`PAH-F!^ zhuX8J@B8rX;Q!j<3ELaK-K&25r<~8V=FiQ~xl5K#e{sLOF8_?d`3nsl&fM;=1Ni(} z928f&cFa|6snNQXT(e`hm*}a>zy3~{!{MILc;uGap2$Nx86SrAmaJv|ces7`908%F zqUHH_UEJq=zgHnFxZJ1jeeq}8(@V8KJmHpCd;R^z*W)3}o*epldQI*d1DReAD@`pg z&mdpJ^%84%Gqq0N{HJJlY0A{)>tuch@7R-mb8p4GpAR`*BMX1LV2m=2sd^M?Re9uK zZ}`t=+RJTX<^-LUGmM^h;YQcwmy(+=yZgMq_qgD{T&Bo_%+rsB`R?yIeYgGl&QDiV z*VX<|-St<`>g|G*2`;~{CEj`vS-9@tw6;^$XErU%lHlw zl>B4clc(!zW^SI$D*mlZGI!15Mbj=X7Pk97v;5*mP4RQ_j}q$VzpOcR>zUf!dkvEp z|8}ub^E397dp9|4R?*E(b9^;l3C)`I@s?HSMTJn2cj=2%#W*ASr}H-Pc(+cHQWuHR zeAdsmbI(TJyL@G4sh?gjWJmdZe|~4*OAj~RLYc*vJ51gStH#zuCrX|F)~0lpCH{ZZ z(Y>>$Su_TQZ(d<@&O*;ttnjz&@wvbI-dC?Yyj1>2?2l81`%5SPZC|eQc}Cp!!%yxp zPX683+g%+~`%IHf+FItV{S)cK~QY9k`m?z1@z7-@Cs^F!7R{lKhF>twu{$cW)L+G~yH#P7FMhw3m$~ z_sIn_u7xS`yLKP)oRcf4#o1NOZ_#?)%qM2b!YBo$#!Oz{NJCq@Wjfv^A;kp>p2Fvs zrq5I95B{{|@UMHSvo9J zET_}!|C-LL{^dGBZne(*9}nL@-1t21!Mkd85&r%kAKw416I+|`>zePht1T+if4E&R z(XBK&w45{ZNrp7HU*fE3k+x4C>)W2c_jr21+or$P?iIn0a#)rfHRY3zUXz(Q&DY_U zN!u~$SIgp5TV*C*;xWIz@e?i?SB z{r{=IVeeKqnWZ&fg8e_8I-UP{a{c?zx)1z5mH!UQFP@>lkd5a z^}UiX*Fsw1c8_0{VSkX?Z^O40p4CetUyHkJbm5G+eP-je;Iq%(n%EGgP17-x%@#O8uw6!v6)oetgq7X4xP6)p9Ktt3XHR zl0zKQ3gPdoLt7QX9^H0)@!k39IVW8O{_htI+BRn0%@FmfNMg;oB&V2ElN%->(YayP zu9Y+9+ay`e7jm8VlP8ID6?1dRfm=(xbJo3|@Z9q5#~Dk^7c4e8n&DwM|Du2Lw77zQ zr%Z!nC))kA$lv$TZ2jJEp}(XJj~-f}d@z5{>z{AS?jn#;O5YJ<>?+h;4EyPb^xXn8_rWu0Ty$F+59Rl(eeqqnlH+hm@hOFwf|DRuYdRZyN}+Q-+%CRx71SE!xPhP%oTp#)q7U< z+}z7&o~Q5m{jOPCPs!D&EjuZ>B8QweJZA zQkQN@T-2Gi=likOCb}{84-H-76`t|kZ@D)yp7rkILN<<7rxxBa@Y7IsZ8H^+& zrZt}|7B}VW%(Iv$CVxk|^uOGLIpq~Ij(YubeO!~c=JWkRp1Oa(`f5rx{YaM1{>eT4 z`!SwLEb}XZCT(Dd{ZQF*uuY&^Nc-gMFLokxQVg89S>ilPq}pGqT-;YL$9I(VrL)$d z^-HGtv1ClW641J0hL=#+&!+A7f2chz^1CfErPsmRaT52pZ{Kzly)|UZj^>z~aI4AW z)WpobwW|V3W4}KB)okZ|M^P91|+4)ORQ=asa^%<+WcIkb%7v$Gxx$Cc-`*;7Db9820O}EHA+3xIe_tF-& z>sM}=ZOG~^jL0syl;G2yDYa(njMUy->8?$OIJ#G_N(kHReaf{vwDHi#U%97G@Bd~b z|L2PEocceUr;-|{acSB*W$p1WC~fphUNU(_M8LUc7TFSO)&@>7ZGPBr^QGbB&B1!M zKSd%}?f836S8e(76kFFd#a%xopRbR3y79DsftmHwZ@tngna4IoT@W$erXRCpmbuRJ z<%&sR+a+#anjsWi{p@pa*>}AFz1I%wrU=bBcuVZztP8RkPS37;cN;&b>7H55Haq$Y zJM*d}&(JMf+>9-4lajM%tH)J!Ez8oJ)^1bvV&~U+iSOq;VV19Ivv`^8+bz=MB3*XQ zQ*Zv{6x-uZyJhv__xdc8x@Nxp#;*g%3tT;`zf3sX?3`CuJO6OG&Fty2=j*>H+x%U~ zZ*=QU(*JY1cE3OGKeaSly5_^={^BnQU7EIR1#y!~M71vNh)R&^F0uO~yOd{V#{Nf! zm5tNwDq;kGTq}y2a>ruEuT{DAm1`&exwL-&=L_*ND}Tx zD&9&}mdnmroTc?h;|_1jCzI2hzM+@i@_GEKRhl~KX>8X~&Gj{ZO=V17H5arb^Skpu z2-eTJbo=JQRZ>El5xciIUy=QAZ~Fab53}DJ?)^St^7j0qqStJvrN3M5sy}qt{C#nm z)$+0n2FKke9I;e7>3NwYU&hIz=X>MX$2|AEQ*JA*S*RH`>zG4y@D|>+r2!%#Pn)iJ zdPN6aFWyorGhd=>>4OCYcYd7;uXwn7-R7T1CePUAXw`j9&~r_J$EnE1QO^?b*ra_~ak%O@96;b(6`Xd%eyYWFw~urfPoObo3_MhsMWCog$pB za_NisS+sEfNk}#Q`%&#?1@GOr3DdmAE;p6!I{&xYRKMnnlC<>e9G>=ydWXo!Z||*b z*uPZCZs}(V4LCZbThnVvPVW0lZ+jztbiG{ceC@Zm<@bmEk5{RFdorb&y}jn`Xa0?c zK7Vmv|M`--{kd~HKkJBdf6Kr3ta$!ko%z3>uutTjk;=W%W!WqZ(JP@3EGpACuv|`j zYP&HgB0ap}qrr9=xst~3ZKtHpO*7rzr*X=bT=CDxUUfPbv!k-D{#%fwW@{(OF!-V zd28#l==co`Z%)0GN)!5;buVIpQ0JA8T{H9om69XRSAJftpPcJGjX&d+YT=p>5!=3< zEB<(@v_xiej9aFwe|IDpB(zyb1&h@-P`6LBh1XM?X3CB zl^U7+dYbh6y$9cYb1l=Glm7o*?5th9n~dIDSlgE^|66ZO;fkk|X6N5~ zcx~-(9`+9t{p!m@>EwBD zXf#9g_aikG*#gGzP0?JgdM$Fvq=;qOw0W(v`zN~kI}Eag4?Vf zpR0afw5Psd$-?Wh6OYEq-My`Ts#q_sdQyMw_wSQRWcU9F-v07gm-h8}33f9JAFtiM zV)eA=_FtI9*TuP2o;2V0FSJDI=IwijXIg!^yI4k(S!SJvc8l1<;(T7A#`QewOt%C* zT(R<$RDN`gNb+KdixRhPwZwXQvNbc_eJ8c|pwz@XP5$!4p$r`LQwz5n2HyMKz$4m}cfz0#i{-8`S`N|3@D=Ti&pL!%~gJ0|j6 z<5oI!Fi`N8N8V8tVW)(-srM?@l$-QU-7GqzK63k`l)(SeAGW;LFt~awX-;^a>*Elm zCFyHErey9~^k#iofPT2>y$LfvSJb>dY^&0_aP2`&7pZ+7TC6M8CuT;R36&LF!^4xL zD0580N!)x7!yfY$c`j>=dkQUVthlVVlq_5oc4oPUYGJN-^wvc7w-G+UmqUu59bZ02 z=FWo4_tUDMD>-Sty0$1K;o>g0OA)6RthR{fj@#T8|3`fOL;LDKs-L!W*ZlwYR_R>4 z_3^9e^NvM{--<9=rW^h2vgQ@hsjD-e7q4<{{hoM`OYm3zp@=oQnWx&0Nxo5HIGW3R zudR_IKg&QYr*%T$jfrFpJ-rH~LM@mC!f2e=lJF z*T>dnVef74EnX7!(P9q!@`;5zCb#Wwbyxn#(mf}9;qfJV)Wf8dIzQ%q2w9>S+$r91 z=5mB{vvY)aK=UQVJ%%Aeo|SQ zJ5A=DeL~fLLC;x}_;;NVD?YVqiLpe{(@y>m2j9OpvTVNn{?4NPX3I8P9x>%zU;B0S zm3^RD1c|$e^Z#0xTUuEqZ7@4j84<$GXmD>*;^i+cVTfB|6wFA+^mJ~11`gP6r^4bfonv4n>OO8dm z-|<@W*+S;njU}1R)#+iT-^^pzI4QJ#39FDi_qt2r^T(plgIv?o_6r3ZRZ`%Ow#f)9 z5ARK&E@ebRZHW0o8?eNF#yn}0{xcNW+_eDYz&=EKQCB8xv-bw8a` z9$!8AT}JQm`L*+oncmr3Dg2t{Zr=Q&oeNfI*Sro03)Y#YAd~xgW88yqTVMVy-9lZ{ zmaWK`bI`O+<>Hgqw=IO@US;Yp-@Nx&>+$tPPdBEo?4R!Q%JSqrhN&t)7Nzaje(?PN z#pesZJ(w`}?TmX70b;tooK}K7*G2z|Y-rk*Ba!#svA(yc?pV>imXmu}WSWZX9^Vb$ ze^Pq=9yfJio6ko?UsX05H|5Ao=2fv{3zT}ZW$E1TA67?fS~>o_zQ$TG=WE&1>mLk&tD&7wzT!S|@7Vvzn*d zKkDog74Y`CtCS)V)-a)wOR;7~=o()Q3(e+FLg!C)2X{MUcCg;!p0nw_d(=cL1&3Ep zW$u_A+j3;3%W=z<%<3wakG8zL$vHP~dRE|O17oqtO@FKVXXvQ&yb?TqTzyJv$MU0l z3o{OESGw_@gQ4#2;R)Y0Cf2+?^RYGlpJm;P{y&@{!ogQrSNVBPtdO7e(}^W#RebEO z)vH>z9lOH&G{q@8^h&7n?Q2^?W#ha;U1O(R(ROXm=aFk&DJ~-`TTm2oK~FT!{e(!6 z%2Y!S&cZ!hCEBfGeCe{sSQDzI9NsW#jvV*D*Y>~9|5X0pzWv7){=a!&QW{^C2khnT z5caWjFR#v-yZ_k1!?mxHPVT*Je&gP4#dEt|PS1Lk)Ar{3j*6#TmrqWS&aaJK9zEK+TIRj|lP5nobVY71Xb#ZqT%$SVP({CpTy_()yGP@7uIntD zX9oyGNNR1lE2uHoC_=iuW8w9jxIGP9`r5bW2Tc{#@~!yZoxf@4PR8D)#d*E)|2D=a z6uzIZy8nFxPb`b!1e4FKc3zpQRZj;WeX{j;Oyxta=;`_g7IC$^zhC*POJmxV(u2F- z-%GHJ{_x-;^SqjGnN^jCZl?6bE0*#{9KCs63ZrQqKF}=X-wW>W4|z3EgW|tJSgfbGpj4siHLTn$&aVnfD(%m7cd= z6!CD0LRa#c?PXW42FsjYaFSuqg(qBGmjyam;@4^&$`W0kbk$~>P`*smQ66{cJ)f^h z>vU;8{`%QbMkI61lpU**_RZKdXKKl2yUQ;%ukJ~(vQ4(KOfB4%VmIp%fAT3u=XFI| z?7p$BkLGf}7h0<*ul36LxWqxhzWF~}rENamnf=E0r^MMU%R-BDk|#{$Vr9DgNV@+! z+e4YDnTDS;9j07UEe%XKr5gHFVAImbYZ^ALmzAWtCr>+?a_Z(6#pV3oF^dI^6eU}9 zHV81iw=ugKGL=^{P;idJvGo!qxj#<4x}>}%|2r?0mL^%wHj?PyQSw)7d*1y8v&2<) zKVLbW_3~l&61UefcdHL1>)Uy!*G^6iEi{`eu+(sFUQ?#M1L zFYh zI_AH$6>{h0SlhAGt-5jJ|M*k?bWU8;u|0oyp6Q>*^UBYupN|P$zHHs9b?@BFFEDgC z%CO83(~Mjs6Leye>P^Q}i5GcVYm#GcO!IA*Sy*5pF-=A-vrCM3@*xZgy{0>8%S0RA@cFe%hKe z=~Igmc4lV8x`tLPiP|`0{R}y|2^NmAp+D4|v>h2U-gmYx@nf30cYcQ5Iv)G~pZ|;g z|8=jvrNi`SsG}KcAa_>&!pzK8$19B5uU1dHbv-0p`qZ)`X1eFLaCmb#Pnx$V$1wC{ z+RjH`zI0q&bL6VjM3*HqowWNyjBdQzb2!>DMW*yk=d2IEV(ts^G){gOZD29$m|%YP zvEa_v-1~lBwfuau{_OO+SKp29SS6awFt~Hid8zWPOA}J8mwZ*NdsXr6h3548mF?m2 zwashn7p^c9IW0Q*u4emg^PdksRiB73c$xq4!{Oqt$;NKYc5xbf`8k`d_C3fdK3R2F z`TS%C@7Es=9^2*;DDrNj)1jQ!ewB68TQqvvqI3?Km~3wPy?!5CXWHjCE#1fG2jp{= zh;1ydV6Odc_OG#V0PS%Wsa0`FLw~ynF@abK=s7$Ezh5CaqZ4%4wN%-vN*NsX-?hIzwG*(WS{C>E7n?g&^jso<6j+x@ZQCR z*L8B*9a=s35;I=2wIBMi;a*SS6}vV0d%`=GF+OhMjOFMlwSKf+=jwf>8D3n05!xG^ z7KMncXmwIt;;?!`;$#7viYSje%N_CzjS<>iG}PFZ_5ciQXXRa{Zd0?I!Gw&g53uq)J|X?Y(@{qO5G>-YcS zuK9NQztZfdGQlDfG-`q$*NC6FYGQJ2^Q|+6ubHxC&TWxMF1!}BwRDHz8n3X=+UL&C z-)yr!Bg<84`IE~JcvSccJI{B*$Jy?ncps)fd+6c-PmmgU!=gWzt2z zo;dDV*FK%QzVGB&@wk)=@eAhH97@TauQLDAuNhy9oTnVQv!inQ``X{L_k8}k{?pC# ze+?F&oO1eRPskIQJC+YVPJX{Iwx>(f(=4g%&zze%KGC6HekEU6ot<4rOgc(Y;E;ej*Ze23lNL3GJ($g=zc}wKi_xWu#m!Bg5=tuf z9JEzeDxArl^Zv~G#{b^nm>L;C9Rxb=eA1hvGbq#q5{$eo;}|M13vuCzje_} z_h-V9Z|4{zS5^M{A{ZLIAoRpN%UC@pJs+9CxU&&wroFIO7NeK3*7d38>Z47&)@-O{ z4Jxep#**%|q1fokkwSql>OmLySoT^Kv<0uV$l|sC9=`9Of~3LTpGu#%@ijMJd(gvq z#cl0Ir-1e5GqxSmYRuLV>t3(D>RP~>YcVl4>7{`QvpAM3v(>it*e;rSWT$eF-IGTp zj0;ayKZoxO*@@B5~E@9e(Q&-eXtZ7b}_H1pZ^{lq2RXWf$J z4`3gI5(f3oVy;8#zBm;Cu2C-H+EM^19#HwN%S&NmWlqbc#w~vkAxj z>v}HBH5!fif}<~4sGbb&P;I^|d+O?(tl*$2ruSOQwiv1gS(AjBs%%HD|;xPzL(*( zwmHd9(^1*+n&~>u&wTf7ZO-OT5Sz7(aUqlKQOh-~O05i8;@A4_n-^KHJFK9h^!bn8 zyEXT!uX{i4zjZAkXTgs4C|%iika_r`TAK&ZU1n0d+LsDFD!U6ry1RvH)+|d?&ba;JzM;gP8A)l+NjcX zSntP^9KlCod($^+8SFbcecsMkfuprmfiA(4tG>3Ky){|GQO9;I>-5SJmChhRCHW}| z-{wuP>f$$>_Wz6jf2IG6>pwcjRlfYZK-4!mvv+AG7sIV<3QL)nf6Vp0y6sA7#_{y& z=Ogq(1d4Ze-1BIfD)F?l$Nj6$M6U}I-MsxTH)UvD;7fk`b?t)5FI(p5WP^#tWr#%-l4*mN# z6v)DxAqtlLONM&)KKB^kN znY(Klr}gJ$3pB+Vm)(5*cLjWV45|($mB9Oaom?y}Nlfe4}@MlXOXh{~8s) z9|8?)L>~Q`z5Cex;|s5~^c=pQ!TQ2%Nt9>fx5h7GO)FRqWv@CVpep3gwB?{$x++J1 zahuA^jl1_AUdqMXb+N){iBej3@v0=({oDOR*KK&pmTt@2woT*k9gqCJR@tTTb_ycTIS)Cc3vmf>)${>XX>0fARM9XQtczn7ya&bwkAWj!i8Z zoz4ouuUESI#;%DJDL!?xZMEo@RwoYMDVj>Gd-pl5X!tVW)?^nhQEeqb;p3j)8@4>$ zemN@Twgbyfu9^C!$$^3>`KQ<6(sH><@N;&&F+-G$htKzzgC+pTN-Ps)756nxXnl+yxi`>0)7823&ajK zzSQx_^FOgkP^~jClk2JFw!?MPzP5dRI;kiyDU7?NZ^ByF9V$M_8#!c~7H*2;^KAK2 zQ1z!n`g`8zQ`75O`uBe{UE*cv>m6&dMqE0B=kLWSKmW`qsykW}{Nb4Q_7$t8`j4!U zRuP(?;jqwZdGCRTUDMcH#hhQVY~=q{{0xrcJ=gua_kMPK_K%{cz( z+3X8Jm7W{#1y^J;?$Mr+mCUU<65=43dvi(UTxVe>SmHuk3J z{vzj-f9#$gvG4Cm!*(Gy;S({>ojn$=b2;%%hvinbgoBvprg=Pyan~+yo4{c8Ii*rQ zr+boSq140|Ec!OPR%Uh_a6hu>ppwBMscrickWU1_u9*2A0wuUeMmM(8>HzWSc? z)TxcT*Z+9peB8Y5>740ymy>tt{=5~gx5LKz>9@PnU-Y(J(A%*=_fq7sXlt9wAASUccBsJ0$z5>zX339UllhD%9lH=Fz2($}pi5%BTGOtCdKyVQPS1X|>_|vg z+1-`}>l*o@S@a#eXR)L_-gs%j+JyHB@_X+(_Z&~Gn|OSM$eA-iy54hEAF5XMy?E%- z7Pj}g%@-xSd6I+6}^71SKWr=Yk!%hO`m?^*rPp5@91RA>Z-F(w7fpY zwz|hdh%fKWB`fI#9EB`mInO$DuB>&a^gjJ{&w*0Qn0aBEN-sZ}oe=0P@9;?S@tC2dc$LBGZZ%uG{yO!U(RK8-r;w!-gygI5)?V>5^ z^{?kKIsGGJgO!fAty(^PVRt_DwJAxq?PaLonu?9zT{0^y zw=l_ir!Z-82c6u;diC=gZi^mKtI!yiu72^Z_^1QBz0a2Wv+|2~J#`awZ%WaUNL?5( z_p`_Im&a#me41eKDXvFENcOl&rk~VvkF}nkd2XKeEb&{UlwzWC+BqS3N>!5Vykiv? z+>)Fg{9L}@=jvPD{(0d&%YJ{kJm;Xo!`AC6-Af<5WEb^Rk@Pq9zkhwt=dJuR=hisI zt~Hn~>br5_eg6v;_v)Wp$E*|UaTDHTq5Agun(N#>#ysl5Y`cY@ebzqL-+ytV+YzZX zOYLPg#_3GdIJGDt-Tb)rhFZazOV@X2CT|SaUH2h?`;$rfroH~Fjcp2dOjvFiKoyn(4n{#(`;(VzvLyPB`?Nc+;ktSF7@MQLcmHIj#VTh@#dh$VY|rIA)XKC~ z?MzY+zs400w$*8ue{9%gyza4E=K|I#ObcC4)*nH0675yV1k2Pk{5rth`lenbN}hWL2Fm3Pq_bIa1{~ z%Twz0f{iaC4CbUvSXKl&XZ*}hDVYg>-EuQhqvVUKly0`FFs|eXfBV)WFpGa;ns%cLLzGgh!;5tR zp&W0zjQsO6UOcyDk=%Ig$zQv|RgP6kvPpWyvVy8Yg6zUv0^>$cQ%QQ_h zH;$3+`uOEZ$IZ#^OZM6o>K_aXEqJp;@bSS8moGEo<34>kX}qTRO-}#DTo3LNU+3<_ zVNGkBnWOGIC1*x=Z#k%yVV-zWx4J1Sai_;dimIr^Zy;b?US21wbqt!y<=^XbrSlK6+)j4j?TCrNy zHE_XWnbe1C&)X%$uKU=^bJs!qsz#LmU5O=p56s(LxcWCKx?U{dGJY<*Q9wdGDcDEa z>G-8Yu(-m>oU=PJ<+ZA!0F zT4R5|s>x`qmEN-M!~v#ni84uoigzr6c9_MSSj&4WyfF4ejQm3(McLGc6Yg!&6w8?w z?x7vA?paJ+%ldw!v#%C8WOZiq>?@kP%Hx8Gz{43l?K&^ zQ)0WGs@k!^p0}&dLS(PFN}$VY-hjoi(;u#Eh-2w=tLWC0?$KlleN^R~V`H?Sb>|M7 z*)mbKm!e@JGagJjzI9>7<2VCenYl4aJxlatf}EtygsyE=xG4tX*8{AQsp5VpqWBgrpO~{>zF# z)%9;NS2%6@*U@i|TE_E_=N2xSq2tw2t*OPeZuY+l2fI5;6E%f8g#G8VesM>~mgGv+oi=evx!vZXuR{;7oo%={y6fxC#WSj3^&as$oTaw2V%rj(a2;{( zDF!JQ8*YA@bat78m*{x@Jw3dC9C#a zuT{$)exCoI=X6o;l!PSLwTA>RN8P?@dvGgXIQygY39LIde8`iX_<8=P=~>KNk{PP! z64xvioF~>H+&g`O=7~ieiL(|gy;E6PuT!@msq~!hz523`#g7C1);ylzmMgn*!j(tA zi&OcJ7zx}mVS6jO)ogx(?hqi|JdOmSDX=70quu$Q(!b0P%jV?kzRsKA< ztL3h+Vck(Hf6M(`Vr$CIs`K}sWZ$rL_t~nAYC?_Q_OHvTk5Xmw9 zo7t9wUMzojHZGt4jKfsHPqmQ8Q)ppr%cWTweSw8;^VCypeQi2UZklt?KN%{Vg z--0HYD0=cvY@c(1kAuDSi^TJer7Dx{_I%Onu$faRGryuG%w*Z2hcnJAdb31tH(C36 z%GA_ydndJdKhJEmSgmo&^7TT$i_5yuPt_qrXaUh(5dM;k2`9`%)?k zJ-2FhR!jbk>tD8N=G=IL{WgcUH_g2pTgF!&SlKjX*2%NZE!=fCzaE|Av3!M!lSXUY z`O1G6-Pfe0UwK`6LS&U!SJK&>Z4Wo+*SEzSU+B7>Et{HBJdLENMxvpna0c$4+HUTnkWyZ%S>qt|@r zQ(MeGFYeFbyPo^)Up_ywk?-L8jY~c?O<6bj?HtB?yZiQCPq_2-$ClrxTNu+;MMT_C`pb5REJGq?R?E17M=&`z^mc+x0T$3VNEP5>zeUlbx{4|ksQ8hHWxTI6* zmHG=6*CU!gI*wHSTCAHVb1%(mmXIpv$pjav?*X08OXk(B>r~mHv}5t6yxC%$9$OV& zC8?b{bTLOJaLvrQu^VSZ`{)YXGM39O`zBh*w%21*Ty)?3Z6Q+^<*r*%d%4Gm??uy5!neI=jEIieFJ^tyx+4B|OeGhmoI=|+xb&Q?mG3oP9-^@u04%o_jwCY@e z(ZkR4YY$uvbq$r8BlN=O!Bp;(Z9$4E7V8C0ED+bQ-N&cDr%=pM-ExXtA~WyOuZxQB zT5RErop3yuYsalC6@m>Mlk1!oT|I9XpHmmBke4>`-||HHlBFvvNGrUMd>JrBRi|23@o z{w{IP;q!VwKSaS^E->GU=TnnB2Wy9ypjasTx3;!KIR(Zt0`^E8DA*}D#7bKo&4)s`ha?gS; zm0tel*$+g69j`|tcFzW8!gI9NQZgLj&(_hHR+;XgV$MPE?6Z~yvZ}tmYd8lFG z3YkOPRkobBT3@(7?U=-)FXGh3x$%?GbCWm=qqQgU-xvJ8XS->xt%#Aq;!7<@|8)JV zal7Bt&(o{jIrn(TpSFdr3cLNjvG_inxKZUii_)Y7o3+9(B&wJjO_|m!ipkB@szuR`Yiq4qPX)vUu55Z_Ef)S;+uosCbPL>*H-+Q`@ZPo58jm#Av>dzM7Ut!$JvP9ML3j_3 z){;xsA(t(!YZsJXb5i!5uCl@*tM#kcT@9n$orZ4)+PPIJ>{Iq;-?z%D zso8h?xqkdwemqA;)A-%;`dALfC8C8=3h`c=AtDR>7goq@HSO>}ymsA1KD`&A!Ga3{ zom%tHxpSniSbe~L)oh2)#>khw7PaHe)``jx+SO=?|Ax5Q>GJ2X}In8z>M z3!W#wt$E#KA{SuJJu7U|6NM6uQ(2dnmgL&F%6?0@-o8KEL4Dpuhl%M;XV<8{{O-K&Gu`Bx@l1}EPcA_Vgfg!69o?zyZ5pX}LfCbh<`$C(&h~2k z4-cl!;5zI@f~bOMXn%yQ1{R za$m&GyPog0uk8|JEL?Ij$ae{&@&u(Xuf^n-Rb2laEMN6AyLtD{eO%o9q87q+9uIS8 zJaZLX`@to!P3>sx`;@Ius-iQbx&;r;d|<86R?N51sqN*>H z(e<-wf>ws zX^qTxEzZ|$=JNcc8xelNMD(<)hoROz?>$D#Vr+y3+K9bX@)UJDoJ zsd7GcJNiz=$5a=t^z(8>70<;UpWoM;$+Ji!qucc9P1VysyPlu#+i78YShAJT@7(-C z({}m)FZB)V;}+~%@@3oZGET;I8+KUjS-!Vap}$jACOs+&{^_#XbV9enwZH%7+w`73 zY4F?f^`HH+nw~=KZv-W|=X{)huYlS9e(SQ>a^-5p4Tg;8=AKaK=&0>Dl5J9Q%{V3f zh^};p&<0-xb`Dm(CG)r+CSG;2Uur$?W85O06)u4>j`I#B?D5{I7jafUu&`-$SjbkT zE`@7N^Crbio%VF;(dyPSGI>{Lo)xut{xaXS;^Bs4Mt5&5G}rv`<9h#%-+!Zfmbc&e zt{*HGpSrI=Wv9|w)$Du^Wk=)BHdWgbzb{L!4p7)EbGf3e`uCAYr_!w|o!MrmS-Z2& z##y;8ms)DGY}LgegPXUWfAd~HiSKtuMDm)y`}ABI4Vc2WED+kXRyHn{g_6g~#hDp|OcwV*M#w*F@+~s|bEnsG%FN?sV5Nn{f&3wa$GAbCtlR+U3$D`p_`C&K*xb&+YTNG z^zL?1T;jN+V^@|S=a&!}1J7&4SFflz8BQ?Bmd$9^v<=PFynXFG|E2%_$%kD7xF&KP zsqO#&%-%HjS8M$56Z>?632?yVbpk=Z$-8FLx@O7X2CV>88H>o=>~fI(25BDlXj9vh7Kh*axHA zzuR-}TRi#Jt>2unBTBDn26yMQrn$GbTh=^O4H0=f=WyliSS^*gIxOO>Z&z;XtGSSF zFmJ)8jynBgA&U1@J_%@g*6Va^QTG(}Z9mo%yyDqH(Ra%y9lWw>cQv=DX4_%Ka=ASo zf$J=4zwktdgs{yixl?1CWFvYd^~C)0Qs=Fj8}0?=N6p%{Y>n2dWscRow?!m`>yEE0 zeQ{z#^sha{9-42;8<#a_%86r!bNnV|`dpJX+EL&B;(^-Lk3HY(UQW08 z^&!@coqf-rrTP=T6zTb&ySb~l`|tTZO(Al@(o0I;+_yX+f3MY~b(Kq1|LrLv)5Ar? z#bf5h283`ciC#3}?Z0pR&^X^N;d?=M>CFe;?fI@h)|cM6meiwQ-Eo4y>dLZ(7TO!` zP3CHys<&cllIuerKdqjUC0>vBF5blSk~gTtc=D=cdD42PCv7vka&1$NjO|K+prCDy zOP03&_)&1FUj5ps`*Xgu^=|!Ny!OcUy34k&@9zCrJ}tG^SnlS`1^+YU9d6YBiV#}- zvGn)NbTv#56CmLFj+(wAVo4nLbNi|k&+ffH zT_y0`)10;sUFP*E^Pd{le4hV@>-E!F*X{pHZI7=oydcmyqmQ-l(aBG;aW!94<0@Y> zZqJh`DA>V%YO~G$2Orh@FHTJQeoQy6@~>&!&o|FcZ0b2%)!Auk9=GTGwTHeTYYyM? z?$q17dAI-V*Ve5LTJCQTPqvc(dh)Z#Yn9xGyMlS6*rO^hJruaFvE`D6jeTFI9`0gORXv(^ z_*2%=M@4Nby6*`*;^#Wgino>Xb+{X@eE;xoOV#G2jdwo$`RFd<+GueneV1*bQQhoz`P!Ck zZ7T1Dvs*tqJ}t?06I(S~r7Q3HonH;lLbx(IrX(2LS!OEjBVFSa<&|>tW&h+UyEHOh zn+aIVN#DS_H||iv4%a)U3)iZ?dOFAE*M$Cidz1F?=GXjd-?(q-O6jUq$8UaKz2TkU zq?>09?sQK)c5#a7=On(=*6UKbhpG-oIIdY}s(bk3jEe<_l6F2iHrIK|mLo?*N(Ec~ zY2|Rv;qTJbm9^^a*ld?(=l;6m{J($moxZj2uyE68jW{66;VusVx&+ja(Ka`!n-*aokgBGU86Z{?* zO~@2sn{zJt{40g~SDAtwU+Ly5U5tIxoh$2AS0BJR*ZXvH^z;hNlgh5SGN(LyzI}Nt zktu!c+QxNEmsFQ5v*`J}<(lr^@1rmxpheKf9%nEV%BVhhWr$K97#K`-*SYCf=$%tJ4v7scd;p#0Cok-v9?s>0@n| z6koAD)^=HKcy9BKJqjlsy<1mi3rx}p&Jo*pxwmUWwMbu)FwY%LyAN56kC|@xmQ22U zOgQ13)v;^dTLivT+xqqOS?;Otm;WVx@6nTu54Hb4kT3l9#d3Y^x6-;l>2+<=?cXn0 zDZfg+aCeYv7oCcqz2+y}nfv5y zQ@74(XPTO5n_A`NJXU&33uq&+cr2n%9Ea z&6&D z+_ysTwCT~4lAlj=hfO!u)6-uW-o4>ov2@FnJwL1W`2>oD^d8QO^5I^~m0%parQqg; zbF&O?UR5Z)!7aV|kdIqCd+!z|`N}BqJ0|C(e{EC?oaCFma*ey1(vN8$uN>Q~VWqU_ z^Ok#$Z=JK#I+S7|_Uej-{;O->dOrWmUvsv8UBv5aGd5-Uh0UI|Xw?S4N3rS`%vpkF zf4rjf!fI!l=Ec}e>prsny0yOQu2s47vJ0L{dycxX-JUk1RCvo&y9|9nDVIAluL^hA zDqXuWTj*}>t*uHkidfD(TQ>V#$Y$Fk?X^1zWj3+c`f?8{QV>4gPZ;3 zg3NjM9p1&Y@Icg@DU4rocR7hVUPzdAVO{EC!@yYyx85Z!bgVj<^wQF5-;r$JNl|Up zvp$xztAs6yY!kmA?^pTj3+H+H@SbnFaURRA7F+~eq>DSrG>_G(|Z;QR2|11Ar=kC4czy8mQTN5Fs zd&^na^47Pgxgy7YcD{ThD_CJ7b+fRUgH@;I!ne3+$6eKLmj7QNej#Gd=MIfI9UP4x z_*ODxAC%mZ|DjiXBjb{1CNcZHYo8SQdd&Mg_wmyE!Vz~hD_NG*I@W7+1bM2kUTT-k z6KM~4p|Pn$L*27@&w9-+)1Tk;o<42b|DAjPk^aA5{6FOX-B>^SW66>7dq36of9u|V zD*m^3eeRN0mSM4}`qXhY%QxR7W!L`h@@f6{ z74sJ_J}x68cVSE0VIIrAI)T^j7vuMpJZNf%x$s$2RSmv2mAGy6OClJ1o*IqXTlyEN*X#nDg<0@%oGN zzcAZ(K3FbxNLj0U^TDL_l8#itL#0b5_!&twZe@BeyN$PX)n4UEa<6$JbuJjKNuLnQ z(_7#;WAaOet%rqAPndLXR)T?H%bumFp}`@%i*-*ax81L1+e6Zhc zSJXx=r+F*B$USlhw%NL+rmt^M6~$)fCLG|6Kp^ z{fDLZKP$hHmkC&}|MUI7U-zG`|9f=*sjD|xx5w`|?7e=^k$VU0970cby!@uO_+Z24 z#mdjb#g9ZD`jWsecyx}P^`oDU-DU3W>&)hwXJ6U0UGB2U!+lb-9zST_qWgB&g0)gU zZzmMG$Y`JX$#vPm-&5<5%)(85)%x313Nu877p{EOb$PL5^TCFa2_Ifm%NxiXI=43b z!=XvX44>{&@HSpl(Xet_%HEC=4hcu&?25;q%MEpNx=fusZ*j3X_lwLr`OWON^=+PN z=0z&YS85B*ym(u3;>nJa=lG1ca+B>|T>N$5?x(wlcLwVExrCgab#02qTmkp4&zqIc z&6A(_rI_un;4)K=>q=9cdDuEWN^I8@{LIRC@K@2fUr%~YZ?+WopI=;8cdRNj$ka6a zG&h^I^_#bE1J`7)*^=0K(dyPU))ld9Hkf5J?BzPrE7rI=_PLqxj~hx;6uPaGlBJ!N z_lU1K{d$G_!Cj_nvV~b(gBC40?B-~EA;R6?y|KxIedczy_bgL49`UjZce?hVzhAud zziju`oHHM*Vok$e&pNb?W1)av#@nSFAH{@jZ$0||%>6L07o~e6AMZ{nzCU-%qu<|e zX76y(UZ6R#Vh_*S4MDNLKAP_1mv^dK`QmG}hvbvgjXoOY&o0l+T%~X^bHhE$6Ge?( zyZ+pec;qutjZ4b^TJ!1CZ67nFg7$yv`B>srzvpa5_JN}}Eq9ye7ydbU{Lh{F|BP=O z`*`j7z9Z>zwFmtFd)If!|9>g3dRn#qe|~Li{Ri{te=%Pmh{*mGZFF?kQe#dfN4UEH^WzZ+@KoNMliE!i>s2{SvIQNesZ^M>dTW{<-x?|d_BHznbEEI2^dG@2s z*-X|!Cehbd(QXmw5dAw=ci!0|NMfgpFK}ca&G>qx-2Vm)}*sljkz}Z zd%iV%%@USt@V${aYnkiAj}sjpW==h>^zmH7M~jD6mm4{%Lsn<*JzDmBQbAuSbM9lN zqs#$u6VxWTWY4;_(QMkL4=b!<*k4~OjJ($2e^IVa`*C4})Z>^%Uw>}?nU+7p^>h6; zy{q|QYwZ8r(v_R9`(M5MyW8Z$&4!gSttXd=Yp4od3-ljRK>4j z_kB38>*M|WZdqAdr91ordJ~>aymD^A)32AWFIwVu)OKFY54q4v(M3urP2Z=jUOg=_ zK6z`pMN7q$!qTWj-W2AO2?ASI>^;a3e0@uWnYQyRuSaK$=eYQkZ;M>-&6g+lKw#lq z@3xqEHtH|=4ctEb+rIyB!UW@+cT;ypY}#%7v^D%*LUsBP>-hTl{PuQFe;)omqwmO?IVq)dED2;jm5&Hw{2T)u|8m9iph)Qm>rv?E^SZY_=C)sS;pT*|zq;1`ogMOe*6PdNd3W}m z?w!tOQC;PeK9&u`c;#r0^`)la9ici*Y|$ml-b=7^YL z-=!_nY9>uuQd?Dcjqz@?Nr1$z6Q`ttrye|>!yB61xzxqIYm;Gx<^;1D9jkA4z5Q!@ zsmA4Xc24$&RNtL(3|$Yu$wk^bdUc*pdh}61Q2of};6A&mGancG&p4~UQk*+YyjV;; zTqM;oaE<0^-skGa_k8*m{o=Lz{*r}{H_Lj7H-1-oQd#e%CRCwX5T`WNoh3x%T*Vym z1Xa)DQ2{}V_ADq{D4f;c(ZalFjczMvVqOXJe;4kk`~annS{0^b9{0~p{pY96PF(eW z{qgP~`#ll5bqkXI-qAL{QxjWPIYE8>{abU5wSqAXBEVUKJ*jzY%Q14Wae_Kn2>qqruz9A;^IH9Eq=_> z{_xeFq)p2MFB#ssmo($KjBM<}i*N4wNboJsxn?}Y>!9hux$2@%Z%zKj;=A?9TmAZp z{QH0FU0$oZ>~ij@Rf&5{A3d8ZzG79AI{*Alk?Sn2E!~c5dL6iUu{doyciz2S2mgl0 zJ^A$WcT8M{-LD6NGn%g3|5uyXm9ct~hVO(7rIntOXDpc?7~Xd6+8O|PsdkP)8U!=FDx<^08o&%Qi#_M2zxc9iY1*QwNu=lg!J$E9tIn3Td?wr#mh z?R(otD$iTD$2l^0e^y<6cFsMG<@OTEIfqlK7)}+JmAFJ+dvaK?a8mL2cZ`?s8pi)T zem|-3>ZYx?)A#DU>=iluZ^oMY%eV41rW!~oElsnXzcFr|GxPh~6Ar&xsOhc47UZiV z`gPe+>BfvhewEef>IXK+gD7Uwk=lo-}(1}s@q>i-{hvs1Dz9sw3?1zuWBr46x7{w;74|& z|Bo488d>kK@?A=8eLUw)&eVCQ*stDQ_HE7FgC=b2Syo=!V#e`t6UQmNDc+opZx6>D zeLOQ)YTlV^bM#NU{|)*7JpJ{ixGBDWnMGfR@BiL&|NqhHT{l<#GLPS7n!5Ww|8GCd z_04i0qZX`Vm#^fXIBCV}Z#%W$d9X9q-!2oJv`F|9`_U<% z#h!|UcNgo;w^KeB)KltWl(tt>(l2OHb3$#=XC7p}2t8HI=@ z)(SU<@M+qz@7~?B?bx3G@7nL|sXX!SpV{fBTd@%}O21J+;CMS-hIMR05X?2D(gA(GZrgc$#+h=0`y% zmp6BBFsBQ=IIv8ptw>TQvGSh!+wX;Z^XfhbUcG9>W8`)C=**|b(oGic_cPar&6zJ}eD~h-5BD4wOx_|Veo}9)rqB6_vfVemdE}n{ zC<)M9%5!ni+NEWU%SBE*T$>)1y!Y^p4Y@g-|C6(MJ;j&BY@OzNd4h(kefP>J|ID24 z0Ss?d!m8#p{9N`lXXnF`$hztoN9(t3U1t|N?SD+{ziBF4|Gs@_Zujq5ve@fc$E3Er zSmGH}dQ^Si`!2&ppJ)AT+ZJAKWcqN|!$~|wM=!Cp3N@5CUb$2D`M1d;iWV1pSlkNy;= z?R&WNw`AtF<1Z&Kmzg`~^V9i11n1dSp89>ivVVG9{eg$~6jv7=tuj@YPucV7+3hW% zj)5UhBHb=dIk9wcnW+E#+7=VJh1GXPV_LRLk9Tsa2T;cUv`C*yt zw}MNPd)wy7$rt|l!P$JU!Fv6EpQ!bWXJ2I<-4$hgrfP+S+cM3kFN>dbv;ItJ(o%h% zF0Iov_i)GL<y$Q6o?6Q`yk8_LBGD4!k=!w5$=gF)gp{%#p1ibT_ChuR#*NDg z`)+PpDtc{J!4(FE1_n)PnR3f|hdCPkoFr!?Y>=}XFSV?p)pfN!a0*GNpkVl6vO$!>!Ov?BWKUb3NEzVoiM|C zo?T0R{pZ&;?@rq{nQz#;`|PSa38!Z*nqh+w6&~)3Hg0KtI zx>UMvtlWh6@`{=_vyZJT01vhWDjLKZ3 zq9)sKxuomknzos3n+IsMsw4UDjg4~AnH+_#j%{ln!Nz2bPM=|v$e`j31 z+LN~RS*v;c@n2%sOSI-%h%9=utz0`?bkv{nt-F&hEBW{?*JP`jW3zlFiwxtX2EaCdbtc zcb`c8&2DBoy1LK&kxh`d&Gkp^e8)BR)n5v-UcoOg@_zH?-K7xK$X$u1(H|acHDA$XYMysrWs;z4?4m7;a-&$9RL;(f zk9`z+B&*C(X1UCrot`@*l2>uv-twhAxoxsx;jE%xKMd8~(`97d39B3W+y9ct7P&bs zVcVA_oeQRa-?=N|qVy4;@?|{BoVS&iO?0}vOD#gmFh|VWtb5WD@%E`_(vDtzYT51G z`C(p)%nb)msSQ@XZ#S~N+PXmJkc!p&<1Z|f`+_HlOj>h3Nv!A7;*&F$Wqq*o30=Ku z!F}lmIfuV|U^~59)Hk;1_dn*gzluQ--`?F_IKTgfi1w>x3v-<|-AUWGFfY19CUMrJ z)V)h|vR?VRUQu0=-!(SE#G(e{_p7c$Hw{hm#;i@F8lwpT)%!l$=>P=S;Lz*ReO`4edg_6&09I? z(@**TiNE&FIh*7hy0-Gu56kGwnzwITFY!E7V5KPk<>s2{Yr0h1tIZ{S-FvpPojI3g zQ~#^Q_v(dfrpq)U*N4xUH}{gxb)N0ZbKbt4@O635_U${rAA4Q%@U8xa`p<0F*jMZj z-mtmeVcu86+|Fy9PMr^)zDb`WGru)uo656SZzg>#@UeLr7!&ho>4NFJ5^_1hD?1ju z_ph8*+;;o6fakn@{~5Pl-Qlt+(&7?N+hoDjU%PT9Oi<(e9#`iuk2fMeY)PhHWZt1! zXDX9qgQuE?FBi{w_FP9Vu`W--Pid0Rqv-w~m8++eCa&@7&$fL$kwMka_iVu?=PR!t z&fXxa*KIm|^R#;!i8l8R&FI=@CNf*=NRP*f$2^TGd$n%dv|eEUM)0U}*|%+uj=@t* zN(Qe-@JXh@8k8x=?+mhpWbRx zl2MZquh?5s?s3sIq9S9D>eN{g+-tZ_*}k@RpZHng;fc~C3fB&vTcI1}`N-qq7G2S{ zYmrM{Dy4HAV@FFA448SnM`oXk!%Z{|P$G{^7q7K?|Tlc%Vhm*j1C3HtO=z5m27P5!vL z*6a5xy0>Lo?6zRGadMut#3l1g*1ktyej1r0Vqc>g{=kH|Hh1 z?wb48dDF>;RV!}XyPaNZnI0^f5_zu5Z1GBSpSEBR<+OC;Z{NSqh+h*Z$g@rDi@J41 zqUGNQioTZ(Zr)QmS!GlA{`Q)5Mcah1s!vyp<-TfObDiOm&bfZ?S24fHS-TEinYU;D zW9jBht$B7er!Fq;kBFaJY}tIXHMwR%z{DeF^Hex*?~Gu(H~G^%lkg6SSD_xh9=|yc zU*zarkSTrbv-Xsr8A(SE-kr^JNl-;?MfWvh6G5%slhwg`^JI)~-cPrX5?pS$c&_Y} zYg>*@Ue&QJa&u(Pu97N#*P}&yk11XVY`U;v-gTS0e*!O~-`(BieYNV)seOy>yDqS5 z?b?uXK+(hc`0^pf6~J#rAjSZTleIBWJ46BouEUu^jQ>HL4|e>}M;*=>Ad-@?id&t_Y&RN6iGcY6JX2pvoN-729{ zb5ou)%k90_VAB2bNA>&3yh3?*D;ssrpV-tAq3$?8(o|=y zbN1O;?CbX(YyN+5|Dosc)efsnDyJCUk(;b)`8UyTz5M|b-RaNObM(?w%sQ-&+;cn- zq{_Ule0yN@?Fwbjn!`U@*_TATO6|Nn>GWmeOD2h-({kSCB!_8tot<^Eq)D6i=7RGX z`Qn!&{N~#+-JaB={^gi$pS<0pFOdfmL=v^y&n48?&pw)T^y!+X=icV#?f=nGVUbc+ z<+4O+Q{w!|?)*PL-2Fat{@IzaIycvtoaR2ApmcK51-7NOl08>>T{NFG_w_DqdT(*s zrm~(P&Pal1qF3NL?rW=63zuxXH{shhiN2yG9UGS|jS|l>F7LadX?b#g9AOB4REZyyy?$j94AH=KM}8`&6r&s=h&MHb+=# zEt{;OB{FxBux$xPxU+-`C;zodnZ^*!rH4v`6H{&|bIV7?KDV97RlxdOXDjcEa9!4^ zjLFR{LEN2_j65Dk|9_dOw&zHNql|Y?xs7G~=X)3T)E1Wic>lk3eO=6-vadgGi@nyb zdo5W1C;sol{JOu*kL^DmTC2OQ-E!l!gZrK`t%>}xVUA$zrzrxlG7-lG#O@`%n3omH zw2d)D{A1o8=d1IMnN++s$Q5RqRoYVCmbm`-$D2*|U)BFx-L@_$<%)jX^zxiurj+uM zN5|&=_E|0*c3SoM^Ya!}U#8sto>yG)T5s~jhKt`?Hh&IY^|kG9vvbv9yG*&_#}69* zMw@565`8|M+phAz^_;n}8#eDhzjpWbia!t4Yo3Px6J+0*^ku33=C7xu-`uaBxc1K^%5_P`c8-EUhsDwFL6i2l$6K5eH|~?O zRp~04WOC3%ck#=X(A1Ncr)czEn3(qbS!_&b!KahXGF>@SCV&4OV^@7{^7H8_8jE}q z*QRf|e|%O`yZn|tKfl=?yR5s&#*M3St&aHd<2H3)IxZhSe{tm^U7OY3?ZQl|teGku z>`bDL>r`(tOqsMMt#6e{j_i|^k0Sa(Yf7gao%OGvX=_uGsLi^}d&*tGEuTDQwwZ0n zT+z*Y?${df=N7s%d&)GfnOa-lPH8qgd{N@&`-4@kf#N;Kgq2i3ifxLUZz4aT_c+JX z7255Z++nUKlj>ZjrKZF_vg*^Dp*3gTJ;4d{SxRTCU)eN?>A9J)Grb2*Ta;?%em~fECsy$FHRUPlm$_IY5;e6dETTXDd-*7- ze#YOE`L^?a-d`tIe>;iw$IJ6~*YE%M@S^X76t*e!Dvh2z}LnED@-e!wwD)&D9|DpenZU2}1e@y=! z`Ts2bVf??F@`=^kA4>bPXnDQ-nsn-^q}Q=KJH8A3RZ;ddeO-FcyzXhZW|(%|-#6)! z@81}lV9znj*7NtD(Rb|5zW-e1aXXGbT)qDDr?=vkH|8r%dGzPUq~-H%)Lt*Osd#Ie zll${%{TKd-`X74V-D;2YIv=?k-tlg~gWXM~xjmk2&Q*IA4|`1h=B}Yx@$aL1PJVBp z)nRegs(SwT*&ikZ30gFknVw$F`o8Y5bwseSRBz#d1f!%Y{yS}UCvDhzHp41y*JkHP z(KGX86qAlBocBDgoVI-VoZ6Z*yQY09_S|T6Vn@QB-RDm}w&cIJ<6uU0w~eP{FMG|W zgYJJ$-T$>)W=}zT^X=_BtZW^R>S|ro(dV5wjmNFaVyfcDGwhtPp;hbB`b@UHxx0_s zWX-hcCcds>{TIA8uH?E^b~wR?BTyjYol=xZxH7MBXiI9yw>yD}|u+m*Mo&L;WoU1hm{mqM84-a7uvEGFlc zZ$8I&O7`5j1Knb=n-+dI>i8wQ;@V2vxOxpXmxc>9p<@LYIR~@~-F{1uYul2e$ zw`&>WcWt#-@J><^WH`Q$ciQ}GjxA2vvfIqmE=a7IYLVC(;$ijK$ReV3O5%nmO-BT7 zO0H4lnU~`{DeaH?|Bv;j&ITUd|IPmI;XmpBZ^l0puYW52C%^um^`F!AU+RyG*Z=wM zX!Gc%x_nTK&GPA9+qRXz%zyjw*6a0!kI&iN|8q6|x%K@Yp?rBV1r_=}*}iu_e0kAP zwfWhzyVg7IN!ZUcsC_9K_iv&8r>E!lH5RKrKmOcDOGCNGnWmub{N$V6%X56q(&jg+J~GzraW#=pSmON5cFDC0#R*1-c1p!= zk4XOUBKm!hdG@VkY32F$8x~gC?rA-C<&Er{$-T=e(k&~0wWxSrsO;DAjf{=^^x|Q1 zhDemNjAqY9p5@L#d!HTq7hCrJjj$`{>aVlh@BfvH|9grv+FEn|&p+8$T#r_5PBiHF zxG2^1yTnV$6efL@bzjd+@7t{278k#1xBS9MbK>kc)F)gL*>-Td=_$=i4;fU0RxLU> zi%Zs>=NNNXw`IZ#ukH_G&sDA-Q=H;xarWU~>m{DY&ZTf)l6fe5G>LVhla}wj)18|| zL_OzhHYq*&^rz(PTMuH+7HxKnl34P01K*o}TUcy&A4$BZ;Sv$&!0_qRhe}1+O~Q*K z@;9m#%x^7LDQpR8lzlT%L)H50yaOEGx2v+m*W@3oSTkiwkkXy6%T!!cT%0ae$$v1r z_vug3Ve|g9KNr@nwf}MTxcJfcA>I3vH~wqRxA_98qiUbdUH<=JxA}HUiLVznz7RVr z*QhjENRU--RiUExWlvWX4w16=%x@1epG&TNz@W_H^s1nJgW~#Nt_^2}Hhy>hBmMvP zfA#mZf2IFe|Nj{O)Q!LHQ+i#S`Tj5Z8}`*4`Z)P}#aC|ole70f=NI(o%LWa^9mQ94AwJTjSRiew7L~ z^H|B`bg^-ck6>JLn1|}ez?LhD#oO+N*i`-BZ85W`u*@mnBJIL!;jcy|YgUG9x3vG= zT`s8g=+hI4>tQ_0l3RKTw>`c2`+eY4!9cYaUk}%wG!y^wDE5-c<7cbaE3`gcT)yx4 z&5MR!x-(YcReGKJfF+DAY;#fK zrR+N9yGJ-hIruyL7rV8HRfs=wl;v9~@`EAUTrVJa3CA0qmw&cym43{!b@#LMavdE> zgFO>P6rGQAmMlNxJw>gX#WnZmgOZasH~sj1+2-Ho_z_9F|#3;$u`thqG*PW4*pKEHp{rKXha2mgTTD0b(j}rPpDRRtG@oQK1&%bC_ z-Bc`RdzY(gjov{oH?H`tKX#@4`=fc!)JIKuS~u@e(2St1+hWbi{rwYWt(swc>t3?e z-PFR8Q*ZvX+)Fr8VdHYL*g#%M?6q7Uz2EvvVX~nAkTVHYz$< zJ4I;na^_Et=c=|HnnK#|* zSTes=(>-`&)cQc7Eq#Wm+!GgTMd|tVt$fWi!9sDT)qV%=6Tkj8tljGP?A0QJ`-XGt z{#(hP*tucV$9u`G+<6Lz4tR2Tu2I>>D%n~i^;*}jGD$y^b>Rb;6i!clDb+KZN$Kk#7sHD4C=5nP-xX0Gn^~&K(DA zYES)oA(*t$~{eEr#!bvHU?KauFd}DL@ZGPdh=BoSd zM#qnw|85+1RlBfkI^?d^89*> znxC#=N4vV8FAoWIt~Xj{E?Zbyc;OY^@;d~x&Hw(Z8fo5`E@`qo<{8OTj~CbiNeP-^ko zrC;Z*(%9hZIwx(*Y_5q~Efbb(T())E*R;ky)pL%~S5+e0R_X@oAHL1C(zt4`pqHD> zy`6^>jFdtPJF;CK%sE)m|CKF~#dDeAF@xPZ7OazQ;rw_1Y*lZr)Fl;OJE23f;>y@2 zy`C{GV%52dm)7~)6r2)bZyeQHJAv<6?4d;e_O&h(6xbZ?ohFNDwTOA~Q)>!#&A30C@84wm&)V{ObrY=qG#EoA1eLkyW?Z^bz2u34&h}J zoZ6hqC4T+Z-xL|Tr%d7Joz=f>-CGj<+Cx>1S=ab)>=v_EBAhok}OxRx%=oA*M2R5ZD~8B z3d#yko_rbXcW&N>$n~1x+}CEaUR{<}Sjl?n@_Zi+bJNX7CAX_bFSvZ+*EX{!n|stc zR1U7?N)gFv%L`@`{(96fyx-1kx#r`;%vI61bKbr!Dy?z~zV<~u`I3pEG~dfqWwFoR zi%inf)4OlJw4CnVZ+L9t_g`PwoL8MKURC64Hf71r85(^zZr*;LWtVO`+xX_aL(%68 zF0hMEer7oNCEvSTEOUf30(XAKprK*y@bwMVtQrFGf_tR}= zUOFv$vf_ln`Hn>`n@mhfd;6HXuV3LUoTk|8`cg&3T12#Pnt;0GA@@7`ipA$XKgdxa z>vG3dWo~IjJbM+}ysJk=XI~YXsm76QIX^bxc3a{tels)4Yo>86j|8%P^JL7E? z8LKW2R-Nd>hd+y^pMLcGc;zSYeIIkK{ZjxH8QKT@_tkE%tlL>tT|Hrc-41J&*X`=9 z6H3lW^&eNBFzsq zzq@5>|3?3r`Ty$wS?T_|_CML{XVriA|D#{|a_#v~hotjAUrN9C=v$e5@i)WnpTRlN z3ug<7E}ig3xHrz}?HxDOLIuAqtVX^QCo3vl;*edu$?#m;1&Nokxv>ihc^=tSURpf; zyT{}ni<2Io6eIPIZkc!D;J>rBEx|4m)n@hySS{LVb68*O;oU^7IUf(+3SIvp*Mj%n z@9O&YpGoJg9_5TQIudz0!Df-E>GJdQE}k|j5i-7KmGHixf3bW2Oj+B<=U&fu)O6jv z^6)R8ibp2T?`5ywwAENqzUO8C@}BZ#Pxdk%zS!`!%K6^w#XcU^0zns}x{G^YbUBaylLJDciQQ_J68dvtsjI#=jR^_RQZH z85bCu?ep4maf^rhLW`}udZNrhRo70ldTH$OI{Da6;`l>veZv>eE5wTml;m#(<;TuA z7u8?DrEeP^K0V~LX^`fvZAq0omzb(%8Xc%=FP+=6clNhae4J`E9tD#RU9OVsQ8}hu zn*O|a+BLyRe<#efUcUK)=hc<(4prY3I3miaxY4OgLBeUpgm>31&m{>y*?g?+&%N%@ zv)}vHNu+-KfAH}3{lzx_Wup^*eEKhcBrn^A9?ydIyr|bWx z{@6HupI7vudw;9{EUf>_|M}SM{I<+l6GHqHl6faPmwkV?G5U<5x_t4MckC+a>kaPh z^xRa;Ju&^qL+KL_WB+_o%=^f)F+!orwkG=GI{(7iQZrR|sHFXRPRCp+=wj4k#GoyL6eT^mz-^|fcMw%oQ(aN?0Q;wQHBzx!^O+v{c2k~?9x zveuHKs?FRw9kS(#>VPw5@2|2kPtJ%9h7$Mo$V-fLD|zwe{i#G)G(sk`>J`k8z_ zD!Tfo=$9vj^b=)qG55IovH0ShIz6GX?N7}?AF30YS@#wi>(OuT3Cgh=8 zXcqIhhyT*jU2P$pJzqJ*uSHD!WO9sUwT#fxrlV(9FPOevZ^pUi4-N`boUJ;K21+}s z*>2Xl@ldZT>tE~a%kg%R)Am13cv&91h9P?LpYZ=5x6l9djobW&+&9U-#{p~ZEnXy{ zFMDsML&XlZV;mE#xMrF&c6FCLh~bWVsH$@A;)(<&F{j5>!F8{W*Ui}2*TJs*Zf{Nd z?Cl(yGQnDCnC z{_f`KUDxI;?3!`)CC}Cxx3d4GE#Fqeb)7o);h}P${NDcW^Hh2d>AioWd48Vl!W$wv zZ{!b|4qf*m%ovHH`(X7hRKuK zi1me~o#uQigAcGvhe;d0;J=Y$R`K#V(-@cZ+`SS%c=@c=)TTx~WuAHv7w{Zks+}3rB9K)^VYpz`Ds@FMNWN1 zlfMo5hn2!yn>J0e`F+j2^6}?;ETtv7l0X2uSUif`Hb&#nLW z$^OBgPd%G-cJA2m=;mkjGveH8ySLx4+jF+UWQo1R2|3a!x9lWt?By-8(tNzGlDqNRzUFrB^@htF zx3bB)9?6u~WZlOZmb*Fc#u@Q1>dtxlKNuZq>Qepta>B`XWS&f7|Dmej&5=5qU6WK!ADX*)xBDZeYJUAlYv$8yPx1~WIEt_}vD^F34E8T9(?N^oMlog}GvUcm7wb}d1 ztH46kYz}mK47d*X6K_y=|dlg`XZOzv|`I;9oEC%+~F)=Hj=8 zX6GgZ_Jm*j9(gRbYI?qR&DE_=*A_48(D5`Bm)}tF&7kMbX2rPlIrcvrmPKuzy>>&A z=hr8iP8ojl?4N(USbQv6c#+1tcNKjm=Phk^oc?zwn)Ppu+{pR*H>VW0@E$f= zxxoCMD__;YH34}O)*jbOpRs6>iQ1A6md&Mowky+``&Ay|U~~THu85 zY>X}2Vv<^)fBM1VlOf!Cg+p}V#1#>fQ#AwUY>LRy2p4VNo^N>9TEVYGfNkk4m-ZGX zeOHchsR-TlmU(RD8a zmUt=TmKW{nQ~sm5=>M#O7lPNPI4d&ghqE5v^?`SvW~Ps?oy_9WGX--d^12_{E9X}- zNw~JRi_%--aPlv*Mt2>YUj$ZFUxJ)9@|d&ex$OkPwCdKMKkhmtl{#xov_y3UCQUg*^hc} zT(|NCszn`hvEuW8siN+!w1nrEoW82p35S#0bra%t zpRg=PL;rlFp16yao4euj^YfB(4!!!+Q?*&qQ~6O`+kw^kWGw=YyRA6{I`aj$QZ28US8j`(fMIAbyejrJ-Lx&-wjk@B81o>cqGDzquy6Ya1-clZ_c?Kl73kSboEc52~$*~`7k zo}c8LI#;qxPxNio*5Ok=CI9@FzPe(1ublVtJ!h(V6-__AR$HpkyI7)MV%_~?GsX9? zZU1Z`UjNv=;!W-ThO2DFpTbIBzSz~4KEKYbuW#q!=Y5WT-$czqKTeADemEC)}^#)w$adGIB*9AM+PfY&m_YBqx5~xu@y+LX(dNY}~i8FOT`T zT>X@_lb1{O9WSvop1Z~{^8S+Cz8m}N4xEhkEBYk5o6J5`SOl{K827<|m)?r9m;KT~@$Vq%{b96RNGE^CdU$gu@$7M64!5|dc1 zk>eQ}V)SRekB4I6hTX^Ke!qA0&!->6c zsq^khtF$8Lt_uiJH7sM9-(e?sThfqaj@}c!8Ah=}pLcml1~)BT5bSwJH)G*%ZSCTE zt&$g=GgA^9zP=UqUu4iFBJ4Xs;qesVKvgZ(UEd^F{=IEJQ@S~@$o#E;mgebYS6FUV z^qe~)u+lk2@X7UF!=TBYLhEl|uF_>ZpZIp?hRqMAUA@?UHI`?7-rZWaqg(|$GG^=7 zpPhUE+l|e;-@MiRVAsiTC?)Al<0118?Mh#RBHbi}tjhnS``TWKYL=XMm1C*!;;aTq ztv3q}O%r=;JDM)}2Hf1Re|z(_BBzLR&n89Xv2FP}X^C!h zdj8XI*6$KtUo#Gwta#q;pNN0`BgKgk$0ij#*|_xak(7E!U&}qm#`Vt)_nUhwS{J{*?x|=L7r#HT>Dp3; zjZ+1mpD0}9sKR;la8^%g(eI82bB;c7xzx32!;F6#<_^IjQ@==GP>Br^VZD~=Ar&n$ zrCG7;g~r-c1G!+|wjW0){XE#S&i4pI;>8U&?2kybd#P$xwLKQ@QA>8Z9u(!C*uG}% z+N3p#TRV@Q6Y4!I;k^0Hhkb&I`-J&*9p8l(JNJCK+ST9n-xfdrf1r1%eaXhUyZ3+H z{L&O{R`+$Wf6T*E7o8?8o4UvEjA3W|_s?r*7^q#I_##C6F?Xztd|zSM!^=W*l@Get z%+-i#J*X(5u3Ua)-tM;VN=rB{shr&Sa(~E9b%Edf-i>aDHgLs0nj*yb=ZT4a&Cl60 z;_D{-n%FPYlvcK7i9}zZTd@9-$(4`3==P}1)|suUzWtn0jAZf4SE^xb%J;r3+x}sd z`JS1*!s<8o7fijIKL6>jcYK#mYQ(@diprKj+mR$RR4$STEF>5bbqo-Enq zb+_u+)Wc%Qd-^Sw-`KgWm)~jajQ4K^ou;f%7P0I)tood3x$dbG?_#Xli`a5S)ZDk| z8kDiHgb1ikI?E|9s;FA>Vxx(nhoJP%@-joGDZw)e_KU=^=1iNpE@Ao=-mjAb9j0yB z?t03^(tFPeLkkxMk>Euhf@^uyvbOl^I6Zmva87^hz31I|k^lX(<;(2uR{eGs)jseq zaPR7(y7x!3f1jDA%hh};@{?Uio4|>aUsyPtCt96~xG=+MO`+w9zFXJBuE^cj{jl-8 zY^m6sqsQtN$yx_pKe_zbQxH_GCEePV#xK`f(3K(yp~iL$HZqm%A(Pt5QC)sER&(peo}z#nnC zVwczLZI`Z`?3#KtH14bF`X~Fs_sX4{|M>9xYW~w!Lc7IY%NSPAs`3mJIU>Rl=q7NB zddl2!qUhUX>=V zA7B-uLL~ z{f`eOU%zoL`qY}w5c3u+eGO^~Q{i1+W zd){{{-oe{f%u!&in%(jzG03Ua;gq0H|5<~ueT=b_nkpnqJ0#Tk?^UGA+OEjxE0gG5 z9+KCx$zbLh;pCK!`;RY>`FyW@|Lprerj~!0c70!0@A{unLC-(R|Ce}vJ~kmvUvmAr z&u1q0e|*r)ZzL1Gqo}oA{+C7d_3s+~`Ilntjvs%wfBxRRvfJ`@w{Gp7oRgb((S%#@ zm$<57RalsR;p^D%8*{!_J}9?4a_}Le;o(08^A9F?cKI^fiT$&AVy zr(1TsQa`axXw^)^`>tNOzmrp3P4%SmqM#n<;xulJj7gU@C9(NtWDp9`oxK zrLWh@ym|Ba!f*Q{Z%*kglQFt$bMVyyCs)biy3=`MF9%Iq(5v*L?Nn&aydAx(pX+^m zv)MoCal_HNUPHd6N}ipQwU4!lSd}E6G<;ZeD6{=!5igf!;+oVaY!b>GVm&jSZ8cgl z!6jIRRr^Ws5%-HPp8bovb!?w^&yrK^5-t_@Pwnp(QaZAUTj-6d-?x8#tDmSY5a5mx z(@dGjd+M9Xf0>J#8#8QobDv*)oj+pjnfS_woiFYG{o}U@t5@6ltz9py;jruPH6P3glDDmmO;(+F zF(>7~RHYKP3lj|&1~I)4Oeyk6I{m6Yim|9G?GRqrc6O?KO|LFWCR)yuduW^ADTlA0OJP-Lsl=rMJz8 zhrfT`cwaMR?PT>Gk6FKeyz#jI@|pBI|2~B;y4`mF*Ms~GF==7ueucO9eoyc|-1_-> zgicz|apyUPHxADDc~S23VP&z~?ptyl*v~$kdV0sf8CS0S*u}cI&~=%H_7p>j)t-in z=1gPUw{4TMr1v?`B;Mcey=L~5@vZGO@w@OzIdjp;h}?j6N20p*WHc`NOQ&jbb+eV} z#Xdab+`nJTJ|?#`QjWi<8Z{MFA5gPkQ^Z(WS{K!g|WPJTHy4n%#_+tWJ{*y{?zHmHH@g zcwQ<9(!4A1(cRJGLGg>u-;9e6X*s7ZHJ?zt>@4SeQ9ae9`x#x9otE;>ubVy6ij|i6 ztZqF}|1sm_&%aN9is$&<+xOy8dd!ORo*U)P%t}iR`S<7O>UNnk&lVjnk(xh=VM?#V z1udP}tP7qOB@16>U$!pKIC(ebNpUHA>%`>1J`E$o^gZWRh&<^N+}p7`*hw@h=%rKq z6x;ISGVfQNI#D>Ir*!HOmo^8(IU9`bDpXr;vWzykb0?wnF-z{{AYShRvG>z!o|pd@ zRg3>By5zXrk@?o=zs_CFqb}Sx&Hc}__4~Wq<$qX|->K%;)?OWBS>Ktu_k4ETcdHwB zo~-1r?KnNXY^56O_Pce~=OX9T{<8VKdpA$JaLp+bU*F9ZDf_mcuP{lwXd?6Oy$9FN zlBp*%P8_V!E2%b7lnh{dyvD+n>-zh7htjV}ZaEpj8>P9*QPVYxC!+b3RBr3B^xlOU zJgugO(*1-UE$TTW>L7A;X3(rVrCUn9P3IJR>WhBrHPN*wcU99i(aP9Bt&(jC6FJUv z{aK{A{6OdC^oY6Z3f?|Sb!xj9(8JX9lxGLa5(jBvtJGanKHL+Y$|TQP6E<}QW6IjX zs5rYYO`oS7ij#ULaBpo|B(AmO3csumzrv}a`DZAeqi{kUh!b+|E~zEu7dF`v22`Denz ziXPdX8~5)%&&X$=YCL=U9Hp5}&9B2VrgM8tJbODYbz6+k>%I(8MHQ1ttgqG_)ND4L zbxLB5aA=>F$vTY->!zqp+8Cj8ZA!$_1D>DH?qXURI-fcF!nuGDzUE^$n|guGG4As-eN~zB$EPM4uIKdiUb9=;s`#n!ib;>Rm7TdX-9T#2J%_89^F3j^yj2yU-y@tzV%@G|AW=?z4J4BZPSl(ZCJ6p`1-g0dA8+W8y2Us ze_8wfU*62*1FpKVw~smBb-e4e^2wrmzZ0VM_Z@ed&b09qlOo^F{N`%cQ?i!sB98A? zA3PnOTwi}yVcF7T#Wtb0uG-~QvlT^EZ%GxMIr8G=uD-u-Wy|#A6jIJ#d%OIGP4Tp? zFQr6O{r|tqFW$2G@WYFC)7QtR8c7wV{??kVAD3nnml(ifv9Wa41f|*0v*+x4Ew`g= zCcFGEiCmvUQGU9)yHm_&C-)?pNEzDS5MBE@rFH67-5A3MpLVw2w4e1*BhqrG>z2l6 z32r`e%e^xz1Ws;KShz7&Q!zHoYVSIk06sO5!-6Z-zb!O5`E8wG^cOSz%ZrUvXLw{j zEYkAHe;#a+uIUzZVpWNVYv-nE7be@Sx$45Kd4l`H7uoGW)0n$99a%diw z5(unN)tj~Esp_mLLWwS3GL`3zuRq`Oa^2eZvrH4e#ay|$T=mKS^0oQ@kMFHU>p;Ezj81v6`oElEZawZPA^fdt1Dn>#v_Q3!LH7Bk6h|@FC|5 zzlUpG+wB%$_df_^zsj13& z(|g>sWA<-4do}yIW$7!G=;e9t;WPJgTkA~sp3?l&W`k9v^6>))x90B2-{^X9Ww5&D zsiqqTbM<#k|9P%d&$hNtL}{HwaX=~`f3}a^qBxn2hL*Z_@0e}aWR$RJU#C&q^7%C_ z+0(b5%w2R#!XP$2b)T_&?+eqG zhK&wo8oVn%FDkp_&~xd4wo!$_Qj?q_vD&-ni4n*Tcqdf-zGn}5)8b+|KbBaFx@E)T(JG+3=vJGqU<}JE+ zKRLH}>fdI`ew$AQpPvfuGT>2jepmH&zRKEr2fx0xt+~8ulhHxmY4h@J0B| zy!}45_KQ|{t;#x+RNp2W5;9qHg^zgD%MH>uuX3r%CSI3+U!3n-qQSNFgyy9uJw|`` zo{lo&dd%bIeOY66@};dS+C-$nCAh2)NVJC8|4aL^Nx*M{qCEVEH%Yqh_LU#z)6QqraX0Ek75i-g>;FT4wT` zCsW>hi{)E#;k&xErIq{IBX#K_86VHJtx#~?HNi5&*8lyPpP#Dz{;Ygo{r~a#lk0xX z5qq6@_sqUm-S7T=mal%L#lBf}*NP)gq$gCTyh-^XBXW0-;KhNv-_%&i{PT;F3)WZD|)yimYzJ9;5F0M z>hTA|jobDeD|yT^(V!iL-saWsQkT>Pn3&vY~8>UWNq@%m|Bga#oYnp2|N~8ydHkS5@*rXX9lRW2Yvr%gf+1voDx88kI=S^mTV# znR30y^TvM5i{-VV$2{!sYAGL;p4_6^?lM>S*ohs>eP_;mzhlSl2PjPe_ z$ope5^~mHUB}=+xH}Q)J7Rxitdz zYXz6B&R2G|d~j{|Iis0tHtwqIdYLly<{ys(`D{hsu5?@4IY`^??B!8Uj)^pq?Xk47 zO3A;saBkYR-M)c57FJe|4u1c`?RWpL)xB@N_03y|GC}>#FcWc9C-vt6m4`iL`1xkxE!nIlc6d7_(RU1y{wi z+_?p=t;P+ZB2$GqlS~hU@I97sWj&?F7$NN&8MWo2MRwuShC?T1w{4PoEVDqfq4%ur zsU(*yrfU&S(>)D0RDDuu{>brO`B-{UY%+IypkLX$HIjYpKF3+l7Wv&~6|}psx_g#G zSkMu}v>ub0PoIW_-N0ES5hNwET7;t;5UX&%BoYO_Qhj zm3hmnlpcECa=ugKXyoKjr>(25^Qm+Cb1Q8+5jnwNbLxYce=YNO)jpnG_u;-x<(JCH zH4K|8FW3Iee*fzkfBhq+aJ{#e^nS@+&|0B7FHW)8n01MBrqIn*4xz0PTlx%_E<1lY zaN@eW6M+${52n}LUbtALWn~SI$~)%rp#J`gvu;#fnB}u9z_tIg!0h1bC;o@;YMLP8 zcT&4Fb;qfU5U(rk8!eJ&^mrY6Z20w2$F8_VYnEBAm}zPp^g^QdSWaHFIy=_mAbSuaTDj_u;Qh?)%M~_cwoeNI-@;a%Y{)A0$*{eAwRDbl#w<(MM2&XmAg>b32R^0ENpo}UAMm}3u;tSfd?Byq zFq_F-qu?kV5b$`|W zdtm*t-F|EKJ%04U|G}{D;Eg7; z5({-pZB6YpqLy*jxA3Sdn}uE1=y~`dL2+60I_2oo2_~YZ!7FC2%PUCAZGD$7C}mN}`Xr%jvZn0CoM z$MM4`>ZiZ#Z9NlnWXV;P^E=4~5>K?BSZuGX&_I)U`P2+-_Cqr(CMGHC3nJvRcB3i zHM1J3FPkkbVElAL(oL2e!!#4AMQauZNWJD!lb)lua?LV>X_uxhskn1-daRNA3ByHG z{}@j-J|*%(=YDylRgC@%jhyBwz39X!5o$**X zw?{&?>*{lc|Liz+PUUM-1D*i_n-V*2@~o?+FiWooX@mX^L|v;JyZ%gD(TUElkCL)9md zgV$s3S*u)=d!wbEw|n-h2Qu0xKAWa4Tu9@NBU=0?sn|E497|?3P$ky+&l6#_#2q z8jB^CN`|SPvs`0XB!1PY$U-k@lT6f-Prr4}-`lQpDAKn>u2=0yTUB6i2=lb+;#WU= zg4O+vCHyUJ+;d*t|-FTk2xYk?s{b zZkcngx+t%aUA@NRq*pI$+WBSE5<26gVx_;|ZJ(_> z^X#_`+mg0eDVFI@ekqlEx#;N~R-s2xmb1=xT-#9iNN-WR&@R@?7o}3ppL^O}Qp(&c zn7VT3=hFJFsm9v_ekyNUANwrh{{+XtjdkD5&fWXX#kVN=d&apf9&@ZVJDQ1J?)CLl zG!_(ovMNF2BwJ07MWE@I&rbT^tJ6;yKHMC@@9Z_nI%{r++>}F6g{xK89^4t%tjn1l z8967^X;T1KvO~J}wICIx^WA&jTL+fUt(dV`{f7gGu3qG>bDIm3=3c#>m-zgX=(qLn zjaRW{JomW8m1C_{a?_u2kDE0|X@W&;Vr}u+pzXUuw`_du~c?hS9Y^4bHh* zQ*Q`{3cXTt^XLpr<(qXN_`3L=y@r2&)&HCL*}u+FMEijLpKp(UuK&N&yynBFb2$*&oKFE$vyk{v6s~rrO)SP@UFYn z@T=o?{O2&g``@kn?tW#exm)z}Q{|yeX|<)NW?H{fo3=V;->&{#{+m(p$9ck!u+30u z(O%`^A=tXOU>ASbtJcSkTh?nem4!`uIeCfl4}ptXNinK{Q&Kq%7xnIIEV*`WLQdn` zi*wc3YtBUIE|%NW(@`@?a+{xQsrUuPrhJZA@6BrhPX(>*ziCxG>Ep@EGBNv3Jjyt^ zKx5$siKSIh%}OhM8t3pO`PX#Bx`elVJsa$EEle@BN0hh3XW|^C$nKpAZicx}W@Ii_ zzoL7(%I`Lt({-cy=T9tqU2UZJwRO6T5$RW`>jgs_9La!X|pP8@GulRp0jR`pA&lA{Q>En$cRww|dQox@HCS z+`t7zlWxuoQZhaxxOPj2;)LIx9I`7nteEGSxk-)1--q{{)vdI?mr94j_jWzJ*i`&{ zUPAF>7T3TFtdf$t(~Q&F*_X_abn$iB~R zpLMQw1~)7-aXTTjJU=zrCb7JJ`rf&#CDvLNzS2oEcy{x&^^^*~Iky&VIHbd+nNZxh z+RMl8T&}0l^WaC4X0_jgSo{4~i3^^{yJ6CJN%PdlDT`Jushnnfv!mgFX7{Vv0b$vb z$}FP4xF=rCZr-fX5Td|l$iGBGeaahQI~J~RgPRh`-HdfR6D;RDi?3Lg%$4q%vQSr& zQ~y}nrtlX|X>$!LrfA=^*m$y{w%O70jpbg>WUfi)Ufg)joSylE<$deDfb$l2W>2h9 zT7IIajA5D5i;~A0zNZpg`}G!wSiV(dJ^B5kl*E=cJuaz0Kf%AxXNKn2zOMB3TIdtj z>u`_g`iq5fRA=!5KiFZBKfzpwtX-^Oyqsg0X?+C;5bD?b<8 zoC;jw^yp#meeY1PCvDH(36RzYhSQ(0dLPPS1{ zSyTFAMu(S_sG;K}-nVCx*Dz*BzLVd$(a3G@2fJOz<&*2n4xD-=rm5zn?)2qwvuxS6 z?-Ksu8{G^1dtDmx^klW7v(6`DLLTQ^$zP$Z@$rjOlGZ*(JhwwRS)?8o2o@{pA z{K73m`&-M`JzukKUC_GuPdb-X_#J!Wf!tuqT4by$} zKk{^@aGj`~F*(R&?Q*GUHx3Fcmz8WSUTRZexp3|qz2g}=t|}>a%kQw3iA`4DHcx;l zR$2CejF6&B(Tfw3tFju*rb*arTjRpLPUM(aN_O?PX)iJ+pI3Qqc&f{Mde7NeUpFtm zX|a)2(|bdqP+J~-^2*TN zwoA@XXQKY`9D^+x*;6taO{J2zwgkVtx9=vq&T*b_zAU+2o6cvSTet6Ry4;Qrl9H$A ze^2`Rc>RvOf4ipN{j}Qt*S!A!Kc~Jt;j1O_<#5&7wL9e5IO?}{Ug+dqm1mPX*MNCr zrsZM<$(+E>4|9CBwRWrs6#Ad{E7|u!k1-`|5cUm~(e0#K}Kc{HWmlgzV}14||erB!voPwoP0sygb6XRDWYs zdgZ&rA#B&)S6OCD&o)uKcvk$yrWaT3jcU)I3RveeW8IphDa&3;u|;hzJ^gl$ea_A= zXI!sc*J4|xveeT#)9*zy)!3>oUE?NsP1xKv@ZKr>Vi4bc*4S0uqi7k zZ7E3A+#Mjcu;vtp`bm|SZ_=DU$;LL!XnnGw^c72X_G^vkZ#VZHO6b!}n0jY#aeRSc z$q&7YTfJW`Q{BR=DgBIncS`UV9W{p5tIPT;OftANvo|gK&i4K0A*mXnp9@|yUrrJ; z51bzSKT>g>?9?0cw%hC~K9TkGUsU23Yx$jaznPtP+pq8XD*N63tbWalmD=|I;{SHa z|2S}1JkQ=HBW|0Ktf3sQ>RfN{#h%+InrY6ttYqvx@pZK>b9&(4jYlJt{Umi6cZ7AX z?c!-IUNpn_*W~XzWDK`0u)cS4v(sx0#|u%Do7s)L)SWIjZCp}z@at>qp6RB|#>*q; z<_Odr{&!DqpQlgwu_JmLi)+P8Qg-cfGtS?**fi-&Pq=Jw=sE&grtW#8t!C+pr>|NN^o@sh_g@1?rFJ#X}^=iQq( zQTTrS@mnvd>%SfBKAXOIp55xBReS0_)%I`u|G>Wbv-SPYCyt7ncZ#p=U31`IvQwpH zp2gafvaUsIbj0<~NrZ*gi<{aScn9C`lCZt?#VDche1tNWYO;wU_iXo>O;Z-_iJn{| z$h22zYVeo9h6_?P#_FXr56`XT6KD6CvviFcPgwXy$z3<)e8nZ#=Ot`P|NV>a@XHyd z%QN0eEi5THt$b~{GTT+Ds#4+C%DJl~`@$r8+)LJ~PcX0x(0|?{v0}RJ!p|D|3%z&E z3g|t?!|j?WtF68*V&_viF`k{S|7^=$5Fj<*xUQJ5CE5f|Q5ozd#6UF@#)xdj~Cv~laXid^2QCQ-BFG?evw zWtRTd(n_=3+4kb)u35i6bcC31u@v4tE%mzK)M?EH*PMDCTzGfQ-+61^A^FKN<*I^y z@3vcNZ?W9xxx&uhccm5UH*s12H|H*P?f=}=d-DFTkNxxhZ;?1KfBR9c50BqhtNeLj zzW?j>dxifm$1f7uzSf^Tq}j`aM{?E``MX|6R~X5>y?!L-0ayFB1yf{NdrT#A1H6_b zAMr4Xl2f>vJ<(Jp^@8O$fsocs9QTwx?}c~C8md|*MRs>}PGQcK&EW65``9hR z$onc{qPgmJVRM&O=WrdC-G0|?b3{`3`3)=T$P*iVpc=Gwbo?Mb54;-?#ykG6P`jYesZidISf$-P#iF-(1I!-xD8JHJbN^oc#6?chindE6B&PJe z{KfWos-~CqrgIi=J1iIf{<&<4O$Vcms;1BVvMZ-qeQ$4WcRqYE(RW+Xt_kJ66JMO1 zaWO2pnNxlpxw<5C>KEo&GQV|#TQ6#?ox;VrPCv@7?rq0PFP zZYc3(vqP#uGt=av`)66!OnkT0aK^sG)RO=IH5uzwS<+V;b*Q_(^D^vM?VPS%*rd@I zBEDgU`H_fZpMy)6&tLY9S2|i{SZ|>iuch9~HH+74XUnryz!i&nu-m|iU8Wm)1}wW0XPt6yA)Uy7s_$v;%wz4>iwx8*jL zC5Q939^0N2vBB@3-Qt;fc}Da40#2Pg>8@Gw>g!D}rnyV4we6FxPZT+m&Rr9Hd5f-^ zG~f5{nWdT~|8&0l|B8`G7Co5$YQjd2@RiONRUD^oo0zfbPk4r7+=XpjtGiYEV`hI| z6?|F$zJ%!h5B~4}-w}EBd`|@9zIWa4)ZPH^mo?h*5q%ff2;NG zifqK|9c2$~7GE`8_So=L)Cr*&k*yjlHb|w*Hm_2NIvWtpmfESwwWTbB+2ZPNb7{|H zd7gsDoUPg&rMzz^39I{UsC&+BQKbAVaN=v$BVjz>G*5Oaa;9GT&bRyuyW!Dg2d%s< zMz^0*!;!PSYgwGn5tGgeHnG8LCV>J4Zw*I{nIt74^)vb03jTldzuVug)60Hd9Jj{)Yvb|H=KG%R`=MX=edYUI#o32e zt-YYA6jRVRYvr86sS7mAzgwSLcsRAyv?%AC#2JUEPioSeLQ`^IL{FIih9$e5Yra#h z$s`E@=>;2J%rl+y`$O!OL(8umzF|^lxj5F%=ZegmoXu;j*IX<)t$NME%zyqt{q#e8 zMic)Yo>m?AS@liKUKd;Il)pzZw_M7Yqp>BXack0}FwMoMCIy|=nR&<|NJ#b3o8DNK+sP)gHf-AE z$deQrQmf;BCP2dS(d8{IEN+%39FKfh=$d`H#AK;N?}bxAVyw5mS+0`Y)TN@YthuG* z^WyJYVtq5BpKZ3ZtGIP+@zlhZ%646r_D_B0f9?(1>#Eo6U;9|o;ew{nR8zk<<#vw3 zM%CQslXri9s_pN)f6=B__y26}kNLsOs!;DJu6-bU-=l9&@9nYNU4LWGuQw+(51-{) z7Ik-Babpsc7YaW&U)}BKt6N-GD-M<9 zHhePmHhp^KZF%9tlk6*wz4lr5cwe=q*P2Z_sT%dor_vJwJenF_hCXF{`9+K`)z^OQ z`^#*cFXClpP%2{UpCXY z{EnOHJb~9zPfaYf=bS6id|b6sIqG|Cnxf&cZOY4!B&0f7N(Igkddd>$<;S8Tpp|@5 z^Gms3@3G4!ovy_$IV`WPrTM>L^7XjV`={Dd`=Lg5-WMAurgW3o|KFRPUfwy)Ke