stew 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: 477197e65d28b16f161bb00fda87456f4c8dd060
4
+ data.tar.gz: cc4b12947017d09abe8709ce409f7bcd29a13b95
5
+ !binary "U0hBNTEy":
6
+ metadata.gz: a906dfe2d3fd1b5f153d8ff917d4d607928a53c743fee15a7b0525592f0eaa1db3654e331783e25359efdf19de3291c5f20c12643f282266a2acf5cac819de4d
7
+ data.tar.gz: 225ef1f2c16bd40c24ed9e0d8573ed5f33ceb224dbed1b0485aba612429dd3d157c5c6030c7aca9980fd123ab7506a2774e3e100e7109fe478c9d4a3f4236d08
data/README.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Stew
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/stew.png)](http://badge.fury.io/rb/stew)
3
4
  [![Code Climate](https://codeclimate.com/github/mskog/stew.png)](https://codeclimate.com/github/mskog/stew)
5
+ [![Dependency Status](https://gemnasium.com/mskog/stew.png)](https://gemnasium.com/mskog/stew)
6
+
7
+ ##Important!
8
+
9
+ **Steam has deprecated their old xml format api. The good news is that they have added the remaining functionality from it to their "real" web api so Stew can use that instead. Stew still works and I am currently working on updating it to use the web api instead. Functionality will probably remain the same but you will need an API key from Steam to use Stew**
4
10
 
5
11
  ##Information
6
12
 
@@ -56,7 +62,13 @@ steam_id.friends.each {|friend| puts friend.profile.nickname}
56
62
 
57
63
  ##### From an App id
58
64
  ```ruby
59
- app = Stew::Store::StoreClient.new.create_app(220240)
65
+ app = Stew::Store::StoreClient.new.app(220240)
66
+ ```
67
+
68
+ ##### From an App id in a specific region
69
+ A more robust region support, with region identification by country etc, is planned.
70
+ ```ruby
71
+ app = Stew::Store::StoreClient.new.app(220240, :uk)
60
72
  ```
61
73
 
62
74
  ##### From a URL
@@ -22,10 +22,13 @@ require 'stew/community/profile_games'
22
22
 
23
23
  require 'stew/store/web_client'
24
24
  require 'stew/store/store_client'
25
+ require 'stew/store/sales_client'
25
26
  require 'stew/store/app'
26
27
  require 'stew/store/app_offers'
27
28
  require 'stew/store/app_offer'
28
29
  require 'stew/store/app_offer_sale'
30
+ require 'stew/store/sales'
31
+ require 'stew/store/sale'
29
32
 
30
33
  module Stew
31
34
  Money.assume_from_symbol = true
@@ -49,7 +52,7 @@ module Stew
49
52
  end
50
53
 
51
54
  def self.money(price)
52
- if price.include?("€")
55
+ if price.nil? == false && price.include?("€")
53
56
  Money.parse(price[-1,1]+price[0..-2])
54
57
  else
55
58
  Money.parse price
@@ -58,4 +61,4 @@ module Stew
58
61
 
59
62
  #Base error
60
63
  class StewError < StandardError; end
61
- end
64
+ end
@@ -1,11 +1,14 @@
1
1
  module Stew
2
2
  module Store
3
+
4
+ attr_reader :id
3
5
 
4
6
  # An application in the Steam Store
5
7
  # Initialized from the contents of a web request to the Steam store app page
6
8
  class App
7
- def initialize(response)
9
+ def initialize(response, id)
8
10
  @document = Nokogiri::HTML(response)
11
+ @id = id
9
12
  end
10
13
 
11
14
  def score
@@ -33,12 +36,26 @@ module Stew
33
36
  App.content_or_nil @document.at_xpath("//a[contains(@href, 'publisher')]")
34
37
  end
35
38
 
39
+ def header_image
40
+ App.src_or_nil @document.at_css('img.game_header_image')
41
+ end
42
+
43
+ def capsule_image
44
+ "http://cdn2.steampowered.com/v/gfx/apps/#{@id}/capsule_sm_120.jpg"
45
+ end
46
+
36
47
  def offers
37
48
  @offers ||= AppOffers.new @document.css("div.game_area_purchase_game")
38
49
  end
39
50
 
40
51
  def dlc?
41
- @document.at_css("div.game_area_dlc_bubble")
52
+ !@document.css("div.game_area_dlc_bubble").empty?
53
+ end
54
+
55
+ def dlc_app_id
56
+ return nil unless dlc?
57
+ #Close your eyes...
58
+ @document.at_css("div.game_area_dlc_bubble").at_css('a').attributes['href'].value[/\d+/].to_i
42
59
  end
43
60
 
44
61
  def indie?
@@ -47,7 +64,12 @@ module Stew
47
64
 
48
65
  def price
49
66
  return nil if free?
50
- first_offer_price
67
+ first_offer.price
68
+ end
69
+
70
+ def regular_price
71
+ return nil if free?
72
+ first_offer.regular_price
51
73
  end
52
74
 
53
75
  def free?
@@ -56,14 +78,18 @@ module Stew
56
78
 
57
79
  private
58
80
 
59
- def first_offer_price
60
- offers.first.price
81
+ def first_offer
82
+ offers.first
61
83
  end
62
84
 
63
85
  def self.content_or_nil(item)
64
86
  item && item.content
65
87
  end
66
88
 
89
+ def self.src_or_nil(item)
90
+ item && item[:src].split("?").first
91
+ end
92
+
67
93
  def score_section
68
94
  @document.xpath("//div[@id='game_area_metascore']")
69
95
  end
@@ -4,7 +4,7 @@ module Stew
4
4
  # Represents a price of an application in the steam store
5
5
  class AppOffer
6
6
  def self.create(node)
7
- return AppOfferSale.new(node) unless node.at_css('div.discount_final_price').nil?
7
+ return AppOfferSale.new(node) unless node.css('div.discount_final_price').empty?
8
8
  return AppOffer.new(node)
9
9
  end
10
10
 
@@ -16,6 +16,10 @@ module Stew
16
16
  Stew.money @node.at_css('div.game_purchase_price').content.gsub(/[\n\t\r\s]/, '')
17
17
  end
18
18
 
19
+ def regular_price
20
+ price
21
+ end
22
+
19
23
  def sale?
20
24
  false
21
25
  end
@@ -0,0 +1,33 @@
1
+ module Stew
2
+ module Store
3
+ # A single sale in the Steam Store
4
+ class Sale
5
+ def initialize(node)
6
+ @node = node
7
+ end
8
+
9
+ def name
10
+ @node.at_css("div.tab_desc").at_css("h4").content
11
+ end
12
+
13
+ def price
14
+ Stew.money @node.at_css("div.tab_price").children.last.content.strip
15
+ end
16
+
17
+ def original_price
18
+ possible_price = Stew.money(self.class.content_or_nil(@node.at_css("div.tab_price").at_css('strike')))
19
+ return price if possible_price.fractional == 0
20
+ possible_price
21
+ end
22
+
23
+ def app_id
24
+ @node.to_s.match(/tab_row_Discounts_([0-9]+)/)[1].to_i
25
+ end
26
+
27
+ private
28
+ def self.content_or_nil(item)
29
+ item && item.content
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,18 @@
1
+ module Stew
2
+ module Store
3
+
4
+ # The current Steam Sales
5
+ class Sales
6
+ include Enumerable
7
+
8
+ def initialize(response)
9
+ @document = Nokogiri::HTML(response)
10
+ @sales = @document.css('div.tab_row').map{|node| Sale.new(node)}
11
+ end
12
+
13
+ def each(&block)
14
+ @sales.each {|sale| yield sale}
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,16 @@
1
+ module Stew
2
+ module Store
3
+ # Creation of sales objects
4
+ class SalesClient
5
+ STORE_URL = 'http://store.steampowered.com'
6
+
7
+ def initialize(opts = {})
8
+ @client = opts[:client] || Stew.config[:default_web_client].new(STORE_URL)
9
+ end
10
+
11
+ def sales(region = Stew.config[:default_region])
12
+ Sales.new(@client.get("/search/tab",{:cc => region, :l => 'english', :tab => 'Discounts', :start => 0, :count => 10000}))
13
+ end
14
+ end
15
+ end
16
+ end
@@ -31,7 +31,7 @@ module Stew
31
31
  end
32
32
 
33
33
  def app(app_id,region = Stew.config[:default_region])
34
- Store::App.new(@client.get("/app/#{app_id}",:cc => region.to_sym))
34
+ Store::App.new(@client.get("/app/#{app_id}",:cc => region.to_sym), app_id.to_i)
35
35
  end
36
36
  end
37
37
 
@@ -1,3 +1,3 @@
1
1
  module Stew
2
- VERSION = "0.5.2"
2
+ VERSION = "0.5.3"
3
3
  end
@@ -0,0 +1,19 @@
1
+ <div class="tab_row even " id="tab_row_Discounts_203160">
2
+ <div class="tab_overlay">
3
+ <a href="http://store.steampowered.com/app/203160/?snr=1_7_tab__106">
4
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
5
+ </a>
6
+ </div>
7
+ <div class="tab_item_img">
8
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/203160/capsule_sm_120.jpg?t=1364426943"" class="tiny_cap_img" alt="Tomb Raider">
9
+ </div>
10
+ <div class="tab_desc ">
11
+ <h4>Tomb Raider</h4>
12
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Adventure - Released: Mar 4, 2013</div>
13
+ </div>
14
+
15
+
16
+ <div class="tab_price">
17
+ &#36;49.99 </div>
18
+ <br clear="all">
19
+ </div>
@@ -0,0 +1,1598 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Apache
3
+ Cache-Control: public
4
+ Last-Modified: Sat, 30 Mar 2013 19:27:24 GMT
5
+ Expires: Sat, 30 Mar 2013 19:37:24 GMT
6
+ Vary: Accept-Encoding
7
+ Content-Type: text/html
8
+ Transfer-Encoding: chunked
9
+ Date: Sat, 30 Mar 2013 19:32:25 GMT
10
+ X-Varnish: 660184545
11
+ Age: 0
12
+ Via: 1.1 varnish
13
+ Connection: keep-alive
14
+
15
+
16
+ <div class="tab_row even " id="tab_row_Discounts_18833">
17
+ <div class="tab_overlay">
18
+ <a href="http://store.steampowered.com/sub/18833/?snr=1_7_tab__106">
19
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
20
+ </a>
21
+ </div>
22
+ <div class="tab_item_img">
23
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/18833/capsule_sm_120.jpg?t=1356149715"" class="tiny_cap_img" alt="Grand Theft Auto Complete Pack ">
24
+ </div>
25
+ <div class="tab_desc with_discount">
26
+ <h4>Grand Theft Auto Complete Pack </h4>
27
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Adventure</div>
28
+ </div>
29
+
30
+ <div class="tab_discount discount_pct">
31
+ -75%
32
+ </div>
33
+
34
+ <div class="tab_price">
35
+ <span style="color: #626366 ;"><strike>&#36;49.99</strike></span><br>&#36;12.49 </div>
36
+ <br clear="all">
37
+ </div>
38
+
39
+ <div class="tab_row odd " id="tab_row_Discounts_203140">
40
+ <div class="tab_overlay">
41
+ <a href="http://store.steampowered.com/app/203140/?snr=1_7_tab__106">
42
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
43
+ </a>
44
+ </div>
45
+ <div class="tab_item_img">
46
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/203140/capsule_sm_120.jpg?t=1363909411"" class="tiny_cap_img" alt="Hitman: Absolution™">
47
+ </div>
48
+ <div class="tab_desc with_discount">
49
+ <h4>Hitman: Absolution™</h4>
50
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action - Released: Nov 19, 2012</div>
51
+ </div>
52
+
53
+ <div class="tab_discount discount_pct">
54
+ -75%
55
+ </div>
56
+
57
+ <div class="tab_price">
58
+ <span style="color: #626366 ;"><strike>&#36;39.99</strike></span><br>&#36;9.99 </div>
59
+ <br clear="all">
60
+ </div>
61
+
62
+ <div class="tab_row even " id="tab_row_Discounts_901583">
63
+ <div class="tab_overlay">
64
+ <a href="http://store.steampowered.com/app/901583/?snr=1_7_tab__106">
65
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
66
+ </a>
67
+ </div>
68
+ <div class="tab_item_img">
69
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/901583/capsule_sm_120.jpg?t=1363813044"" class="tiny_cap_img" alt="Grand Theft Auto IV: Complete Edition">
70
+ </div>
71
+ <div class="tab_desc with_discount">
72
+ <h4>Grand Theft Auto IV: Complete Edition</h4>
73
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Adventure - Released: Oct 27, 2010</div>
74
+ </div>
75
+
76
+ <div class="tab_discount discount_pct">
77
+ -75%
78
+ </div>
79
+
80
+ <div class="tab_price">
81
+ <span style="color: #626366 ;"><strike>&#36;29.99</strike></span><br>&#36;7.49 </div>
82
+ <br clear="all">
83
+ </div>
84
+
85
+ <div class="tab_row odd " id="tab_row_Discounts_16547">
86
+ <div class="tab_overlay">
87
+ <a href="http://store.steampowered.com/sub/16547/?snr=1_7_tab__106">
88
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
89
+ </a>
90
+ </div>
91
+ <div class="tab_item_img">
92
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/16547/capsule_sm_120.jpg?t=1356060134"" class="tiny_cap_img" alt="Batman: Arkham City - Game of the Year Edition">
93
+ </div>
94
+ <div class="tab_desc with_discount">
95
+ <h4>Batman: Arkham City - Game of the Year Edition</h4>
96
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Adventure - Released: Sep 7, 2012</div>
97
+ </div>
98
+
99
+ <div class="tab_discount discount_pct">
100
+ -75%
101
+ </div>
102
+
103
+ <div class="tab_price">
104
+ <span style="color: #626366 ;"><strike>&#36;29.99</strike></span><br>&#36;7.50 </div>
105
+ <br clear="all">
106
+ </div>
107
+
108
+ <div class="tab_row even " id="tab_row_Discounts_224610">
109
+ <div class="tab_overlay">
110
+ <a href="http://store.steampowered.com/app/224610/?snr=1_7_tab__106">
111
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
112
+ </a>
113
+ </div>
114
+ <div class="tab_item_img">
115
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/224610/capsule_sm_120.jpg?t=1362593059"" class="tiny_cap_img" alt="Defiance Season Pass">
116
+ </div>
117
+ <div class="tab_desc with_discount">
118
+ <h4>Defiance Season Pass</h4>
119
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Massively Multiplayer - Available: Apr 5, 2013</div>
120
+ </div>
121
+
122
+ <div class="tab_discount discount_pct">
123
+ -25%
124
+ </div>
125
+
126
+ <div class="tab_price">
127
+ <span style="color: #626366 ;"><strike>&#36;39.99</strike></span><br>&#36;29.99 </div>
128
+ <br clear="all">
129
+ </div>
130
+
131
+ <div class="tab_row odd " id="tab_row_Discounts_26687">
132
+ <div class="tab_overlay">
133
+ <a href="http://store.steampowered.com/sub/26687/?snr=1_7_tab__106">
134
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
135
+ </a>
136
+ </div>
137
+ <div class="tab_item_img">
138
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/26687/capsule_sm_120.jpg?t=1364481559"" class="tiny_cap_img" alt="Hitman Collection">
139
+ </div>
140
+ <div class="tab_desc with_discount">
141
+ <h4>Hitman Collection</h4>
142
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action</div>
143
+ </div>
144
+
145
+ <div class="tab_discount discount_pct">
146
+ -75%
147
+ </div>
148
+
149
+ <div class="tab_price">
150
+ <span style="color: #626366 ;"><strike>&#36;59.99</strike></span><br>&#36;15.00 </div>
151
+ <br clear="all">
152
+ </div>
153
+
154
+ <div class="tab_row even " id="tab_row_Discounts_221380">
155
+ <div class="tab_overlay">
156
+ <a href="http://store.steampowered.com/app/221380/?snr=1_7_tab__106">
157
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
158
+ </a>
159
+ </div>
160
+ <div class="tab_item_img">
161
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/221380/capsule_sm_120.jpg?t=1363271913"" class="tiny_cap_img" alt="Age of Empires II HD">
162
+ </div>
163
+ <div class="tab_desc with_discount">
164
+ <h4>Age of Empires II HD</h4>
165
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy - Available: Apr 9, 2013</div>
166
+ </div>
167
+
168
+ <div class="tab_discount discount_pct">
169
+ -10%
170
+ </div>
171
+
172
+ <div class="tab_price">
173
+ <span style="color: #626366 ;"><strike>&#36;19.99</strike></span><br>&#36;17.99 </div>
174
+ <br clear="all">
175
+ </div>
176
+
177
+ <div class="tab_row odd " id="tab_row_Discounts_12210">
178
+ <div class="tab_overlay">
179
+ <a href="http://store.steampowered.com/app/12210/?snr=1_7_tab__106">
180
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
181
+ </a>
182
+ </div>
183
+ <div class="tab_item_img">
184
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/12210/capsule_sm_120.jpg?t=1364670932"" class="tiny_cap_img" alt="Grand Theft Auto IV">
185
+ </div>
186
+ <div class="tab_desc with_discount">
187
+ <h4>Grand Theft Auto IV</h4>
188
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Adventure - Released: Dec 2, 2008</div>
189
+ </div>
190
+
191
+ <div class="tab_discount discount_pct">
192
+ -75%
193
+ </div>
194
+
195
+ <div class="tab_price">
196
+ <span style="color: #626366 ;"><strike>&#36;19.99</strike></span><br>&#36;4.99 </div>
197
+ <br clear="all">
198
+ </div>
199
+
200
+ <div class="tab_row even " id="tab_row_Discounts_8190">
201
+ <div class="tab_overlay">
202
+ <a href="http://store.steampowered.com/app/8190/?snr=1_7_tab__106">
203
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
204
+ </a>
205
+ </div>
206
+ <div class="tab_item_img">
207
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/8190/capsule_sm_120.jpg?t=1355948068"" class="tiny_cap_img" alt="Just Cause 2">
208
+ </div>
209
+ <div class="tab_desc with_discount">
210
+ <h4>Just Cause 2</h4>
211
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Adventure - Released: Mar 23, 2010</div>
212
+ </div>
213
+
214
+ <div class="tab_discount discount_pct">
215
+ -80%
216
+ </div>
217
+
218
+ <div class="tab_price">
219
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;3.00 </div>
220
+ <br clear="all">
221
+ </div>
222
+
223
+ <div class="tab_row odd " id="tab_row_Discounts_219740">
224
+ <div class="tab_overlay">
225
+ <a href="http://store.steampowered.com/app/219740/?snr=1_7_tab__106">
226
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
227
+ </a>
228
+ </div>
229
+ <div class="tab_item_img">
230
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/219740/capsule_sm_120.jpg?t=1364395861"" class="tiny_cap_img" alt="Don't Starve">
231
+ </div>
232
+ <div class="tab_desc with_discount">
233
+ <h4>Don't Starve</h4>
234
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Adventure, Indie, Simulation, Early Access - Available: Apr 23, 2013</div>
235
+ </div>
236
+
237
+ <div class="tab_discount discount_pct">
238
+ -20%
239
+ </div>
240
+
241
+ <div class="tab_price">
242
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;11.99 </div>
243
+ <br clear="all">
244
+ </div>
245
+
246
+ <div class="tab_row even " id="tab_row_Discounts_25986">
247
+ <div class="tab_overlay">
248
+ <a href="http://store.steampowered.com/sub/25986/?snr=1_7_tab__106">
249
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
250
+ </a>
251
+ </div>
252
+ <div class="tab_item_img">
253
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/25986/capsule_sm_120.jpg?t=1364576538"" class="tiny_cap_img" alt="DisplayFusion">
254
+ </div>
255
+ <div class="tab_desc with_discount">
256
+ <h4>DisplayFusion</h4>
257
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Utilities - Released: Mar 29, 2013</div>
258
+ </div>
259
+
260
+ <div class="tab_discount discount_pct">
261
+ -25%
262
+ </div>
263
+
264
+ <div class="tab_price">
265
+ <span style="color: #626366 ;"><strike>&#36;29.99</strike></span><br>&#36;22.49 </div>
266
+ <br clear="all">
267
+ </div>
268
+
269
+ <div class="tab_row odd " id="tab_row_Discounts_220660">
270
+ <div class="tab_overlay">
271
+ <a href="http://store.steampowered.com/app/220660/?snr=1_7_tab__106">
272
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
273
+ </a>
274
+ </div>
275
+ <div class="tab_item_img">
276
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/220660/capsule_sm_120.jpg?t=1363890091"" class="tiny_cap_img" alt="StarDrive">
277
+ </div>
278
+ <div class="tab_desc with_discount">
279
+ <h4>StarDrive</h4>
280
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy, Indie - Available: Apr 26, 2013</div>
281
+ </div>
282
+
283
+ <div class="tab_discount discount_pct">
284
+ -17%
285
+ </div>
286
+
287
+ <div class="tab_price">
288
+ <span style="color: #626366 ;"><strike>&#36;29.99</strike></span><br>&#36;24.99 </div>
289
+ <br clear="all">
290
+ </div>
291
+
292
+ <div class="tab_row even " id="tab_row_Discounts_12120">
293
+ <div class="tab_overlay">
294
+ <a href="http://store.steampowered.com/app/12120/?snr=1_7_tab__106">
295
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
296
+ </a>
297
+ </div>
298
+ <div class="tab_item_img">
299
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/12120/capsule_sm_120.jpg?t=1363176257"" class="tiny_cap_img" alt="Grand Theft Auto: San Andreas">
300
+ </div>
301
+ <div class="tab_desc with_discount">
302
+ <h4>Grand Theft Auto: San Andreas</h4>
303
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Action - Released: Jan 6, 2011</div>
304
+ </div>
305
+
306
+ <div class="tab_discount discount_pct">
307
+ -75%
308
+ </div>
309
+
310
+ <div class="tab_price">
311
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;3.74 </div>
312
+ <br clear="all">
313
+ </div>
314
+
315
+ <div class="tab_row odd " id="tab_row_Discounts_12220">
316
+ <div class="tab_overlay">
317
+ <a href="http://store.steampowered.com/app/12220/?snr=1_7_tab__106">
318
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
319
+ </a>
320
+ </div>
321
+ <div class="tab_item_img">
322
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/12220/capsule_sm_120.jpg?t=1356131918"" class="tiny_cap_img" alt="Grand Theft Auto: Episodes from Liberty City">
323
+ </div>
324
+ <div class="tab_desc with_discount">
325
+ <h4>Grand Theft Auto: Episodes from Liberty City</h4>
326
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action - Released: Apr 12, 2010</div>
327
+ </div>
328
+
329
+ <div class="tab_discount discount_pct">
330
+ -75%
331
+ </div>
332
+
333
+ <div class="tab_price">
334
+ <span style="color: #626366 ;"><strike>&#36;19.99</strike></span><br>&#36;4.99 </div>
335
+ <br clear="all">
336
+ </div>
337
+
338
+ <div class="tab_row even " id="tab_row_Discounts_11902">
339
+ <div class="tab_overlay">
340
+ <a href="http://store.steampowered.com/sub/11902/?snr=1_7_tab__106">
341
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
342
+ </a>
343
+ </div>
344
+ <div class="tab_item_img">
345
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/11902/capsule_sm_120.jpg?t=1358708610"" class="tiny_cap_img" alt="Grand Theft Auto Trilogy">
346
+ </div>
347
+ <div class="tab_desc with_discount">
348
+ <h4>Grand Theft Auto Trilogy</h4>
349
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Action - Released: Jan 6, 2011</div>
350
+ </div>
351
+
352
+ <div class="tab_discount discount_pct">
353
+ -75%
354
+ </div>
355
+
356
+ <div class="tab_price">
357
+ <span style="color: #626366 ;"><strike>&#36;29.99</strike></span><br>&#36;7.49 </div>
358
+ <br clear="all">
359
+ </div>
360
+
361
+ <div class="tab_row odd " id="tab_row_Discounts_105450">
362
+ <div class="tab_overlay">
363
+ <a href="http://store.steampowered.com/app/105450/?snr=1_7_tab__106">
364
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
365
+ </a>
366
+ </div>
367
+ <div class="tab_item_img">
368
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/105450/capsule_sm_120.jpg?t=1356891742"" class="tiny_cap_img" alt="Age of Empires® III: Complete Collection">
369
+ </div>
370
+ <div class="tab_desc with_discount">
371
+ <h4>Age of Empires® III: Complete Collection</h4>
372
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy, Simulation - Released: Jan 5, 2012</div>
373
+ </div>
374
+
375
+ <div class="tab_discount discount_pct">
376
+ -50%
377
+ </div>
378
+
379
+ <div class="tab_price">
380
+ <span style="color: #626366 ;"><strike>&#36;39.99</strike></span><br>&#36;19.99 </div>
381
+ <br clear="all">
382
+ </div>
383
+
384
+ <div class="tab_row even " id="tab_row_Discounts_18159">
385
+ <div class="tab_overlay">
386
+ <a href="http://store.steampowered.com/sub/18159/?snr=1_7_tab__106">
387
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
388
+ </a>
389
+ </div>
390
+ <div class="tab_item_img">
391
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/18159/capsule_sm_120.jpg?t=1358957962"" class="tiny_cap_img" alt="Hitman Absolution Suit and Gun Collection">
392
+ </div>
393
+ <div class="tab_desc with_discount">
394
+ <h4>Hitman Absolution Suit and Gun Collection</h4>
395
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action - Released: Nov 19, 2012</div>
396
+ </div>
397
+
398
+ <div class="tab_discount discount_pct">
399
+ -75%
400
+ </div>
401
+
402
+ <div class="tab_price">
403
+ <span style="color: #626366 ;"><strike>&#36;5.99</strike></span><br>&#36;1.49 </div>
404
+ <br clear="all">
405
+ </div>
406
+
407
+ <div class="tab_row odd " id="tab_row_Discounts_18586">
408
+ <div class="tab_overlay">
409
+ <a href="http://store.steampowered.com/sub/18586/?snr=1_7_tab__106">
410
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
411
+ </a>
412
+ </div>
413
+ <div class="tab_item_img">
414
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/18586/capsule_sm_120.jpg?t=1356801498"" class="tiny_cap_img" alt="Europe Ultimate Collection">
415
+ </div>
416
+ <div class="tab_desc with_discount">
417
+ <h4>Europe Ultimate Collection</h4>
418
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Simulation</div>
419
+ </div>
420
+
421
+ <div class="tab_discount discount_pct">
422
+ -50%
423
+ </div>
424
+
425
+ <div class="tab_price">
426
+ <span style="color: #626366 ;"><strike>&#36;179.99</strike></span><br>&#36;89.99 </div>
427
+ <br clear="all">
428
+ </div>
429
+
430
+ <div class="tab_row even " id="tab_row_Discounts_12110">
431
+ <div class="tab_overlay">
432
+ <a href="http://store.steampowered.com/app/12110/?snr=1_7_tab__106">
433
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
434
+ </a>
435
+ </div>
436
+ <div class="tab_item_img">
437
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/12110/capsule_sm_120.jpg?t=1361308643"" class="tiny_cap_img" alt="Grand Theft Auto: Vice City">
438
+ </div>
439
+ <div class="tab_desc with_discount">
440
+ <h4>Grand Theft Auto: Vice City</h4>
441
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Action - Released: Jan 10, 2011</div>
442
+ </div>
443
+
444
+ <div class="tab_discount discount_pct">
445
+ -75%
446
+ </div>
447
+
448
+ <div class="tab_price">
449
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.49 </div>
450
+ <br clear="all">
451
+ </div>
452
+
453
+ <div class="tab_row odd " id="tab_row_Discounts_230650">
454
+ <div class="tab_overlay">
455
+ <a href="http://store.steampowered.com/app/230650/?snr=1_7_tab__106">
456
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
457
+ </a>
458
+ </div>
459
+ <div class="tab_item_img">
460
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/230650/capsule_sm_120.jpg?t=1363909410"" class="tiny_cap_img" alt="Lords of Football">
461
+ </div>
462
+ <div class="tab_desc with_discount">
463
+ <h4>Lords of Football</h4>
464
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy, Indie, Simulation, Sports - Available: Apr 5, 2013</div>
465
+ </div>
466
+
467
+ <div class="tab_discount discount_pct">
468
+ -15%
469
+ </div>
470
+
471
+ <div class="tab_price">
472
+ <span style="color: #626366 ;"><strike>&#36;29.99</strike></span><br>&#36;25.49 </div>
473
+ <br clear="all">
474
+ </div>
475
+
476
+ <div class="tab_row even " id="tab_row_Discounts_232910">
477
+ <div class="tab_overlay">
478
+ <a href="http://store.steampowered.com/app/232910/?snr=1_7_tab__106">
479
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
480
+ </a>
481
+ </div>
482
+ <div class="tab_item_img">
483
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/232910/capsule_sm_120.jpg?t=1364178394"" class="tiny_cap_img" alt="TrackMania² Stadium">
484
+ </div>
485
+ <div class="tab_desc with_discount">
486
+ <h4>TrackMania² Stadium</h4>
487
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Racing, Sports - Available: Apr 2013</div>
488
+ </div>
489
+
490
+ <div class="tab_discount discount_pct">
491
+ -10%
492
+ </div>
493
+
494
+ <div class="tab_price">
495
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;8.99 </div>
496
+ <br clear="all">
497
+ </div>
498
+
499
+ <div class="tab_row odd " id="tab_row_Discounts_6860">
500
+ <div class="tab_overlay">
501
+ <a href="http://store.steampowered.com/app/6860/?snr=1_7_tab__106">
502
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
503
+ </a>
504
+ </div>
505
+ <div class="tab_item_img">
506
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/6860/capsule_sm_120.jpg?t=1350012470"" class="tiny_cap_img" alt="Hitman: Blood Money">
507
+ </div>
508
+ <div class="tab_desc with_discount">
509
+ <h4>Hitman: Blood Money</h4>
510
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action - Released: Mar 15, 2007</div>
511
+ </div>
512
+
513
+ <div class="tab_discount discount_pct">
514
+ -75%
515
+ </div>
516
+
517
+ <div class="tab_price">
518
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.49 </div>
519
+ <br clear="all">
520
+ </div>
521
+
522
+ <div class="tab_row even " id="tab_row_Discounts_18585">
523
+ <div class="tab_overlay">
524
+ <a href="http://store.steampowered.com/sub/18585/?snr=1_7_tab__106">
525
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
526
+ </a>
527
+ </div>
528
+ <div class="tab_item_img">
529
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/18585/capsule_sm_120.jpg?t=1356801161"" class="tiny_cap_img" alt="USA Ultimate Collection">
530
+ </div>
531
+ <div class="tab_desc with_discount">
532
+ <h4>USA Ultimate Collection</h4>
533
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Simulation</div>
534
+ </div>
535
+
536
+ <div class="tab_discount discount_pct">
537
+ -50%
538
+ </div>
539
+
540
+ <div class="tab_price">
541
+ <span style="color: #626366 ;"><strike>&#36;149.99</strike></span><br>&#36;74.99 </div>
542
+ <br clear="all">
543
+ </div>
544
+
545
+ <div class="tab_row odd " id="tab_row_Discounts_207930">
546
+ <div class="tab_overlay">
547
+ <a href="http://store.steampowered.com/app/207930/?snr=1_7_tab__106">
548
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
549
+ </a>
550
+ </div>
551
+ <div class="tab_item_img">
552
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/207930/capsule_sm_120.jpg?t=1363882289"" class="tiny_cap_img" alt="Sacred Citadel">
553
+ </div>
554
+ <div class="tab_desc with_discount">
555
+ <h4>Sacred Citadel</h4>
556
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action - Available: Apr 17, 2013</div>
557
+ </div>
558
+
559
+ <div class="tab_discount discount_pct">
560
+ -10%
561
+ </div>
562
+
563
+ <div class="tab_price">
564
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;13.49 </div>
565
+ <br clear="all">
566
+ </div>
567
+
568
+ <div class="tab_row even " id="tab_row_Discounts_224220">
569
+ <div class="tab_overlay">
570
+ <a href="http://store.steampowered.com/app/224220/?snr=1_7_tab__106">
571
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
572
+ </a>
573
+ </div>
574
+ <div class="tab_item_img">
575
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/224220/capsule_sm_120.jpg?t=1364598058"" class="tiny_cap_img" alt="Pressure">
576
+ </div>
577
+ <div class="tab_desc with_discount">
578
+ <h4>Pressure</h4>
579
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Indie, Racing - Released: Mar 26, 2013</div>
580
+ </div>
581
+
582
+ <div class="tab_discount discount_pct">
583
+ -33%
584
+ </div>
585
+
586
+ <div class="tab_price">
587
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;9.99 </div>
588
+ <br clear="all">
589
+ </div>
590
+
591
+ <div class="tab_row odd " id="tab_row_Discounts_229520">
592
+ <div class="tab_overlay">
593
+ <a href="http://store.steampowered.com/app/229520/?snr=1_7_tab__106">
594
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
595
+ </a>
596
+ </div>
597
+ <div class="tab_item_img">
598
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/229520/capsule_sm_120.jpg?t=1364498422"" class="tiny_cap_img" alt="Dungeon Hearts">
599
+ </div>
600
+ <div class="tab_desc with_discount">
601
+ <h4>Dungeon Hearts</h4>
602
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_linux.png" width="22" height="22">Strategy, Indie, Casual - Released: Mar 28, 2013</div>
603
+ </div>
604
+
605
+ <div class="tab_discount discount_pct">
606
+ -10%
607
+ </div>
608
+
609
+ <div class="tab_price">
610
+ <span style="color: #626366 ;"><strike>&#36;2.99</strike></span><br>&#36;2.69 </div>
611
+ <br clear="all">
612
+ </div>
613
+
614
+ <div class="tab_row even " id="tab_row_Discounts_229870">
615
+ <div class="tab_overlay">
616
+ <a href="http://store.steampowered.com/app/229870/?snr=1_7_tab__106">
617
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
618
+ </a>
619
+ </div>
620
+ <div class="tab_item_img">
621
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/229870/capsule_sm_120.jpg?t=1364178394"" class="tiny_cap_img" alt="ShootMania Storm">
622
+ </div>
623
+ <div class="tab_desc with_discount">
624
+ <h4>ShootMania Storm</h4>
625
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action - Available: Apr 2013</div>
626
+ </div>
627
+
628
+ <div class="tab_discount discount_pct">
629
+ -10%
630
+ </div>
631
+
632
+ <div class="tab_price">
633
+ <span style="color: #626366 ;"><strike>&#36;19.99</strike></span><br>&#36;17.99 </div>
634
+ <br clear="all">
635
+ </div>
636
+
637
+ <div class="tab_row odd " id="tab_row_Discounts_12100">
638
+ <div class="tab_overlay">
639
+ <a href="http://store.steampowered.com/app/12100/?snr=1_7_tab__106">
640
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
641
+ </a>
642
+ </div>
643
+ <div class="tab_item_img">
644
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/12100/capsule_sm_120.jpg?t=1361309065"" class="tiny_cap_img" alt="Grand Theft Auto III">
645
+ </div>
646
+ <div class="tab_desc with_discount">
647
+ <h4>Grand Theft Auto III</h4>
648
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Action - Released: Jan 6, 2011</div>
649
+ </div>
650
+
651
+ <div class="tab_discount discount_pct">
652
+ -75%
653
+ </div>
654
+
655
+ <div class="tab_price">
656
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.49 </div>
657
+ <br clear="all">
658
+ </div>
659
+
660
+ <div class="tab_row even " id="tab_row_Discounts_46540">
661
+ <div class="tab_overlay">
662
+ <a href="http://store.steampowered.com/app/46540/?snr=1_7_tab__106">
663
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
664
+ </a>
665
+ </div>
666
+ <div class="tab_item_img">
667
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/46540/capsule_sm_120.jpg?t=1337271417"" class="tiny_cap_img" alt="Trapped Dead">
668
+ </div>
669
+ <div class="tab_desc with_discount">
670
+ <h4>Trapped Dead</h4>
671
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Strategy - Released: Jul 15, 2011</div>
672
+ </div>
673
+
674
+ <div class="tab_discount discount_pct">
675
+ -75%
676
+ </div>
677
+
678
+ <div class="tab_price">
679
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.50 </div>
680
+ <br clear="all">
681
+ </div>
682
+
683
+ <div class="tab_row odd " id="tab_row_Discounts_200">
684
+ <div class="tab_overlay">
685
+ <a href="http://store.steampowered.com/sub/200/?snr=1_7_tab__106">
686
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
687
+ </a>
688
+ </div>
689
+ <div class="tab_item_img">
690
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/200/capsule_sm_120.jpg?t=1353720124"" class="tiny_cap_img" alt="Complete Naval Combat Pack">
691
+ </div>
692
+ <div class="tab_desc with_discount">
693
+ <h4>Complete Naval Combat Pack</h4>
694
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"></div>
695
+ </div>
696
+
697
+ <div class="tab_discount discount_pct">
698
+ -75%
699
+ </div>
700
+
701
+ <div class="tab_price">
702
+ <span style="color: #626366 ;"><strike>&#36;29.99</strike></span><br>&#36;7.50 </div>
703
+ <br clear="all">
704
+ </div>
705
+
706
+ <div class="tab_row even " id="tab_row_Discounts_6850">
707
+ <div class="tab_overlay">
708
+ <a href="http://store.steampowered.com/app/6850/?snr=1_7_tab__106">
709
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
710
+ </a>
711
+ </div>
712
+ <div class="tab_item_img">
713
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/6850/capsule_sm_120.jpg?t=1350012369"" class="tiny_cap_img" alt="Hitman 2: Silent Assassin">
714
+ </div>
715
+ <div class="tab_desc with_discount">
716
+ <h4>Hitman 2: Silent Assassin</h4>
717
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action - Released: Mar 15, 2007</div>
718
+ </div>
719
+
720
+ <div class="tab_discount discount_pct">
721
+ -75%
722
+ </div>
723
+
724
+ <div class="tab_price">
725
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.49 </div>
726
+ <br clear="all">
727
+ </div>
728
+
729
+ <div class="tab_row odd " id="tab_row_Discounts_227220">
730
+ <div class="tab_overlay">
731
+ <a href="http://store.steampowered.com/app/227220/?snr=1_7_tab__106">
732
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
733
+ </a>
734
+ </div>
735
+ <div class="tab_item_img">
736
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/227220/capsule_sm_120.jpg?t=1363363865"" class="tiny_cap_img" alt="Sang-Froid - Tales of Werewolves">
737
+ </div>
738
+ <div class="tab_desc with_discount">
739
+ <h4>Sang-Froid - Tales of Werewolves</h4>
740
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Strategy, RPG, Indie - Available: Apr 5, 2013</div>
741
+ </div>
742
+
743
+ <div class="tab_discount discount_pct">
744
+ -10%
745
+ </div>
746
+
747
+ <div class="tab_price">
748
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;13.49 </div>
749
+ <br clear="all">
750
+ </div>
751
+
752
+ <div class="tab_row even " id="tab_row_Discounts_230780">
753
+ <div class="tab_overlay">
754
+ <a href="http://store.steampowered.com/app/230780/?snr=1_7_tab__106">
755
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
756
+ </a>
757
+ </div>
758
+ <div class="tab_item_img">
759
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/230780/capsule_sm_120.jpg?t=1362503759"" class="tiny_cap_img" alt="articy: draft SE">
760
+ </div>
761
+ <div class="tab_desc with_discount">
762
+ <h4>articy: draft SE</h4>
763
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src ="http://cdn2.steampowered.com/v/gfx/clusters/about_i18n_assets/about_i18n_assets_0/platform_software_english.png?t=1351000896">Design & Illustration, Education, Utilities - Released: Feb 27, 2013</div>
764
+ </div>
765
+
766
+ <div class="tab_discount discount_pct">
767
+ -20%
768
+ </div>
769
+
770
+ <div class="tab_price">
771
+ <span style="color: #626366 ;"><strike>&#36;99.99</strike></span><br>&#36;79.99 </div>
772
+ <br clear="all">
773
+ </div>
774
+
775
+ <div class="tab_row odd " id="tab_row_Discounts_230700">
776
+ <div class="tab_overlay">
777
+ <a href="http://store.steampowered.com/app/230700/?snr=1_7_tab__106">
778
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
779
+ </a>
780
+ </div>
781
+ <div class="tab_item_img">
782
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/230700/capsule_sm_120.jpg?t=1364320677"" class="tiny_cap_img" alt="La-Mulana">
783
+ </div>
784
+ <div class="tab_desc with_discount">
785
+ <h4>La-Mulana</h4>
786
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Adventure, Indie - Available: Apr 15, 2013</div>
787
+ </div>
788
+
789
+ <div class="tab_discount discount_pct">
790
+ -10%
791
+ </div>
792
+
793
+ <div class="tab_price">
794
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;13.49 </div>
795
+ <br clear="all">
796
+ </div>
797
+
798
+ <div class="tab_row even " id="tab_row_Discounts_6900">
799
+ <div class="tab_overlay">
800
+ <a href="http://store.steampowered.com/app/6900/?snr=1_7_tab__106">
801
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
802
+ </a>
803
+ </div>
804
+ <div class="tab_item_img">
805
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/6900/capsule_sm_120.jpg?t=1352492449"" class="tiny_cap_img" alt="Hitman: Codename 47">
806
+ </div>
807
+ <div class="tab_desc with_discount">
808
+ <h4>Hitman: Codename 47</h4>
809
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action - Released: Mar 15, 2007</div>
810
+ </div>
811
+
812
+ <div class="tab_discount discount_pct">
813
+ -75%
814
+ </div>
815
+
816
+ <div class="tab_price">
817
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.49 </div>
818
+ <br clear="all">
819
+ </div>
820
+
821
+ <div class="tab_row odd " id="tab_row_Discounts_8211">
822
+ <div class="tab_overlay">
823
+ <a href="http://store.steampowered.com/sub/8211/?snr=1_7_tab__106">
824
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
825
+ </a>
826
+ </div>
827
+ <div class="tab_item_img">
828
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/8211/capsule_sm_120.jpg?t=1308679002"" class="tiny_cap_img" alt="The Ironclads Collection">
829
+ </div>
830
+ <div class="tab_desc with_discount">
831
+ <h4>The Ironclads Collection</h4>
832
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy - Released: Jun 21, 2011</div>
833
+ </div>
834
+
835
+ <div class="tab_discount discount_pct">
836
+ -75%
837
+ </div>
838
+
839
+ <div class="tab_price">
840
+ <span style="color: #626366 ;"><strike>&#36;49.95</strike></span><br>&#36;12.49 </div>
841
+ <br clear="all">
842
+ </div>
843
+
844
+ <div class="tab_row even " id="tab_row_Discounts_227740">
845
+ <div class="tab_overlay">
846
+ <a href="http://store.steampowered.com/app/227740/?snr=1_7_tab__106">
847
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
848
+ </a>
849
+ </div>
850
+ <div class="tab_item_img">
851
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/227740/capsule_sm_120.jpg?t=1364598054"" class="tiny_cap_img" alt="iPi Mocap Studio 2 Express">
852
+ </div>
853
+ <div class="tab_desc with_discount">
854
+ <h4>iPi Mocap Studio 2 Express</h4>
855
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src ="http://cdn2.steampowered.com/v/gfx/clusters/about_i18n_assets/about_i18n_assets_0/platform_software_english.png?t=1351000896">Animation & Modeling - Released: Mar 26, 2013</div>
856
+ </div>
857
+
858
+ <div class="tab_discount discount_pct">
859
+ -25%
860
+ </div>
861
+
862
+ <div class="tab_price">
863
+ <span style="color: #626366 ;"><strike>&#36;295.00</strike></span><br>&#36;221.25 </div>
864
+ <br clear="all">
865
+ </div>
866
+
867
+ <div class="tab_row odd " id="tab_row_Discounts_15821">
868
+ <div class="tab_overlay">
869
+ <a href="http://store.steampowered.com/sub/15821/?snr=1_7_tab__106">
870
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
871
+ </a>
872
+ </div>
873
+ <div class="tab_item_img">
874
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/15821/capsule_sm_120.jpg?t=1354716917"" class="tiny_cap_img" alt="Cities in Motion Collection">
875
+ </div>
876
+ <div class="tab_desc with_discount">
877
+ <h4>Cities in Motion Collection</h4>
878
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation</div>
879
+ </div>
880
+
881
+ <div class="tab_discount discount_pct">
882
+ -50%
883
+ </div>
884
+
885
+ <div class="tab_price">
886
+ <span style="color: #626366 ;"><strike>&#36;49.99</strike></span><br>&#36;24.99 </div>
887
+ <br clear="all">
888
+ </div>
889
+
890
+ <div class="tab_row even " id="tab_row_Discounts_227741">
891
+ <div class="tab_overlay">
892
+ <a href="http://store.steampowered.com/app/227741/?snr=1_7_tab__106">
893
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
894
+ </a>
895
+ </div>
896
+ <div class="tab_item_img">
897
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/227741/capsule_sm_120.jpg?t=1364323772"" class="tiny_cap_img" alt="iPi Mocap Studio 2 Basic">
898
+ </div>
899
+ <div class="tab_desc with_discount">
900
+ <h4>iPi Mocap Studio 2 Basic</h4>
901
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src ="http://cdn2.steampowered.com/v/gfx/clusters/about_i18n_assets/about_i18n_assets_0/platform_software_english.png?t=1351000896">Animation & Modeling</div>
902
+ </div>
903
+
904
+ <div class="tab_discount discount_pct">
905
+ -25%
906
+ </div>
907
+
908
+ <div class="tab_price">
909
+ <span style="color: #626366 ;"><strike>&#36;595.00</strike></span><br>&#36;446.25 </div>
910
+ <br clear="all">
911
+ </div>
912
+
913
+ <div class="tab_row odd " id="tab_row_Discounts_1670">
914
+ <div class="tab_overlay">
915
+ <a href="http://store.steampowered.com/app/1670/?snr=1_7_tab__106">
916
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
917
+ </a>
918
+ </div>
919
+ <div class="tab_item_img">
920
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/1670/capsule_sm_120.jpg?t=1308071993"" class="tiny_cap_img" alt="Iron Warriors: T - 72 Tank Command ">
921
+ </div>
922
+ <div class="tab_desc with_discount">
923
+ <h4>Iron Warriors: T - 72 Tank Command </h4>
924
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy - Released: Jul 26, 2006</div>
925
+ </div>
926
+
927
+ <div class="tab_discount discount_pct">
928
+ -75%
929
+ </div>
930
+
931
+ <div class="tab_price">
932
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;1.25 </div>
933
+ <br clear="all">
934
+ </div>
935
+
936
+ <div class="tab_row even " id="tab_row_Discounts_73010">
937
+ <div class="tab_overlay">
938
+ <a href="http://store.steampowered.com/app/73010/?snr=1_7_tab__106">
939
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
940
+ </a>
941
+ </div>
942
+ <div class="tab_item_img">
943
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/73010/capsule_sm_120.jpg?t=1360087365"" class="tiny_cap_img" alt="Cities in Motion">
944
+ </div>
945
+ <div class="tab_desc with_discount">
946
+ <h4>Cities in Motion</h4>
947
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Feb 22, 2011</div>
948
+ </div>
949
+
950
+ <div class="tab_discount discount_pct">
951
+ -50%
952
+ </div>
953
+
954
+ <div class="tab_price">
955
+ <span style="color: #626366 ;"><strike>&#36;19.99</strike></span><br>&#36;9.99 </div>
956
+ <br clear="all">
957
+ </div>
958
+
959
+ <div class="tab_row odd " id="tab_row_Discounts_1600">
960
+ <div class="tab_overlay">
961
+ <a href="http://store.steampowered.com/app/1600/?snr=1_7_tab__106">
962
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
963
+ </a>
964
+ </div>
965
+ <div class="tab_item_img">
966
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/1600/capsule_sm_120.jpg?t=1270602381"" class="tiny_cap_img" alt="Dangerous Waters">
967
+ </div>
968
+ <div class="tab_desc with_discount">
969
+ <h4>Dangerous Waters</h4>
970
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Released: Feb 7, 2006</div>
971
+ </div>
972
+
973
+ <div class="tab_discount discount_pct">
974
+ -75%
975
+ </div>
976
+
977
+ <div class="tab_price">
978
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;3.75 </div>
979
+ <br clear="all">
980
+ </div>
981
+
982
+ <div class="tab_row even " id="tab_row_Discounts_206718">
983
+ <div class="tab_overlay">
984
+ <a href="http://store.steampowered.com/app/206718/?snr=1_7_tab__106">
985
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
986
+ </a>
987
+ </div>
988
+ <div class="tab_item_img">
989
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/206718/capsule_sm_120.jpg?t=1360355164"" class="tiny_cap_img" alt="Cities in Motion: Design Quirks">
990
+ </div>
991
+ <div class="tab_desc with_discount">
992
+ <h4>Cities in Motion: Design Quirks</h4>
993
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Feb 5, 2013</div>
994
+ </div>
995
+
996
+ <div class="tab_discount discount_pct">
997
+ -50%
998
+ </div>
999
+
1000
+ <div class="tab_price">
1001
+ <span style="color: #626366 ;"><strike>&#36;2.99</strike></span><br>&#36;1.49 </div>
1002
+ <br clear="all">
1003
+ </div>
1004
+
1005
+ <div class="tab_row odd " id="tab_row_Discounts_46760">
1006
+ <div class="tab_overlay">
1007
+ <a href="http://store.steampowered.com/app/46760/?snr=1_7_tab__106">
1008
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1009
+ </a>
1010
+ </div>
1011
+ <div class="tab_item_img">
1012
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/46760/capsule_sm_120.jpg?t=1309389463"" class="tiny_cap_img" alt="Ironclads: Schleswig War 1864">
1013
+ </div>
1014
+ <div class="tab_desc with_discount">
1015
+ <h4>Ironclads: Schleswig War 1864</h4>
1016
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy - Released: Jun 21, 2011</div>
1017
+ </div>
1018
+
1019
+ <div class="tab_discount discount_pct">
1020
+ -75%
1021
+ </div>
1022
+
1023
+ <div class="tab_price">
1024
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.50 </div>
1025
+ <br clear="all">
1026
+ </div>
1027
+
1028
+ <div class="tab_row even " id="tab_row_Discounts_46830">
1029
+ <div class="tab_overlay">
1030
+ <a href="http://store.steampowered.com/app/46830/?snr=1_7_tab__106">
1031
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1032
+ </a>
1033
+ </div>
1034
+ <div class="tab_item_img">
1035
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/46830/capsule_sm_120.jpg?t=1309389509"" class="tiny_cap_img" alt="Ironclads: Anglo Russian War 1866">
1036
+ </div>
1037
+ <div class="tab_desc with_discount">
1038
+ <h4>Ironclads: Anglo Russian War 1866</h4>
1039
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy - Released: Jun 21, 2011</div>
1040
+ </div>
1041
+
1042
+ <div class="tab_discount discount_pct">
1043
+ -75%
1044
+ </div>
1045
+
1046
+ <div class="tab_price">
1047
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.50 </div>
1048
+ <br clear="all">
1049
+ </div>
1050
+
1051
+ <div class="tab_row odd " id="tab_row_Discounts_46840">
1052
+ <div class="tab_overlay">
1053
+ <a href="http://store.steampowered.com/app/46840/?snr=1_7_tab__106">
1054
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1055
+ </a>
1056
+ </div>
1057
+ <div class="tab_item_img">
1058
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/46840/capsule_sm_120.jpg?t=1309389564"" class="tiny_cap_img" alt="Ironclads: Chincha Islands War 1866">
1059
+ </div>
1060
+ <div class="tab_desc with_discount">
1061
+ <h4>Ironclads: Chincha Islands War 1866</h4>
1062
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Strategy - Released: Jun 21, 2011</div>
1063
+ </div>
1064
+
1065
+ <div class="tab_discount discount_pct">
1066
+ -75%
1067
+ </div>
1068
+
1069
+ <div class="tab_price">
1070
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.50 </div>
1071
+ <br clear="all">
1072
+ </div>
1073
+
1074
+ <div class="tab_row even " id="tab_row_Discounts_46700">
1075
+ <div class="tab_overlay">
1076
+ <a href="http://store.steampowered.com/app/46700/?snr=1_7_tab__106">
1077
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1078
+ </a>
1079
+ </div>
1080
+ <div class="tab_item_img">
1081
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/46700/capsule_sm_120.jpg?t=1272484835"" class="tiny_cap_img" alt="Ironclads: American Civil War">
1082
+ </div>
1083
+ <div class="tab_desc with_discount">
1084
+ <h4>Ironclads: American Civil War</h4>
1085
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Released: Apr 28, 2010</div>
1086
+ </div>
1087
+
1088
+ <div class="tab_discount discount_pct">
1089
+ -75%
1090
+ </div>
1091
+
1092
+ <div class="tab_price">
1093
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.50 </div>
1094
+ <br clear="all">
1095
+ </div>
1096
+
1097
+ <div class="tab_row odd " id="tab_row_Discounts_108500">
1098
+ <div class="tab_overlay">
1099
+ <a href="http://store.steampowered.com/app/108500/?snr=1_7_tab__106">
1100
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1101
+ </a>
1102
+ </div>
1103
+ <div class="tab_item_img">
1104
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/108500/capsule_sm_120.jpg?t=1360603526"" class="tiny_cap_img" alt="Vessel">
1105
+ </div>
1106
+ <div class="tab_desc with_discount">
1107
+ <h4>Vessel</h4>
1108
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Strategy, Indie, Platformer - Released: Mar 1, 2012</div>
1109
+ </div>
1110
+
1111
+ <div class="tab_discount discount_pct">
1112
+ -50%
1113
+ </div>
1114
+
1115
+ <div class="tab_price">
1116
+ <span style="color: #626366 ;"><strike>&#36;14.99</strike></span><br>&#36;7.49 </div>
1117
+ <br clear="all">
1118
+ </div>
1119
+
1120
+ <div class="tab_row even " id="tab_row_Discounts_46710">
1121
+ <div class="tab_overlay">
1122
+ <a href="http://store.steampowered.com/app/46710/?snr=1_7_tab__106">
1123
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1124
+ </a>
1125
+ </div>
1126
+ <div class="tab_item_img">
1127
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/46710/capsule_sm_120.jpg?t=1272484986"" class="tiny_cap_img" alt="Ironclads: High Seas">
1128
+ </div>
1129
+ <div class="tab_desc with_discount">
1130
+ <h4>Ironclads: High Seas</h4>
1131
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Released: Apr 28, 2010</div>
1132
+ </div>
1133
+
1134
+ <div class="tab_discount discount_pct">
1135
+ -75%
1136
+ </div>
1137
+
1138
+ <div class="tab_price">
1139
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;2.50 </div>
1140
+ <br clear="all">
1141
+ </div>
1142
+
1143
+ <div class="tab_row odd " id="tab_row_Discounts_206720">
1144
+ <div class="tab_overlay">
1145
+ <a href="http://store.steampowered.com/app/206720/?snr=1_7_tab__106">
1146
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1147
+ </a>
1148
+ </div>
1149
+ <div class="tab_item_img">
1150
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/206720/capsule_sm_120.jpg?t=1353440290"" class="tiny_cap_img" alt="Cities in Motion: London">
1151
+ </div>
1152
+ <div class="tab_desc with_discount">
1153
+ <h4>Cities in Motion: London</h4>
1154
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Nov 20, 2012</div>
1155
+ </div>
1156
+
1157
+ <div class="tab_discount discount_pct">
1158
+ -50%
1159
+ </div>
1160
+
1161
+ <div class="tab_price">
1162
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;2.49 </div>
1163
+ <br clear="all">
1164
+ </div>
1165
+
1166
+ <div class="tab_row even " id="tab_row_Discounts_207000">
1167
+ <div class="tab_overlay">
1168
+ <a href="http://store.steampowered.com/app/207000/?snr=1_7_tab__106">
1169
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1170
+ </a>
1171
+ </div>
1172
+ <div class="tab_item_img">
1173
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/207000/capsule_sm_120.jpg?t=1361297049"" class="tiny_cap_img" alt="Alien Spidy">
1174
+ </div>
1175
+ <div class="tab_desc with_discount">
1176
+ <h4>Alien Spidy</h4>
1177
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Action, Adventure, Indie, Platformer - Released: Mar 20, 2013</div>
1178
+ </div>
1179
+
1180
+ <div class="tab_discount discount_pct">
1181
+ -15%
1182
+ </div>
1183
+
1184
+ <div class="tab_price">
1185
+ <span style="color: #626366 ;"><strike>&#36;9.99</strike></span><br>&#36;8.49 </div>
1186
+ <br clear="all">
1187
+ </div>
1188
+
1189
+ <div class="tab_row odd " id="tab_row_Discounts_206716">
1190
+ <div class="tab_overlay">
1191
+ <a href="http://store.steampowered.com/app/206716/?snr=1_7_tab__106">
1192
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1193
+ </a>
1194
+ </div>
1195
+ <div class="tab_item_img">
1196
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/206716/capsule_sm_120.jpg?t=1343418395"" class="tiny_cap_img" alt="Cities in Motion: St. Petersburg">
1197
+ </div>
1198
+ <div class="tab_desc with_discount">
1199
+ <h4>Cities in Motion: St. Petersburg</h4>
1200
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Jul 26, 2012</div>
1201
+ </div>
1202
+
1203
+ <div class="tab_discount discount_pct">
1204
+ -50%
1205
+ </div>
1206
+
1207
+ <div class="tab_price">
1208
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;2.49 </div>
1209
+ <br clear="all">
1210
+ </div>
1211
+
1212
+ <div class="tab_row even " id="tab_row_Discounts_73187">
1213
+ <div class="tab_overlay">
1214
+ <a href="http://store.steampowered.com/app/73187/?snr=1_7_tab__106">
1215
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1216
+ </a>
1217
+ </div>
1218
+ <div class="tab_item_img">
1219
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/73187/capsule_sm_120.jpg?t=1327269382"" class="tiny_cap_img" alt="Cities in Motion: US Cities">
1220
+ </div>
1221
+ <div class="tab_desc with_discount">
1222
+ <h4>Cities in Motion: US Cities</h4>
1223
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Jan 17, 2012</div>
1224
+ </div>
1225
+
1226
+ <div class="tab_discount discount_pct">
1227
+ -50%
1228
+ </div>
1229
+
1230
+ <div class="tab_price">
1231
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;2.49 </div>
1232
+ <br clear="all">
1233
+ </div>
1234
+
1235
+ <div class="tab_row odd " id="tab_row_Discounts_220812">
1236
+ <div class="tab_overlay">
1237
+ <a href="http://store.steampowered.com/app/220812/?snr=1_7_tab__106">
1238
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1239
+ </a>
1240
+ </div>
1241
+ <div class="tab_item_img">
1242
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/220812/capsule_sm_120.jpg?t=1357678491"" class="tiny_cap_img" alt="F1 Race Stars - Canada Track">
1243
+ </div>
1244
+ <div class="tab_desc with_discount">
1245
+ <h4>F1 Race Stars - Canada Track</h4>
1246
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Racing - Released: Jan 7, 2013</div>
1247
+ </div>
1248
+
1249
+ <div class="tab_discount discount_pct">
1250
+ -33%
1251
+ </div>
1252
+
1253
+ <div class="tab_price">
1254
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;3.34 </div>
1255
+ <br clear="all">
1256
+ </div>
1257
+
1258
+ <div class="tab_row even " id="tab_row_Discounts_220813">
1259
+ <div class="tab_overlay">
1260
+ <a href="http://store.steampowered.com/app/220813/?snr=1_7_tab__106">
1261
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1262
+ </a>
1263
+ </div>
1264
+ <div class="tab_item_img">
1265
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/220813/capsule_sm_120.jpg?t=1357678491"" class="tiny_cap_img" alt="F1 Race Stars - China Track">
1266
+ </div>
1267
+ <div class="tab_desc with_discount">
1268
+ <h4>F1 Race Stars - China Track</h4>
1269
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Racing - Released: Jan 7, 2013</div>
1270
+ </div>
1271
+
1272
+ <div class="tab_discount discount_pct">
1273
+ -33%
1274
+ </div>
1275
+
1276
+ <div class="tab_price">
1277
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;3.34 </div>
1278
+ <br clear="all">
1279
+ </div>
1280
+
1281
+ <div class="tab_row odd " id="tab_row_Discounts_206714">
1282
+ <div class="tab_overlay">
1283
+ <a href="http://store.steampowered.com/app/206714/?snr=1_7_tab__106">
1284
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1285
+ </a>
1286
+ </div>
1287
+ <div class="tab_item_img">
1288
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/206714/capsule_sm_120.jpg?t=1337108596"" class="tiny_cap_img" alt="Cities in Motion: Paris">
1289
+ </div>
1290
+ <div class="tab_desc with_discount">
1291
+ <h4>Cities in Motion: Paris</h4>
1292
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: May 15, 2012</div>
1293
+ </div>
1294
+
1295
+ <div class="tab_discount discount_pct">
1296
+ -50%
1297
+ </div>
1298
+
1299
+ <div class="tab_price">
1300
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;2.49 </div>
1301
+ <br clear="all">
1302
+ </div>
1303
+
1304
+ <div class="tab_row even " id="tab_row_Discounts_206710">
1305
+ <div class="tab_overlay">
1306
+ <a href="http://store.steampowered.com/app/206710/?snr=1_7_tab__106">
1307
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1308
+ </a>
1309
+ </div>
1310
+ <div class="tab_item_img">
1311
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/206710/capsule_sm_120.jpg?t=1330558056"" class="tiny_cap_img" alt="Cities In Motion: Design Dreams">
1312
+ </div>
1313
+ <div class="tab_desc with_discount">
1314
+ <h4>Cities In Motion: Design Dreams</h4>
1315
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Feb 29, 2012</div>
1316
+ </div>
1317
+
1318
+ <div class="tab_discount discount_pct">
1319
+ -50%
1320
+ </div>
1321
+
1322
+ <div class="tab_price">
1323
+ <span style="color: #626366 ;"><strike>&#36;3.99</strike></span><br>&#36;1.99 </div>
1324
+ <br clear="all">
1325
+ </div>
1326
+
1327
+ <div class="tab_row odd " id="tab_row_Discounts_220811">
1328
+ <div class="tab_overlay">
1329
+ <a href="http://store.steampowered.com/app/220811/?snr=1_7_tab__106">
1330
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1331
+ </a>
1332
+ </div>
1333
+ <div class="tab_item_img">
1334
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/220811/capsule_sm_120.jpg?t=1357678491"" class="tiny_cap_img" alt="F1 Race Stars - India Track">
1335
+ </div>
1336
+ <div class="tab_desc with_discount">
1337
+ <h4>F1 Race Stars - India Track</h4>
1338
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Racing - Released: Jan 7, 2013</div>
1339
+ </div>
1340
+
1341
+ <div class="tab_discount discount_pct">
1342
+ -33%
1343
+ </div>
1344
+
1345
+ <div class="tab_price">
1346
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;3.34 </div>
1347
+ <br clear="all">
1348
+ </div>
1349
+
1350
+ <div class="tab_row even " id="tab_row_Discounts_73185">
1351
+ <div class="tab_overlay">
1352
+ <a href="http://store.steampowered.com/app/73185/?snr=1_7_tab__106">
1353
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1354
+ </a>
1355
+ </div>
1356
+ <div class="tab_item_img">
1357
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/73185/capsule_sm_120.jpg?t=1316039052"" class="tiny_cap_img" alt="Cities in Motion: German Cities">
1358
+ </div>
1359
+ <div class="tab_desc with_discount">
1360
+ <h4>Cities in Motion: German Cities</h4>
1361
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Sep 14, 2011</div>
1362
+ </div>
1363
+
1364
+ <div class="tab_discount discount_pct">
1365
+ -50%
1366
+ </div>
1367
+
1368
+ <div class="tab_price">
1369
+ <span style="color: #626366 ;"><strike>&#36;5.99</strike></span><br>&#36;2.99 </div>
1370
+ <br clear="all">
1371
+ </div>
1372
+
1373
+ <div class="tab_row odd " id="tab_row_Discounts_206712">
1374
+ <div class="tab_overlay">
1375
+ <a href="http://store.steampowered.com/app/206712/?snr=1_7_tab__106">
1376
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1377
+ </a>
1378
+ </div>
1379
+ <div class="tab_item_img">
1380
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/206712/capsule_sm_120.jpg?t=1334780628"" class="tiny_cap_img" alt="Cities in Motion: Ulm">
1381
+ </div>
1382
+ <div class="tab_desc with_discount">
1383
+ <h4>Cities in Motion: Ulm</h4>
1384
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Apr 12, 2012</div>
1385
+ </div>
1386
+
1387
+ <div class="tab_discount discount_pct">
1388
+ -50%
1389
+ </div>
1390
+
1391
+ <div class="tab_price">
1392
+ <span style="color: #626366 ;"><strike>&#36;1.99</strike></span><br>&#36;0.99 </div>
1393
+ <br clear="all">
1394
+ </div>
1395
+
1396
+ <div class="tab_row even " id="tab_row_Discounts_73013">
1397
+ <div class="tab_overlay">
1398
+ <a href="http://store.steampowered.com/app/73013/?snr=1_7_tab__106">
1399
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1400
+ </a>
1401
+ </div>
1402
+ <div class="tab_item_img">
1403
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/73013/capsule_sm_120.jpg?t=1306286391"" class="tiny_cap_img" alt="Cities in Motion: Design Marvels">
1404
+ </div>
1405
+ <div class="tab_desc with_discount">
1406
+ <h4>Cities in Motion: Design Marvels</h4>
1407
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: May 20, 2011</div>
1408
+ </div>
1409
+
1410
+ <div class="tab_discount discount_pct">
1411
+ -50%
1412
+ </div>
1413
+
1414
+ <div class="tab_price">
1415
+ <span style="color: #626366 ;"><strike>&#36;3.99</strike></span><br>&#36;1.99 </div>
1416
+ <br clear="all">
1417
+ </div>
1418
+
1419
+ <div class="tab_row odd " id="tab_row_Discounts_73014">
1420
+ <div class="tab_overlay">
1421
+ <a href="http://store.steampowered.com/app/73014/?snr=1_7_tab__106">
1422
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1423
+ </a>
1424
+ </div>
1425
+ <div class="tab_item_img">
1426
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/73014/capsule_sm_120.jpg?t=1308104116"" class="tiny_cap_img" alt="Cities in Motion: Design Now">
1427
+ </div>
1428
+ <div class="tab_desc with_discount">
1429
+ <h4>Cities in Motion: Design Now</h4>
1430
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Jun 14, 2011</div>
1431
+ </div>
1432
+
1433
+ <div class="tab_discount discount_pct">
1434
+ -50%
1435
+ </div>
1436
+
1437
+ <div class="tab_price">
1438
+ <span style="color: #626366 ;"><strike>&#36;3.99</strike></span><br>&#36;1.99 </div>
1439
+ <br clear="all">
1440
+ </div>
1441
+
1442
+ <div class="tab_row even " id="tab_row_Discounts_73183">
1443
+ <div class="tab_overlay">
1444
+ <a href="http://store.steampowered.com/app/73183/?snr=1_7_tab__106">
1445
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1446
+ </a>
1447
+ </div>
1448
+ <div class="tab_item_img">
1449
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/73183/capsule_sm_120.jpg?t=1311811545"" class="tiny_cap_img" alt="Cities in Motion: Metro Stations">
1450
+ </div>
1451
+ <div class="tab_desc with_discount">
1452
+ <h4>Cities in Motion: Metro Stations</h4>
1453
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Jul 22, 2011</div>
1454
+ </div>
1455
+
1456
+ <div class="tab_discount discount_pct">
1457
+ -50%
1458
+ </div>
1459
+
1460
+ <div class="tab_price">
1461
+ <span style="color: #626366 ;"><strike>&#36;2.99</strike></span><br>&#36;1.49 </div>
1462
+ <br clear="all">
1463
+ </div>
1464
+
1465
+ <div class="tab_row odd " id="tab_row_Discounts_73012">
1466
+ <div class="tab_overlay">
1467
+ <a href="http://store.steampowered.com/app/73012/?snr=1_7_tab__106">
1468
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1469
+ </a>
1470
+ </div>
1471
+ <div class="tab_item_img">
1472
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/73012/capsule_sm_120.jpg?t=1316548278"" class="tiny_cap_img" alt="Cities in Motion: Design Classics">
1473
+ </div>
1474
+ <div class="tab_desc with_discount">
1475
+ <h4>Cities in Motion: Design Classics</h4>
1476
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: Apr 5, 2011</div>
1477
+ </div>
1478
+
1479
+ <div class="tab_discount discount_pct">
1480
+ -50%
1481
+ </div>
1482
+
1483
+ <div class="tab_price">
1484
+ <span style="color: #626366 ;"><strike>&#36;3.99</strike></span><br>&#36;1.99 </div>
1485
+ <br clear="all">
1486
+ </div>
1487
+
1488
+ <div class="tab_row even " id="tab_row_Discounts_73181">
1489
+ <div class="tab_overlay">
1490
+ <a href="http://store.steampowered.com/app/73181/?snr=1_7_tab__106">
1491
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1492
+ </a>
1493
+ </div>
1494
+ <div class="tab_item_img">
1495
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/73181/capsule_sm_120.jpg?t=1307495785"" class="tiny_cap_img" alt="Cities in Motion: Tokyo">
1496
+ </div>
1497
+ <div class="tab_desc with_discount">
1498
+ <h4>Cities in Motion: Tokyo</h4>
1499
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_steamplay_only.png" width="72" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_mac.png" width="22" height="22">Simulation - Released: May 31, 2011</div>
1500
+ </div>
1501
+
1502
+ <div class="tab_discount discount_pct">
1503
+ -50%
1504
+ </div>
1505
+
1506
+ <div class="tab_price">
1507
+ <span style="color: #626366 ;"><strike>&#36;5.99</strike></span><br>&#36;2.99 </div>
1508
+ <br clear="all">
1509
+ </div>
1510
+
1511
+ <div class="tab_row odd " id="tab_row_Discounts_220801">
1512
+ <div class="tab_overlay">
1513
+ <a href="http://store.steampowered.com/app/220801/?snr=1_7_tab__106">
1514
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1515
+ </a>
1516
+ </div>
1517
+ <div class="tab_item_img">
1518
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/220801/capsule_sm_120.jpg?t=1352918931"" class="tiny_cap_img" alt="F1 Race Stars - Europe Track DLC">
1519
+ </div>
1520
+ <div class="tab_desc with_discount">
1521
+ <h4>F1 Race Stars - Europe Track DLC</h4>
1522
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Racing - Released: Nov 13, 2012</div>
1523
+ </div>
1524
+
1525
+ <div class="tab_discount discount_pct">
1526
+ -33%
1527
+ </div>
1528
+
1529
+ <div class="tab_price">
1530
+ <span style="color: #626366 ;"><strike>&#36;4.99</strike></span><br>&#36;3.34 </div>
1531
+ <br clear="all">
1532
+ </div>
1533
+
1534
+ <div class="tab_row even " id="tab_row_Discounts_25951">
1535
+ <div class="tab_overlay">
1536
+ <a href="http://store.steampowered.com/sub/25951/?snr=1_7_tab__106">
1537
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1538
+ </a>
1539
+ </div>
1540
+ <div class="tab_item_img">
1541
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/25951/capsule_sm_120.jpg?t=1362769084"" class="tiny_cap_img" alt="articy:draft Commercial Version">
1542
+ </div>
1543
+ <div class="tab_desc with_discount">
1544
+ <h4>articy:draft Commercial Version</h4>
1545
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Design & Illustration, Education, Utilities - Released: Feb 27, 2013</div>
1546
+ </div>
1547
+
1548
+ <div class="tab_discount discount_pct">
1549
+ -20%
1550
+ </div>
1551
+
1552
+ <div class="tab_price">
1553
+ <span style="color: #626366 ;"><strike>&#36;199.99</strike></span><br>&#36;159.99 </div>
1554
+ <br clear="all">
1555
+ </div>
1556
+
1557
+ <div class="tab_row odd " id="tab_row_Discounts_25955">
1558
+ <div class="tab_overlay">
1559
+ <a href="http://store.steampowered.com/sub/25955/?snr=1_7_tab__106">
1560
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1561
+ </a>
1562
+ </div>
1563
+ <div class="tab_item_img">
1564
+ <img src="http://cdn2.steampowered.com/v/gfx/subs/25955/capsule_sm_120.jpg?t=1362769089"" class="tiny_cap_img" alt="Upgrade for articy:draft Commercial Version">
1565
+ </div>
1566
+ <div class="tab_desc with_discount">
1567
+ <h4>Upgrade for articy:draft Commercial Version</h4>
1568
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Design & Illustration, Education, Utilities - Released: Feb 27, 2013</div>
1569
+ </div>
1570
+
1571
+ <div class="tab_discount discount_pct">
1572
+ -20%
1573
+ </div>
1574
+
1575
+ <div class="tab_price">
1576
+ <span style="color: #626366 ;"><strike>&#36;99.99</strike></span><br>&#36;79.99 </div>
1577
+ <br clear="all">
1578
+ </div>
1579
+
1580
+ <div class="tab_row even " id="tab_row_Discounts_203160">
1581
+ <div class="tab_overlay">
1582
+ <a href="http://store.steampowered.com/app/203160/?snr=1_7_tab__106">
1583
+ <img src="http://cdn2.store.steampowered.com/public/images/blank.gif">
1584
+ </a>
1585
+ </div>
1586
+ <div class="tab_item_img">
1587
+ <img src="http://cdn2.steampowered.com/v/gfx/apps/203160/capsule_sm_120.jpg?t=1364426943"" class="tiny_cap_img" alt="Tomb Raider">
1588
+ </div>
1589
+ <div class="tab_desc ">
1590
+ <h4>Tomb Raider</h4>
1591
+ <div class="genre_release"><img class="platform_img" src="http://cdn2.store.steampowered.com/public/images/v5/platforms/platform_win.png" width="22" height="22">Action, Adventure - Released: Mar 4, 2013</div>
1592
+ </div>
1593
+
1594
+
1595
+ <div class="tab_price">
1596
+ &#36;49.99 </div>
1597
+ <br clear="all">
1598
+ </div>