cassette_explorer 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/Guardfile +42 -0
- data/LICENSE.txt +22 -0
- data/README.md +35 -0
- data/bin/cassette_explorer +13 -0
- data/cassette_explorer.gemspec +35 -0
- data/lib/cassette_explorer.rb +20 -0
- data/lib/cassette_explorer/page.rb +54 -0
- data/lib/cassette_explorer/reader.rb +32 -0
- data/lib/cassette_explorer/server.rb +105 -0
- data/lib/cassette_explorer/template.rb +14 -0
- data/lib/cassette_explorer/templates/index.erb +87 -0
- data/lib/cassette_explorer/version.rb +3 -0
- data/spec/cassette_explorer/page_spec.rb +5 -0
- data/spec/cassette_explorer/server_spec.rb +65 -0
- data/spec/fixtures/vcr_cassettes/first_cassette.yml +1589 -0
- data/spec/fixtures/vcr_cassettes/fourth_cassette.yml +3659 -0
- data/spec/fixtures/vcr_cassettes/second_cassette.yml +48 -0
- data/spec/fixtures/vcr_cassettes/with_path/third_cassette.yml +1795 -0
- data/spec/spec_helper.rb +53 -0
- metadata +256 -0
@@ -0,0 +1,65 @@
|
|
1
|
+
describe CassetteExplorer::Server do
|
2
|
+
describe '.from_command_line' do
|
3
|
+
it 'should accept the path of the fixures as first argument' do
|
4
|
+
expect(CassetteExplorer::Server).to receive(:new).with(path: 'some/path')
|
5
|
+
CassetteExplorer::Server.from_command_line(['some/path'])
|
6
|
+
end
|
7
|
+
|
8
|
+
it 'should accept the shorthand relative_urls -r' do
|
9
|
+
expect(CassetteExplorer::Server).to receive(:new)
|
10
|
+
.with(path: 'some/path', relative_urls: true)
|
11
|
+
CassetteExplorer::Server.from_command_line(['some/path', '-r'])
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'should not create a server with an invalid argument' do
|
15
|
+
expect(CassetteExplorer::Server).to_not receive(:new)
|
16
|
+
CassetteExplorer::Server.from_command_line(['some/path', '--potato'])
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'should not create a server without a path' do
|
20
|
+
expect(CassetteExplorer::Server).to_not receive(:new)
|
21
|
+
CassetteExplorer::Server.from_command_line(['-r'])
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
describe '#run', type: :feature, js: false do
|
26
|
+
before :all do
|
27
|
+
VCR.use_cassette 'first_cassette', record: :new_episodes do
|
28
|
+
Typhoeus.get('http://store.steampowered.com/app/8870/') # Bioshock Infinite
|
29
|
+
Typhoeus.get('http://store.steampowered.com/app/8930/') # Civilization V
|
30
|
+
end
|
31
|
+
|
32
|
+
VCR.use_cassette 'second_cassette', record: :new_episodes do
|
33
|
+
Typhoeus.get('http://store.steampowered.com/app/250900/') # Binding of Isaac: Rebirth
|
34
|
+
end
|
35
|
+
|
36
|
+
VCR.use_cassette 'with_path/third_cassette', record: :new_episodes do
|
37
|
+
Typhoeus.get('http://store.steampowered.com/app/42910/') # Magicka
|
38
|
+
end
|
39
|
+
|
40
|
+
VCR.use_cassette 'fourth_cassette', record: :new_episodes do
|
41
|
+
Typhoeus.get('http://store.steampowered.com/app/42910/') # Magicka again
|
42
|
+
end
|
43
|
+
|
44
|
+
@server = CassetteExplorer::Server.new(path: 'spec/fixtures/vcr_cassettes')
|
45
|
+
@thread = @server.run(false)
|
46
|
+
end
|
47
|
+
|
48
|
+
after :all do
|
49
|
+
@thread.kill
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'should list all the cassettes on the index' do
|
53
|
+
visit '/'
|
54
|
+
expect(page).to have_content 'http://store.steampowered.com/app/8870/'
|
55
|
+
expect(page).to have_content 'http://store.steampowered.com/app/8930/'
|
56
|
+
expect(page).to have_content 'http://store.steampowered.com/app/250900/'
|
57
|
+
expect(page).to have_content 'http://store.steampowered.com/app/42910/'
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'should display the content of the page if given the parameters' do
|
61
|
+
visit '/?' + URI.encode_www_form(url: 'http://store.steampowered.com/app/8930/', file: '/first_cassette.yml')
|
62
|
+
expect(page).to have_content 'Create, discover, and download new player-created maps, scenarios, interfaces, and more!'
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,1589 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://store.steampowered.com/app/8870/
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Typhoeus - https://github.com/typhoeus/typhoeus
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 302
|
15
|
+
message: Moved Temporarily
|
16
|
+
headers:
|
17
|
+
Server:
|
18
|
+
- Apache
|
19
|
+
Expires:
|
20
|
+
- Mon, 26 Jul 1997 05:00:00 GMT
|
21
|
+
Cache-Control:
|
22
|
+
- no-cache
|
23
|
+
Location:
|
24
|
+
- http://store.steampowered.com/agecheck/app/8870/
|
25
|
+
Content-Encoding:
|
26
|
+
- gzip
|
27
|
+
Vary:
|
28
|
+
- Accept-Encoding
|
29
|
+
Content-Type:
|
30
|
+
- text/html; charset=UTF-8
|
31
|
+
Content-Length:
|
32
|
+
- '26'
|
33
|
+
X-Varnish:
|
34
|
+
- '786414857'
|
35
|
+
Date:
|
36
|
+
- Fri, 02 Oct 2015 22:34:40 GMT
|
37
|
+
Connection:
|
38
|
+
- keep-alive
|
39
|
+
Set-Cookie:
|
40
|
+
- browserid=992273286806945495; expires=Sat, 01-Oct-2016 22:34:40 GMT; path=/
|
41
|
+
- steamCountry=AR%7C545bf212b4bde1c6422b82b5b6ecff54; path=/
|
42
|
+
body:
|
43
|
+
encoding: UTF-8
|
44
|
+
base64_string: |
|
45
|
+
H4sIAAAAAAAAAwIAAAD//wMAAAAAAAAAAAA=
|
46
|
+
http_version:
|
47
|
+
recorded_at: Fri, 02 Oct 2015 22:34:40 GMT
|
48
|
+
- request:
|
49
|
+
method: get
|
50
|
+
uri: http://store.steampowered.com/app/8930/
|
51
|
+
body:
|
52
|
+
encoding: US-ASCII
|
53
|
+
string: ''
|
54
|
+
headers:
|
55
|
+
User-Agent:
|
56
|
+
- Typhoeus - https://github.com/typhoeus/typhoeus
|
57
|
+
response:
|
58
|
+
status:
|
59
|
+
code: 200
|
60
|
+
message: OK
|
61
|
+
headers:
|
62
|
+
Server:
|
63
|
+
- Apache
|
64
|
+
Expires:
|
65
|
+
- Mon, 26 Jul 1997 05:00:00 GMT
|
66
|
+
Cache-Control:
|
67
|
+
- no-cache
|
68
|
+
Content-Type:
|
69
|
+
- text/html; charset=UTF-8
|
70
|
+
X-Varnish:
|
71
|
+
- '1340212934'
|
72
|
+
Date:
|
73
|
+
- Fri, 02 Oct 2015 22:34:41 GMT
|
74
|
+
Transfer-Encoding:
|
75
|
+
- chunked
|
76
|
+
Connection:
|
77
|
+
- Transfer-Encoding
|
78
|
+
- keep-alive
|
79
|
+
Set-Cookie:
|
80
|
+
- browserid=326866441867198331; expires=Sat, 01-Oct-2016 22:34:40 GMT; path=/
|
81
|
+
- recentapps=%7B%228930%22%3A1443825280%7D; expires=Thu, 31-Dec-2015 22:34:40
|
82
|
+
GMT; path=/
|
83
|
+
- sessionid=89d2fc783a661b5b3bbe2869; path=/
|
84
|
+
- steamCountry=AR%7C545bf212b4bde1c6422b82b5b6ecff54; path=/
|
85
|
+
body:
|
86
|
+
encoding: UTF-8
|
87
|
+
string: "<!DOCTYPE html>\r\n<html class=\" responsive\">\r\n<head>\r\n\t<meta
|
88
|
+
http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n\t\t\t<meta
|
89
|
+
name=\"viewport\" content=\"width=device-width,initial-scale=1\">\r\n\t\t<meta
|
90
|
+
name=\"theme-color\" content=\"#171a21\">\r\n\t\t<title>Sid Meier's Civilization®
|
91
|
+
V on Steam</title>\r\n\t<link rel=\"shortcut icon\" href=\"/favicon.ico\"
|
92
|
+
type=\"image/x-icon\" />\r\n\r\n\t<link href=\"http://store.akamai.steamstatic.com/public/shared/css/motiva_sans.css?v=ful_LJT3NQYl\"
|
93
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/shared/css/shared_global.css?v=wTcoFxa14BHr\"
|
94
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/shared/css/buttons.css?v=ZQhT8EbnYTgW\"
|
95
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/css/v6/store.css?v=SRzRT-Uuxs8U\"
|
96
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/shared/css/user_reviews.css?v=eK35SdE11BqT\"
|
97
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/shared/css/store_game_shared.css?v=nP6_Ej917_PN\"
|
98
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/css/v6/game.css?v=mFLJQTuyqsQA\"
|
99
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/css/v6/recommended.css?v=n1NdgwXfCZ2v\"
|
100
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/shared/css/apphub.css?v=pCG6EHTy9byu\"
|
101
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<link href=\"http://store.akamai.steamstatic.com/public/shared/css/shared_responsive.css?v=FVU9KEgNYUuN\"
|
102
|
+
rel=\"stylesheet\" type=\"text/css\" >\n<script type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/shared/javascript/jquery-1.8.3.min.js?v=.TZ2NKhB-nliU\"></script>\n<script
|
103
|
+
type=\"text/javascript\">$J = jQuery.noConflict();</script><script type=\"text/javascript\"
|
104
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/javascript/tooltip.js?v=.Oo26AiO9mMmw\"></script>\n\n<script
|
105
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/shared/javascript/shared_global.js?v=F4LLn6rCOruZ&l=english\"></script>\n\n<script
|
106
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/javascript/main.js?v=imYLXSPSeLYs&l=english\"></script>\n\n<script
|
107
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/javascript/dynamicstore.js?v=vfZ56HAz5ZHl&l=english\"></script>\n\n<script
|
108
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/shared/javascript/jquery.appear.js?v=.rB2Jqew4q0oc\"></script>\n\n<script
|
109
|
+
type=\"text/javascript\">\njQuery(document).ready(function($) { $J.data( document,
|
110
|
+
'x_readytime', new Date().getTime() ); \n$J.data( document, 'x_oldref', GetNavCookie()
|
111
|
+
); \n$('.tooltip').v_tooltip();\nwindow.BindStoreTooltip = function( $Selector
|
112
|
+
) { $Selector.v_tooltip( {'tooltipClass': 'store_tooltip', 'dataName': 'storeTooltip'
|
113
|
+
} ); };\nBindStoreTooltip( $('[data-store-tooltip]') ); \n});</script><script
|
114
|
+
type=\"text/javascript\">\n var _gaq = _gaq || [];\n _gaq.push(['_setAccount',
|
115
|
+
'UA-33786258-1']);\n _gaq.push(['_setSampleRate', '0.4']);\n _gaq.push(['_setCustomVar',
|
116
|
+
1, 'Logged In', 'false', 2]);\n _gaq.push(['_setCustomVar', 2, 'Client Type',
|
117
|
+
'External', 2]);\n _gaq.push(['_setCustomVar', 3, 'Cntrlr', 'application',
|
118
|
+
3]);\n _gaq.push(['_setCustomVar', 4, 'Method', \"application\\/app\", 3]);\n
|
119
|
+
\ _gaq.push(['_trackPageview']);\n _gaq.push(['_setSessionCookieTimeout',
|
120
|
+
900000]);\n (function() {\n var ga = document.createElement('script');
|
121
|
+
ga.type = 'text/javascript'; ga.async = true;\n ga.src = ('https:' == document.location.protocol
|
122
|
+
? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n var
|
123
|
+
s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga,
|
124
|
+
s);\n })();\n</script>\n<script type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/javascript/gamehighlightplayer.js?v=tccSFOOLjEFb&l=english\"></script>\n<script
|
125
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/shared/javascript/user_reviews.js?v=wElGfRd1klp0&l=english\"></script>\n<script
|
126
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/shared/javascript/dselect.js?v=NS7x25VV4jqy&l=english\"></script>\n<script
|
127
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/javascript/app_tagging.js?v=4vf_qmcYxcYh&l=english\"></script>\n<script
|
128
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/javascript/game.js?v=n3XSmAlBl_p2&l=english\"></script>\n<script
|
129
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/javascript/swfobject.js?v=.IJPsm1EB98JP\"></script>\n<script
|
130
|
+
type=\"text/javascript\" src=\"http://store.akamai.steamstatic.com/public/shared/javascript/shared_responsive_adapter.js?v=JpII_nlM9eyw&l=english\"></script>\n\r\n\t\t\t\t\t\t<meta
|
131
|
+
name=\"Description\" content=\"Create, discover, and download new player-created
|
132
|
+
maps, scenarios, interfaces, and more!\">\r\n\t\t\t\r\n\t\t\t<link rel=\"canonical\"
|
133
|
+
href=\"http://store.steampowered.com/app/8930/\">\r\n\t\r\n\t\t\t<link rel=\"image_src\"
|
134
|
+
href=\"http://cdn.akamai.steamstatic.com/steam/apps/8930/header.jpg?t=1436891075\">\r\n\t\r\n\t\r\n\t</head>\r\n<body
|
135
|
+
class=\"v6 app game_bg responsive_page\">\r\n\r\n<div class=\"responsive_page_frame
|
136
|
+
with_header\">\r\n\r\n\t\t\t\t\t\t<div class=\"responsive_page_menu_ctn mainmenu\">\r\n\t\t\t\t<div
|
137
|
+
class=\"responsive_page_menu\" id=\"responsive_page_menu\">\r\n\t\t\t\t\t\t\t\t\t\t<div
|
138
|
+
class=\"mainmenu_contents\">\r\n\t\t\t\t\t\t<div class=\"mainmenu_contents_items\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
139
|
+
class=\"menuitem\" href=\"https://store.steampowered.com//login/?redir=app%2F8930%2F\">\r\n\t\t\t\t\t\t\t\t\tLogin\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t<a
|
140
|
+
class=\"menuitem supernav\" href=\"http://store.steampowered.com/\" data-tooltip-type=\"selector\"
|
141
|
+
data-tooltip-content=\".submenu_store\">\r\n\t\tStore\t</a>\r\n\t<div class=\"submenu_store\"
|
142
|
+
style=\"display: none;\" data-submenuid=\"store\">\r\n\t\t<a class=\"submenuitem\"
|
143
|
+
href=\"http://store.steampowered.com/\">Featured</a>\r\n\t\t<a class=\"submenuitem\"
|
144
|
+
href=\"http://store.steampowered.com/explore/\">Explore</a>\r\n\t\t<a class=\"submenuitem\"
|
145
|
+
href=\"http://store.steampowered.com/curators/\">Curators</a>\r\n\t\t<a class=\"submenuitem\"
|
146
|
+
href=\"http://steamcommunity.com/my/wishlist/\">Wishlist</a>\r\n\t\t<a class=\"submenuitem\"
|
147
|
+
href=\"http://store.steampowered.com/news/\">News</a>\r\n\t\t<a class=\"submenuitem\"
|
148
|
+
href=\"http://store.steampowered.com/stats/\">Stats</a>\r\n\t</div>\r\n\r\n\r\n\t<a
|
149
|
+
class=\"menuitem supernav\" style=\"display: block\" href=\"http://steamcommunity.com/\"
|
150
|
+
data-tooltip-type=\"selector\" data-tooltip-content=\".submenu_community\">\r\n\t\tCommunity\t</a>\r\n\t<div
|
151
|
+
class=\"submenu_community\" style=\"display: none;\" data-submenuid=\"community\">\r\n\t\t<a
|
152
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/\">Home</a>\r\n\t\t<a
|
153
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/discussions/\">Discussions</a>\r\n\t\t<a
|
154
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/workshop/\">Workshop</a>\r\n\t\t<a
|
155
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/greenlight/\">Greenlight</a>\r\n\t\t<a
|
156
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/market/\">Market</a>\r\n\t\t<a
|
157
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/?subsection=broadcasts\">Broadcasts</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\r\n\r\n\t\r\n\t\r\n\t<a
|
158
|
+
class=\"menuitem\" href=\"https://help.steampowered.com/\">\r\n\t\tSupport\t</a>\r\n\r\n\t\t\t\t\t\t\t<div
|
159
|
+
class=\"minor_menu_items\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"menuitem
|
160
|
+
change_language_action\">\r\n\t\t\t\t\t\t\t\t\tChange language\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
161
|
+
class=\"menuitem\" onclick=\"Responsive_RequestDesktopView();\">\r\n\t\t\t\t\t\t\t\t\t\tView
|
162
|
+
desktop website\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
163
|
+
class=\"mainmenu_footer_spacer\"></div>\r\n\t\t\t\t\t\t<div class=\"mainmenu_footer\">\r\n\t\t\t\t\t\t\t<div
|
164
|
+
class=\"mainmenu_footer_logo\"><img src=\"http://store.akamai.steamstatic.com/public/shared/images/responsive/logo_valve_footer.png\"></div>\r\n\t\t\t\t\t\t\t©
|
165
|
+
Valve Corporation. All rights reserved. All trademarks are property of their
|
166
|
+
respective owners in the US and other countries.\t\t\t\t\t\t\t<span class=\"mainmenu_valve_links\">\r\n\t\t\t\t\t\t\t\t<a
|
167
|
+
href=\"http://store.steampowered.com/privacy_agreement/\" target=\"_blank\">Privacy
|
168
|
+
Policy</a>\r\n\t\t\t\t\t\t\t\t | <a href=\"http://www.valvesoftware.com/legal.htm\"
|
169
|
+
target=\"_blank\">Legal</a>\r\n\t\t\t\t\t\t\t\t | <a href=\"http://store.steampowered.com/subscriber_agreement/\"
|
170
|
+
target=\"_blank\">Steam Subscriber Agreement</a>\r\n\t\t\t\t\t\t\t\t |
|
171
|
+
<a href=\"http://store.steampowered.com/steam_refunds/\" target=\"_blank\">Refunds</a>\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\r\n\t\t<div
|
172
|
+
class=\"responsive_local_menu_tab\" style=\"display: none;\">\r\n\r\n\t\t</div>\r\n\r\n\t\t<div
|
173
|
+
class=\"responsive_page_menu_ctn localmenu\">\r\n\t\t\t<div class=\"responsive_page_menu\"
|
174
|
+
\ id=\"responsive_page_local_menu\">\r\n\t\t\t\t<div class=\"localmenu_content\">\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n\r\n\r\n\t\t\t\t\t<div
|
175
|
+
class=\"responsive_header\">\r\n\t\t\t\t<div class=\"responsive_header_content\">\r\n\t\t\t\t\t<div
|
176
|
+
id=\"responsive_menu_logo\">\r\n\t\t\t\t\t\t<img src=\"http://store.akamai.steamstatic.com/public/shared/images/responsive/header_menu_hamburger.png\"
|
177
|
+
height=\"100%\">\r\n\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t<div id=\"responsive_beta_logo\">\r\n\t\t\t\t\t\t<img
|
178
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/responsive/header_menu_beta.png\"
|
179
|
+
height=\"100%\">\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"responsive_header_logo\">\r\n\t\t\t\t\t\t<img
|
180
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/responsive/header_logo.png\"
|
181
|
+
height=\"36\" border=\"0\" alt=\"STEAM\">\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\r\n\t\t<div
|
182
|
+
class=\"responsive_page_content_overlay\">\r\n\r\n\t\t</div>\r\n\r\n\t\t<div
|
183
|
+
class=\"responsive_fixonscroll_ctn nonresponsive_hidden \">\r\n\t\t</div>\r\n\t\r\n\t<div
|
184
|
+
class=\"responsive_page_content\">\r\n\r\n\t\t<div id=\"global_header\">\r\n\t<div
|
185
|
+
class=\"content\">\r\n\t\r\n\t\t<div class=\"logo\">\r\n\t\t\t<span id=\"logo_holder\">\r\n\t\t\t\t<a
|
186
|
+
href=\"http://store.steampowered.com/\">\r\n\t\t\t\t\t<img src=\"http://store.akamai.steamstatic.com/public/images/v5/globalheader_logo.png\"
|
187
|
+
width=\"176\" height=\"44\">\r\n\t\t\t\t</a>\r\n\t\t\t</span>\r\n\t\t\t<!--[if
|
188
|
+
lt IE 7]>\r\n\t\t\t<style type=\"text/css\">\r\n\t\t\t#logo_holder img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
|
189
|
+
}\r\n\t\t\t#logo_holder { display: inline-block; width: 176px; height: 44px;
|
190
|
+
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://store.akamai.steamstatic.com/public/images/v5/globalheader_logo.png');
|
191
|
+
}\r\n\t\t\t</style>\r\n\t\t\t<![endif]-->\r\n\t\t</div>\r\n\r\n\t\t\t<div
|
192
|
+
class=\"supernav_container\">\r\n\t<a class=\"menuitem supernav\" href=\"http://store.steampowered.com/\"
|
193
|
+
data-tooltip-type=\"selector\" data-tooltip-content=\".submenu_store\">\r\n\t\tSTORE\t</a>\r\n\t<div
|
194
|
+
class=\"submenu_store\" style=\"display: none;\" data-submenuid=\"store\">\r\n\t\t<a
|
195
|
+
class=\"submenuitem\" href=\"http://store.steampowered.com/\">Featured</a>\r\n\t\t<a
|
196
|
+
class=\"submenuitem\" href=\"http://store.steampowered.com/explore/\">Explore</a>\r\n\t\t<a
|
197
|
+
class=\"submenuitem\" href=\"http://store.steampowered.com/curators/\">Curators</a>\r\n\t\t<a
|
198
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/my/wishlist/\">Wishlist</a>\r\n\t\t<a
|
199
|
+
class=\"submenuitem\" href=\"http://store.steampowered.com/news/\">News</a>\r\n\t\t<a
|
200
|
+
class=\"submenuitem\" href=\"http://store.steampowered.com/stats/\">Stats</a>\r\n\t</div>\r\n\r\n\r\n\t<a
|
201
|
+
class=\"menuitem supernav\" style=\"display: block\" href=\"http://steamcommunity.com/\"
|
202
|
+
data-tooltip-type=\"selector\" data-tooltip-content=\".submenu_community\">\r\n\t\tCOMMUNITY\t</a>\r\n\t<div
|
203
|
+
class=\"submenu_community\" style=\"display: none;\" data-submenuid=\"community\">\r\n\t\t<a
|
204
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/\">Home</a>\r\n\t\t<a
|
205
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/discussions/\">Discussions</a>\r\n\t\t<a
|
206
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/workshop/\">Workshop</a>\r\n\t\t<a
|
207
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/greenlight/\">Greenlight</a>\r\n\t\t<a
|
208
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/market/\">Market</a>\r\n\t\t<a
|
209
|
+
class=\"submenuitem\" href=\"http://steamcommunity.com/?subsection=broadcasts\">Broadcasts</a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\r\n\r\n\t\r\n\t\t\t<a
|
210
|
+
class=\"menuitem\" href=\"http://store.steampowered.com/about/\">\r\n\t\t\tABOUT\t\t</a>\r\n\t\r\n\t<a
|
211
|
+
class=\"menuitem\" href=\"https://help.steampowered.com/\">\r\n\t\tSUPPORT\t</a>\r\n\t</div>\r\n\t<script
|
212
|
+
type=\"text/javascript\">\r\n\t\tjQuery(function($) {\r\n\t\t\t$('.tooltip').v_tooltip();\r\n\t\t\t$('#global_header
|
213
|
+
.supernav').v_tooltip({'location':'bottom', 'tooltipClass': 'supernav_content',
|
214
|
+
'offsetY':-4, 'offsetX': 1, 'horizontalSnap': 4, 'tooltipParent': '#global_header
|
215
|
+
.supernav_container', 'correctForScreenSize': false});\r\n\t\t});\r\n\t</script>\r\n\r\n\t\t<div
|
216
|
+
id=\"global_actions\">\r\n\t\t\t\t\t\t<div id=\"global_action_menu\">\r\n\t\t\t\t\t\t\t\t\t<div
|
217
|
+
class=\"header_installsteam_btn header_installsteam_btn_green\">\r\n\t\t\t\t\t\t<div
|
218
|
+
class=\"header_installsteam_btn_leftcap\"></div>\r\n\t\t\t\t\t\t<div class=\"header_installsteam_btn_rightcap\"></div>\r\n\t\t\t\t\t\t<a
|
219
|
+
class=\"header_installsteam_btn_content\" href=\"http://store.steampowered.com/about/?snr=1_5_9__11\">\r\n\t\t\t\t\t\t\tInstall
|
220
|
+
Steam\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t<a
|
221
|
+
class=\"global_action_link\" href=\"http://store.steampowered.com/login/?snr=1_5_9__11\">login</a>\r\n\t\t\t\t\t |
|
222
|
+
\r\n\t\t\t\t\t<span class=\"pulldown global_action_link\" id=\"language_pulldown\"
|
223
|
+
onclick=\"ShowMenu( this, 'language_dropdown', 'right' );\">language</span>\r\n\t\t\t\t\t<div
|
224
|
+
class=\"popup_block_new\" id=\"language_dropdown\" style=\"display: none;\">\r\n\t\t\t\t\t\t<div
|
225
|
+
class=\"popup_body popup_menu\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
226
|
+
class=\"popup_menu_item tight\" href=\"?l=bulgarian\" onclick=\"ChangeLanguage(
|
227
|
+
'bulgarian' ); return false;\">Български (Bulgarian)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
228
|
+
class=\"popup_menu_item tight\" href=\"?l=czech\" onclick=\"ChangeLanguage(
|
229
|
+
'czech' ); return false;\">čeština (Czech)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
230
|
+
class=\"popup_menu_item tight\" href=\"?l=danish\" onclick=\"ChangeLanguage(
|
231
|
+
'danish' ); return false;\">Dansk (Danish)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
232
|
+
class=\"popup_menu_item tight\" href=\"?l=dutch\" onclick=\"ChangeLanguage(
|
233
|
+
'dutch' ); return false;\">Nederlands (Dutch)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
234
|
+
class=\"popup_menu_item tight\" href=\"?l=finnish\" onclick=\"ChangeLanguage(
|
235
|
+
'finnish' ); return false;\">Suomi (Finnish)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
236
|
+
class=\"popup_menu_item tight\" href=\"?l=french\" onclick=\"ChangeLanguage(
|
237
|
+
'french' ); return false;\">Français (French)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
238
|
+
class=\"popup_menu_item tight\" href=\"?l=greek\" onclick=\"ChangeLanguage(
|
239
|
+
'greek' ); return false;\">Ελληνικά (Greek)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
240
|
+
class=\"popup_menu_item tight\" href=\"?l=german\" onclick=\"ChangeLanguage(
|
241
|
+
'german' ); return false;\">Deutsch (German)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
242
|
+
class=\"popup_menu_item tight\" href=\"?l=hungarian\" onclick=\"ChangeLanguage(
|
243
|
+
'hungarian' ); return false;\">Magyar (Hungarian)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
244
|
+
class=\"popup_menu_item tight\" href=\"?l=italian\" onclick=\"ChangeLanguage(
|
245
|
+
'italian' ); return false;\">Italiano (Italian)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
246
|
+
class=\"popup_menu_item tight\" href=\"?l=japanese\" onclick=\"ChangeLanguage(
|
247
|
+
'japanese' ); return false;\">日本語 (Japanese)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
248
|
+
class=\"popup_menu_item tight\" href=\"?l=koreana\" onclick=\"ChangeLanguage(
|
249
|
+
'koreana' ); return false;\">한국어 (Korean)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
250
|
+
class=\"popup_menu_item tight\" href=\"?l=norwegian\" onclick=\"ChangeLanguage(
|
251
|
+
'norwegian' ); return false;\">Norsk (Norwegian)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
252
|
+
class=\"popup_menu_item tight\" href=\"?l=polish\" onclick=\"ChangeLanguage(
|
253
|
+
'polish' ); return false;\">Polski (Polish)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
254
|
+
class=\"popup_menu_item tight\" href=\"?l=portuguese\" onclick=\"ChangeLanguage(
|
255
|
+
'portuguese' ); return false;\">Português (Portuguese)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
256
|
+
class=\"popup_menu_item tight\" href=\"?l=brazilian\" onclick=\"ChangeLanguage(
|
257
|
+
'brazilian' ); return false;\">Português-Brasil (Portuguese-Brazil)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
258
|
+
class=\"popup_menu_item tight\" href=\"?l=russian\" onclick=\"ChangeLanguage(
|
259
|
+
'russian' ); return false;\">Русский (Russian)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
260
|
+
class=\"popup_menu_item tight\" href=\"?l=romanian\" onclick=\"ChangeLanguage(
|
261
|
+
'romanian' ); return false;\">Română (Romanian)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
262
|
+
class=\"popup_menu_item tight\" href=\"?l=schinese\" onclick=\"ChangeLanguage(
|
263
|
+
'schinese' ); return false;\">简体中文 (Simplified Chinese)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
264
|
+
class=\"popup_menu_item tight\" href=\"?l=spanish\" onclick=\"ChangeLanguage(
|
265
|
+
'spanish' ); return false;\">Español (Spanish)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
266
|
+
class=\"popup_menu_item tight\" href=\"?l=swedish\" onclick=\"ChangeLanguage(
|
267
|
+
'swedish' ); return false;\">Svenska (Swedish)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
268
|
+
class=\"popup_menu_item tight\" href=\"?l=tchinese\" onclick=\"ChangeLanguage(
|
269
|
+
'tchinese' ); return false;\">繁體中文 (Traditional Chinese)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
270
|
+
class=\"popup_menu_item tight\" href=\"?l=thai\" onclick=\"ChangeLanguage(
|
271
|
+
'thai' ); return false;\">ไทย (Thai)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
272
|
+
class=\"popup_menu_item tight\" href=\"?l=turkish\" onclick=\"ChangeLanguage(
|
273
|
+
'turkish' ); return false;\">Türkçe (Turkish)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
274
|
+
class=\"popup_menu_item tight\" href=\"?l=ukrainian\" onclick=\"ChangeLanguage(
|
275
|
+
'ukrainian' ); return false;\">Українська (Ukrainian)</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
276
|
+
class=\"popup_menu_item tight\" href=\"http://translation.steampowered.com\"
|
277
|
+
target=\"_blank\">Help us translate Steam</a>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t</div>\r\n\t\t\t</div>\r\n</div>\r\n<div
|
278
|
+
id=\"responsive_store_nav_ctn\"></div>\r\n\t\t<div class=\"responsive_page_template_content\">\r\n\r\n\t\t\t<script
|
279
|
+
type=\"text/javascript\">\r\n\r\n\tGStoreItemData.AddStoreItemData(\r\n\t\t{\"3900\":{\"name\":\"Sid
|
280
|
+
Meier's Civilization\\u00ae IV\",\"discount_block\":\"<div class=\\\"discount_block
|
281
|
+
\ no_discount\\\"><div class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$14.99
|
282
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/3900\\/capsule_184x69.jpg?t=1443023658\",\"os_windows\":true,\"os_macos\":true},\"226860\":{\"name\":\"Galactic
|
283
|
+
Civilizations\\u00ae III\",\"discount_block\":\"<div class=\\\"discount_block
|
284
|
+
\ no_discount\\\"><div class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$49.99
|
285
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/226860\\/capsule_184x69.jpg?t=1443122986\",\"os_windows\":true},\"226840\":{\"name\":\"Age
|
286
|
+
of Wonders III\",\"discount_block\":\"<div class=\\\"discount_block no_discount\\\"><div
|
287
|
+
class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$29.99
|
288
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/226840\\/capsule_184x69.jpg?t=1442504573\",\"os_windows\":true,\"os_macos\":true,\"os_linux\":true},\"3910\":{\"name\":\"Sid
|
289
|
+
Meier's Civilization\\u00ae III Complete\",\"discount_block\":\"<div class=\\\"discount_block
|
290
|
+
\ no_discount\\\"><div class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$3.74
|
291
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/3910\\/capsule_184x69.jpg?t=1400366001\",\"os_windows\":true},\"65980\":{\"name\":\"Sid
|
292
|
+
Meier's Civilization\\u00ae: Beyond Earth\\u2122\",\"discount_block\":\"<div
|
293
|
+
class=\\\"discount_block no_discount\\\"><div class=\\\"discount_prices no_discount\\\"><div
|
294
|
+
class=\\\"discount_final_price\\\">$49.99 USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/65980\\/capsule_184x69.jpg?t=1440115937\",\"os_windows\":true,\"os_macos\":true,\"os_linux\":true},\"4700\":{\"name\":\"Medieval
|
295
|
+
II: Total War\\u2122\",\"discount_block\":\"<div class=\\\"discount_block
|
296
|
+
\ no_discount\\\"><div class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$19.99
|
297
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/4700\\/capsule_184x69.jpg?t=1435249419\",\"os_windows\":true},\"4760\":{\"name\":\"Rome:
|
298
|
+
Total War\\u2122 - Collection\",\"discount_block\":\"<div class=\\\"discount_block
|
299
|
+
\ no_discount\\\"><div class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$9.99
|
300
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/4760\\/capsule_184x69.jpg?t=1436354805\",\"os_windows\":true},\"208140\":{\"name\":\"Endless
|
301
|
+
Space\\u00ae - Emperor Edition\",\"discount_block\":\"<div class=\\\"discount_block
|
302
|
+
\ no_discount\\\"><div class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$29.99
|
303
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/208140\\/capsule_184x69.jpg?t=1440606803\",\"os_windows\":true,\"os_macos\":true},\"241990\":{\"name\":\"Sorcerer
|
304
|
+
King\\u2122\",\"discount_block\":\"<div class=\\\"discount_block no_discount\\\"><div
|
305
|
+
class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$29.99
|
306
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/241990\\/capsule_184x69.jpg?t=1443117299\",\"os_windows\":true},\"289130\":{\"name\":\"Endless
|
307
|
+
Legend\\u2122\",\"discount_block\":\"<div class=\\\"discount_block no_discount\\\"><div
|
308
|
+
class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$34.99
|
309
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/289130\\/capsule_184x69.jpg?t=1440506724\",\"os_windows\":true,\"os_macos\":true},\"214950\":{\"name\":\"Total
|
310
|
+
War\\u2122: ROME II - Emperor Edition\",\"discount_block\":\"<div class=\\\"discount_block
|
311
|
+
\ no_discount\\\"><div class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$59.95
|
312
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/214950\\/capsule_184x69.jpg?t=1440698674\",\"os_windows\":true,\"os_macos\":true},\"10500\":{\"name\":\"Empire:
|
313
|
+
Total War\\u2122\",\"discount_block\":\"<div class=\\\"discount_block no_discount\\\"><div
|
314
|
+
class=\\\"discount_prices no_discount\\\"><div class=\\\"discount_final_price\\\">$19.99
|
315
|
+
USD<\\/div><\\/div><\\/div>\",\"small_capsulev5\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/10500\\/capsule_184x69.jpg?t=1435332925\",\"os_windows\":true,\"os_macos\":true,\"os_linux\":true}},\r\n\t\t{}\t);\r\n\tGStoreItemData.AddNavParams(
|
316
|
+
{\r\n\t\trecommended: \"1_5_9__300\",\r\n\t} );\r\n\r\n\t$J( function() {\r\n\t\tvar
|
317
|
+
$Expander = $J('#devnotes_expander');\r\n\t\tif( $Expander.length && $Expander.height()
|
318
|
+
< parseInt( $Expander.css('max-height') ) ) {\r\n\t\t\t$J('#devnotes_more').hide();\r\n\t\t}\r\n\r\n\t\t\r\n\t\t\t\tInitAutocollapse();\r\n\t\tInitHorizontalAutoSliders();\r\n\r\n\t\tResponsive_ReparentItemsInResponsiveMode(
|
319
|
+
'.responsive_apppage_details_right', $J('#responsive_apppage_details_right_ctn')
|
320
|
+
);\r\n\t\tResponsive_ReparentItemsInResponsiveMode( '.responsive_apppage_details_left',
|
321
|
+
$J('#responsive_apppage_details_left_ctn') );\r\n\t\tResponsive_ReparentItemsInResponsiveMode(
|
322
|
+
'.responsive_apppage_reviewblock', $J('#responsive_apppage_reviewblock_ctn')
|
323
|
+
);\r\n\r\n\t\t//hack to workaround chrome bug\r\n\t\t$J('#responsive_apppage_reviewblock_ctn'
|
324
|
+
).css('width', '100%' );\r\n\t\twindow.setTimeout( function() { $J('#responsive_apppage_reviewblock_ctn').css('width',
|
325
|
+
'' ); }, 1 );\r\n\t} );\r\n\tGDynamicStore.OnReady( function() {\r\n\t\tRenderMoreLikeThisBlock(
|
326
|
+
[\"3900\",\"226860\",\"226840\",\"3910\",\"65980\",\"4700\",\"4760\",\"208140\",\"241990\",\"289130\",\"214950\",\"10500\"]
|
327
|
+
);\r\n\t\t\t});\r\n\r\n\t\r\n</script>\r\n\r\n<div class=\"game_page_background
|
328
|
+
game\" style=\"background-image: url('http://cdn.akamai.steamstatic.com/steam/apps/8930/page_bg_generated_v6b.jpg?t=1436891075');\">\r\n\r\n\t\r\n\t\t<div
|
329
|
+
id=\"store_header\" class=\"\">\r\n\t\t<div class=\"content\">\r\n\t\t\t<div
|
330
|
+
id=\"store_controls\">\r\n\t\t\t\t<div id=\"cart_status_data\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
331
|
+
class=\"store_header_btn_green store_header_btn\" id=\"store_header_cart_btn\"
|
332
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t<div class=\"store_header_btn_caps
|
333
|
+
store_header_btn_leftcap\"></div>\r\n\t\t\t\t\t\t\t<div class=\"store_header_btn_caps
|
334
|
+
store_header_btn_rightcap\"></div>\r\n\t\t\t\t\t\t\t<a id=\"cart_link\" class=\"store_header_btn_content\"
|
335
|
+
href=\"http://store.steampowered.com/cart/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\tCart\t\t\t\t\t\t\t\t(<span
|
336
|
+
id=\"cart_item_count_value\">0</span>)\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t\t\t\t\t<div
|
337
|
+
id=\"store_nav_area\">\r\n\t\t\t\t\t<div class=\"store_nav_leftcap\"></div>\r\n\t\t\t\t\t<div
|
338
|
+
class=\"store_nav_bg\">\r\n\t\t\t\t\t\t<div class=\"store_nav\">\r\n\t\t\t\t\t\t\t<a
|
339
|
+
class=\"tab \" href=\"http://store.steampowered.com/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t<span>Featured
|
340
|
+
Items</span>\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tab
|
341
|
+
\ flyout_tab\" id=\"genre_tab\" data-flyout=\"genre_flyout\" data-flyout-align=\"left\"
|
342
|
+
data-flyout-valign=\"bottom\">\r\n\t\t\t\t\t\t\t\t\t<span class=\"pulldown\">Games<span
|
343
|
+
></span></span>\r\n\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div class=\"popup_block_new
|
344
|
+
flyout_tab_flyout responsive_slidedown\" id=\"genre_flyout\" style=\"display:
|
345
|
+
none;\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"popup_body popup_menu\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
346
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/genre/Free%20to%20Play/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tFree
|
347
|
+
to Play\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
348
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/genre/Early%20Access/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tEarly
|
349
|
+
Access\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
350
|
+
class=\"hr\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"popup_menu_subheader\">Browse
|
351
|
+
by genre:</div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
352
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Action/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tAction\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
353
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Adventure/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tAdventure\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
354
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Casual/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tCasual\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
355
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Indie/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tIndie\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
356
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Massively%20Multiplayer/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tMassively
|
357
|
+
Multiplayer\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
358
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Racing/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tRacing\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
359
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/RPG/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tRPG\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
360
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Simulation/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tSimulation\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
361
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Sports/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tSports\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
362
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Strategy/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\tStrategy\t\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t<div
|
363
|
+
class=\"hr\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<a class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/browse/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tSee
|
364
|
+
popular tags\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"hr\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
365
|
+
class=\"popup_menu_subheader\">Browse by platform:</div>\r\n\t\t\t\t\t\t\t\t\t\t<a
|
366
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/search/?term=&sort_by=_ASC&os=mac&page=1&snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tMac
|
367
|
+
OS X\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t<a class=\"popup_menu_item\"
|
368
|
+
href=\"http://store.steampowered.com/search/?term=&sort_by=_ASC&os=linux&page=1&snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tSteamOS
|
369
|
+
+ Linux\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t<div
|
370
|
+
class=\"tab flyout_tab\" id=\"software_tab\" data-flyout=\"software_flyout\"
|
371
|
+
data-flyout-align=\"left\" data-flyout-valign=\"bottom\">\r\n\t\t\t\t\t\t\t\t<span
|
372
|
+
class=\"pulldown\">Software<span ></span></span>\r\n\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div
|
373
|
+
class=\"popup_block_new flyout_tab_flyout responsive_slidedown\" id=\"software_flyout\"
|
374
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t<div class=\"popup_body popup_menu\">\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
375
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Animation%20%26%20Modeling/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tAnimation
|
376
|
+
& Modeling\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
377
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Audio%20Production/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tAudio
|
378
|
+
Production\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
379
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Design%20%26%20Illustration/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tDesign
|
380
|
+
& Illustration\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
381
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Game%20Development/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tGame
|
382
|
+
Development\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
383
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Photo%20Editing/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tPhoto
|
384
|
+
Editing\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
385
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Utilities/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tUtilities\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
386
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Video%20Production/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tVideo
|
387
|
+
Production\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
388
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/tag/en/Web%20Publishing/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tWeb
|
389
|
+
Publishing\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t<div
|
390
|
+
class=\"tab flyout_tab\" id=\"hardware_tab\" data-flyout=\"hardware_flyout\"
|
391
|
+
data-flyout-align=\"left\" data-flyout-valign=\"bottom\">\r\n\t\t\t\t\t\t\t\t<span
|
392
|
+
class=\"pulldown\">Hardware<span ></span></span>\r\n\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div
|
393
|
+
class=\"popup_block_new flyout_tab_flyout responsive_slidedown\" id=\"hardware_flyout\"
|
394
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t<div class=\"popup_body popup_menu\">\r\n\t\t\t\t\t\t\t\t\t<a
|
395
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/app/353370?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\tSteam
|
396
|
+
Controller\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t<a class=\"popup_menu_item\"
|
397
|
+
href=\"http://store.steampowered.com/app/353380?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\tSteam
|
398
|
+
Link\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t<a class=\"popup_menu_item\"
|
399
|
+
href=\"http://store.steampowered.com/sale/steam_machines?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\tSteam
|
400
|
+
Machines\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t<a class=\"popup_menu_item\"
|
401
|
+
target=\"_blank\" href=\"http://steamcommunity.com/steamvr?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\tSteamVR\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t<a
|
402
|
+
class=\"tab \" href=\"http://store.steampowered.com/freestuff/demos/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t<span>Demos</span>\r\n\t\t\t\t\t\t\t</a>\r\n\r\n\t\t\t\t\t\t\t<a
|
403
|
+
class=\"tab \" href=\"http://store.steampowered.com/news/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t<span>News</span>\r\n\t\t\t\t\t\t\t</a>\r\n\r\n\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t<div
|
404
|
+
class=\"tab flyout_tab\" id=\"foryou_tab\" data-flyout=\"foryou_flyout\"
|
405
|
+
data-flyout-align=\"left\" data-flyout-valign=\"bottom\" onmouseover=\"EnsureStoreMenuTagsLoaded(
|
406
|
+
'#foryou_yourtags' );\">\r\n\t\t\t\t\t\t\t\t<span class=\"pulldown\">\r\n\t\t\t\t\t\t\t\t\tFor
|
407
|
+
You\t\t\t\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div
|
408
|
+
class=\"popup_block_new flyout_tab_flyout responsive_slidedown\" id=\"foryou_flyout\"
|
409
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"popup_body popup_menu\">\r\n\t\t\t\t\t\t\t\t\t\t<a
|
410
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/recommended/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tRecently
|
411
|
+
viewed\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t<a class=\"popup_menu_item\"
|
412
|
+
href=\"http://store.steampowered.com/curators/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tSteam
|
413
|
+
Curators\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t<a class=\"popup_menu_item\"
|
414
|
+
href=\"http://store.steampowered.com/updated/all/?snr=1_5_9__12\">\r\n\t\t\t\t\t\t\t\t\t\t\tRecently
|
415
|
+
updated\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t<div
|
416
|
+
class=\"search_area\">\r\n\t\t\t\t\t\t\t\t<div id=\"store_search\">\r\n\t\t\t\t\t\t\t\t\t<form
|
417
|
+
id=\"searchform\" name=\"searchform\" method=\"get\" action=\"http://store.steampowered.com/search/\"
|
418
|
+
onsubmit=\"return SearchSuggestCheckTerm(this);\">\r\n\t\t\t\t\t\t\t\t\t\t<input
|
419
|
+
type=\"hidden\" name=\"snr\" value=\"1_5_9__12\" >\r\n\t\t\t\t\t\t\t\t\t\t<div
|
420
|
+
class=\"searchbox\">\r\n\t\t\t\t\t\t\t\t\t\t\t<input id=\"store_nav_search_term\"
|
421
|
+
name=\"term\" type=\"text\" class=\"default\" value=\"search the store\" size=\"22\"
|
422
|
+
autocomplete=\"off\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"#\" id=\"store_search_link\"
|
423
|
+
onclick=\"var $Form = $J(this).parents('form'); $Form.submit(); return false;\"><img
|
424
|
+
src=\"http://store.akamai.steamstatic.com/public/images/blank.gif\"></a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</form>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div
|
425
|
+
id=\"searchterm_options\" class=\"search_suggest popup_block_new\" style=\"display:
|
426
|
+
none;\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"popup_body\" style=\"border-top:
|
427
|
+
none;\">\r\n\t\t\t\t\t\t\t\t\t\t<div id=\"search_suggestion_contents\">\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div
|
428
|
+
class=\"store_nav_rightcap\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t</div>\r\n\t\t\t\t<script
|
429
|
+
type=\"text/javascript\">\r\n\t\t\t$J( function() {\r\n\t\t\t\tBindAutoFlyoutEvents();\r\n\r\n\t\t\t\tvar
|
430
|
+
$Window = $J(window);\r\n\t\t\t\tvar $Header = $J('#store_header');\r\n\t\t\t\tvar
|
431
|
+
$ResponsiveNavCtn = $J('#responsive_store_nav_ctn');\r\n\t\t\t\tvar $HeaderWrapper;\r\n\t\t\t\t$Window.on('Responsive_SmallScreenModeToggled.StoreMenu',
|
432
|
+
function() {\r\n\t\t\t\t\tvar bUseSmallScreenMode =window.UseSmallScreenMode
|
433
|
+
&& window.UseSmallScreenMode();\r\n\r\n\t\t\t\t\tif ( !$HeaderWrapper )\r\n\t\t\t\t\t\t$HeaderWrapper
|
434
|
+
= $Header.wrap( $J('<div/>', {'class': 'responsive_store_nav_ctn_spacer'}
|
435
|
+
) ).parent();\r\n\r\n\t\t\t\t\tif ( bUseSmallScreenMode )\r\n\t\t\t\t\t\t$ResponsiveNavCtn.append(
|
436
|
+
$Header );\r\n\t\t\t\t\telse\r\n\t\t\t\t\t\t$HeaderWrapper.append( $Header
|
437
|
+
);\r\n\r\n\r\n\t\t\t\t\tif ( bUseSmallScreenMode )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t$Header.css(
|
438
|
+
'visibility', 'hidden' );\r\n\t\t\t\t\t\t$Header.show();\r\n\t\t\t\t\t\tvar
|
439
|
+
nMenuHeight = $J('#store_header' ).height() + $J('#store_header' ).offset().top;\r\n\t\t\t\t\t\tif
|
440
|
+
( $Window.scrollTop() < nMenuHeight )\r\n\t\t\t\t\t\t\t$Window.scrollTop(
|
441
|
+
nMenuHeight - GetResponsiveHeaderFixedOffsetAdjustment() );\r\n\r\n\t\t\t\t\t\t$Header.css('visibility',
|
442
|
+
'visible');\r\n\t\t\t\t\t}\r\n\t\t\t\t} ).trigger('Responsive_SmallScreenModeToggled.StoreMenu');\r\n\r\n\t\t\t\tEnableSearchSuggestions(
|
443
|
+
$J('#searchform')[0].elements['term'], '1_5_9_', 'AR', 'english', '1331905'
|
444
|
+
);\r\n\t\t\t} );\r\n\t\t</script>\r\n\t<script type=\"text/javascript\">\r\n\tvar
|
445
|
+
g_AccountID = 0;\r\n\tvar g_sessionID = \"89d2fc783a661b5b3bbe2869\";\r\n\tvar
|
446
|
+
g_ServerTime = 1443825280;\r\n\r\n\t$J( InitMiniprofileHovers );\r\n\r\n\t\tGDynamicStore.Init(
|
447
|
+
0, false, \"win\" );\r\n\t</script>\r\n\t<div class=\"page_content_ctn\" itemscope
|
448
|
+
itemtype=\"http://schema.org/Product\">\r\n\r\n\t\t<meta itemprop=\"image\"
|
449
|
+
content=\"http://cdn.akamai.steamstatic.com/steam/apps/8930/capsule_231x87.jpg?t=1436891075\">\r\n\t\t\t\t\t<div
|
450
|
+
itemprop=\"offers\" itemscope itemtype=\"http://schema.org/Offer\" style=\"display:
|
451
|
+
none;\">\r\n\t\t\t\t<meta itemprop=\"priceCurrency\" content=\"USD\">\r\n\t\t\t\t<meta
|
452
|
+
itemprop=\"price\" content=\"22.49\">\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t<div
|
453
|
+
class=\"page_title_area game_title_area page_content\">\r\n\t\t\t<div class=\"breadcrumbs\">\r\n\t\t\t\t\t\t\t\t<div
|
454
|
+
class=\"blockbg\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"http://store.steampowered.com/search/?term=&snr=1_5_9__205\">All
|
455
|
+
Games</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t> <a href=\"http://store.steampowered.com/genre/Strategy/?snr=1_5_9__205\">Strategy
|
456
|
+
Games</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t> <a href=\"http://store.steampowered.com/app/8930/?snr=1_5_9__205\"><span
|
457
|
+
itemprop=\"name\">Sid Meier's Civilization® V</span></a>\r\n\r\n\t\t\t\t</div>\r\n\t\t\t\t<div
|
458
|
+
style=\"clear: left;\"></div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t<div class=\"apphub_HomeHeaderContent\">\r\n\r\n\t<div
|
459
|
+
class=\"apphub_HeaderStandardTop\">\r\n\t\t\t\t<div class=\"apphub_OtherSiteInfo\">\r\n\t\t\t<a
|
460
|
+
class=\"btnv6_blue_hoverfade btn_medium\" href=\"http://steamcommunity.com/app/8930\"
|
461
|
+
onclick=\"if ( typeof _gaq != 'undefined' && _gaq ) { _gaq.push(['app._link',
|
462
|
+
'http://steamcommunity.com/app/8930']); }\">\r\n\t\t\t\t<span>Community Hub</span>\r\n\t\t\t</a>\r\n\t\t</div>\r\n\t\t<div
|
463
|
+
class=\"apphub_AppIcon\"><img src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/8930/fbe80c4743e226f0bf65559c91b12953d4446808.jpg\"><div
|
464
|
+
class=\"overlay\"></div></div>\r\n\t\t<div class=\"apphub_AppName\">Sid Meier's
|
465
|
+
Civilization® V</div>\r\n\t\t<div style=\"clear: both\"></div>\r\n\t</div>\r\n\r\n</div>\r\n\r\n\t\t</div>\r\n\t\t<div
|
466
|
+
style=\"clear: left;\"></div>\r\n\r\n\t\t<div class=\"block\">\r\n\t\t\t\t\t\t<script
|
467
|
+
type=\"text/javascript\">\r\n\t\t\t\tvar strRequiredVersion = \"9\";\r\n\t\t\t\tif
|
468
|
+
( typeof( g_bIsOnMac ) != 'undefined' && g_bIsOnMac )\r\n\t\t\t\t\tstrRequiredVersion
|
469
|
+
= \"10.1.0\";\r\n\r\n\t\t\t\t\r\n\t\t\t\tvar bShouldUseHTML5 = BCanPlayWebm()
|
470
|
+
|| BDoesUserPreferHTML5() || !swfobject.hasFlashPlayerVersion(strRequiredVersion);\r\n\t\t\t</script>\r\n\t\t\t<div
|
471
|
+
class=\"game_background_glow\">\r\n\t\t\t<div class=\"block_content page_content\"
|
472
|
+
id=\"game_highlights\">\r\n\r\n\t\t\t\t<div class=\"rightcol\">\r\n\t\t\t\t\t<div
|
473
|
+
class=\"glance_ctn\">\r\n\t\t\t\t\t\t<div class=\"game_header_image_ctn\">\r\n\t\t\t\t\t\t\t<img
|
474
|
+
class=\"game_header_image_full\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/8930/header.jpg?t=1436891075\">\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
475
|
+
class=\"game_description_snippet\">\r\n\t\t\t\t\t\t\t\tCreate, discover, and
|
476
|
+
download new player-created maps, scenarios, interfaces, and more!\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t<div
|
477
|
+
class=\"glance_ctn_responsive_left\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t<div
|
478
|
+
onclick=\"window.location='#app_reviews_hash'\" style=\"cursor: pointer;\"
|
479
|
+
data-store-tooltip=\"96% of the 63,157 user reviews for this game are positive.\"
|
480
|
+
itemprop=\"aggregateRating\" itemscope itemtype=\"http://schema.org/AggregateRating\">\r\n\t\t\t\t\t\t\t\t\t<div
|
481
|
+
class=\"release_date\">\r\n\t\t\t\t\t\t\t\t\t\tUser reviews:\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span
|
482
|
+
class=\"game_review_summary positive\" itemprop=\"description\">Overwhelmingly
|
483
|
+
Positive</span>\r\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"responsive_hidden\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t(63,157
|
484
|
+
reviews)\r\n\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"nonresponsive_hidden
|
485
|
+
responsive_reviewdesc\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t- 96% of the 63,157 user
|
486
|
+
reviews for this game are positive.\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<!--
|
487
|
+
microdata -->\r\n\t\t\t\t\t\t\t\t\t\t\t<meta itemprop=\"reviewCount\" content=\"63157\">\r\n\t\t\t\t\t\t\t\t\t\t\t<meta
|
488
|
+
itemprop=\"ratingValue\" content=\"10\">\r\n\t\t\t\t\t\t\t\t\t\t\t<meta itemprop=\"bestRating\"
|
489
|
+
content=\"10\">\r\n\t\t\t\t\t\t\t\t\t\t\t<meta itemprop=\"worstRating\" content=\"1\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
490
|
+
class=\"release_date\">\r\n\t\t\t\t\t\t\t\t\tRelease Date: <span class=\"date\">23
|
491
|
+
Sep, 2010</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t<div
|
492
|
+
class=\"glance_ctn_responsive_right\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!--
|
493
|
+
when the javascript runs, it will set these visible or not depending on what
|
494
|
+
fits in the area -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"glance_tags_ctn
|
495
|
+
popular_tags_ctn\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"glance_tags_label\">Popular
|
496
|
+
user-defined tags for this product:</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"glance_tags
|
497
|
+
popular_tags\" data-appid=\"8930\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"http://store.steampowered.com/tag/en/Turn-Based%20Strategy/?snr=1_5_9__409\"
|
498
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tTurn-Based
|
499
|
+
Strategy\t\t\t\t\t\t\t\t\t\t\t\t</a><a href=\"http://store.steampowered.com/tag/en/Strategy/?snr=1_5_9__409\"
|
500
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tStrategy\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
501
|
+
href=\"http://store.steampowered.com/tag/en/Turn-Based/?snr=1_5_9__409\" class=\"app_tag\"
|
502
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tTurn-Based\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
503
|
+
href=\"http://store.steampowered.com/tag/en/Multiplayer/?snr=1_5_9__409\"
|
504
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tMultiplayer\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
505
|
+
href=\"http://store.steampowered.com/tag/en/Historical/?snr=1_5_9__409\" class=\"app_tag\"
|
506
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tHistorical\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
507
|
+
href=\"http://store.steampowered.com/tag/en/4X/?snr=1_5_9__409\" class=\"app_tag\"
|
508
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t4X\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
509
|
+
href=\"http://store.steampowered.com/tag/en/Singleplayer/?snr=1_5_9__409\"
|
510
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tSingleplayer\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
511
|
+
href=\"http://store.steampowered.com/tag/en/Hex%20Grid/?snr=1_5_9__409\" class=\"app_tag\"
|
512
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tHex Grid\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
513
|
+
href=\"http://store.steampowered.com/tag/en/Grand%20Strategy/?snr=1_5_9__409\"
|
514
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tGrand
|
515
|
+
Strategy\t\t\t\t\t\t\t\t\t\t\t\t</a><a href=\"http://store.steampowered.com/tag/en/Co-op/?snr=1_5_9__409\"
|
516
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tCo-op\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
517
|
+
href=\"http://store.steampowered.com/tag/en/Replay%20Value/?snr=1_5_9__409\"
|
518
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tReplay
|
519
|
+
Value\t\t\t\t\t\t\t\t\t\t\t\t</a><a href=\"http://store.steampowered.com/tag/en/Moddable/?snr=1_5_9__409\"
|
520
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tModdable\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
521
|
+
href=\"http://store.steampowered.com/tag/en/Tactical/?snr=1_5_9__409\" class=\"app_tag\"
|
522
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tTactical\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
523
|
+
href=\"http://store.steampowered.com/tag/en/Economy/?snr=1_5_9__409\" class=\"app_tag\"
|
524
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tEconomy\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
525
|
+
href=\"http://store.steampowered.com/tag/en/Simulation/?snr=1_5_9__409\" class=\"app_tag\"
|
526
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tSimulation\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
527
|
+
href=\"http://store.steampowered.com/tag/en/Diplomacy/?snr=1_5_9__409\" class=\"app_tag\"
|
528
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tDiplomacy\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
529
|
+
href=\"http://store.steampowered.com/tag/en/Great%20Soundtrack/?snr=1_5_9__409\"
|
530
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tGreat
|
531
|
+
Soundtrack\t\t\t\t\t\t\t\t\t\t\t\t</a><a href=\"http://store.steampowered.com/tag/en/Touch-Friendly/?snr=1_5_9__409\"
|
532
|
+
class=\"app_tag\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tTouch-Friendly\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
533
|
+
href=\"http://store.steampowered.com/tag/en/Classic/?snr=1_5_9__409\" class=\"app_tag\"
|
534
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tClassic\t\t\t\t\t\t\t\t\t\t\t\t</a><a
|
535
|
+
href=\"http://store.steampowered.com/tag/en/Education/?snr=1_5_9__409\" class=\"app_tag\"
|
536
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tEducation\t\t\t\t\t\t\t\t\t\t\t\t</a><div
|
537
|
+
class=\"app_tag add_button\" onclick=\"ShowAppTagModal( 8930 )\">+</div>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
538
|
+
style=\"clear: both;\"></div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
539
|
+
class=\"leftcol\">\r\n\t\t\t\t\t<div class=\"highlight_ctn\">\r\n\t\t\t\t\t\t<div
|
540
|
+
class=\"highlight_overflow\">\r\n\t\t\t\t\t\t\t<div id=\"highlight_player_area\"
|
541
|
+
>\r\n\t\t\t\t\t\t\t\t<div class=\"highlight_player_area_spacer\">\r\n\t\t\t\t\t\t\t\t\t<img
|
542
|
+
src=\"http://store.akamai.steamstatic.com/public/images/game/game_highlight_image_spacer.gif\">\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
543
|
+
class=\"highlight_player_item highlight_movie\" id=\"highlight_movie_5690\"
|
544
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<script type=\"text/javascript\">\r\n\t\t\t\t\t\t\t\t\t\t\tif(
|
545
|
+
bShouldUseHTML5 )\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<video
|
546
|
+
class=\"highlight_player_item highlight_movie\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/5690/movie480.webm?t=1413827694\"
|
547
|
+
data-hd-src=\"http://cdn.akamai.steamstatic.com/steam/apps/5690/movie_max.webm?t=1413827694\"
|
548
|
+
poster=\"http://cdn.akamai.steamstatic.com/steam/apps/5690/movie.293x165.jpg?t=1413827694\"
|
549
|
+
id=\"movie_5690\" preload=\"none\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
550
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></video>');\r\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery(\"#movie_5690\").videoControls();\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\telse\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<div
|
551
|
+
id=\"movie_5690\" class=\"highlight_flash_player_notice\" style=\"display:
|
552
|
+
none;\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
553
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></div>');\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t</script>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
554
|
+
class=\"highlight_player_item highlight_screenshot\" id=\"highlight_screenshot_ss_7082faf1b0941ddbc4ba9dab5807a9b5e77d72f9.jpg\"
|
555
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"screenshot_holder\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
556
|
+
class=\"highlight_screenshot_link\" data-screenshotid=\"ss_7082faf1b0941ddbc4ba9dab5807a9b5e77d72f9.jpg\"
|
557
|
+
target=\"_blank\" href=\"https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_7082faf1b0941ddbc4ba9dab5807a9b5e77d72f9.1920x1080.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<img
|
558
|
+
src=\"http://store.akamai.steamstatic.com/public/images/blank.gif\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
559
|
+
class=\"highlight_player_item highlight_screenshot\" id=\"highlight_screenshot_ss_e6f9ef54f06ffebc9445d8b29d8d2054fa3185d4.jpg\"
|
560
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"screenshot_holder\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
561
|
+
class=\"highlight_screenshot_link\" data-screenshotid=\"ss_e6f9ef54f06ffebc9445d8b29d8d2054fa3185d4.jpg\"
|
562
|
+
target=\"_blank\" href=\"https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_e6f9ef54f06ffebc9445d8b29d8d2054fa3185d4.1920x1080.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<img
|
563
|
+
src=\"http://store.akamai.steamstatic.com/public/images/blank.gif\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
564
|
+
class=\"highlight_player_item highlight_screenshot\" id=\"highlight_screenshot_ss_aa383406a5f2979598b543d8f272d3ac145e357a.jpg\"
|
565
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"screenshot_holder\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
566
|
+
class=\"highlight_screenshot_link\" data-screenshotid=\"ss_aa383406a5f2979598b543d8f272d3ac145e357a.jpg\"
|
567
|
+
target=\"_blank\" href=\"https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_aa383406a5f2979598b543d8f272d3ac145e357a.1920x1080.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<img
|
568
|
+
src=\"http://store.akamai.steamstatic.com/public/images/blank.gif\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
569
|
+
class=\"highlight_player_item highlight_screenshot\" id=\"highlight_screenshot_ss_84ee7ab3b0148a260359f8d5a78a2ab9033aa695.jpg\"
|
570
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"screenshot_holder\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
571
|
+
class=\"highlight_screenshot_link\" data-screenshotid=\"ss_84ee7ab3b0148a260359f8d5a78a2ab9033aa695.jpg\"
|
572
|
+
target=\"_blank\" href=\"https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_84ee7ab3b0148a260359f8d5a78a2ab9033aa695.1920x1080.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<img
|
573
|
+
src=\"http://store.akamai.steamstatic.com/public/images/blank.gif\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
574
|
+
class=\"highlight_player_item highlight_screenshot\" id=\"highlight_screenshot_ss_5dfcd65b611b35a9dc126335dca2d48ef8180106.jpg\"
|
575
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"screenshot_holder\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
576
|
+
class=\"highlight_screenshot_link\" data-screenshotid=\"ss_5dfcd65b611b35a9dc126335dca2d48ef8180106.jpg\"
|
577
|
+
target=\"_blank\" href=\"https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_5dfcd65b611b35a9dc126335dca2d48ef8180106.1920x1080.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<img
|
578
|
+
src=\"http://store.akamai.steamstatic.com/public/images/blank.gif\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
579
|
+
class=\"highlight_player_item highlight_movie\" id=\"highlight_movie_80824\"
|
580
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<script type=\"text/javascript\">\r\n\t\t\t\t\t\t\t\t\t\t\tif(
|
581
|
+
bShouldUseHTML5 )\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<video
|
582
|
+
class=\"highlight_player_item highlight_movie\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/80824/movie480.webm?t=1413827722\"
|
583
|
+
data-hd-src=\"http://cdn.akamai.steamstatic.com/steam/apps/80824/movie_max.webm?t=1413827722\"
|
584
|
+
poster=\"http://cdn.akamai.steamstatic.com/steam/apps/80824/movie.293x165.jpg?t=1413827722\"
|
585
|
+
id=\"movie_80824\" preload=\"none\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
586
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></video>');\r\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery(\"#movie_80824\").videoControls();\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\telse\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<div
|
587
|
+
id=\"movie_80824\" class=\"highlight_flash_player_notice\" style=\"display:
|
588
|
+
none;\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
589
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></div>');\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t</script>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
590
|
+
class=\"highlight_player_item highlight_movie\" id=\"highlight_movie_80825\"
|
591
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<script type=\"text/javascript\">\r\n\t\t\t\t\t\t\t\t\t\t\tif(
|
592
|
+
bShouldUseHTML5 )\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<video
|
593
|
+
class=\"highlight_player_item highlight_movie\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/80825/movie480.webm?t=1413827708\"
|
594
|
+
data-hd-src=\"http://cdn.akamai.steamstatic.com/steam/apps/80825/movie_max.webm?t=1413827708\"
|
595
|
+
poster=\"http://cdn.akamai.steamstatic.com/steam/apps/80825/movie.293x165.jpg?t=1413827708\"
|
596
|
+
id=\"movie_80825\" preload=\"none\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
597
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></video>');\r\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery(\"#movie_80825\").videoControls();\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\telse\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<div
|
598
|
+
id=\"movie_80825\" class=\"highlight_flash_player_notice\" style=\"display:
|
599
|
+
none;\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
600
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></div>');\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t</script>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
601
|
+
class=\"highlight_player_item highlight_movie\" id=\"highlight_movie_80682\"
|
602
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<script type=\"text/javascript\">\r\n\t\t\t\t\t\t\t\t\t\t\tif(
|
603
|
+
bShouldUseHTML5 )\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<video
|
604
|
+
class=\"highlight_player_item highlight_movie\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/80682/movie480.webm?t=1413827736\"
|
605
|
+
data-hd-src=\"http://cdn.akamai.steamstatic.com/steam/apps/80682/movie_max.webm?t=1413827736\"
|
606
|
+
poster=\"http://cdn.akamai.steamstatic.com/steam/apps/80682/movie.293x165.jpg?t=1413827736\"
|
607
|
+
id=\"movie_80682\" preload=\"none\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
608
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></video>');\r\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery(\"#movie_80682\").videoControls();\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\telse\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<div
|
609
|
+
id=\"movie_80682\" class=\"highlight_flash_player_notice\" style=\"display:
|
610
|
+
none;\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
611
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></div>');\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t</script>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
612
|
+
class=\"highlight_player_item highlight_movie\" id=\"highlight_movie_80493\"
|
613
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t<script type=\"text/javascript\">\r\n\t\t\t\t\t\t\t\t\t\t\tif(
|
614
|
+
bShouldUseHTML5 )\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<video
|
615
|
+
class=\"highlight_player_item highlight_movie\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/80493/movie480.webm?t=1413827750\"
|
616
|
+
data-hd-src=\"http://cdn.akamai.steamstatic.com/steam/apps/80493/movie_max.webm?t=1413827750\"
|
617
|
+
poster=\"http://cdn.akamai.steamstatic.com/steam/apps/80493/movie.293x165.jpg?t=1413827750\"
|
618
|
+
id=\"movie_80493\" preload=\"none\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
619
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></video>');\r\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery(\"#movie_80493\").videoControls();\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t\telse\r\n\t\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\t\tdocument.write('<div
|
620
|
+
id=\"movie_80493\" class=\"highlight_flash_player_notice\" style=\"display:
|
621
|
+
none;\"><p>You will need to <a href=\"http://www.adobe.com/go/getflashplayer\"
|
622
|
+
target=\"_blank\">Install</a> the latest Flash plugin to view this page properly.</p></div>');\r\n\t\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t\t</script>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<script
|
623
|
+
type=\"text/javascript\">\r\n\t\t\t\t\t\t\t\t\tvar rgMovieFlashvars = {\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'movie_5690':
|
624
|
+
{\r\n\t\t\t\t\t\t\t\t\t\t\t\tFILENAME: \"http://cdn.akamai.steamstatic.com/steam/apps/5690/movieLrg.flv?t=1413827694\",\r\n\t\t\t\t\t\t\t\t\t\t\t\tMOVIE_NAME:
|
625
|
+
\"Sid+Meier%27s+Civilization%C2%AE+V+Teaser\"\r\n\t\t\t\t\t\t\t\t\t\t\t },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'movie_80824':
|
626
|
+
{\r\n\t\t\t\t\t\t\t\t\t\t\t\tFILENAME: \"http://cdn.akamai.steamstatic.com/steam/apps/80824/movieLrg.flv?t=1413827722\",\r\n\t\t\t\t\t\t\t\t\t\t\t\tMOVIE_NAME:
|
627
|
+
\"Civ+V+DLC+Denmark+Trailer\"\r\n\t\t\t\t\t\t\t\t\t\t\t },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'movie_80825':
|
628
|
+
{\r\n\t\t\t\t\t\t\t\t\t\t\t\tFILENAME: \"http://cdn.akamai.steamstatic.com/steam/apps/80825/movieLrg.flv?t=1413827708\",\r\n\t\t\t\t\t\t\t\t\t\t\t\tMOVIE_NAME:
|
629
|
+
\"Civ+V+DLC+Explorers+Map+Pack+Trailer\"\r\n\t\t\t\t\t\t\t\t\t\t\t },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'movie_80682':
|
630
|
+
{\r\n\t\t\t\t\t\t\t\t\t\t\t\tFILENAME: \"http://cdn.akamai.steamstatic.com/steam/apps/80682/movieLrg.flv?t=1413827736\",\r\n\t\t\t\t\t\t\t\t\t\t\t\tMOVIE_NAME:
|
631
|
+
\"Civilization+V+-+Polynesia+DLC+Trailer\"\r\n\t\t\t\t\t\t\t\t\t\t\t },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'movie_80493':
|
632
|
+
{\r\n\t\t\t\t\t\t\t\t\t\t\t\tFILENAME: \"http://cdn.akamai.steamstatic.com/steam/apps/80493/movieLrg.flv?t=1413827750\",\r\n\t\t\t\t\t\t\t\t\t\t\t\tMOVIE_NAME:
|
633
|
+
\"Double+Civ+DLC+-+Trailer\"\r\n\t\t\t\t\t\t\t\t\t\t\t },\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t''
|
634
|
+
: ''\r\n\t\t\t\t\t\t\t\t\t};\r\n\t\t\t\t\t\t\t\t\tvar rgCommonFlashVars =
|
635
|
+
{\r\n\t\t\t\t\t\t\t\t\t\t\tclientLanguage: \"english\",\r\n\t\t\t\t\t\t\t\t\t\t\tcapsuleSize:
|
636
|
+
\"huge\",\r\n\t\t\t\t\t\t\t\t\t\t\tSTAGE_WIDTH: 600,\r\n\t\t\t\t\t\t\t\t\t\t\tSTAGE_HEIGHT:
|
637
|
+
338,\r\n\t\t\t\t\t\t\t\t\t\t\tAUTO_PLAY: \"true\",\r\n\t\t\t\t\t\t\t\t\t\t\tALLOW_JSPAUSE:
|
638
|
+
\"true\",\r\n\t\t\t\t\t\t\t\t\t\t\tTRACK_MUTE: \"true\",\r\n\t\t\t\t\t\t\t\t\t\t\tCHECKBOX_AUTOPLAY_SHOW:
|
639
|
+
\"true\",\r\n\t\t\t\t\t\t\t\t\t\t\tCHECKBOX_AUTOPLAY_TEXT: \"Autoplay+videos\"\r\n\t\t\t\t\t\t\t\t\t};\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvar
|
640
|
+
rgScreenshotURLs = {\"ss_7082faf1b0941ddbc4ba9dab5807a9b5e77d72f9.jpg\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/8930\\/ss_7082faf1b0941ddbc4ba9dab5807a9b5e77d72f9_SIZE_.jpg?t=1436891075\",\"ss_e6f9ef54f06ffebc9445d8b29d8d2054fa3185d4.jpg\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/8930\\/ss_e6f9ef54f06ffebc9445d8b29d8d2054fa3185d4_SIZE_.jpg?t=1436891075\",\"ss_aa383406a5f2979598b543d8f272d3ac145e357a.jpg\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/8930\\/ss_aa383406a5f2979598b543d8f272d3ac145e357a_SIZE_.jpg?t=1436891075\",\"ss_84ee7ab3b0148a260359f8d5a78a2ab9033aa695.jpg\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/8930\\/ss_84ee7ab3b0148a260359f8d5a78a2ab9033aa695_SIZE_.jpg?t=1436891075\",\"ss_5dfcd65b611b35a9dc126335dca2d48ef8180106.jpg\":\"http:\\/\\/cdn.akamai.steamstatic.com\\/steam\\/apps\\/8930\\/ss_5dfcd65b611b35a9dc126335dca2d48ef8180106_SIZE_.jpg?t=1436891075\"};\r\n\t\t\t\t\t\t\t\t</script>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
641
|
+
id=\"highlight_strip\">\r\n\t\t\t\t\t\t\t\t<div id=\"highlight_strip_scroll\"
|
642
|
+
style=\"width: 1202px;\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"highlight_selector\"></div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
643
|
+
class=\"highlight_strip_item highlight_strip_movie\" id=\"thumb_movie_5690\"
|
644
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img class=\"movie_thumb\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/5690/movie.184x123.jpg?t=1413827694\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
645
|
+
class=\"highlight_movie_marker\"></div>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
646
|
+
class=\"highlight_strip_item highlight_strip_screenshot\" id=\"thumb_screenshot_ss_7082faf1b0941ddbc4ba9dab5807a9b5e77d72f9.jpg\"
|
647
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img src=\"http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_7082faf1b0941ddbc4ba9dab5807a9b5e77d72f9.116x65.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
648
|
+
class=\"highlight_strip_item highlight_strip_screenshot\" id=\"thumb_screenshot_ss_e6f9ef54f06ffebc9445d8b29d8d2054fa3185d4.jpg\"
|
649
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img src=\"http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_e6f9ef54f06ffebc9445d8b29d8d2054fa3185d4.116x65.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
650
|
+
class=\"highlight_strip_item highlight_strip_screenshot\" id=\"thumb_screenshot_ss_aa383406a5f2979598b543d8f272d3ac145e357a.jpg\"
|
651
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img src=\"http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_aa383406a5f2979598b543d8f272d3ac145e357a.116x65.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
652
|
+
class=\"highlight_strip_item highlight_strip_screenshot\" id=\"thumb_screenshot_ss_84ee7ab3b0148a260359f8d5a78a2ab9033aa695.jpg\"
|
653
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img src=\"http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_84ee7ab3b0148a260359f8d5a78a2ab9033aa695.116x65.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
654
|
+
class=\"highlight_strip_item highlight_strip_screenshot\" id=\"thumb_screenshot_ss_5dfcd65b611b35a9dc126335dca2d48ef8180106.jpg\"
|
655
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img src=\"http://cdn.akamai.steamstatic.com/steam/apps/8930/ss_5dfcd65b611b35a9dc126335dca2d48ef8180106.116x65.jpg?t=1436891075\">\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
656
|
+
class=\"highlight_strip_item highlight_strip_movie\" id=\"thumb_movie_80824\"
|
657
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img class=\"movie_thumb\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/80824/movie.184x123.jpg?t=1413827722\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
658
|
+
class=\"highlight_movie_marker\"></div>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
659
|
+
class=\"highlight_strip_item highlight_strip_movie\" id=\"thumb_movie_80825\"
|
660
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img class=\"movie_thumb\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/80825/movie.184x123.jpg?t=1413827708\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
661
|
+
class=\"highlight_movie_marker\"></div>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
662
|
+
class=\"highlight_strip_item highlight_strip_movie\" id=\"thumb_movie_80682\"
|
663
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img class=\"movie_thumb\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/80682/movie.184x123.jpg?t=1413827736\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
664
|
+
class=\"highlight_movie_marker\"></div>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
665
|
+
class=\"highlight_strip_item highlight_strip_movie\" id=\"thumb_movie_80493\"
|
666
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<img class=\"movie_thumb\" src=\"http://cdn.akamai.steamstatic.com/steam/apps/80493/movie.184x123.jpg?t=1413827750\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
667
|
+
class=\"highlight_movie_marker\"></div>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
668
|
+
class=\"slider_ctn\">\r\n\t\t\t\t\t\t\t\t\t<div id=\"highlight_slider_left\"
|
669
|
+
class=\"slider_left\"><span></span></div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"slider\"
|
670
|
+
id=\"highlight_slider\" >\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"slider_bg\">\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
671
|
+
class=\"handle\">\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div
|
672
|
+
id=\"highlight_slider_right\" class=\"slider_right\"><span></span></div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<script
|
673
|
+
type=\"text/javascript\">\r\n\t\t\t\t\t\t\t\t\t$J( function() {\r\n\t\t\t\t\t\t\t\t\t\tvar
|
674
|
+
player = new HighlightPlayer( {\r\n\t\t\t\t\t\t\t\t\t\t\telemPlayerArea: 'highlight_player_area',\r\n\t\t\t\t\t\t\t\t\t\t\telemStrip:
|
675
|
+
'highlight_strip',\r\n\t\t\t\t\t\t\t\t\t\t\telemStripScroll: 'highlight_strip_scroll',\r\n\t\t\t\t\t\t\t\t\t\t\telemSlider:
|
676
|
+
'highlight_slider',\r\n\t\t\t\t\t\t\t\t\t\t\trgMovieFlashvars: rgMovieFlashvars,\r\n\t\t\t\t\t\t\t\t\t\t\trgScreenshotURLs:
|
677
|
+
rgScreenshotURLs,\r\n\t\t\t\t\t\t\t\t\t\t\trgDefaultMovieFlashvars: rgCommonFlashVars,\r\n\t\t\t\t\t\t\t\t\t\t\tbUseHTMLPlayer:
|
678
|
+
bShouldUseHTML5\r\n\t\t\t\t\t\t\t\t\t\t} );\r\n\t\t\t\t\t\t\t\t\t\t$J('#highlight_slider_right').click(
|
679
|
+
function() {\r\n\t\t\t\t\t\t\t\t\t\t\tplayer.Transition( true );\r\n\t\t\t\t\t\t\t\t\t\t});\r\n\t\t\t\t\t\t\t\t\t\t$J('#highlight_slider_left').click(
|
680
|
+
function() {\r\n\t\t\t\t\t\t\t\t\t\t\tplayer.TransitionBack( true );\r\n\t\t\t\t\t\t\t\t\t\t});\r\n\r\n\t\t\t\t\t\t\t\t\t\tif(
|
681
|
+
window.location.hash )\r\n\t\t\t\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t\t\t\tvar
|
682
|
+
ssid = window.location.hash.substr(1);\r\n\t\t\t\t\t\t\t\t\t\t\tplayer.HighlightScreenshot(ssid);\r\n\t\t\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\t\t}
|
683
|
+
);\r\n\t\t\t\t\t\t\t\t</script>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div
|
684
|
+
style=\"clear: both;\"></div>\r\n\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n\t\t\t\r\n\t\t\t<div
|
685
|
+
class=\"queue_overflow_ctn\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"queue_ctn\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
686
|
+
class=\"queue_actions_ctn\">\r\n\t\t\t\t\t\t\t<p><a href=\"http://store.steampowered.com/login/?redir=app%2F8930\">Sign
|
687
|
+
in</a> to add this item to your wishlist, follow it, or mark it as not interested</p>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\r\n\t\t\t\r\n\t\t</div>\r\n\r\n\t\t\r\n\t\t\t<div
|
688
|
+
class=\"page_content\">\r\n\r\n\t\t\t\t<!-- Right Column -->\r\n\t\t\t\t<div
|
689
|
+
class=\"rightcol game_meta_data\">\r\n\t\t\t\t\t<div id=\"responsive_apppage_details_left_ctn\"></div>\r\n\t\t\t\t\t<div
|
690
|
+
id=\"responsive_apppage_details_right_ctn\"></div>\r\n\t\t\t\t\t<div style=\"clear:
|
691
|
+
both;\"></div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"block responsive_apppage_details_left\">\r\n\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t<a
|
692
|
+
class=\"btnv6_blue_hoverfade btn_medium\" href=\"javascript:ShowGotSteamModal(
|
693
|
+
'steam://install/65900', "Sid Meier's Civilization&reg; V: Demo",
|
694
|
+
"Download PC Demo" )\">\r\n\t\t\t\t\t\t\t\t\t<span>Download PC Demo</span>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
695
|
+
class=\"block responsive_apppage_details_left\" id=\"category_block\">\r\n\r\n\t\t\t\t\t\t\t<div
|
696
|
+
class=\"game_area_details_specs\"><div class=\"icon\"><a href=\"http://store.steampowered.com/search/?category2=2&snr=1_5_9__423\"><img
|
697
|
+
class=\"category_icon\" src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_singlePlayer.png\"></a></div><a
|
698
|
+
class=\"name\" href=\"http://store.steampowered.com/search/?category2=2&snr=1_5_9__423\">Single-player</a></div><div
|
699
|
+
class=\"game_area_details_specs\"><div class=\"icon\"><a href=\"http://store.steampowered.com/search/?category2=1&snr=1_5_9__423\"><img
|
700
|
+
class=\"category_icon\" src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_multiPlayer.png\"></a></div><a
|
701
|
+
class=\"name\" href=\"http://store.steampowered.com/search/?category2=1&snr=1_5_9__423\">Multi-player</a></div><div
|
702
|
+
class=\"game_area_details_specs\"><div class=\"icon\"><a href=\"http://store.steampowered.com/search/?category2=22&snr=1_5_9__423\"><img
|
703
|
+
class=\"category_icon\" src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_achievements.png\"></a></div><a
|
704
|
+
class=\"name\" href=\"http://store.steampowered.com/search/?category2=22&snr=1_5_9__423\">Steam
|
705
|
+
Achievements</a></div><div class=\"game_area_details_specs\"><div class=\"icon\"><a
|
706
|
+
href=\"http://store.steampowered.com/search/?category2=29&snr=1_5_9__423\"><img
|
707
|
+
class=\"category_icon\" src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_cards.png\"></a></div><a
|
708
|
+
class=\"name\" href=\"http://store.steampowered.com/search/?category2=29&snr=1_5_9__423\">Steam
|
709
|
+
Trading Cards</a></div><div class=\"game_area_details_specs\"><div class=\"icon\"><a
|
710
|
+
href=\"http://store.steampowered.com/search/?category2=23&snr=1_5_9__423\"><img
|
711
|
+
class=\"category_icon\" src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_cloud.png\"></a></div><a
|
712
|
+
class=\"name\" href=\"http://store.steampowered.com/search/?category2=23&snr=1_5_9__423\">Steam
|
713
|
+
Cloud</a></div>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"DRM_notice\">\r\n\t\t\t\t\t\t\t\t\t<div>Requires
|
714
|
+
agreement to a 3rd-party EULA</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div><a
|
715
|
+
href=\"http://store.steampowered.com/eula/CivVEula\" onclick=\"ShowEULA( this
|
716
|
+
); return false;\">CivVEula</a></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
717
|
+
class=\"block responsive_apppage_details_right\">\r\n\t\t\t\t\t\t\t<div class=\"block_title\">\r\n\t\t\t\t\t\t\t\tLanguages:\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t\r\n<table
|
718
|
+
\ class=\"game_language_options\" cellpadding=\"0\" cellspacing=\"0\">\r\n\t<tr>\r\n\t\t<th
|
719
|
+
style=\"width: 94px;\"></th>\r\n\t\t\t\t<th class=\"checkcol\">Interface</th>\r\n\t\t<th
|
720
|
+
class=\"checkcol\">Full Audio</th>\r\n\t\t<th class=\"checkcol\">Subtitles</th>\r\n\t</tr>\r\n\r\n\t\t\t<tr
|
721
|
+
style=\"\" class=\"\">\r\n\t\t\t<td style=\"width: 94px; text-align: left\"
|
722
|
+
class=\"ellipsis\">\r\n\t\t\t\tEnglish\t\t\t</td>\r\n\t\t\t\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t
|
723
|
+
<img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
724
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
725
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
726
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"\" class=\"\">\r\n\t\t\t<td
|
727
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tFrench\t\t\t</td>\r\n\t\t\t\t\t\t\t<td
|
728
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
729
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
730
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
731
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"\" class=\"\">\r\n\t\t\t<td
|
732
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tGerman\t\t\t</td>\r\n\t\t\t\t\t\t\t<td
|
733
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
734
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
735
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
736
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"\" class=\"\">\r\n\t\t\t<td
|
737
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tItalian\t\t\t</td>\r\n\t\t\t\t\t\t\t<td
|
738
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
739
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
740
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
741
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"\" class=\"\">\r\n\t\t\t<td
|
742
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tSpanish\t\t\t</td>\r\n\t\t\t\t\t\t\t<td
|
743
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
744
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
745
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
746
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"display: none;\" class=\"\">\r\n\t\t\t<td
|
747
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tPolish\t\t\t</td>\r\n\t\t\t\t\t\t\t<td
|
748
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
749
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t<td
|
750
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
751
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"display: none;\" class=\"\">\r\n\t\t\t<td
|
752
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tJapanese\t\t\t</td>\r\n\t\t\t\t\t\t\t<td
|
753
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
754
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t<td
|
755
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
756
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"display: none;\" class=\"\">\r\n\t\t\t<td
|
757
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tKorean\t\t\t</td>\r\n\t\t\t\t\t\t\t<td
|
758
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
759
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t<td
|
760
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
761
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"display: none;\" class=\"\">\r\n\t\t\t<td
|
762
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tRussian\t\t\t</td>\r\n\t\t\t\t\t\t\t<td
|
763
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
764
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t<td
|
765
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
766
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t<tr style=\"display: none;\" class=\"\">\r\n\t\t\t<td
|
767
|
+
style=\"width: 94px; text-align: left\" class=\"ellipsis\">\r\n\t\t\t\tTraditional
|
768
|
+
Chinese\t\t\t</td>\r\n\t\t\t\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t
|
769
|
+
<img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
770
|
+
\t\t\t\t</td>\r\n\t\t\t\t<td class=\"checkcol\">\r\n\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t<td
|
771
|
+
class=\"checkcol\">\r\n\t\t\t\t\t <img src=\"http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png\"/>
|
772
|
+
\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t</table>\r\n\t<a class=\"all_languages\"
|
773
|
+
onclick=\"$J('table.game_language_options tr').show(); $J(this).hide(); return
|
774
|
+
false\">See all 10 supported languages</a>\r\n\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
775
|
+
class=\"block responsive_apppage_details_right\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<table
|
776
|
+
cellpadding=\"0\" cellspacing=\"0\">\r\n\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t<td
|
777
|
+
valign=\"top\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><img src=\"http://store.akamai.steamstatic.com/public/images/ratings/esrb_e10.gif\"></p>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<td
|
778
|
+
width=\"10\"></td>\r\n\t\t\t\t\t\t\t\t\t\t<td valign=\"top\"><p id=\"descriptorText\">Drug
|
779
|
+
Reference<br />\r\n<br />\r\nMild Language<br />\r\n<br />\r\nMild Violence<br
|
780
|
+
/>\r\n<br />\r\nOnline Interactions and Music<br />\r\nDownloads Not Rated
|
781
|
+
by the ESRB</p></td>\r\n\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
782
|
+
class=\"block responsive_apppage_details_right\" id=\"achievement_block\">\r\n\t\t\t\t\t\t\t<div
|
783
|
+
class=\"block_title\">\r\n\t\t\t\t\t\t\t\tIncludes 287 Steam Achievements\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div
|
784
|
+
class=\"communitylink_achievement_images\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
785
|
+
class=\"communitylink_achievement\">\r\n\t\t\t\t\t\t\t\t\t\t<img class=\"communitylink_achievement\"
|
786
|
+
title=\"Give Peace a Chance\" src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/8930/84b62a09d96ad32eea756195a814890e15a371fa.jpg\">\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
787
|
+
class=\"communitylink_achievement\">\r\n\t\t\t\t\t\t\t\t\t\t<img class=\"communitylink_achievement\"
|
788
|
+
title=\"Montezuma's Revenge…\" src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/8930/662efd91eec213178a85c26f7ce3b9e8a2da28d5.jpg\">\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
789
|
+
class=\"communitylink_achievement\">\r\n\t\t\t\t\t\t\t\t\t\t<img class=\"communitylink_achievement\"
|
790
|
+
title=\"Where's the Biathlon?\" src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/8930/db2e521e5be25c10ec735f78fd026755fd2e3917.jpg\">\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
791
|
+
class=\"communitylink_achievement communitylink_achivement_plusmore\" href=\"http://steamcommunity.com/stats/8930/achievements\">\r\n\t\t\t\t\t\t\t\t\t\tView<br>all
|
792
|
+
287\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div style=\"clear:
|
793
|
+
left;\"></div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t<div
|
794
|
+
class=\"block responsive_apppage_details_left game_details underlined_links\">\r\n\t\t\t\t\t\t<div
|
795
|
+
class=\"block_content\">\r\n\t\t\t\t\t\t\t<div class=\"block_content_inner\">\r\n\t\t\t\t\t\t\t\t<div
|
796
|
+
class=\"details_block\">\r\n\t<b>Title:</b> Sid Meier's Civilization® V<br>\r\n\r\n\t\t\t<b>Genre:</b>
|
797
|
+
<a href=\"http://store.steampowered.com/genre/Strategy/?snr=1_5_9__408\">Strategy</a><br>\r\n\t\r\n\t\t\t<b>Developer:</b>\r\n\t\t\t\t\t\t\t\t<a
|
798
|
+
href=\"http://store.steampowered.com/search/?developer=Firaxis%20Games&snr=1_5_9__408\">Firaxis
|
799
|
+
Games</a>\r\n\t\t\t\t\t,\t\t\t<a href=\"http://store.steampowered.com/search/?developer=Aspyr%20%28Mac%2C%20Linux%29&snr=1_5_9__408\">Aspyr
|
800
|
+
(Mac, Linux)</a>\r\n\t\t\t\t<br>\r\n\t\r\n\t\t\t<b>Publisher:</b>\r\n\t\t<a
|
801
|
+
href=\"http://store.steampowered.com/search/?publisher=2K Games\">2K Games</a>,
|
802
|
+
<a href=\"http://store.steampowered.com/search/?publisher=Aspyr (Mac, Linux)\">Aspyr
|
803
|
+
(Mac, Linux)</a>\t\t<br>\r\n\t\r\n\t\r\n\t\t\t<b>Release Date:</b> 23 Sep,
|
804
|
+
2010<br>\r\n\t\r\n\t</div>\r\n\r\n\r\n<div class=\"details_block\">\r\n\t<br>\r\n\r\n\t\t\t<a
|
805
|
+
class=\"linkbar\" href=\"http://www.civilization.com\" target=\"_blank\">\r\n\t\t\tVisit
|
806
|
+
the website <img src=\"http://store.akamai.steamstatic.com/public/images/v5/ico_external_link.gif\"
|
807
|
+
border=\"0\" align=\"bottom\">\r\n\t\t</a>\r\n\t\r\n\t\r\n\t\t\t<a class=\"linkbar\"
|
808
|
+
href=\"http://store.steampowered.com/manual/8930\" target=\"_blank\">\r\n\t\t\tView
|
809
|
+
the manual <img src=\"http://store.akamai.steamstatic.com/public/images/v5/ico_external_link.gif\"
|
810
|
+
border=\"0\" align=\"bottom\">\r\n\t\t</a>\r\n\t\r\n\t\r\n\t\r\n\t\t\t<a class=\"linkbar\"
|
811
|
+
href=\"http://store.steampowered.com/news/?appids=8930\">\r\n\t\t\tView update
|
812
|
+
history\t\t</a>\r\n\t\t<a class=\"linkbar\" href=\"http://store.steampowered.com/news/?appids=8930\">\r\n\t\t\tRead
|
813
|
+
related news\t\t</a>\r\n\t\r\n\t\t\t<a class=\"linkbar\" href=\"http://steamcommunity.com/app/8930/discussions/\">\r\n\t\t\tView
|
814
|
+
discussions\t\t</a>\r\n\t\r\n\t\t<a class=\"linkbar\" href=\"http://steamcommunity.com/actions/Search?T=ClanAccount&K=Sid%20Meier%27s%20Civilization%20V\">\r\n\t\tFind
|
815
|
+
Community Groups\t</a>\r\n</div>\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div
|
816
|
+
class=\"block responsive_apppage_details_left\">\r\n\t\t\t\t\t\t<a class=\"btnv6_blue_hoverfade
|
817
|
+
btn_medium\" href=\"#\" onclick=\"ShowShareDialog(); return false;\"><span>Share</span></a>\r\n\t\t\t\t\t\t<a
|
818
|
+
class=\"btnv6_blue_hoverfade btn_medium\" href=\"#\" onclick=\"ShowEmbedWidget(8930);
|
819
|
+
return false;\"><span>Embed</span></a>\r\n\t\t\t\t\t\t<a id=\"ReportAppBtn\"
|
820
|
+
class=\"btnv6_blue_hoverfade btn_medium\" href=\"javascript:void(0)\" onclick=\"ShowReportDialog(8930)\"><span
|
821
|
+
data-store-tooltip=\"Report this Product\"><i class=\"ico16 reportv6\"></i> </span></a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
822
|
+
class=\"block responsive_apppage_reviewblock\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
823
|
+
id=\"game_area_metascore\">\r\n\t\t\t\t\t\t\t\t\t<span>90</span><span class=\"ms_slash\">/</span><span
|
824
|
+
class=\"ms_base\">100</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
825
|
+
id=\"game_area_metalink\"><a href=\"http://www.metacritic.com/game/pc/sid-meiers-civilization-v\"
|
826
|
+
target=\"_blank\">Read Critic Reviews</a> <img src=\"http://store.akamai.steamstatic.com/public/images/ico/iconExternalLink.gif\"
|
827
|
+
border=\"0\" align=\"bottom\"></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t</div>\r\n\t\t\t\t<!--
|
828
|
+
End Right Column -->\r\n\r\n\r\n\t\t\t\t<div class=\"leftcol game_description_column\">\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t<div
|
829
|
+
id=\"game_area_purchase\">\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\r\n\r\n\r\n\t\t\t\t\t\t<!--[if
|
830
|
+
lte IE 7]>\r\n<style type=\"text/css\">\r\n.game_area_purchase_game_dropdown_right_panel
|
831
|
+
.btn_addtocart { float: none; }\r\n</style>\r\n<![endif]-->\r\n<div class=\"game_area_purchase_game_wrapper\">\r\n\t\t<div
|
832
|
+
class=\"game_area_purchase_game\">\r\n\t\t<form name=\"add_to_cart_6146\"
|
833
|
+
action=\"http://store.steampowered.com/cart/\" method=\"POST\">\r\n\t\t\t<input
|
834
|
+
type=\"hidden\" name=\"snr\" value=\"1_5_9__403\">\r\n\t\t\t<input type=\"hidden\"
|
835
|
+
name=\"action\" value=\"add_to_cart\">\r\n\t\t\t<input type=\"hidden\" name=\"sessionid\"
|
836
|
+
value=\"89d2fc783a661b5b3bbe2869\">\r\n\t\t\t<input type=\"hidden\" name=\"subid\"
|
837
|
+
value=\"6146\">\r\n\t\t</form>\r\n\t\t<div class=\"game_area_purchase_platform\"><span
|
838
|
+
class=\"platform_img win\"></span><span class=\"platform_img mac\"></span><span
|
839
|
+
class=\"platform_img linux\"></span><span class=\"platform_img steamplay\"></span></div>\r\n\t\t<h1>Buy
|
840
|
+
Sid Meier's Civilization V</h1>\r\n\t\t\t\t\t\t\r\n\t\t<div class=\"game_purchase_action\">\r\n\t\t\t\t\t\t<div
|
841
|
+
class=\"game_purchase_action_bg\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"game_purchase_price
|
842
|
+
price\">\r\n\t\t\t\t\t\t\t$22.49 USD\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
843
|
+
class=\"btn_addtocart\">\r\n\r\n\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t\t\t\t\t<a
|
844
|
+
class=\"btnv6_green_white_innerfade btn_medium\" href=\"javascript:addToCart(6146);\">\r\n\t\t\t\t\t\t\t<span>Add
|
845
|
+
to Cart</span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t\r\n\t</div>\r\n
|
846
|
+
<h2 class=\"gradientbg\">Packages that include this game</h2><div class=\"game_area_purchase_game_wrapper\">\r\n\t\t<div
|
847
|
+
class=\"game_area_purchase_game\">\r\n\t\t<form name=\"add_to_cart_36075\"
|
848
|
+
action=\"http://store.steampowered.com/cart/\" method=\"POST\">\r\n\t\t\t<input
|
849
|
+
type=\"hidden\" name=\"snr\" value=\"1_5_9__403\">\r\n\t\t\t<input type=\"hidden\"
|
850
|
+
name=\"action\" value=\"add_to_cart\">\r\n\t\t\t<input type=\"hidden\" name=\"sessionid\"
|
851
|
+
value=\"89d2fc783a661b5b3bbe2869\">\r\n\t\t\t<input type=\"hidden\" name=\"subid\"
|
852
|
+
value=\"36075\">\r\n\t\t</form>\r\n\t\t<div class=\"game_area_purchase_platform\"><span
|
853
|
+
class=\"platform_img win\"></span><span class=\"platform_img mac\"></span><span
|
854
|
+
class=\"platform_img linux\"></span><span class=\"platform_img steamplay\"></span></div>\r\n\t\t<h1>Buy
|
855
|
+
Sid Meier's Civilization V: Complete Edition</h1>\r\n\t\t\t\t\t<p class=\"package_contents\">\r\n\t\t\t\t<b>Includes
|
856
|
+
16 items:</b> \r\n\t\t\t\tSid Meier's Civilization® V, Sid Meier's Civilization
|
857
|
+
V - Gods and Kings, Sid Meier's Civilization V: Brave New World, Sid Meier’s
|
858
|
+
Civilization® V: Babylon (Nebuchadnezzar II), Civilization and Scenario Pack:
|
859
|
+
Denmark - The Vikings, Double Civilization and Scenario Pack: Spain and Inca,
|
860
|
+
Civilization V: Cradle of Civilization - Mediterranean, Civilization V: Cradle
|
861
|
+
of Civilization - Asia, Civilization V: Cradle of Civilization - Americas,
|
862
|
+
Civilization V: Cradle of Civilization - Mesopotamia, Civilization and Scenario
|
863
|
+
Pack: Polynesia, Civilization V - Civilization and Scenario Pack: Korea, Civilization
|
864
|
+
V - Wonders of the Ancient World Scenario Pack, Sid Meier's Civilization V:
|
865
|
+
Scrambled Continents Map Pack, Sid Meier's Civilization V: Scrambled Nations
|
866
|
+
Map Pack, Civilization V: Explorer’s Map Pack\t\t\t</p>\r\n\t\t\t\t\t\t\r\n\t\t<div
|
867
|
+
class=\"game_purchase_action\">\r\n\t\t\t\t\t\t\t<div class=\"game_purchase_action_bg\">\r\n\t\t\t\t\t<div
|
868
|
+
class=\"btn_addtocart btn_packageinfo\">\r\n\t\t\t\t\t\t<a class=\"btnv6_blue_blue_innerfade
|
869
|
+
btn_medium\" href=\"http://store.steampowered.com/sub/36075/?snr=1_5_9__403\">\r\n\t\t\t\t\t\t\t<span>Package
|
870
|
+
info</span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
871
|
+
class=\"game_purchase_action_bg\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"game_purchase_price
|
872
|
+
price\">\r\n\t\t\t\t\t\t\t$37.99 USD\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
873
|
+
class=\"btn_addtocart\">\r\n\r\n\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t\t\t\t\t<a
|
874
|
+
class=\"btnv6_green_white_innerfade btn_medium\" href=\"javascript:addToCart(36075);\">\r\n\t\t\t\t\t\t\t<span>Add
|
875
|
+
to Cart</span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t\r\n\t</div>\r\n\t<div
|
876
|
+
class=\"game_area_dlc_section\">\r\n\t\t\t\t<h2 class=\"gradientbg\">Downloadable
|
877
|
+
Content For This Game</h2>\t\t<form name=\"add_all_dlc_to_cart\" action=\"http://store.steampowered.com/cart/?snr=1_5_9_\"
|
878
|
+
method=\"POST\">\r\n\t\t\t<input type=\"hidden\" name=\"action\" value=\"add_to_cart\">\r\n\t\t\t<input
|
879
|
+
type=\"hidden\" name=\"sessionid\" value=\"89d2fc783a661b5b3bbe2869\">\r\n\r\n\t\t\t<div
|
880
|
+
class=\"tableView\">\r\n\r\n\t\t\t\t\t\t\t<div class=\"gameDlcBlocks\">\r\n\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
881
|
+
class=\"game_area_dlc_row odd ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_235580\"
|
882
|
+
href=\"http://store.steampowered.com/app/235580/?snr=1_5_9__405\" data-ds-appid=\"235580\"
|
883
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":235580,"public":1,"v6":1}
|
884
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
885
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$29.99
|
886
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tSid
|
887
|
+
Meier's Civilization V: Brave New World\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
888
|
+
type=\"hidden\" name=\"subid[]\" value=\"29136\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
889
|
+
class=\"game_area_dlc_row even ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_16870\"
|
890
|
+
href=\"http://store.steampowered.com/app/16870/?snr=1_5_9__405\" data-ds-appid=\"16870\"
|
891
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":16870,"public":1,"v6":1}
|
892
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
893
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$22.99
|
894
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tSid
|
895
|
+
Meier's Civilization V - Gods and Kings\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
896
|
+
type=\"hidden\" name=\"subid[]\" value=\"14839\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
897
|
+
class=\"game_area_dlc_row odd ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_235584\"
|
898
|
+
href=\"http://store.steampowered.com/app/235584/?snr=1_5_9__405\" data-ds-appid=\"235584\"
|
899
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":235584,"public":1,"v6":1}
|
900
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
901
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$3.99
|
902
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tSid
|
903
|
+
Meier's Civilization V: Scrambled Continents Map Pack\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
904
|
+
type=\"hidden\" name=\"subid[]\" value=\"31974\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
905
|
+
id=\"game_area_dlc_expanded\" style=\"display: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
906
|
+
class=\"game_area_dlc_row even ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_235585\"
|
907
|
+
href=\"http://store.steampowered.com/app/235585/?snr=1_5_9__405\" data-ds-appid=\"235585\"
|
908
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":235585,"public":1,"v6":1}
|
909
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
910
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$3.99
|
911
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tSid
|
912
|
+
Meier's Civilization V: Scrambled Nations Map Pack\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
913
|
+
type=\"hidden\" name=\"subid[]\" value=\"31975\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
914
|
+
class=\"game_area_dlc_row odd ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_16868\"
|
915
|
+
href=\"http://store.steampowered.com/app/16868/?snr=1_5_9__405\" data-ds-appid=\"16868\"
|
916
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":16868,"public":1,"v6":1}
|
917
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
918
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$3.74
|
919
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tSid
|
920
|
+
Meier’s Civilization® V: Babylon (Nebuchadnezzar II)\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
921
|
+
type=\"hidden\" name=\"subid[]\" value=\"6477\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
922
|
+
class=\"game_area_dlc_row even ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_16860\"
|
923
|
+
href=\"http://store.steampowered.com/app/16860/?snr=1_5_9__405\" data-ds-appid=\"16860\"
|
924
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":16860,"public":1,"v6":1}
|
925
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
926
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$2.24
|
927
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
928
|
+
V: Cradle of Civilization - Mediterranean\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
929
|
+
type=\"hidden\" name=\"subid[]\" value=\"6818\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
930
|
+
class=\"game_area_dlc_row odd ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_16861\"
|
931
|
+
href=\"http://store.steampowered.com/app/16861/?snr=1_5_9__405\" data-ds-appid=\"16861\"
|
932
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":16861,"public":1,"v6":1}
|
933
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
934
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$2.24
|
935
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
936
|
+
V: Cradle of Civilization - Asia\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
937
|
+
type=\"hidden\" name=\"subid[]\" value=\"6817\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
938
|
+
class=\"game_area_dlc_row even ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_16862\"
|
939
|
+
href=\"http://store.steampowered.com/app/16862/?snr=1_5_9__405\" data-ds-appid=\"16862\"
|
940
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":16862,"public":1,"v6":1}
|
941
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
942
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$2.24
|
943
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
944
|
+
V: Cradle of Civilization - Americas\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
945
|
+
type=\"hidden\" name=\"subid[]\" value=\"6816\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
946
|
+
class=\"game_area_dlc_row odd ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_16863\"
|
947
|
+
href=\"http://store.steampowered.com/app/16863/?snr=1_5_9__405\" data-ds-appid=\"16863\"
|
948
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":16863,"public":1,"v6":1}
|
949
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
950
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$2.24
|
951
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
952
|
+
V: Cradle of Civilization - Mesopotamia\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
953
|
+
type=\"hidden\" name=\"subid[]\" value=\"6819\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
954
|
+
class=\"game_area_dlc_row even ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_16867\"
|
955
|
+
href=\"http://store.steampowered.com/app/16867/?snr=1_5_9__405\" data-ds-appid=\"16867\"
|
956
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":16867,"public":1,"v6":1}
|
957
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
958
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$5.59
|
959
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tDouble
|
960
|
+
Civilization and Scenario Pack: Spain and Inca\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
961
|
+
type=\"hidden\" name=\"subid[]\" value=\"6895\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
962
|
+
class=\"game_area_dlc_row odd ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_99610\"
|
963
|
+
href=\"http://store.steampowered.com/app/99610/?snr=1_5_9__405\" data-ds-appid=\"99610\"
|
964
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":99610,"public":1,"v6":1}
|
965
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
966
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$3.74
|
967
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
968
|
+
and Scenario Pack: Polynesia\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
969
|
+
type=\"hidden\" name=\"subid[]\" value=\"7506\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
970
|
+
class=\"game_area_dlc_row even ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_99611\"
|
971
|
+
href=\"http://store.steampowered.com/app/99611/?snr=1_5_9__405\" data-ds-appid=\"99611\"
|
972
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":99611,"public":1,"v6":1}
|
973
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
974
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$3.74
|
975
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
976
|
+
and Scenario Pack: Denmark - The Vikings\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
977
|
+
type=\"hidden\" name=\"subid[]\" value=\"7911\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
978
|
+
class=\"game_area_dlc_row odd ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_16866\"
|
979
|
+
href=\"http://store.steampowered.com/app/16866/?snr=1_5_9__405\" data-ds-appid=\"16866\"
|
980
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":16866,"public":1,"v6":1}
|
981
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
982
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$3.74
|
983
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
984
|
+
V: Explorer’s Map Pack\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
985
|
+
type=\"hidden\" name=\"subid[]\" value=\"7912\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
986
|
+
class=\"game_area_dlc_row even ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_99614\"
|
987
|
+
href=\"http://store.steampowered.com/app/99614/?snr=1_5_9__405\" data-ds-appid=\"99614\"
|
988
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":99614,"public":1,"v6":1}
|
989
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
990
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$3.74
|
991
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
992
|
+
V - Wonders of the Ancient World Scenario Pack\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
993
|
+
type=\"hidden\" name=\"subid[]\" value=\"11091\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a
|
994
|
+
class=\"game_area_dlc_row odd ds_collapse_flag ds_collapse_flag_tiny\" id=\"dlc_row_99612\"
|
995
|
+
href=\"http://store.steampowered.com/app/99612/?snr=1_5_9__405\" data-ds-appid=\"99612\"
|
996
|
+
onmouseover=\"GameHover( this, event, 'global_hover', {"type":"app","id":99612,"public":1,"v6":1}
|
997
|
+
);\" onmouseout=\"HideGameHover( this, event, 'global_hover' )\">\r\n\r\n\t\t\t\t\t\t<div
|
998
|
+
class=\"game_area_dlc_price\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$3.74
|
999
|
+
USD\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"game_area_dlc_name\">\r\n\t\t\t\t\t\t\tCivilization
|
1000
|
+
V - Civilization and Scenario Pack: Korea\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input
|
1001
|
+
type=\"hidden\" name=\"subid[]\" value=\"11090\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t</a>\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div
|
1002
|
+
id=\"dlc_footer\">\r\n\t\t\t\t\t\t<div class=\"dlc_footer_element\" id=\"dlc_show_all_link\"
|
1003
|
+
onclick=\"$J('#dlc_footer').hide(); $J('#dlc_purchase_action').fadeIn( 250
|
1004
|
+
); $J('#game_area_dlc_expanded').slideDown( 250 );\">\r\n\t\t\t\t\t\t\t<div
|
1005
|
+
class=\"pulldown\">See All</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
1006
|
+
class=\"dlc_footer_element\">showing 1 - 3 of 15</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1007
|
+
id=\"dlc_purchase_action\" class=\"game_purchase_action game_purchase_action_bg\"
|
1008
|
+
style=\"display: none;\">\r\n\t\t\t\t\t\t<div class=\"game_purchase_price
|
1009
|
+
price\">\r\n\t\t\t\t\t\t\t$97.95 USD\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
1010
|
+
class=\"btn_addtocart\">\r\n\r\n\t\t\t\t\t\t\t<a class=\"btnv6_green_white_innerfade
|
1011
|
+
btn_medium\" href=\"javascript:addAllDlcToCart();\">\r\n\t\t\t\t\t\t\t\t<span>Add
|
1012
|
+
all DLC to Cart</span>\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
1013
|
+
style=\"clear: both;\"></div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\r\n\t\t</div>
|
1014
|
+
<!-- tableView -->\r\n\r\n\t\t<div style=\"clear: right;\"></div>\r\n\r\n\t\t</form>\r\n\r\n\t</div>
|
1015
|
+
<!-- game_area_dlc_section -->\r\n\r\n\t<div class=\"game_area_purchase_game_wrapper\">\r\n\t\t<div
|
1016
|
+
class=\"game_area_purchase_game\">\r\n\t\t<form name=\"add_to_cart_6820\"
|
1017
|
+
action=\"http://store.steampowered.com/cart/\" method=\"POST\">\r\n\t\t\t<input
|
1018
|
+
type=\"hidden\" name=\"snr\" value=\"1_5_9__405\">\r\n\t\t\t<input type=\"hidden\"
|
1019
|
+
name=\"action\" value=\"add_to_cart\">\r\n\t\t\t<input type=\"hidden\" name=\"sessionid\"
|
1020
|
+
value=\"89d2fc783a661b5b3bbe2869\">\r\n\t\t\t<input type=\"hidden\" name=\"subid\"
|
1021
|
+
value=\"6820\">\r\n\t\t</form>\r\n\t\t<div class=\"game_area_purchase_platform\"><span
|
1022
|
+
class=\"platform_img win\"></span><span class=\"platform_img mac\"></span><span
|
1023
|
+
class=\"platform_img linux\"></span><span class=\"platform_img steamplay\"></span></div>\r\n\t\t<h1>Buy
|
1024
|
+
Civilization V: Cradle of Civilization - DLC Bundle</h1>\r\n\t\t\t\t\t<p>Requires
|
1025
|
+
the base game <a target=\"_blank\" href=\"http://store.steampowered.com/app/8930/\"
|
1026
|
+
\ >Sid Meier's Civilization® V</a> on Steam in order to play.</p>\r\n\t\t\t\t\t\t\r\n\t\t<div
|
1027
|
+
class=\"game_purchase_action\">\r\n\t\t\t\t\t\t\t<div class=\"game_purchase_action_bg\">\r\n\t\t\t\t\t<div
|
1028
|
+
class=\"btn_addtocart btn_packageinfo\">\r\n\t\t\t\t\t\t<a class=\"btnv6_blue_blue_innerfade
|
1029
|
+
btn_medium\" href=\"http://store.steampowered.com/sub/6820/?snr=1_5_9__405\">\r\n\t\t\t\t\t\t\t<span>Package
|
1030
|
+
info</span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
1031
|
+
class=\"game_purchase_action_bg\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"game_purchase_price
|
1032
|
+
price\">\r\n\t\t\t\t\t\t\t$7.49 USD\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1033
|
+
class=\"btn_addtocart\">\r\n\r\n\t\t\t\t\t \r\n\t\t\t\t\t\t\t\t\t\t\t\t<a
|
1034
|
+
class=\"btnv6_green_white_innerfade btn_medium\" href=\"javascript:addToCart(6820);\">\r\n\t\t\t\t\t\t\t<span>Add
|
1035
|
+
to Cart</span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t\r\n\t</div>\r\n\t\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<!--
|
1036
|
+
game_area_purchase -->\r\n\r\n\t\t\t\t\t<div class=\"purchase_area_spacer\"> </div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
1037
|
+
class=\"steam_curators_block block responsive_apppage_reviewblock\">\r\n\t\t\t\t\t\t\t<div
|
1038
|
+
class=\"block_header\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"right\"><a
|
1039
|
+
href=\"http://store.steampowered.com/curators/topcurators/?appid=8930\">View
|
1040
|
+
all (17)</a></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2>Recommended By Curators</h2>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1041
|
+
class=\"steam_curators_grid three_wide\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1042
|
+
class=\"steam_curator_icon small\" data-store-tooltip=\"PC Gamer\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
1043
|
+
href=\"http://store.steampowered.com/curator/1850-PC-Gamer/?appid=8930\" >\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
1044
|
+
class=\"steam_curator_border\"></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1045
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/da/da87a741109856e24e56bbba245955e826c786ff.jpg\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1046
|
+
class=\"steam_curator_icon small\" data-store-tooltip=\"/r/pcmasterrace Group\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
1047
|
+
href=\"http://store.steampowered.com/curator/4771848-r-pcmasterrace-Group/?appid=8930\"
|
1048
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"steam_curator_border\"></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1049
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/84/84aab2b8f255d148608158b550e4f7877d53f773.jpg\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1050
|
+
class=\"steam_curator_icon small\" data-store-tooltip=\"Just Good PC Games\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
1051
|
+
href=\"http://store.steampowered.com/curator/6856269-Just-Good-PC-Games/?appid=8930\"
|
1052
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"steam_curator_border\"></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1053
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/12/128b1003cf5c2302f00f2d8d322f4ba38b85a5a0.jpg\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1054
|
+
class=\"steam_curator_icon small\" data-store-tooltip=\"Anime 1.0\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
1055
|
+
href=\"http://store.steampowered.com/curator/3213146-Anime-1.0/?appid=8930\"
|
1056
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"steam_curator_border\"></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1057
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/f4/f44c64df11ab192966929c859d29d8db781e1e64.jpg\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1058
|
+
class=\"steam_curator_icon small\" data-store-tooltip=\"YOGS\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
1059
|
+
href=\"http://store.steampowered.com/curator/423471-YOGS/?appid=8930\" >\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
1060
|
+
class=\"steam_curator_border\"></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1061
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/0d/0d89bf0dd8bed11ad17cbd6d783716163dc3be6e.jpg\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1062
|
+
class=\"steam_curator_icon small\" data-store-tooltip=\"Boogie2988's Games\">\r\n\t\t\t\t\t\t\t\t\t\t\t<a
|
1063
|
+
href=\"http://store.steampowered.com/curator/6859357-Boogie2988%27s-Games/?appid=8930\"
|
1064
|
+
>\r\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"steam_curator_border\"></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1065
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/45/4526ddfab1c1cd9c8cff0bcc996c5683483742c1.jpg\">\r\n\t\t\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1066
|
+
style=\"clear: left;\"></div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t<div
|
1067
|
+
class=\"steam_curator_selected\">\r\n\t\t\t\t\t\t\t\t<div class=\"steam_curator_icon
|
1068
|
+
medium \"><a href=\"http://store.steampowered.com/curator/1370293-Cynical-Brit-Gaming/?appid=8930\"><img
|
1069
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/bf/bf146d00fb17e4cc6a86529689a622a43f9f9440_medium.jpg\"
|
1070
|
+
data-store-tooltip=\"Cynical Brit Gaming\"></a></div>\r\n\t\t\t\t\t\t\t\t<div
|
1071
|
+
class=\"steam_curator_recommendation\">\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"This
|
1072
|
+
is worth it ONLY with the expansions. The base game wasnt great but now it's
|
1073
|
+
a rich and enjoyable 4x strategy game from the masters.\"\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1074
|
+
class=\"steam_curator_recommendation_readmore\">Read the full review <a target=\"_blank\"
|
1075
|
+
href=\"https://www.youtube.com/watch?v=dCFpI7ijN8I\">here</a>.</div>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t<div
|
1076
|
+
style=\"clear: both\"></div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t<div
|
1077
|
+
class=\"game_page_autocollapse\" style=\"max-height: 450px;\">\r\n\t\t\t\t\t\t<div
|
1078
|
+
id=\"game_area_description\" class=\"game_area_description\">\r\n\t\t\t\t\t\t\t<h2>About
|
1079
|
+
This Game</h2>\r\n\t\t\t\t\t\t\tThe Flagship Turn-Based Strategy Game Returns\r<br>\r<br>Become
|
1080
|
+
Ruler of the World by establishing and leading a civilization from the dawn
|
1081
|
+
of man into the space age: Wage war, conduct diplomacy, discover new technologies,
|
1082
|
+
go head-to-head with some of history’s greatest leaders and build the most
|
1083
|
+
powerful empire the world has ever known.\r<br>\r<br><ul class=\"bb_ul\"><li><strong>INVITING
|
1084
|
+
PRESENTATION:</strong> Jump right in and play at your own pace with an intuitive
|
1085
|
+
interface that eases new players into the game. Civ veterans will appreciate
|
1086
|
+
the depth, detail and control that are highlights of the series.\r<br></li><li><strong>BELIEVABLE
|
1087
|
+
WORLD:</strong> Ultra realistic graphics showcase lush landscapes for you
|
1088
|
+
to explore, battle over and claim as your own. Art deco influences abound
|
1089
|
+
in the menus and icons in the most well-designed Civ ever developed.\r<br></li><li><strong>COMMUNITY
|
1090
|
+
& MULTIPLAYER:</strong> Compete with Civ players all over the world or
|
1091
|
+
locally in LAN matches, mod* the game in unprecedented ways, and install mods
|
1092
|
+
directly from an in-game community hub without ever leaving the game. Civilization
|
1093
|
+
V brings community to the forefront.\r<br></li><li><strong>WIDE SYSTEM COMPATIBILITY:</strong>
|
1094
|
+
Civilization V operates on many different systems, from high end DX11 desktops
|
1095
|
+
to many laptops. Enjoy unlimited installations on multiple PCs with your Steam
|
1096
|
+
account and take your Civ V experience with you everywhere you go.\r<br></li><li><strong>ALL
|
1097
|
+
NEW FEATURES:</strong> A new hex-based gameplay grid opens up exciting new
|
1098
|
+
combat and build strategies. City States become a new resource in your diplomatic
|
1099
|
+
battleground. An improved diplomacy system allows you to negotiate with fully
|
1100
|
+
interactive leaders. Custom music scores and orchestral recordings give Civ
|
1101
|
+
V the level of polish and quality you expect from the series.\r<br></li><li><strong>SOCIALLY
|
1102
|
+
RESPONSIBLE:</strong> 2K Games is donating a total of $250,000 to four education
|
1103
|
+
based charities, and users' choices will determine how the money is dispersed:
|
1104
|
+
simply select your choice from the pre-selected charities during the install
|
1105
|
+
process.†\r</li></ul>*Modding SDK available post launch as a free download.\r<br>\r<br>†
|
1106
|
+
Charity selection available until Dec. 31, 2010. Not valid in all territories.\r<br>
|
1107
|
+
\ \r<br><strong>Note:</strong> The Mac and Linux + SteamOS versions of Sid
|
1108
|
+
Meier's Civilization V are available in English, French, Italian, German and
|
1109
|
+
Spanish only.\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\r\n\t\t\t\t\t<div
|
1110
|
+
class=\"game_page_autocollapse sys_req\" style=\"max-height: 220px;\">\r\n\t\t<h2>System
|
1111
|
+
Requirements</h2>\r\n\t\t\t\t\t<div class=\"sysreq_tabs\">\r\n\t\t\t\t\t\t\t\t\t<div
|
1112
|
+
class=\"sysreq_tab active\" data-os=\"win\">\r\n\t\t\t\t\t\tWindows\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div
|
1113
|
+
class=\"sysreq_tab \" data-os=\"mac\">\r\n\t\t\t\t\t\tMac OS X\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div
|
1114
|
+
class=\"sysreq_tab \" data-os=\"linux\">\r\n\t\t\t\t\t\tSteamOS + Linux\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div
|
1115
|
+
style=\"clear: left;\"></div>\r\n\t\t\t</div>\r\n\t\t\t\t<div class=\"sysreq_contents\">\r\n\t\t\t\t\t\t\t<div
|
1116
|
+
class=\"game_area_sys_req sysreq_content active\" data-os=\"win\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div
|
1117
|
+
class=\"game_area_sys_req_leftCol\">\r\n\t\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t\t<strong>Minimum:</strong>\r<br>\t\t\t\t\t<ul
|
1118
|
+
class=\"bb_ul\"><li><strong>OS:</strong> Windows® XP SP3/ Windows® Vista SP2/
|
1119
|
+
Windows® 7 \r<br>\t\t\t\t\t\t</li><li><strong>Processor:</strong> Intel Core
|
1120
|
+
2 Duo 1.8 GHz or AMD Athlon X2 64 2.0 GHz\r<br>\t\t\t\t\t\t</li><li><strong>Memory:</strong>
|
1121
|
+
2GB RAM \r<br>\t\t\t\t\t\t</li><li><strong>Graphics:</strong>256 MB ATI HD2600
|
1122
|
+
XT or better, 256 MB nVidia 7900 GS or better, or Core i3 or better integrated
|
1123
|
+
graphics \r<br>\t\t\t\t\t\t</li><li><strong>DirectX®:</strong> DirectX® version
|
1124
|
+
9.0c \r<br>\t\t\t\t\t\t</li><li><strong>Hard Drive:</strong> 8 GB Free \r<br>\t\t\t\t\t\t</li><li><strong>Sound:</strong>
|
1125
|
+
DirectX 9.0c-compatible sound card \r<br>\t\t\t\t\t\t</li><li><strong>Note:</strong>
|
1126
|
+
Optimized for the touch-screen Ultrabook™ device\r<br>\t\t\t\t\t</li></ul>\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1127
|
+
class=\"game_area_sys_req_rightCol\">\r\n\t\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t\t<strong>Recommended:</strong>\r<br>\t\t\t\t\t<ul
|
1128
|
+
class=\"bb_ul\"><li><strong>OS:</strong> Windows® Vista SP2/ Windows® 7 \r<br>\t\t\t\t\t\t</li><li><strong>Processor:</strong>
|
1129
|
+
1.8 GHz Quad Core CPU \r<br>\t\t\t\t\t\t</li><li><strong>Memory:</strong>
|
1130
|
+
4 GB RAM \r<br>\t\t\t\t\t\t</li><li><strong>Graphics:</strong> 512 MB ATI
|
1131
|
+
4800 series or better, 512 MB nVidia 9800 series or better\r<br>\t\t\t\t\t\t</li><li><strong>DirectX®:</strong>
|
1132
|
+
DirectX® version 11\r<br>\t\t\t\t\t\t</li><li><strong>Hard Drive:</strong>
|
1133
|
+
8 GB Free \r<br>\t\t\t\t\t\t</li><li><strong>Sound:</strong> DirectX 9.0c-compatible
|
1134
|
+
sound card \r<br>\t\t\t\t\t\t</li><li><strong>Note:</strong> Optimized for
|
1135
|
+
the touch-screen Ultrabook™ device\r<br>\t\t\t\t\t</li></ul>\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
1136
|
+
style=\"clear: both;\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div class=\"game_area_sys_req
|
1137
|
+
sysreq_content \" data-os=\"mac\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"game_area_sys_req_leftCol\">\r\n\t\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t\t<strong>Minimum:</strong>\r<br>\t\t\t\t\t\t\t\t\t\t\t\t\t<ul
|
1138
|
+
class=\"bb_ul\"><li><strong>OS:</strong> 10.8.5 (Mountain Lion), 10.9.5 (Mavericks),
|
1139
|
+
10.10 (Yosemite)\r<br><strong>Processor:</strong> Intel Core 2 Duo (Dual-Core)
|
1140
|
+
CPU Speed: 2.4 GHz\r<br><strong>Memory:</strong> 2 GB RAM \r<br><strong>Hard
|
1141
|
+
Disk Space:</strong> 8 GB \r<br><strong>Video Card (ATI):</strong> Radeon
|
1142
|
+
HD 2600\r<br><strong>Video Card (NVidia):</strong> Geforce 8600\r<br><strong>Video
|
1143
|
+
Card (Intel):</strong> HD 4000\r<br><strong>Video Memory (VRam):</strong>
|
1144
|
+
256MB\r<br>\r<br><strong>Multiplayer:</strong> Internet (TCP/IP) and LAN (TCP/IP)
|
1145
|
+
play supported. Please note, it is possible for Mac and PC to become out
|
1146
|
+
of sync during updates. Within this short time period, Mac users will only
|
1147
|
+
be able to play other Mac users.\r<br>\t\t\t\t\t\t\t\t\t\t\t\t\t\t</li><li><strong>NOTICE:This
|
1148
|
+
game is not supported on volumes formatted as Mac OS Extended (Case Sensitive)\r<br>\t\t\t\t\t\t\t\t\t\t\t\t\t\t</strong></li><li><strong>NOTICE:</strong>
|
1149
|
+
The following video chipsets are not supported for Civilization V:\r<br>ATI
|
1150
|
+
Radeon X1000 series, HD 2400\r<br>Nvidia GeForce 7000 series, 8600, 9400\r<br>Intel
|
1151
|
+
GMA (950/X3100), HD 3000</li></ul>\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1152
|
+
class=\"game_area_sys_req_rightCol\">\r\n\t\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t\t<strong>Recommended:</strong>\r<br>\t\t\t\t\t\t<ul
|
1153
|
+
class=\"bb_ul\"><li><strong>Processor:</strong> Intel Quad Core\r<br>\t\t\t\t\t\t</li><li><strong>Memory:</strong>
|
1154
|
+
4GB\r<br>\t\t\t\t\t\t</li><li><strong>CPU Speed:</strong> 2.4 GHz\r<br>\t\t\t\t\t\t</li><li><strong>Video
|
1155
|
+
RAM:</strong> 1GB\r<br>\t\r<br>\t\t\t\t\t\t</li></ul>\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
1156
|
+
style=\"clear: both;\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div class=\"game_area_sys_req
|
1157
|
+
sysreq_content \" data-os=\"linux\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"game_area_sys_req_full\">\r\n\t\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t\t<strong>Operating
|
1158
|
+
System:</strong> SteamOS \r<br><strong>CPU Processor:</strong> Intel Core
|
1159
|
+
i3, AMD A10\r<br><strong>CPU Speed:</strong> 2.4GHz \r<br><strong>Memory:</strong>
|
1160
|
+
4 GB RAM \r<br><strong>Hard Disk Space:</strong> 10 GB \r<br><strong>Video
|
1161
|
+
Card (ATI):</strong> Radeon HD 6450\r<br><strong>Video Card (NVidia):</strong>
|
1162
|
+
Geforce 640M\r<br><strong>Video Card (Intel):</strong> Iris Pro\r<br><strong>Video
|
1163
|
+
Memory (VRam):</strong> 1GB\r<br>\r<br><strong>IMPORTANT NOTICE:</strong>
|
1164
|
+
Don't meet the above requirements? Running on Ubuntu? That doesn't mean your
|
1165
|
+
configuration wont run Civ V, it just means we have not tested and vetted
|
1166
|
+
your configuration. Visit the Civilization V community page to share your
|
1167
|
+
experience with other Linux players and learn about how to send bugs to Aspyr.
|
1168
|
+
Your feedback will help us improve Civ V Linux and future AAA Linux releases!\r<br>\r<br><strong>NOTICE:</strong>
|
1169
|
+
\ Intel Integrated video chipsets (GMA 9XX, HD 3XXX) will not run Civilization
|
1170
|
+
V for SteamOS and Linux, and are unsupported.\r<br>[/list]\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1171
|
+
style=\"clear: both;\"></div>\r\n\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t</div>\r\n\t<script
|
1172
|
+
type=\"text/javascript\">\r\n\t\t$J( function() {\r\n\t\t\tvar $Tabs = $J('.sysreq_tab');\r\n\t\t\tvar
|
1173
|
+
$Content = $J('.sysreq_content');\r\n\r\n\t\t\t$Tabs.click( function() {\r\n\t\t\t\tvar
|
1174
|
+
$Tab = $J(this);\r\n\t\t\t\t$Tabs.removeClass('active');\r\n\t\t\t\t$Tab.addClass('active');\r\n\r\n\t\t\t\t$Content.removeClass('active');\r\n\t\t\t\t$Content.filter('[data-os='
|
1175
|
+
+ $Tab.data('os') + ']').addClass('active');\r\n\r\n\t\t\t\t$Content.trigger('gamepage_autocollapse_expand');\r\n\t\t\t});\r\n\t\t}
|
1176
|
+
);\r\n\t</script>\r\n\r\n\t\t\t\t\t\t\t\t\t<div class=\"game_page_autocollapse\"
|
1177
|
+
style=\"max-height: 400px;\">\r\n\t\t\t\t\t\t<div id=\"game_area_legal\">\r\n\t\t\t\t\t\t\t<p>©
|
1178
|
+
2007-2013 Take-Two Interactive Software and its subsidiaries. Developed by
|
1179
|
+
Firaxis Games. Sid Meier’s Civilization V, Civilization, 2K Games, Firaxis
|
1180
|
+
Games, Take-Two Interactive Software and their respective logos are all trademarks
|
1181
|
+
and/or registered trademarks of Take-Two Interactive Software, Inc. The ratings
|
1182
|
+
icon is a trademark of the Entertainment Software Association. All rights
|
1183
|
+
reserved.</p>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div
|
1184
|
+
class=\"block\" id=\"recommended_block\">\r\n\t\t\t\t\t\t<div class=\"block_header\">\r\n\t\t\t\t\t\t\t<div
|
1185
|
+
class=\"right\">\r\n\t\t\t\t\t\t\t\t<a href=\"http://store.steampowered.com/recommended/morelike/app/8930/?snr=1_5_9__300\">See
|
1186
|
+
all</a>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<h4>More like this</h4>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
1187
|
+
class=\"block_responsive_horizontal_scroll store_horizontal_autoslider block_content
|
1188
|
+
nopad\" id=\"recommended_block_content\">\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t<div
|
1189
|
+
id=\"responsive_apppage_reviewblock_ctn\" class=\"rightcol game_meta_data\"></div>\r\n\r\n\t\t\t\t<div
|
1190
|
+
id=\"app_reviews_hash\" class=\"app_reviews_area\">\r\n\t\t\t\t\t<script>\r\n\tjQuery(
|
1191
|
+
document ).ready(function( $ ) {\r\n\t\tCollapseLongReviews();\r\n\t});\r\n</script>\r\n\t<div
|
1192
|
+
class=\"user_reviews_header no_bottom_margin\">\r\n\t\tHelpful customer reviews\t\t\t\t<div
|
1193
|
+
class=\"user_reviews_see_all\">\r\n\t\t\t<a href=\"http://store.steampowered.com/reviews/?snr=1_5_9_\">About
|
1194
|
+
Reviews</a>\r\n\t\t</div>\r\n\t\t\t</div>\r\n\t<div class=\"user_reviews_filter_bar\">\r\n\t\t<span
|
1195
|
+
class=\"user_reviews_filter_text\">Filter:</span>\r\n\t\t<div class=\"user_reviews_tab
|
1196
|
+
active\" id=\"ReviewsTab_all\">\r\n\t\t\t<a href=\"javascript:void(0)\" onclick=\"SelectReviews(
|
1197
|
+
8930, 'all', 180, 'english' );\">\r\n\t\t\t\t<span>Helpful</span>\r\n\t\t\t</a>\r\n\t\t</div>\r\n\t\t<div
|
1198
|
+
class=\"user_reviews_tab\" id=\"ReviewsTab_recent\">\r\n\t\t\t<a href=\"javascript:void(0)\"
|
1199
|
+
onclick=\"SelectReviews( 8930, 'recent', 180, 'english' );\">\r\n\t\t\t\t<span>Recent</span>\r\n\t\t\t</a>\r\n\t\t</div>\r\n\t\t<div
|
1200
|
+
class=\"user_reviews_tab\" id=\"ReviewsTab_positive\">\r\n\t\t\t<a href=\"javascript:void(0)\"
|
1201
|
+
onclick=\"SelectReviews( 8930, 'positive', 180, 'english' );\">\r\n\t\t\t\t\t\t\t\t\t<span>Positive
|
1202
|
+
</span> <span class=\"user_reviews_count\">(61,223)</span>\r\n\t\t\t\t\t\t\t</a>\r\n\t\t</div>\r\n\t\t<div
|
1203
|
+
class=\"user_reviews_tab\" id=\"ReviewsTab_negative\">\r\n\t\t\t<a href=\"javascript:void(0)\"
|
1204
|
+
onclick=\"SelectReviews( 8930, 'negative', 180, 'english' );\">\r\n\t\t\t\t\t\t\t\t\t<span>Negative
|
1205
|
+
</span> <span class=\"user_reviews_count\">(1,934)</span>\r\n\t\t\t\t\t\t\t</a>\r\n\t\t</div>\r\n\t\t<div
|
1206
|
+
class=\"user_reviews_tab\" id=\"ReviewsTab_funny\">\r\n\t\t\t<a href=\"javascript:void(0)\"
|
1207
|
+
onclick=\"SelectReviews( 8930, 'funny', 180, 'english' );\">\r\n\t\t\t\t<span>Funny</span>\r\n\t\t\t</a>\r\n\t\t</div>\r\n\t\t<div
|
1208
|
+
style=\"clear: left;\"></div>\r\n\t</div>\r\n\r\n\t<div id=\"LoadingMoreReviewsrecent\"
|
1209
|
+
style=\"display: none\" class=\"loading_more_reviews\">\r\n\t\t<img src=\"http://store.akamai.steamstatic.com/public/shared/images/throbber.gif\"
|
1210
|
+
class=\"loading_more_reviews_throbber\">\r\n\t\tLoading reviews...\t</div>\r\n\t<div
|
1211
|
+
id=\"LoadingMoreReviewspositive\" style=\"display: none\" class=\"loading_more_reviews\">\r\n\t\t<img
|
1212
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/throbber.gif\"
|
1213
|
+
class=\"loading_more_reviews_throbber\">\r\n\t\tLoading reviews...\t</div>\r\n\t<div
|
1214
|
+
id=\"LoadingMoreReviewsnegative\" style=\"display: none\" class=\"loading_more_reviews\">\r\n\t\t<img
|
1215
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/throbber.gif\"
|
1216
|
+
class=\"loading_more_reviews_throbber\">\r\n\t\tLoading reviews...\t</div>\r\n\t<div
|
1217
|
+
id=\"LoadingMoreReviewsfunny\" style=\"display: none\" class=\"loading_more_reviews\">\r\n\t\t<img
|
1218
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/throbber.gif\"
|
1219
|
+
class=\"loading_more_reviews_throbber\">\r\n\t\tLoading reviews...\t</div>\r\n\r\n\t<div
|
1220
|
+
id=\"Reviews_positive\" style=\"display: none\" class=\"user_reviews_container\"></div>\r\n\t<div
|
1221
|
+
id=\"Reviews_negative\" style=\"display: none\" class=\"user_reviews_container\"></div>\r\n\t<div
|
1222
|
+
id=\"Reviews_recent\" style=\"display: none\" class=\"user_reviews_container\"></div>\r\n\t<div
|
1223
|
+
id=\"Reviews_funny\" style=\"display: none\" class=\"user_reviews_container\"></div>\r\n\t<div
|
1224
|
+
id=\"Reviews_all\" class=\"user_reviews_container\">\r\n\t\t\t<div id=\"Reviewsall0\">\r\n\t\t\t<div
|
1225
|
+
class=\"review_box\">\r\n\t\t\t\t\t\t<div class=\"header\">\r\n\t\t\t\t2,393
|
1226
|
+
of 2,506 people (95%) found this review helpful\t\t\t\t\t\t\t\t<div class=\"commentCount\"><a
|
1227
|
+
href=\"http://steamcommunity.com/id/CallyGoreLover/recommended/8930/\">55
|
1228
|
+
<img src=\"http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png\"
|
1229
|
+
align=\"center\"></a></div>\r\n\t\t\t\t\t\t\t\t<br>81 people found this review
|
1230
|
+
funny\t\t\t</div>\r\n\t\t\t\t\t<div style=\"clear: left;\"></div>\r\n\r\n\t\t<div
|
1231
|
+
id=\"ReviewContentall15853263\">\r\n\t\t\t<div class=\"leftcol\">\r\n\t\t\t\t<div
|
1232
|
+
class=\"avatar\">\r\n\t\t\t\t\t<a href=\"http://steamcommunity.com/id/CallyGoreLover/\">\r\n\t\t\t\t\t\t<div
|
1233
|
+
class=\"playerAvatar offline\" data-miniprofile=\"55220691\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1234
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/f3/f3e5b9115316218adb63fd3ede59786c79bba702.jpg\"
|
1235
|
+
srcset=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/f3/f3e5b9115316218adb63fd3ede59786c79bba702.jpg
|
1236
|
+
1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/f3/f3e5b9115316218adb63fd3ede59786c79bba702_medium.jpg
|
1237
|
+
2x\">\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div
|
1238
|
+
class=\"persona_name\"><a href=\"http://steamcommunity.com/id/CallyGoreLover/\"
|
1239
|
+
data-miniprofile=\"55220691\">CallyDogLover</a></div>\r\n\t\t\t\t\t\t\t\t<div
|
1240
|
+
class=\"num_owned_games\"><a href=\"http://steamcommunity.com/id/CallyGoreLover/games/?tab=all\">124
|
1241
|
+
products in account</a></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"num_reviews\"><a
|
1242
|
+
href=\"http://steamcommunity.com/id/CallyGoreLover/recommended/\">19 reviews</a></div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t<div
|
1243
|
+
class=\"rightcol\">\r\n\t\t\t\t<div class=\"vote_header\">\r\n\t\t\t\t\t<div
|
1244
|
+
class=\"thumb\">\r\n\t\t\t\t\t\t<a href=\"http://steamcommunity.com/id/CallyGoreLover/recommended/8930/\"><img
|
1245
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png\"
|
1246
|
+
width=\"40\" height=\"40\"></a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div
|
1247
|
+
class=\"title ellipsis\"><a href=\"http://steamcommunity.com/id/CallyGoreLover/recommended/8930/\">Recommended</a></div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
1248
|
+
class=\"hours ellipsis\">4,649.8 hrs on record</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1249
|
+
class=\"postedDate\">Posted: 16 May\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\r\n\t\t\t\t<div
|
1250
|
+
class=\"content\">\r\n\t\t\t\t\thavent spent enough time to give my full opinion,
|
1251
|
+
but its good<br>\t\t\t\t\t<div class=\"gradient\"></div>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1252
|
+
class=\"posted\">\r\n\t\t\t\t\t<div class=\"view_more\"><a href=\"#\" onclick=\"UserReviewShowMore('15853263',
|
1253
|
+
'all' ); return false;\">Read More</a></div>\r\n\t\t\t\t\t \r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1254
|
+
class=\"hr\"></div>\r\n\t\t\t\t<div class=\"control_block\">\r\n\r\n\t\t\t\t\t<span
|
1255
|
+
class=\"text\">Was this review helpful?</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<a
|
1256
|
+
href=\"javascript:void(0)\" onclick=\"UserReviewVoteUp( '15853263' )\" class=\"btnv6_grey_black
|
1257
|
+
btn_small_thin ico_hover \" id=\"RecommendationVoteUpBtnall15853263\"><span><i
|
1258
|
+
class=\"ico16 thumb_upv6\"></i> Yes</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1259
|
+
onclick=\"UserReviewVoteDown( '15853263' )\" class=\"btnv6_grey_black btn_small_thin
|
1260
|
+
ico_hover \" id=\"RecommendationVoteDownBtnall15853263\"><span><i class=\"ico16
|
1261
|
+
thumb_downv6\"></i> No</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1262
|
+
onclick=\"UserReviewVoteTag( '15853263', 1, 'RecommendationVoteTagBtnall15853263_1'
|
1263
|
+
)\" class=\"btnv6_grey_black btn_small_thin ico_hover \" id=\"RecommendationVoteTagBtnall15853263_1\"><span><i
|
1264
|
+
class=\"ico16 funny\"></i> Funny</span></a>\r\n\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div
|
1265
|
+
style=\"clear: left;\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t<div class=\"review_box\">\r\n\t\t\t\t\t\t<div
|
1266
|
+
class=\"header\">\r\n\t\t\t\t1,180 of 1,217 people (97%) found this review
|
1267
|
+
helpful\t\t\t\t\t\t\t\t<div class=\"commentCount\"><a href=\"http://steamcommunity.com/id/Van_Draeck/recommended/8930/\">22
|
1268
|
+
<img src=\"http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png\"
|
1269
|
+
align=\"center\"></a></div>\r\n\t\t\t\t\t\t\t\t<br>54 people found this review
|
1270
|
+
funny\t\t\t</div>\r\n\t\t\t\t\t<div style=\"clear: left;\"></div>\r\n\r\n\t\t<div
|
1271
|
+
id=\"ReviewContentall15453378\">\r\n\t\t\t<div class=\"leftcol\">\r\n\t\t\t\t<div
|
1272
|
+
class=\"avatar\">\r\n\t\t\t\t\t<a href=\"http://steamcommunity.com/id/Van_Draeck/\">\r\n\t\t\t\t\t\t<div
|
1273
|
+
class=\"playerAvatar online\" data-miniprofile=\"114818513\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1274
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/03/0300d3fe6815af6a185e95db4031fee295322855.jpg\"
|
1275
|
+
srcset=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/03/0300d3fe6815af6a185e95db4031fee295322855.jpg
|
1276
|
+
1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/03/0300d3fe6815af6a185e95db4031fee295322855_medium.jpg
|
1277
|
+
2x\">\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div
|
1278
|
+
class=\"persona_name\"><a href=\"http://steamcommunity.com/id/Van_Draeck/\"
|
1279
|
+
data-miniprofile=\"114818513\">Van Draeck</a></div>\r\n\t\t\t\t\t\t\t\t<div
|
1280
|
+
class=\"num_owned_games\"><a href=\"http://steamcommunity.com/id/Van_Draeck/games/?tab=all\">60
|
1281
|
+
products in account</a></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"num_reviews\"><a
|
1282
|
+
href=\"http://steamcommunity.com/id/Van_Draeck/recommended/\">6 reviews</a></div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t<div
|
1283
|
+
class=\"rightcol\">\r\n\t\t\t\t<div class=\"vote_header\">\r\n\t\t\t\t\t<div
|
1284
|
+
class=\"thumb\">\r\n\t\t\t\t\t\t<a href=\"http://steamcommunity.com/id/Van_Draeck/recommended/8930/\"><img
|
1285
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png\"
|
1286
|
+
width=\"40\" height=\"40\"></a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div
|
1287
|
+
class=\"title ellipsis\"><a href=\"http://steamcommunity.com/id/Van_Draeck/recommended/8930/\">Recommended</a></div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
1288
|
+
class=\"hours ellipsis\">357.4 hrs on record</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1289
|
+
class=\"postedDate\">Posted: 19 April\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\r\n\t\t\t\t<div
|
1290
|
+
class=\"content\">\r\n\t\t\t\t\tGandhi declares war on Bismarck's German Empire.
|
1291
|
+
<br><br>Soon after, Gandhi strikes Berlin, Hamburg, and Essen with Nuclear
|
1292
|
+
Missiles.<br><br>The Ottomans, concerned with Gandhi's warmongering, denounce
|
1293
|
+
the Indian leader.<br><br>They soon lose their capital.<br><br>Bismarck, his
|
1294
|
+
economy and army in ruins, pleads for peace with the Indian Empire, but Gandhi
|
1295
|
+
will only stop with full annexation of the German Reich.<br><br>An alliance
|
1296
|
+
of Poland, Gengis Khan's Mongolian Empire, and the Aztecs turn on Gandhi in
|
1297
|
+
hopes of stopping his rampage.<br><br>Warsaw falls.<br><br>Karakorum falls.<br><br>Tenochtitlan
|
1298
|
+
falls.<br><br>Gandhi reins supreme. The world is in his grasp. He is on the
|
1299
|
+
verge of doing what men, for thousands of years, have dreamed of: Conquering
|
1300
|
+
the world under one banner.<br><br>But none of that matters, because the Babylonians
|
1301
|
+
have just won a space victory by launching a single little rocket into space.
|
1302
|
+
It makes too much sense.<br><br>10/10, but be warned:<br><br>Gandhi will find
|
1303
|
+
you.<br><br>Gandhi will kill you.<br><br>And Gandhi<br><br>Always<br><br>Gets<br><br>His<br><br>Kill.\t\t\t\t\t<div
|
1304
|
+
class=\"gradient\"></div>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div class=\"posted\">\r\n\t\t\t\t\t<div
|
1305
|
+
class=\"view_more\"><a href=\"#\" onclick=\"UserReviewShowMore('15453378',
|
1306
|
+
'all' ); return false;\">Read More</a></div>\r\n\t\t\t\t\t \r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1307
|
+
class=\"hr\"></div>\r\n\t\t\t\t<div class=\"control_block\">\r\n\r\n\t\t\t\t\t<span
|
1308
|
+
class=\"text\">Was this review helpful?</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<a
|
1309
|
+
href=\"javascript:void(0)\" onclick=\"UserReviewVoteUp( '15453378' )\" class=\"btnv6_grey_black
|
1310
|
+
btn_small_thin ico_hover \" id=\"RecommendationVoteUpBtnall15453378\"><span><i
|
1311
|
+
class=\"ico16 thumb_upv6\"></i> Yes</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1312
|
+
onclick=\"UserReviewVoteDown( '15453378' )\" class=\"btnv6_grey_black btn_small_thin
|
1313
|
+
ico_hover \" id=\"RecommendationVoteDownBtnall15453378\"><span><i class=\"ico16
|
1314
|
+
thumb_downv6\"></i> No</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1315
|
+
onclick=\"UserReviewVoteTag( '15453378', 1, 'RecommendationVoteTagBtnall15453378_1'
|
1316
|
+
)\" class=\"btnv6_grey_black btn_small_thin ico_hover \" id=\"RecommendationVoteTagBtnall15453378_1\"><span><i
|
1317
|
+
class=\"ico16 funny\"></i> Funny</span></a>\r\n\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div
|
1318
|
+
style=\"clear: left;\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t<div class=\"review_box\">\r\n\t\t\t\t\t\t<div
|
1319
|
+
class=\"header\">\r\n\t\t\t\t558 of 574 people (97%) found this review helpful\t\t\t\t\t\t\t\t<div
|
1320
|
+
class=\"commentCount\"><a href=\"http://steamcommunity.com/id/Takanashi/recommended/8930/\">2
|
1321
|
+
<img src=\"http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png\"
|
1322
|
+
align=\"center\"></a></div>\r\n\t\t\t\t\t\t\t\t<br>28 people found this review
|
1323
|
+
funny\t\t\t</div>\r\n\t\t\t\t\t<div style=\"clear: left;\"></div>\r\n\r\n\t\t<div
|
1324
|
+
id=\"ReviewContentall15749902\">\r\n\t\t\t<div class=\"leftcol\">\r\n\t\t\t\t<div
|
1325
|
+
class=\"avatar\">\r\n\t\t\t\t\t<a href=\"http://steamcommunity.com/id/Takanashi/\">\r\n\t\t\t\t\t\t<div
|
1326
|
+
class=\"playerAvatar in-game\" data-miniprofile=\"62755403\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1327
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/bc/bceee542b3a850dbc34eb3105e6b3293d36c4c19.jpg\"
|
1328
|
+
srcset=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/bc/bceee542b3a850dbc34eb3105e6b3293d36c4c19.jpg
|
1329
|
+
1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/bc/bceee542b3a850dbc34eb3105e6b3293d36c4c19_medium.jpg
|
1330
|
+
2x\">\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div
|
1331
|
+
class=\"persona_name\"><a href=\"http://steamcommunity.com/id/Takanashi/\"
|
1332
|
+
data-miniprofile=\"62755403\">Δ Twitch.tv/lainzero ♥</a></div>\r\n\t\t\t\t\t\t\t\t<div
|
1333
|
+
class=\"num_owned_games\"><a href=\"http://steamcommunity.com/id/Takanashi/games/?tab=all\">557
|
1334
|
+
products in account</a></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"num_reviews\"><a
|
1335
|
+
href=\"http://steamcommunity.com/id/Takanashi/recommended/\">7 reviews</a></div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t<div
|
1336
|
+
class=\"rightcol\">\r\n\t\t\t\t<div class=\"vote_header\">\r\n\t\t\t\t\t<div
|
1337
|
+
class=\"thumb\">\r\n\t\t\t\t\t\t<a href=\"http://steamcommunity.com/id/Takanashi/recommended/8930/\"><img
|
1338
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png\"
|
1339
|
+
width=\"40\" height=\"40\"></a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div
|
1340
|
+
class=\"title ellipsis\"><a href=\"http://steamcommunity.com/id/Takanashi/recommended/8930/\">Recommended</a></div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
1341
|
+
class=\"hours ellipsis\">123.0 hrs on record</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1342
|
+
class=\"postedDate\">Posted: 8 May\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\r\n\t\t\t\t<div
|
1343
|
+
class=\"content\">\r\n\t\t\t\t\tMy favorite part of history was when Ghandi
|
1344
|
+
built the Great wall in 4000 BC for his Jewish army.<br>10/10, helped me with
|
1345
|
+
history class.\t\t\t\t\t<div class=\"gradient\"></div>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1346
|
+
class=\"posted\">\r\n\t\t\t\t\t<div class=\"view_more\"><a href=\"#\" onclick=\"UserReviewShowMore('15749902',
|
1347
|
+
'all' ); return false;\">Read More</a></div>\r\n\t\t\t\t\t \r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1348
|
+
class=\"hr\"></div>\r\n\t\t\t\t<div class=\"control_block\">\r\n\r\n\t\t\t\t\t<span
|
1349
|
+
class=\"text\">Was this review helpful?</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<a
|
1350
|
+
href=\"javascript:void(0)\" onclick=\"UserReviewVoteUp( '15749902' )\" class=\"btnv6_grey_black
|
1351
|
+
btn_small_thin ico_hover \" id=\"RecommendationVoteUpBtnall15749902\"><span><i
|
1352
|
+
class=\"ico16 thumb_upv6\"></i> Yes</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1353
|
+
onclick=\"UserReviewVoteDown( '15749902' )\" class=\"btnv6_grey_black btn_small_thin
|
1354
|
+
ico_hover \" id=\"RecommendationVoteDownBtnall15749902\"><span><i class=\"ico16
|
1355
|
+
thumb_downv6\"></i> No</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1356
|
+
onclick=\"UserReviewVoteTag( '15749902', 1, 'RecommendationVoteTagBtnall15749902_1'
|
1357
|
+
)\" class=\"btnv6_grey_black btn_small_thin ico_hover \" id=\"RecommendationVoteTagBtnall15749902_1\"><span><i
|
1358
|
+
class=\"ico16 funny\"></i> Funny</span></a>\r\n\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div
|
1359
|
+
style=\"clear: left;\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t<div class=\"review_box\">\r\n\t\t\t\t\t\t<div
|
1360
|
+
class=\"header\">\r\n\t\t\t\t217 of 232 people (94%) found this review helpful\t\t\t\t\t\t\t\t<div
|
1361
|
+
class=\"commentCount\"><a href=\"http://steamcommunity.com/id/IOGCM/recommended/8930/\">4
|
1362
|
+
<img src=\"http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png\"
|
1363
|
+
align=\"center\"></a></div>\r\n\t\t\t\t\t\t\t\t<br>15 people found this review
|
1364
|
+
funny\t\t\t</div>\r\n\t\t\t\t\t<div style=\"clear: left;\"></div>\r\n\r\n\t\t<div
|
1365
|
+
id=\"ReviewContentall16005144\">\r\n\t\t\t<div class=\"leftcol\">\r\n\t\t\t\t<div
|
1366
|
+
class=\"avatar\">\r\n\t\t\t\t\t<a href=\"http://steamcommunity.com/id/IOGCM/\">\r\n\t\t\t\t\t\t<div
|
1367
|
+
class=\"playerAvatar online\" data-miniprofile=\"159210806\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1368
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/98/98f7e12bbe1bdfb2d860d6ea4b0303d69c45cfc2.jpg\"
|
1369
|
+
srcset=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/98/98f7e12bbe1bdfb2d860d6ea4b0303d69c45cfc2.jpg
|
1370
|
+
1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/98/98f7e12bbe1bdfb2d860d6ea4b0303d69c45cfc2_medium.jpg
|
1371
|
+
2x\">\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div
|
1372
|
+
class=\"persona_name\"><a href=\"http://steamcommunity.com/id/IOGCM/\" data-miniprofile=\"159210806\">That
|
1373
|
+
One Sloth</a></div>\r\n\t\t\t\t\t\t\t\t<div class=\"num_owned_games\"><a href=\"http://steamcommunity.com/id/IOGCM/games/?tab=all\">20
|
1374
|
+
products in account</a></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"num_reviews\"><a
|
1375
|
+
href=\"http://steamcommunity.com/id/IOGCM/recommended/\">7 reviews</a></div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t<div
|
1376
|
+
class=\"rightcol\">\r\n\t\t\t\t<div class=\"vote_header\">\r\n\t\t\t\t\t<div
|
1377
|
+
class=\"thumb\">\r\n\t\t\t\t\t\t<a href=\"http://steamcommunity.com/id/IOGCM/recommended/8930/\"><img
|
1378
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png\"
|
1379
|
+
width=\"40\" height=\"40\"></a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div
|
1380
|
+
class=\"title ellipsis\"><a href=\"http://steamcommunity.com/id/IOGCM/recommended/8930/\">Recommended</a></div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
1381
|
+
class=\"hours ellipsis\">113.6 hrs on record</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1382
|
+
class=\"postedDate\">Posted: 25 May\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\r\n\t\t\t\t<div
|
1383
|
+
class=\"content\">\r\n\t\t\t\t\t-Puts on Morgan Freeman voice-<br>Now children,
|
1384
|
+
settle down, I'm going to tell you about our history.<br>Many a millions of
|
1385
|
+
years ago, there were 6.<br>Oda the peaceful.<br>Bismark the rich.<br>Siam
|
1386
|
+
the literate.<br>Ghengis Kahn the powerful.<br>Washington the productive.<br>And
|
1387
|
+
Ghandi the *Cough* Peaceful.<br>For many thousands of years they lived peacefully
|
1388
|
+
in harmony and tranquility, trading as they pleased.<br>Then it changed.<br>Ghandi
|
1389
|
+
had risen an army in secret. One far more powerful than should ever have been
|
1390
|
+
made.<br><br>-Falls into the mind of Oda Nabunaga-<br><br>The troops had moved
|
1391
|
+
out on the fields that day, on their way to fight the Indian threat.<br>The
|
1392
|
+
war raged on for many a thousands of years when we made the push. We burned
|
1393
|
+
the Indian cities 'till they were but glass! We were victorious. The war was
|
1394
|
+
over. The world was safe.<br>But then, crawling out of the ash and flame of
|
1395
|
+
a burned civilization was...<br>One.<br>More.<br>City.<br>Troops amassed outside
|
1396
|
+
it. It was an Indian city<br>Gahndi wasn't gone...<br>I saw the numbers above
|
1397
|
+
his city and was thinking "What is that...?"<br>Then I heard the
|
1398
|
+
air raid sirens and saw the missles launch on what was the last day of my
|
1399
|
+
life.<br>They hit every city. Burning them, irradiating them.<br>As I sat
|
1400
|
+
there, in my throne room I had one last thought.<br>One last memory that would
|
1401
|
+
carry me over.<br>And it was...<br>"Well played Ghandi...Well played."\t\t\t\t\t<div
|
1402
|
+
class=\"gradient\"></div>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div class=\"posted\">\r\n\t\t\t\t\t<div
|
1403
|
+
class=\"view_more\"><a href=\"#\" onclick=\"UserReviewShowMore('16005144',
|
1404
|
+
'all' ); return false;\">Read More</a></div>\r\n\t\t\t\t\t \r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1405
|
+
class=\"hr\"></div>\r\n\t\t\t\t<div class=\"control_block\">\r\n\r\n\t\t\t\t\t<span
|
1406
|
+
class=\"text\">Was this review helpful?</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<a
|
1407
|
+
href=\"javascript:void(0)\" onclick=\"UserReviewVoteUp( '16005144' )\" class=\"btnv6_grey_black
|
1408
|
+
btn_small_thin ico_hover \" id=\"RecommendationVoteUpBtnall16005144\"><span><i
|
1409
|
+
class=\"ico16 thumb_upv6\"></i> Yes</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1410
|
+
onclick=\"UserReviewVoteDown( '16005144' )\" class=\"btnv6_grey_black btn_small_thin
|
1411
|
+
ico_hover \" id=\"RecommendationVoteDownBtnall16005144\"><span><i class=\"ico16
|
1412
|
+
thumb_downv6\"></i> No</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1413
|
+
onclick=\"UserReviewVoteTag( '16005144', 1, 'RecommendationVoteTagBtnall16005144_1'
|
1414
|
+
)\" class=\"btnv6_grey_black btn_small_thin ico_hover \" id=\"RecommendationVoteTagBtnall16005144_1\"><span><i
|
1415
|
+
class=\"ico16 funny\"></i> Funny</span></a>\r\n\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div
|
1416
|
+
style=\"clear: left;\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t<div class=\"review_box\">\r\n\t\t\t\t\t\t<div
|
1417
|
+
class=\"header\">\r\n\t\t\t\t260 of 289 people (90%) found this review helpful\t\t\t\t\t\t\t\t<div
|
1418
|
+
class=\"commentCount\"><a href=\"http://steamcommunity.com/profiles/76561198066458572/recommended/8930/\">9
|
1419
|
+
<img src=\"http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png\"
|
1420
|
+
align=\"center\"></a></div>\r\n\t\t\t\t\t\t\t\t<br>20 people found this review
|
1421
|
+
funny\t\t\t</div>\r\n\t\t\t\t\t<div style=\"clear: left;\"></div>\r\n\r\n\t\t<div
|
1422
|
+
id=\"ReviewContentall15985197\">\r\n\t\t\t<div class=\"leftcol\">\r\n\t\t\t\t<div
|
1423
|
+
class=\"avatar\">\r\n\t\t\t\t\t<a href=\"http://steamcommunity.com/profiles/76561198066458572/\">\r\n\t\t\t\t\t\t<div
|
1424
|
+
class=\"playerAvatar online\" data-miniprofile=\"106192844\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img
|
1425
|
+
src=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/ba/ba496e91c5d4a1c7d232d0d9ba6635a2ac914ef8.jpg\"
|
1426
|
+
srcset=\"http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/ba/ba496e91c5d4a1c7d232d0d9ba6635a2ac914ef8.jpg
|
1427
|
+
1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/ba/ba496e91c5d4a1c7d232d0d9ba6635a2ac914ef8_medium.jpg
|
1428
|
+
2x\">\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div
|
1429
|
+
class=\"persona_name\"><a href=\"http://steamcommunity.com/profiles/76561198066458572/\"
|
1430
|
+
data-miniprofile=\"106192844\">7thru7</a></div>\r\n\t\t\t\t\t\t\t\t<div class=\"num_owned_games\"><a
|
1431
|
+
href=\"http://steamcommunity.com/profiles/76561198066458572/games/?tab=all\">46
|
1432
|
+
products in account</a></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"num_reviews\"><a
|
1433
|
+
href=\"http://steamcommunity.com/profiles/76561198066458572/recommended/\">1
|
1434
|
+
review</a></div>\r\n\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t<div class=\"rightcol\">\r\n\t\t\t\t<div
|
1435
|
+
class=\"vote_header\">\r\n\t\t\t\t\t<div class=\"thumb\">\r\n\t\t\t\t\t\t<a
|
1436
|
+
href=\"http://steamcommunity.com/profiles/76561198066458572/recommended/8930/\"><img
|
1437
|
+
src=\"http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png\"
|
1438
|
+
width=\"40\" height=\"40\"></a>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t<div
|
1439
|
+
class=\"title ellipsis\"><a href=\"http://steamcommunity.com/profiles/76561198066458572/recommended/8930/\">Recommended</a></div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
1440
|
+
class=\"hours ellipsis\">3,738.6 hrs on record</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1441
|
+
class=\"postedDate\">Posted: 24 May\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\r\n\t\t\t\t<div
|
1442
|
+
class=\"content\">\r\n\t\t\t\t\tI have not played this game that much but
|
1443
|
+
it seems like there is potential.\t\t\t\t\t<div class=\"gradient\"></div>\r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1444
|
+
class=\"posted\">\r\n\t\t\t\t\t<div class=\"view_more\"><a href=\"#\" onclick=\"UserReviewShowMore('15985197',
|
1445
|
+
'all' ); return false;\">Read More</a></div>\r\n\t\t\t\t\t \r\n\t\t\t\t</div>\r\n\r\n\t\t\t\t<div
|
1446
|
+
class=\"hr\"></div>\r\n\t\t\t\t<div class=\"control_block\">\r\n\r\n\t\t\t\t\t<span
|
1447
|
+
class=\"text\">Was this review helpful?</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t<a
|
1448
|
+
href=\"javascript:void(0)\" onclick=\"UserReviewVoteUp( '15985197' )\" class=\"btnv6_grey_black
|
1449
|
+
btn_small_thin ico_hover \" id=\"RecommendationVoteUpBtnall15985197\"><span><i
|
1450
|
+
class=\"ico16 thumb_upv6\"></i> Yes</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1451
|
+
onclick=\"UserReviewVoteDown( '15985197' )\" class=\"btnv6_grey_black btn_small_thin
|
1452
|
+
ico_hover \" id=\"RecommendationVoteDownBtnall15985197\"><span><i class=\"ico16
|
1453
|
+
thumb_downv6\"></i> No</span></a>\r\n\t\t\t\t\t<a href=\"javascript:void(0)\"
|
1454
|
+
onclick=\"UserReviewVoteTag( '15985197', 1, 'RecommendationVoteTagBtnall15985197_1'
|
1455
|
+
)\" class=\"btnv6_grey_black btn_small_thin ico_hover \" id=\"RecommendationVoteTagBtnall15985197_1\"><span><i
|
1456
|
+
class=\"ico16 funny\"></i> Funny</span></a>\r\n\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div
|
1457
|
+
style=\"clear: left;\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t\t\t<div
|
1458
|
+
id=\"LoadMoreReviewsall\" class=\"load_more_reviews_btn\">\r\n\t\t\t\t<a href=\"javascript:void(0);\"
|
1459
|
+
onclick=\"LoadMoreReviews( 8930, 5, 180, 'all', 'english' );\" class=\"btnv6_blue_blue_innerfade
|
1460
|
+
btn_medium\">\r\n\t\t\t\t\t<span>Load More Reviews</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t\t\t\t<div
|
1461
|
+
id=\"ViewAllReviewsall\" class=\"view_all_reviews_btn\">\r\n\t\t\t\t<a href=\"http://steamcommunity.com/app/8930/reviews/?browsefilter=toprated&snr=1_5_9_\">Browse
|
1462
|
+
all 45,792 reviews</a>\r\n\t\t\t</div>\r\n\t\t\t\t\t\t<div id=\"LoadingMoreReviewsall\"
|
1463
|
+
style=\"display: none\" class=\"loading_more_reviews\">\r\n\t\t\t\t<img src=\"http://store.akamai.steamstatic.com/public/shared/images/throbber.gif\"
|
1464
|
+
class=\"loading_more_reviews_throbber\">\r\n\t\t\t\tLoading reviews...\t\t\t</div>\r\n\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\r\n\t\t\t</div>\r\n\r\n\t\t\t<div
|
1465
|
+
style=\"clear: both;\"></div>\r\n\t\t</div>\r\n\r\n\t</div>\r\n</div>\r\n\r\n\t\t<div
|
1466
|
+
class=\"hover game_hover\" id=\"global_hover\" style=\"display: none; left:
|
1467
|
+
0; top: 0;\">\r\n\t\t\t<div class=\"game_hover_box hover_box\">\r\n\t\t\t\t<div
|
1468
|
+
class=\"content\" id=\"global_hover_content\">\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div
|
1469
|
+
class=\"hover_arrow_left\"></div>\r\n\t\t\t<div class=\"hover_arrow_right\"></div>\r\n\t\t</div>\r\n<div
|
1470
|
+
id=\"EmbedModal\" style=\"display: none\">\r\n\t<div id=\"widget_create\">\r\n\t\t<p>You
|
1471
|
+
can use this widget-maker to generate a bit of HTML that can be embedded in
|
1472
|
+
your website to easily allow customers to purchase this game on Steam.</p>\r\n\r\n\t\t\t\t\t<p
|
1473
|
+
class=\"small\">There is more than one way to buy this game. Please select
|
1474
|
+
a specific package to create a widget for:</p>\r\n\t\t\t<div class=\"w_options\">\r\n\t\t\t\t\t\t\t\t\t<div
|
1475
|
+
class=\"w_option\">\r\n\t\t\t\t\t\t<input type=\"radio\" name=\"w_rsubid\"
|
1476
|
+
id=\"wp_6146\" value=\"6146\">\r\n\t\t\t\t\t\t<label for=\"wp_6146\">Sid Meier's
|
1477
|
+
Civilization V</label>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"w_option\">\r\n\t\t\t\t\t\t<input
|
1478
|
+
type=\"radio\" name=\"w_rsubid\" id=\"wp_36075\" value=\"36075\">\r\n\t\t\t\t\t\t<label
|
1479
|
+
for=\"wp_36075\">Sid Meier's Civilization V: Complete Edition</label>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t<div
|
1480
|
+
class=\"w_option\">\r\n\t\t\t\t\t\t<input type=\"radio\" name=\"w_rsubid\"
|
1481
|
+
id=\"wp_6820\" value=\"6820\">\r\n\t\t\t\t\t\t<label for=\"wp_6820\">Civilization
|
1482
|
+
V: Cradle of Civilization - DLC Bundle</label>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t<p
|
1483
|
+
class=\"small\">Enter up to 375 characters to add a description to your widget:</p>\r\n\t\t<textarea
|
1484
|
+
name=\"w_text\" placeholder=\"Create, discover, and download new player-created
|
1485
|
+
maps, scenarios, interfaces, and more!\" maxlength=\"375\"></textarea>\r\n\r\n\t\t<div
|
1486
|
+
class=\"buttoncontainer\">\r\n\t\t\t<a class=\"btnv6_blue_hoverfade btn_medium
|
1487
|
+
\" href=\"#\" onclick=\"CreateWidget(8930); return false;\"><span>Create widget</span></a>\r\n\t\t</div>\r\n\t</div>\r\n\t<div
|
1488
|
+
id=\"widget_finished\" style=\"display: none;\">\r\n\t\t<div id=\"widget_container\"></div>\r\n\r\n\t\t<p
|
1489
|
+
class=\"small\">Copy and paste the HTML below into your website to make the
|
1490
|
+
above widget appear</p>\r\n\t\t<textarea id=\"widget_code\" style=\"\"></textarea>\r\n\t</div>\r\n\r\n</div>\r\n\r\n<div
|
1491
|
+
id=\"ShareModal\" style=\"display: none\">\r\n\t<div class=\"share\">Share:
|
1492
|
+
<a target=\"_blank\" href=\"http://store.steampowered.com/share/facebook/app/8930\"
|
1493
|
+
title=\"Share on Facebook\"><img src=\"http://store.akamai.steamstatic.com/public/images/v5/social/facebook.gif\"></a>
|
1494
|
+
<a target=\"_blank\" href=\"http://store.steampowered.com/share/twitter/app/8930\"
|
1495
|
+
title=\"Share on Twitter\"><img src=\"http://store.akamai.steamstatic.com/public/images/v5/social/twitter.gif\"></a>
|
1496
|
+
<a target=\"_blank\" href=\"http://store.steampowered.com/share/reddit/app/8930\"
|
1497
|
+
title=\"Share on Reddit\"><img src=\"http://store.akamai.steamstatic.com/public/images/v5/social/reddit.gif\"></a></div></div>\r\n\r\n\t<div
|
1498
|
+
id=\"app_tagging_modal\" class=\"app_tag_modal nologin\" style=\"display:
|
1499
|
+
none;\">\r\n\t\t<div class=\"app_tag_modal_content\">\r\n\t\t\t<div class=\"app_tag_modal_seperator\"></div>\r\n\t\t\t<div
|
1500
|
+
class=\"app_tag_modal_left\">\r\n\t\t\t\t<h2>Popular user-defined tags for
|
1501
|
+
this product:<span class=\"app_tag_modal_tooltip\" data-store-tooltip=\"These
|
1502
|
+
are tags applied to the product by the most users. You can click a tag to
|
1503
|
+
find other products with that tag applied. Or, you can hit the plus symbol
|
1504
|
+
for any existing tags to increase that tag's popularity on this product.\">(?)</span></h2>\r\n\t\t\t\t<div
|
1505
|
+
class=\"app_tags popular_tags\">\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div
|
1506
|
+
class=\"app_tag_modal_right\">\r\n\t\t\t\t\t\t\t\t\t<h2>Sign in</h2>\r\n\t\t\t\t\t<p>Sign
|
1507
|
+
in to add your own tags to this product.</p>\r\n\t\t\t\t\t<p>\r\n\t\t\t\t\t\t<a
|
1508
|
+
class=\"btnv6_blue_hoverfade btn_medium\" href=\"https://store.steampowered.com/login/?redir=app/8930\">\r\n\t\t\t\t\t\t\t<span>Sign
|
1509
|
+
in</span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</p>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t<div
|
1510
|
+
style=\"clear: both;\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\t\t<script type=\"text/javascript\">\r\n\t\t$J(
|
1511
|
+
function() {\r\n\t\t\tInitAppTagModal( 8930,\r\n\t\t\t\t[{\"tagid\":1741,\"name\":\"Turn-Based
|
1512
|
+
Strategy\",\"count\":2993,\"browseable\":true},{\"tagid\":9,\"name\":\"Strategy\",\"count\":2739,\"browseable\":true},{\"tagid\":1677,\"name\":\"Turn-Based\",\"count\":1656,\"browseable\":true},{\"tagid\":3859,\"name\":\"Multiplayer\",\"count\":1531,\"browseable\":true},{\"tagid\":3987,\"name\":\"Historical\",\"count\":1282,\"browseable\":true},{\"tagid\":1670,\"name\":\"4X\",\"count\":1096,\"browseable\":true},{\"tagid\":4182,\"name\":\"Singleplayer\",\"count\":1021,\"browseable\":true},{\"tagid\":1717,\"name\":\"Hex
|
1513
|
+
Grid\",\"count\":857,\"browseable\":true},{\"tagid\":4364,\"name\":\"Grand
|
1514
|
+
Strategy\",\"count\":466,\"browseable\":true},{\"tagid\":1685,\"name\":\"Co-op\",\"count\":437,\"browseable\":true},{\"tagid\":4711,\"name\":\"Replay
|
1515
|
+
Value\",\"count\":397,\"browseable\":true},{\"tagid\":1669,\"name\":\"Moddable\",\"count\":310,\"browseable\":true},{\"tagid\":1708,\"name\":\"Tactical\",\"count\":261,\"browseable\":true},{\"tagid\":4695,\"name\":\"Economy\",\"count\":222,\"browseable\":true},{\"tagid\":599,\"name\":\"Simulation\",\"count\":214,\"browseable\":true},{\"tagid\":6310,\"name\":\"Diplomacy\",\"count\":211,\"browseable\":true},{\"tagid\":1756,\"name\":\"Great
|
1516
|
+
Soundtrack\",\"count\":189,\"browseable\":true},{\"tagid\":25085,\"name\":\"Touch-Friendly\",\"count\":169,\"browseable\":true},{\"tagid\":1693,\"name\":\"Classic\",\"count\":154,\"browseable\":true},{\"tagid\":1036,\"name\":\"Education\",\"count\":120,\"browseable\":true}],\r\n\t\t\t\t[],\r\n\t\t\t\t\"1_5_9__410\",\r\n\t\t\t\t\"1_5_9__411\",\r\n\t\t\t\tnull\t\t\t);\r\n\t\t});\r\n\t</script>\r\n\r\n\t\t</div>\t<!--
|
1517
|
+
responsive_page_legacy_content -->\r\n\r\n\t\t<div id=\"footer_spacer\" class=\"\"></div>\r\n<div
|
1518
|
+
id=\"footer\" class=\"\">\r\n<div class=\"footer_content\">\r\n\t<div class=\"rule\"></div>\r\n\r\n\t<div
|
1519
|
+
id=\"footer_nav\">\r\n\r\n\t\t\r\n\t\t\r\n\t\t\t<span class=\"pulldown btnv6_blue_hoverfade
|
1520
|
+
btn_small\" id=\"footer_steam_pulldown\">\r\n\t\t\t\t<span>ABOUT STEAM</span>\r\n\t\t\t</span>\r\n\t\t<div
|
1521
|
+
class=\"popup_block_new\" id=\"footer_steam_dropdown\" style=\"display: none;\">\r\n\t\t\t\t\t\t<div
|
1522
|
+
class=\"popup_body popup_menu\">\r\n\t\t\t\t<a class=\"popup_menu_item\" href=\"http://store.steampowered.com/about/?snr=1_44_44__22\">\r\n\t\t\t\t\tWhat
|
1523
|
+
is Steam?\t\t\t\t</a>\r\n\t\t\t\t<!--\r\n\t\t\t\t\t<a class=\"popup_menu_item\"
|
1524
|
+
href=\"\">\r\n\t\t\t\t\t\tDownload Steam now\t\t\t\t\t</a>\r\n\t\t\t\t\t-->\r\n\t\t\t\t<a
|
1525
|
+
class=\"popup_menu_item\" target=\"_blank\" href=\"https://support.steampowered.com/kb_article.php?p_faqid=549#gifts\">\r\n\t\t\t\t\tGifting
|
1526
|
+
on Steam\t\t\t\t</a>\r\n\t\t\t\t<a class=\"popup_menu_item\" href=\"https://steamcommunity.com/?snr=1_44_44__22\">\r\n\t\t\t\t\tThe
|
1527
|
+
Steam Community\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\r\n\t\t\t<span
|
1528
|
+
class=\"pulldown btnv6_blue_hoverfade btn_small\" id=\"footer_valve_pulldown\">\r\n\t\t\t\t<span>ABOUT
|
1529
|
+
VALVE</span>\r\n\t\t\t</span>\r\n\t\t<div class=\"popup_block_new\" id=\"footer_valve_dropdown\"
|
1530
|
+
style=\"display: none;\">\r\n\t\t\t<div class=\"popup_body popup_menu\">\r\n\t\t\t\t<a
|
1531
|
+
class=\"popup_menu_item\" target=\"_blank\" href=\"http://www.valvesoftware.com/about.html\">\r\n\t\t\t\t\tAbout
|
1532
|
+
Valve\t\t\t\t</a>\r\n\t\t\t\t<a class=\"popup_menu_item\" target=\"_blank\"
|
1533
|
+
href=\"http://www.valvesoftware.com/business/\">\r\n\t\t\t\t\tBusiness Solutions\t\t\t\t</a>\r\n\t\t\t\t<a
|
1534
|
+
class=\"popup_menu_item\" target=\"_blank\" href=\"http://www.steampowered.com/steamworks/\">\r\n\t\t\t\t\tSteamworks\t\t\t\t</a>\r\n\t\t\t\t<a
|
1535
|
+
class=\"popup_menu_item\" target=\"_blank\" href=\"http://www.valvesoftware.com/jobs.html\">\r\n\t\t\t\t\tJobs\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t<span
|
1536
|
+
class=\"pulldown btnv6_blue_hoverfade btn_small\" id=\"footer_help_pulldown\">\r\n\t\t\t\t<span>HELP</span>\r\n\t\t\t</span>\r\n\t\t<div
|
1537
|
+
class=\"popup_block_new\" id=\"footer_help_dropdown\" style=\"display: none;\">\r\n\t\t\t\t\t\t<div
|
1538
|
+
class=\"popup_body popup_menu\">\r\n\t\t\t\t<a class=\"popup_menu_item\" href=\"https://help.steampowered.com/?snr=1_44_44__23\">\r\n\t\t\t\t\tSupport\t\t\t\t</a>\r\n\t\t\t\t<a
|
1539
|
+
class=\"popup_menu_item\" target=\"_blank\" href=\"http://store.steampowered.com/forums/?snr=1_44_44__23\">\r\n\t\t\t\t\tForums\t\t\t\t</a>\r\n\t\t\t\t<a
|
1540
|
+
class=\"popup_menu_item\" target=\"_blank\" href=\"http://store.steampowered.com/stats/?snr=1_44_44__23\">\r\n\t\t\t\t\tStats\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\r\n\t\t\t<span
|
1541
|
+
class=\"pulldown btnv6_blue_hoverfade btn_small\" id=\"footer_feeds_pulldown\">\r\n\t\t\t\t<span>NEWS
|
1542
|
+
FEEDS</span>\r\n\t\t\t</span>\r\n\t\t<div class=\"popup_block_new\" id=\"footer_feeds_dropdown\"
|
1543
|
+
style=\"display: none;\">\r\n\t\t\t<div class=\"popup_body popup_menu\">\r\n\t\t\t\t<a
|
1544
|
+
class=\"popup_menu_item\" href=\"http://store.steampowered.com/feeds/news.xml\">\r\n\t\t\t\t\t<img
|
1545
|
+
src=\"http://store.akamai.steamstatic.com/public/images/ico/ico_rss2.gif\"
|
1546
|
+
width=\"13\" height=\"13\" border=\"0\" alt=\"\" align=\"top\"> Steam
|
1547
|
+
News\t\t\t\t</a>\r\n\t\t\t\t<a class=\"popup_menu_item\" href=\"http://store.steampowered.com/feeds/newreleases.xml\">\r\n\t\t\t\t\t<img
|
1548
|
+
src=\"http://store.akamai.steamstatic.com/public/images/ico/ico_rss2.gif\"
|
1549
|
+
width=\"13\" height=\"13\" border=\"0\" alt=\"\" align=\"top\"> Game
|
1550
|
+
Releases\t\t\t\t</a>\r\n\t\t\t\t<a class=\"popup_menu_item\" href=\"http://store.steampowered.com/feeds/daily_deals.xml\">\r\n\t\t\t\t\t<img
|
1551
|
+
src=\"http://store.akamai.steamstatic.com/public/images/ico/ico_rss2.gif\"
|
1552
|
+
width=\"13\" height=\"13\" border=\"0\" alt=\"\" align=\"top\"> Daily
|
1553
|
+
Deals\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t\t<div style=\"clear:
|
1554
|
+
left;\"></div>\r\n\r\n\t\t<script type=\"text/javascript\">\r\n\t\t\tRegisterFlyout(
|
1555
|
+
'footer_genre_pulldown', 'footer_genre_dropdown', null, null, true );\r\n\t\t\tRegisterFlyout(
|
1556
|
+
'footer_steam_pulldown', 'footer_steam_dropdown', null, null, true );\r\n\t\t\tRegisterFlyout(
|
1557
|
+
'footer_valve_pulldown', 'footer_valve_dropdown', null, null, true );\r\n\t\t\tRegisterFlyout(
|
1558
|
+
'footer_help_pulldown', 'footer_help_dropdown', null, null, true );\r\n\t\t\tRegisterFlyout(
|
1559
|
+
'footer_feeds_pulldown', 'footer_feeds_dropdown', null, null, true );\r\n\t\t</script>\r\n\t</div>\r\n\r\n\t<br>\r\n\r\n
|
1560
|
+
\ <div class=\"rule\"></div>\r\n <div id=\"footer_logo\"><a target=\"_blank\"
|
1561
|
+
href=\"http://www.valvesoftware.com\"><img src=\"http://store.akamai.steamstatic.com/public/images/v6/logo_valve_footer.png\"
|
1562
|
+
alt=\"Valve Software\" border=\"0\" /></a></div>\r\n <div id=\"footer_text\">\r\n
|
1563
|
+
\ <div>© 2015 Valve Corporation. All rights reserved. All trademarks
|
1564
|
+
are property of their respective owners in the US and other countries.</div>\r\n
|
1565
|
+
\ <div>VAT included in all prices where applicable. \r\n\r\n
|
1566
|
+
\ <a target=\"_blank\" href=\"http://store.steampowered.com/privacy_agreement/\">Privacy
|
1567
|
+
Policy</a>\r\n | \r\n <a target=\"_blank\"
|
1568
|
+
href=\"http://www.valvesoftware.com/legal.htm\">Legal</a>\r\n
|
1569
|
+
| \r\n <a target=\"_blank\" href=\"http://store.steampowered.com/subscriber_agreement/\">Steam
|
1570
|
+
Subscriber Agreement</a>\r\n | \r\n <a
|
1571
|
+
target=\"_blank\" href=\"http://store.steampowered.com/steam_refunds/\">Refunds</a>\r\n
|
1572
|
+
\ \r\n </div>\r\n\t\t\t\t\t<div class=\"responsive_optin_link\">\r\n\t\t\t\t<div
|
1573
|
+
class=\"btn_medium btnv6_grey_black\" onclick=\"Responsive_RequestMobileView()\">\r\n\t\t\t\t\t<span>View
|
1574
|
+
mobile website</span>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t </div>\r\n\r\n\r\n\r\n
|
1575
|
+
\ <div style=\"clear: left;\"></div>\r\n\r\n <div class=\"rule\"></div>\r\n\r\n
|
1576
|
+
\ <div class=\"valve_links\">\r\n <a target=\"_blank\" href=\"http://www.valvesoftware.com/about.html\">About
|
1577
|
+
Valve</a>\r\n | <a target=\"_blank\" href=\"http://www.valvesoftware.com/business/\">Business
|
1578
|
+
Solutions</a>\r\n | <a target=\"_blank\" href=\"http://www.steampowered.com/steamworks/\">Steamworks</a>\r\n
|
1579
|
+
\ | <a target=\"_blank\" href=\"http://www.valvesoftware.com/jobs.html\">Jobs</a>\r\n
|
1580
|
+
\ | <a target=\"_blank\" href=\"http://steamcommunity.com/greenlight\">Steam
|
1581
|
+
Distribution</a>\r\n\t\t | <a target=\"_blank\" href=\"http://www.facebook.com/Steam\"><img
|
1582
|
+
src=\"http://store.akamai.steamstatic.com/public/images/ico/ico_facebook.gif\">
|
1583
|
+
Steam</a>\r\n\t\t | <a target=\"_blank\" href=\"http://twitter.com/steam_games\"><img
|
1584
|
+
src=\"http://store.akamai.steamstatic.com/public/images/ico/ico_twitter.gif\">
|
1585
|
+
@steam_games</a>\r\n </div>\r\n\r\n</div>\r\n</div>\r\n\t</div>\t<!-- responsive_page_content
|
1586
|
+
-->\r\n\r\n</div>\t<!-- responsive_page_frame -->\r\n</body>\r\n</html>"
|
1587
|
+
http_version:
|
1588
|
+
recorded_at: Fri, 02 Oct 2015 22:34:41 GMT
|
1589
|
+
recorded_with: VCR 2.9.3
|