amzwish 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ require 'autotest/growl'
@@ -0,0 +1,6 @@
1
+ *.sw?
2
+ .DS_Store
3
+ coverage
4
+ rdoc
5
+ pkg
6
+ keys.rb
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm 1.8.7
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Chris Tinning
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,24 @@
1
+ = amzwish
2
+
3
+ This is project allows access to Amazon wishlists. The implementation at present is very limited. See bin/amzwish for the extent of the current implementation.
4
+
5
+ TODO
6
+ * Better error handling
7
+ * Support people who have multiple wishlists
8
+ * Wire in product api to provide further information about books
9
+ * Support other locales
10
+
11
+ == Note on Patches/Pull Requests
12
+
13
+ * Fork the project.
14
+ * Make your feature addition or bug fix.
15
+ * Add tests for it. This is important so I don't break it in a
16
+ future version unintentionally.
17
+ * Commit, do not mess with rakefile, version, or history.
18
+ (if you want to have your own version, that is fine but
19
+ bump version in a commit by itself I can ignore when I pull)
20
+ * Send me a pull request. Bonus points for topic branches.
21
+
22
+ == Copyright
23
+
24
+ Copyright (c) 2010 Chris Tinning. See LICENSE for details.
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "amzwish"
8
+ gem.summary = %Q{Get at Amazon wishlists combines scraping and the api}
9
+ gem.description = %Q{Since you can no longer access wishlists through the Amazon api this gem aims to address this by combining some screen scraping with api calls.}
10
+ gem.email = "chris.tinning@gmail.com"
11
+ gem.homepage = "http://github.com/tinman/amzwish"
12
+ gem.authors = ["Chris Tinning"]
13
+ gem.add_development_dependency "rspec"
14
+ gem.add_development_dependency "nokogiri"
15
+ gem.add_dependency "nokogiri"
16
+ gem.add_dependency "rest-client"
17
+ gem.executables << "amzwish"
18
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
19
+ end
20
+ Jeweler::GemcutterTasks.new
21
+ rescue LoadError
22
+ puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
23
+ end
24
+
25
+ require 'spec/rake/spectask'
26
+ Spec::Rake::SpecTask.new(:spec) do |spec|
27
+ spec.libs << 'lib' << 'spec'
28
+ spec.spec_files = FileList['spec/**/*_spec.rb']
29
+ end
30
+
31
+ Spec::Rake::SpecTask.new(:rcov) do |spec|
32
+ spec.libs << 'lib' << 'spec'
33
+ spec.pattern = 'spec/**/*_spec.rb'
34
+ spec.rcov = true
35
+ end
36
+
37
+ task :spec => :check_dependencies
38
+
39
+ task :default => :spec
40
+
41
+ require 'rake/rdoctask'
42
+ Rake::RDocTask.new do |rdoc|
43
+ if File.exist?('VERSION')
44
+ version = File.read('VERSION')
45
+ else
46
+ version = ""
47
+ end
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "amzwish #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
@@ -0,0 +1,86 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{amzwish}
8
+ s.version = "0.0.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Chris Tinning"]
12
+ s.date = %q{2010-10-10}
13
+ s.description = %q{Since you can no longer access wishlists through the Amazon api this gem aims to address this by combining some screen scraping with api calls.}
14
+ s.email = %q{chris.tinning@gmail.com}
15
+ s.executables = ["amzwish", "amzwish"]
16
+ s.extra_rdoc_files = [
17
+ "LICENSE",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ ".autotest",
22
+ ".gitignore",
23
+ ".rvmrc",
24
+ "LICENSE",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "amzwish.gemspec",
29
+ "autotest/discover.rb",
30
+ "bin/amzwish",
31
+ "lib/amzwish.rb",
32
+ "lib/amzwish/book.rb",
33
+ "lib/amzwish/services/website_wrapper.rb",
34
+ "lib/amzwish/wishlist.rb",
35
+ "pkg/amzwish-0.0.0.gem",
36
+ "samples/create_key_sample.rb",
37
+ "samples/uk/empty.html",
38
+ "samples/uk/multipage-page1.html",
39
+ "samples/uk/multipage-page2.html",
40
+ "samples/uk/multipage-page3.html",
41
+ "samples/uk/multipage-page4.html",
42
+ "samples/uk/single-item.html",
43
+ "samples/wishlist_scrape_sample.rb",
44
+ "spec/amzwish/book_spec.rb",
45
+ "spec/amzwish/page_spec.rb",
46
+ "spec/amzwish/services/website_wrapper_spec.rb",
47
+ "spec/amzwish/wishlist_spec.rb",
48
+ "spec/spec.opts",
49
+ "spec/spec_helper.rb"
50
+ ]
51
+ s.homepage = %q{http://github.com/tinman/amzwish}
52
+ s.rdoc_options = ["--charset=UTF-8"]
53
+ s.require_paths = ["lib"]
54
+ s.rubygems_version = %q{1.3.6}
55
+ s.summary = %q{Get at Amazon wishlists combines scraping and the api}
56
+ s.test_files = [
57
+ "spec/amzwish/book_spec.rb",
58
+ "spec/amzwish/page_spec.rb",
59
+ "spec/amzwish/services/website_wrapper_spec.rb",
60
+ "spec/amzwish/wishlist_spec.rb",
61
+ "spec/spec_helper.rb"
62
+ ]
63
+
64
+ if s.respond_to? :specification_version then
65
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
66
+ s.specification_version = 3
67
+
68
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
69
+ s.add_development_dependency(%q<rspec>, [">= 0"])
70
+ s.add_development_dependency(%q<nokogiri>, [">= 0"])
71
+ s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
72
+ s.add_runtime_dependency(%q<rest-client>, [">= 0"])
73
+ else
74
+ s.add_dependency(%q<rspec>, [">= 0"])
75
+ s.add_dependency(%q<nokogiri>, [">= 0"])
76
+ s.add_dependency(%q<nokogiri>, [">= 0"])
77
+ s.add_dependency(%q<rest-client>, [">= 0"])
78
+ end
79
+ else
80
+ s.add_dependency(%q<rspec>, [">= 0"])
81
+ s.add_dependency(%q<nokogiri>, [">= 0"])
82
+ s.add_dependency(%q<nokogiri>, [">= 0"])
83
+ s.add_dependency(%q<rest-client>, [">= 0"])
84
+ end
85
+ end
86
+
@@ -0,0 +1,3 @@
1
+ Autotest.add_discovery do
2
+ "rspec"
3
+ end
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby -wKU
2
+ $LOAD_PATH << File.join(File.dirname(__FILE__), "..", "lib")
3
+ require 'amzwish'
4
+
5
+ list = Amzwish::Wishlist.new(ARGV[0])
6
+ list.each{ |b| puts b}
@@ -0,0 +1,4 @@
1
+ require 'rubygems'
2
+ require 'amzwish/wishlist'
3
+ require 'amzwish/book'
4
+ require 'amzwish/services/website_wrapper'
@@ -0,0 +1,19 @@
1
+ module Amzwish
2
+ class Book
3
+ attr_accessor :asin,:title
4
+ def initialize(title, asin)
5
+ @title = title
6
+ @asin = asin
7
+ end
8
+
9
+ def ==(other)
10
+ other.respond_to?(:asin) &&
11
+ self.asin == other.asin
12
+ end
13
+
14
+ def to_s
15
+ "#{title}(#{asin})"
16
+ end
17
+ end
18
+
19
+ end
@@ -0,0 +1,51 @@
1
+ require 'rest_client'
2
+ module Amzwish
3
+ module Services
4
+ class WebsiteWrapper
5
+ FIND_WISHLIST_URL = "http://www.amazon.co.uk/gp/registry/search.html?ie=UTF8&type=wishlist"
6
+ DISPLAY_WISHLIST_URL_TEMPLATE = "http://www.amazon.co.uk/registry/wishlist/%s"
7
+
8
+ def initialize(rest_client = RestClientWrapper.new)
9
+ @rest_client = rest_client
10
+ end
11
+
12
+ def find_for(email)
13
+ resp = @rest_client.post(email)
14
+ # If a user has a single public wishlist then should get a redirect to it
15
+ if (resp[:code] == 302)
16
+ /(?:\?|&)id=(\w*)/ =~ resp[:headers][:location]
17
+ [{:id => $~[1]}]
18
+ else
19
+ []
20
+ end
21
+ end
22
+
23
+ def get_page(wishlist_id, page=1)
24
+ @rest_client.get(wishlist_id, page)
25
+ end
26
+ end
27
+
28
+ class RestClientWrapper
29
+ def post(email)
30
+ r = RestClient.post( WebsiteWrapper::FIND_WISHLIST_URL, "field-name" => email ) do |resp, req, result|
31
+ {:code => resp.code, :headers=>resp.headers}
32
+ end
33
+ end
34
+
35
+ def get(wishlist_id, page)
36
+ url = generate_url_for_wishlist(wishlist_id)
37
+ params = { :page => page, :_encoding => 'UTF8', :filter => '3', :sort=> 'date-added',
38
+ :layout => 'compact', :reveal => 'unpurchased'}
39
+ RestClient.get( url, :params => params ) do |resp, req, result|
40
+ raise "could not find wishlist" unless resp.code == 200
41
+ resp.body
42
+ end
43
+ end
44
+
45
+ private
46
+ def generate_url_for_wishlist(id)
47
+ sprintf(WebsiteWrapper::DISPLAY_WISHLIST_URL_TEMPLATE, id)
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,51 @@
1
+ require 'nokogiri'
2
+ module Amzwish
3
+ class Wishlist
4
+ include Enumerable
5
+ def initialize(email, website = Services::WebsiteWrapper.new)
6
+ @email = email
7
+ @website = website
8
+ end
9
+
10
+ def books
11
+ to_a
12
+ end
13
+
14
+ def each
15
+ lists = @website.find_for(@email)
16
+ each_page(lists[0][:id]){|p| p.books.each{|b| yield b}}
17
+ end
18
+ alias_method :each_book, :each
19
+
20
+ private
21
+ def each_page(wishlist_id)
22
+ has_more_pages = true
23
+ page_num = 1
24
+ while(has_more_pages) do
25
+ page = Page.new(@website.get_page(wishlist_id, page_num))
26
+ yield page
27
+ has_more_pages = page.has_next?
28
+ page_num += 1
29
+ end
30
+ end
31
+
32
+ class Page
33
+ def initialize(html)
34
+ @page = Nokogiri::HTML(html)
35
+ end
36
+
37
+ def has_next?
38
+ # look and see if the 'Next' at the end of the page is an active link
39
+ @page.xpath('//div[@class="pagDiv"]/span[@class="pagSide"]/a/span/text()').any?{|t| t.to_s.include?("Next")}
40
+ end
41
+
42
+ def books
43
+ @page.xpath('//tbody[@class="itemWrapper"]').collect do |e|
44
+ title = e.xpath('.//a[1]/text()').to_s
45
+ asin = e.xpath("@name").to_s.split('.').last
46
+ Book.new( title, asin)
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,21 @@
1
+ require 'hmac-sha2'
2
+ require 'base64'
3
+ require 'cgi'
4
+ require 'date'
5
+ load '../keys.rb'
6
+
7
+ expected_signature="Rfo1hgMnp1urA2CDpi1pxmP6Mu8%2FxgwU0hd2ZEsiUXY%3D"
8
+ string_to_sign = "GET
9
+ ecs.amazonaws.com
10
+ /onca/xml
11
+ AWSAccessKeyId=AKIAJ5CS7UGGUIDUBLXA&ItemId=0500330220&Operation=ItemLookup&ResponseGroup=ItemAttributes%2CImages%2CEditorialReview&Service=AWSECommerceService%20%20%20&Timestamp=2010-10-07T18%3A38%3A45.000Z"
12
+
13
+ digest = HMAC::SHA256.new(SECRET) << string_to_sign
14
+ signature = CGI.escape(Base64.encode64(digest.digest()).strip())
15
+
16
+ puts "expected= " + expected_signature
17
+ puts "generated= " + signature
18
+
19
+ # how we format dates to create the timestamp
20
+ d = DateTime.now
21
+ puts d.strftime('%FT%T.000Z')
@@ -0,0 +1,1947 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+ <html>
93
+ <head>
94
+
95
+
96
+ <script language="Javascript1.1" type="text/javascript">
97
+ <!--
98
+ function amz_js_PopWin(url,name,options){
99
+ var ContextWindow = window.open(url,name,options);
100
+ ContextWindow.focus();
101
+ return false;
102
+ }
103
+ //-->
104
+ </script>
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+ <style type="text/css"><!--
116
+
117
+ body { background-color: #FFFFFF; }
118
+ * html body { margin-top: 0px; }
119
+ .serif { font-family: times,serif; font-size: medium; }
120
+ .sans { font-family: verdana,arial,helvetica,sans-serif; font-size: medium; }
121
+
122
+ .small { font-family: verdana,arial,helvetica,sans-serif; font-size: small; }
123
+
124
+ .h1 { font-family: verdana,arial,helvetica,sans-serif; color: #E47911; font-size: medium; }
125
+ .h3color { font-family: verdana,arial,helvetica,sans-serif; color: #E47911; font-size: small; }
126
+ h2.small {margin-bottom: 0em; }
127
+ h2.h1 { margin-bottom: 0em; }
128
+ h2.h3color { margin-bottom: 0em; }
129
+ .tiny { font-family: verdana,arial,helvetica,sans-serif; font-size: x-small; }
130
+ .listprice { font-family: arial,verdana,helvetica,sans-serif; text-decoration: line-through; }
131
+ .attention { background-color: #FFFFD5; }
132
+ .price { font-family: verdana,arial,helvetica,sans-serif; color: #990000; }
133
+ .tinyprice { font-family: verdana,arial,helvetica,sans-serif; color: #990000; font-size: x-small; }
134
+ .highlight { font-family: verdana,arial,helvetica,sans-serif; color: #990000; font-size: small; }
135
+ .alertgreen { color: #009900; font-weight: bold; }
136
+ .active-nav { background-color: #000000; color: #FFFFFF; }
137
+ .inactive-nav { background-color: #FFFFFF; color: #000000; }
138
+ .tigerBox .head { border: 1px solid #CCCC99; border-bottom-width: 0px; background-color: #EEEECC; }
139
+ .tigerBox .body { border: 1px solid #CCCC99; }
140
+ .tigerBoxWithEyebrow .head { border-width: 0px; }
141
+ .tigerBoxWithEyebrow .body { border: 1px solid #CCCC99; }
142
+ .detailPageTigerBox .head { border-width: 0px; }
143
+ .detailPageTigerBox .body { border: 1px solid #CCCC99; }
144
+ .detailPageTigerBox .darkCell { background-color: #EEEECC; }
145
+ .eyebrow { font-family: verdana,arial,helvetica,sans-serif; font-size: 10px; font-weight: bold; text-transform: uppercase; text-decoration: none; color: #FFFFFF; }
146
+ div#page-wrap { min-width: 980px; }
147
+ div#leftcol, div#leftcolhidden { float: left; width: 180px; margin:5px 0px 0px 5px; display: inline; }
148
+
149
+ div#rightcol, div#rightcolhidden { float: right; width: 300px; margin-top:5px;}
150
+
151
+ div#leftcolhidden { clear:left;}
152
+ div#rightcolhidden { clear:right;}div#center1, div#centercol, div#centerrightspancol { overflow: hidden; }
153
+ * html div#center1 { width: 100%; }
154
+ * html div#centercol { width:100%; }
155
+ * html div#centerrightspancol { width: 100%; }
156
+ div#page-footer { clear: both; }
157
+ * html div#page-wrap { border-right: 980px solid #fff; width: 100%; margin-right: 25px;}
158
+ * html div#content { float: left; position:relative; margin-right: -980px; }
159
+ a:active { font-family: verdana,arial,helvetica,sans-serif; color: #FF9933; }
160
+ a:visited { font-family: verdana,arial,helvetica,sans-serif; color: #996633; }
161
+ a:link { font-family: verdana,arial,helvetica,sans-serif; color: #004B91; }
162
+ a.noclick, a.noclick:visited { color: #000000; }
163
+ .noLinkDecoration a { text-decoration: none; border-bottom: none; }
164
+ .noLinkDecoration a:hover { text-decoration: underline; }
165
+ .noLinkDecoration a.dynamic:hover { text-decoration: none; border-bottom: 1px dashed; }
166
+ .noLinkDecoration a.noclick:hover { color: #000000; text-decoration: none; border-bottom: 1px dashed; }
167
+
168
+ .amabot_right .h1 { color: #E47911; font-size: .92em; }
169
+ .amabot_right .amabot_widget .headline, .amabot_left .amabot_widget .headline { color: #E47911; font-size: .92em; display: block; font-weight: bold; }
170
+ .amabot_widget .headline { color: #E47911; font-size: medium; display: block; font-weight: bold; }
171
+ .amabot_right .amabot_widget { padding-top: 8px; padding-bottom: 8px; padding-left: 8px; padding-right: 8px; border-bottom: 1px solid #C9E1F4; border-left: 1px solid #C9E1F4; border-right: 1px solid #C9E1F4; border-top: 1px solid #C9E1F4; }
172
+ .amabot_left .h1 { color: #E47911; font-size: .92em; }
173
+ .amabot_left .amabot_widget { padding-top: 8px; padding-bottom: 8px; padding-left: 8px; padding-right: 8px; border-bottom: 1px solid #C9E1F4; border-left: 1px solid #C9E1F4; border-right: 1px solid #C9E1F4; border-top: 1px solid #C9E1F4; }
174
+
175
+ .amabot_center div.unified_widget, .amabot_center .amabot_widget { font-size: 12px; }
176
+ .amabot_right div.unified_widget, .amabot_right .amabot_widget { font-size: 12px; }
177
+ .amabot_left div.unified_widget, .amabot_left .amabot_widget { font-size: 12px; }
178
+
179
+ .nobullet { list-style-type: none; }
180
+ .homepageTitle { font-size: 28pt; font-family: 'Arial Bold', Arial, sans-serif; font-weight: 800; font-variant: normal; color: #80B6CE; line-height:1em; }
181
+ .tigerbox { padding-top: 8px; padding-bottom: 8px; padding-left: 8px; padding-right: 8px; border-bottom: 1px solid #C9E1F4; border-left: 1px solid #C9E1F4; border-right: 1px solid #C9E1F4; border-top: 1px solid #C9E1F4; }
182
+ .hr-leftbrowse { border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: none; border-bottom-style: none; border-left-style: none; border-top-color: #999999; border-right-color: #999999; border-bottom-color: #999999; border-left-color: #999999; margin-top: 10px; margin-right: 5px; margin-bottom: 0px; margin-left: 5px; }
183
+ div.unified_widget p { margin:0 0 0.5em 0; line-height:1.4em; }
184
+
185
+ div.unified_widget h2 { color:#E47911; padding:0; }
186
+
187
+ .amabot_right div.unified_widget .headline, .amabot_left div.unified_widget .headline { color: #E47911; font-size: .92em; display: block; font-weight: bold; }
188
+ div.unified_widget .headline { color: #E47911; font-size: medium; display: block; font-weight: bold;}
189
+ div.unified_widget sup { font-weight:normal; font-size: 75%; }
190
+ div.unified_widget h2 sup { font-size: 50%; }
191
+
192
+ td.amabot_left div.unified_widget h2, td.amabot_right div.unified_widget h2, div.amabot_left div.unified_widget h2, div.amabot_right div.unified_widget h2 { font-size:100%; margin:0 0 0.5em 0; }
193
+ td.amabot_center div.unified_widget h2, div.amabot_Center div.unified_widget h2 { font-size:135%; font-weight:bold; margin:0 0 0.35em 0px; }
194
+ td.amabot_center, div.amabot_center { padding:5px 15px 5px 10px; }
195
+ div.unified_widget ul { margin: 1em 0; padding: 0 0 0 15px; list-style-position:inside; }
196
+
197
+ div.unified_widget ol { margin:0; padding:0 0 0 2.5em; }
198
+
199
+ div.unified_widget a:link, div.unified_widget a:visited { text-decoration:underline; }
200
+ div.unified_widget a:hover { text-decoration:underline; }
201
+ div.unified_widget p.seeMore { clear:both; font-family:verdana,arial,helvetica,sans-serif; margin:0; padding-left:1.15em; text-indent: -1.15em; font-size:100%; font-weight:normal; }
202
+ div.unified_widget p.seeMore a:link, div.unified_widget p.seeMore a:visited { text-decoration:underline; }
203
+ div.unified_widget p.seeMore a:hover { text-decoration: underline; }
204
+ div.unified_widget .carat, div.left_nav .carat { font-weight:bold; font-size:120%; font-family:verdana,arial,helvetica,sans-serif; color:#E47911; margin-right:0.20em; }
205
+ div.unified_widget a img { border:0; }
206
+
207
+ div.h_rule { clear:both; }
208
+ div#centerrightspancol div.h_rule { clear:right; }
209
+ div.unified_widget { margin-bottom:2em; clear:both; }
210
+ div.unified_widget div.col1 { width: 100%; }
211
+ div.unified_widget div.col2 { width: 49%; }
212
+ div.unified_widget div.col3 { width: 32%; }
213
+ div.unified_widget div.col4 { width: 24%; }
214
+ div.unified_widget div.col5 { width: 19%; }
215
+ div.unified_widget table { border:0; border-collapse:collapse; width:100%; }
216
+ div.unified_widget td { padding:0 8px 8px 0; vertical-align:top; }
217
+ div.unified_widget table.col1 td { width:100%; }
218
+ div.unified_widget table.col2 td { width:49%; }
219
+ div.unified_widget table.col3 td { width:32%; }
220
+ div.unified_widget table.col4 td { width:24%; }
221
+ div.unified_widget table.col5 td { width:19%; }
222
+ div.unified_widget td.bottom { vertical-align:baseline; }
223
+ div.unified_widget table h4, div.unified_widget h4 { color:#000; font-size:100%; font-weight:normal; margin:0; padding:0; }
224
+ div.rcmBody div.prodImage, amabot_widget div.prodImage {float:left; margin:0px 0.5em 0.25em 0px;}
225
+
226
+ td.amabot_right div.unified_widget, td.amabot_left div.unified_widget, div.amabot_right div.unified_widget, div.amabot_left div.unified_widget { border:1px solid #C9E1F4; padding:8px; margin-bottom:20px; }
227
+
228
+ * html td.amabot_right div.unified_widget, * html div.amabot_right div.unified_widget { height:100%; }
229
+ * html td.amabot_left div.unified_widget, * html div.amabot_left div.unified_widget { height:100%; }
230
+
231
+ div.rcmBody, amabot_widget div.rcmBody { line-height:1.4em; }
232
+ div.rcmBody a:link, div.rcmBody a:visited { text-decoration: underline; }
233
+
234
+ div.rcmBody p.seeMore, amabot_widget div.rcmBody p.seeMore { margin-top:0.5em; }
235
+ div.rcmBody div.bannerImage { text-align:center; }
236
+ div.rcmBody h2 span.homepageTitle { display:block; margin-bottom:-0.3em; margin-top:-0.12em; line-height:1em; }
237
+ div.rcmBody h2 img { float:none; }
238
+ table.coopTable div.rcmBody .headline { font-size: 110%; }
239
+ table.coopTable div.rcmBody h2 { font-size: 110%; font-weight:bold; }
240
+ table.promo div.rcmBody h2 { font-size: 100%; font-weight:bold; }
241
+ div.blurb div.title { font-weight:bold; padding-top:5px; padding-bottom:2px; }
242
+
243
+ div.left_nav { font-family: Arial, sans-serif; font-size:100%; margin:0; line-height:1.05em; width:100%; border:1px solid #C9E1F4; padding-bottom:10px; }
244
+ div.left_nav h2 { margin:0 0 0 0; color:#000000; font-weight:bold; line-height:1.25em; font-size:100%; font-family:verdana,arial,helvetica,sans-serif; padding: 3px 6px; background-color:#EAF3FE; }
245
+ div.left_nav h3 { font-family:verdana,arial,helvetica,sans-serif; margin:0.5em 0 0.4em 0.5em; color:#E47911; font-weight:bold; line-height:1em; font-size:100%; padding-right:0.5em; }
246
+ div.left_nav ul { margin:0; padding:0; }
247
+ div.left_nav li, div.left_nav p { list-style:none; margin:0.5em 0.5em 0 1em; line-height:1.2em;}
248
+
249
+ div.left_nav hr { margin:1em 0.5em; border-top:0; border-left:0; border-right:0; border-bottom:1px dashed #cccccc; }
250
+
251
+ div.left_nav a:link, div.left_nav a:visited { color:#003399; text-decoration:none; font-family:Arial, sans-serif; }
252
+ div.left_nav a:hover { color:#2a70fc; text-decoration:underline; }
253
+ div.left_nav p.seeMore { padding-left:0.9em; text-indent:-0.9em; margin-top:0.35em; margin-bottom:1em; }
254
+
255
+ div.left_nav p.seeMore a:link, div.left_nav p.seeMore a:visited { text-decoration:none; }
256
+ div.left_nav p.seeMore a:hover { text-decoration:underline; }
257
+ div.asinItem { float:left; margin-bottom:1em; width:32%; }
258
+ div.asinTextBlock { padding:0 8px 8px 0; }
259
+ div.asinItem div.prodImage { height:121px; display:table-cell; vertical-align:bottom; }
260
+ div.asinItem div.localImage { display:table-cell; vertical-align:bottom; }
261
+
262
+ div.asinItem span { margin: 0.5em 0 0.25em 0; }
263
+ div.asinItem ul { margin:0; padding:0 0 0.5em 1.3em; text-indent:-1.3em; font-size:90%; }
264
+
265
+ div.asinTitle {padding-top:3px; padding-bottom:2px;}
266
+ div.row { clear:both; }
267
+ body.dp {}
268
+ body.dp div.h_rule { clear:none; }
269
+ body.dp div.unified_widget { clear:none; }
270
+ div.asinCoop div.asinItem { float:none; width:100%;}
271
+ div.asinCoop_header {}
272
+ div.asinCoop_footer {}
273
+
274
+ div.newAndFuture div.asinItem ul { font-size:100%; }
275
+ div.newAndFuture div.asinItem li { list-style-position: outside; margin:0 0 0.35em 20px; padding:0; text-indent: 0; }
276
+ div.newAndFuture h3 { font-size:100%; margin:1em 0 ; }
277
+ div.newAndFuture a:link, div.newAndFuture a:visited { text-decoration:underline; }
278
+ div.newAndFuture a:hover { text-decoration:underline; }
279
+ div.newAndFuture p.seeMore { margin:-0.75em 0 0 35px; }
280
+
281
+ div.unified_widget ol.topList { margin: 0; padding: 0; list-style: none; }
282
+ div.unified_widget ol.topList li { list-style: none; clear: both; display: list-item; padding-top: 6px; }
283
+ div.unified_widget ol.topList .productImage { display: block; float: left;vertical-align: top;text-align: center;width:60px; }
284
+ div.unified_widget ol.topList .productText { display: block; float: left; padding-left:10px; vertical-align: top; }
285
+ :root div.unified_widget span.productImage { display: table-cell; float: none; }
286
+ :root div.unified_widget span.productText { display: table-cell; float: none; }
287
+ div.unified_widget dl.priceBlock {margin:0 0 0.45em 0;}
288
+ div.unified_widget dl.priceBlock dt {clear:left; font-weight:bold; float:left; margin:0 0.3em 0 0;}
289
+ div.unified_widget dl.priceBlock dd {margin:0 0 0.2em 0;}
290
+ div.unified_widget .bold {font-weight:bold;}
291
+ div.unified_widget .byline {font-size: 95%; font-weight: normal;}
292
+ table.thirdLvlNavContent div.blurb {margin:10px;}
293
+
294
+ div.pageBanner h1 { font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:225%; color: #e47911; letter-spacing:-0.03em; margin:0; }
295
+ div.pageBanner p { font-size:90%; color:#888888; margin: 0; }
296
+
297
+ div.pageBanner h1.bkgnd { background-repeat:no-repeat; background-color:#FFFFFF; overflow:hidden; text-indent:-100em; }
298
+ INPUT { font-family: fixed; }
299
+ BODY { font-family: verdana,arial,helvetica,sans-serif; font-size: small; }
300
+ TD { font-family: verdana,arial,helvetica,sans-serif; font-size: small; }
301
+ TH { font-family: verdana,arial,helvetica,sans-serif; font-size: small; }
302
+
303
+ .sBox .sBoxT,
304
+ .sBox .sBoxB,
305
+ .sBox .sBoxTL,
306
+ .sBox .sBoxTR,
307
+ .sBox .sBoxBL,
308
+ .sBox .sBoxBR
309
+ {
310
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/categoryWidget/sBox1._V186818486_.png);
311
+ background-repeat: no-repeat;
312
+ }
313
+
314
+ .sBox .sBoxL
315
+ {
316
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/categoryWidget/sBoxL._V186818481_.png);
317
+ background-position: top left;
318
+ }
319
+ .sBox .sBoxR
320
+ {
321
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/categoryWidget/sBoxR._V186818480_.png);
322
+ background-position: top right;
323
+ }
324
+ --></style>
325
+
326
+
327
+ <meta name="robots" content="noindex,noarchive"/>
328
+
329
+
330
+
331
+
332
+
333
+
334
+ <meta name="title" content="Amazon.co.uk: Nicholas Tinning: Wishlist" />
335
+ <link rel="image_src" href="http://g-ecx.images-amazon.com/images/G/02/x-locale/communities/wishlist/uwl/UWL_SWF_shims._V203758293_.png" />
336
+
337
+
338
+
339
+ <title>Amazon.co.uk: Nicholas Tinning: Wishlist</title>
340
+
341
+
342
+
343
+
344
+
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+ <link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/fruitCSS/GB/combined-3127367498._V200499207_.css" />
353
+
354
+
355
+ <link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/02/x-locale/common/errors-alerts/error-styles._V244707745_.css" />
356
+
357
+ <link type='text/css' href='http://z-ecx.images-amazon.com/images/G/01/browser-scripts/uk-site-wide-1.4.2/site-wide-6051803711.css._V198493426_.css' rel='stylesheet'>
358
+ <link type='text/css' href='http://z-ecx.images-amazon.com/images/G/01/nav2/gamma/share-with-friends-css/share-with-friends-css-share-4653._V199382900_.css' rel='stylesheet'>
359
+
360
+ <script type="text/javascript">
361
+
362
+ var amznJQ = {
363
+ addLogical: function() {},
364
+ addStyle: function() {},
365
+ declareAvailable: function() {},
366
+ available: function() {},
367
+ onReady: function() {},
368
+ onCompletion: function() {},
369
+ completedStage: function() {},
370
+ metrics: 0,
371
+ strings: {},
372
+ chars: {
373
+ EOL: String.fromCharCode(0x0A),
374
+ SQUOTE: String.fromCharCode(0x27),
375
+ DQUOTE: String.fromCharCode(0x22),
376
+ BACKSLASH: String.fromCharCode(0x5C),
377
+ YEN: String.fromCharCode(0xA5)
378
+ }
379
+ }
380
+
381
+
382
+ </script>
383
+ </head>
384
+ <body>
385
+ <!-- BeginNav -->
386
+ <style type="text/css"><!--
387
+
388
+
389
+ .navSprite,
390
+ .navSaJs li.navSaMenuItem {
391
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/gno/images/orangeBlue/navPackedSprites-UK-15._V202471918_.png);
392
+ }
393
+
394
+ .navSpritePopoverH {
395
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-h._V192252701_.gif);
396
+ }
397
+
398
+ .navSpritePopoverV {
399
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-v._V192252700_.gif);
400
+ }
401
+
402
+ .nav_popover .header .l {
403
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-v._V192252700_.gif) -14px 0px no-repeat;
404
+ }
405
+
406
+ .nav_popover .header .r {
407
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-h._V192252701_.gif) 0px -14px no-repeat;
408
+ }
409
+
410
+ .nav_popover .header .c {
411
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-h._V192252701_.gif) 0px 0px repeat-x;
412
+ }
413
+
414
+ .nav_popover .footer .l {
415
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-h._V192252701_.gif) 0px -21px no-repeat;
416
+ }
417
+
418
+ .nav_popover .footer .r {
419
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-v._V192252700_.gif) -21px 0px no-repeat;
420
+ }
421
+
422
+ .nav_popover .footer .c {
423
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-h._V192252701_.gif) 0px -7px repeat-x;
424
+ }
425
+
426
+ .nav_popover .body .l {
427
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-v._V192252700_.gif) 0px 0px repeat-y;
428
+ }
429
+
430
+ .nav_popover .body .r {
431
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-v._V192252700_.gif) -7px 0px repeat-y;
432
+ }
433
+
434
+
435
+ .suggest_link {
436
+ background-color: #FFF;
437
+ padding: 2px 6px 2px 6px;
438
+ }
439
+
440
+ .suggest_nm {
441
+ display: block;
442
+ }
443
+
444
+ .suggest_link_over {
445
+ background-color: #146EB4;
446
+ color: #FFF;
447
+ padding: 2px 6px 2px 6px;
448
+ }
449
+
450
+ .suggest_link .suggest_category {
451
+ color: #039;
452
+ }
453
+
454
+ .suggest_link_over .suggest_category {
455
+ color: #FFF;
456
+ }
457
+
458
+ #srch_sggst {
459
+ background-color: #FFF;
460
+ border: 1px solid #5C8295;
461
+ color: #000;
462
+ position: absolute;
463
+ text-align: left;
464
+ z-index: 130;
465
+ }
466
+
467
+ #sugdivhdr {
468
+ color: #888;
469
+ font-size: 10px;
470
+ line-height: 12px;
471
+ padding-right: 4px;
472
+ }
473
+
474
+
475
+
476
+ --></style>
477
+
478
+
479
+
480
+
481
+
482
+
483
+
484
+
485
+ <script type="text/javascript"><!--
486
+ window._navbarSpriteUrl = "http://g-ecx.images-amazon.com/images/G/02/gno/images/orangeBlue/navPackedSprites-UK-15._V202471918_.png";
487
+ --></script>
488
+ <img src="http://g-ecx.images-amazon.com/images/G/02/gno/images/orangeBlue/navPackedSprites-UK-15._V202471918_.png" style="display:none" alt=""/>
489
+ <img src="http://g-ecx.images-amazon.com/images/G/02/x-locale/common/transparent-pixel._V192199769_.gif" style="display:none" alt=""/>
490
+
491
+
492
+
493
+
494
+
495
+
496
+ <!--Pilu -->
497
+ <script type='text/javascript'><!--
498
+ if (typeof window.Navbar == 'undefined') {
499
+ window.Navbar = function(options) {
500
+ options = options || {};
501
+
502
+ this._loadedCount = 0;
503
+ this._hasUedata = (typeof uet == 'function');
504
+ this._finishLoadQuota = options['finishLoadQuota'] || 2;
505
+ this._startedLoading = false;
506
+
507
+ this._btfFlyoutContents = [];
508
+
509
+ this._saFlyoutHorizOffset = -20;
510
+ this._saMaskHorizOffset = -21;
511
+
512
+ this.addToBtfFlyoutContents = function(content, callback) {
513
+ this._btfFlyoutContents.push({content: content, callback: callback});
514
+ }
515
+
516
+ this.getBtfFlyoutContents = function() {
517
+ return this._btfFlyoutContents;
518
+ }
519
+
520
+ this.loading = function() {
521
+ if (!this._startedLoading && this._isReportingEvents()) {
522
+ uet('ns');
523
+ }
524
+
525
+ this._startedLoading = true;
526
+ }
527
+
528
+ this.componentLoaded = function() {
529
+ this._loadedCount++;
530
+ if (this._startedLoading && this._isReportingEvents() && (this._loadedCount == this._finishLoadQuota)) {
531
+ uet('ne');
532
+ }
533
+ }
534
+
535
+ this._isReportingEvents = function() {
536
+ return this._hasUedata;
537
+ }
538
+ }
539
+
540
+ window._navbar = new Navbar({ finishLoadQuota: 1});
541
+ _navbar.loading();
542
+
543
+ amznJQ.available('jQuery', function() {
544
+ _navbar._navPopoverBorderSpriteImage_h = new Image();
545
+ _navbar._navPopoverBorderSpriteImage_h.src = 'http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-h._V192252701_.gif';
546
+ _navbar._navPopoverBorderSpriteImage_v = new Image();
547
+ _navbar._navPopoverBorderSpriteImage_v.src = 'http://g-ecx.images-amazon.com/images/G/02/gno/popover/sprites-v._V192252700_.gif';
548
+ });
549
+
550
+ window.navSAFlyoutDelay = 0;
551
+
552
+ }
553
+ --></script>
554
+
555
+
556
+
557
+
558
+
559
+
560
+
561
+
562
+
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+
571
+
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+
580
+ <!-- navp-wZ6KT29MV/NQIVgiOAWIr+Wh5AFkdiVfFJTOcrQPYjcY+G+RCL3MpQ== rid-1EPFW5H7788DBGF9SXF1 -->
581
+
582
+
583
+
584
+
585
+
586
+
587
+
588
+
589
+
590
+ <div id="navbar" style="padding:0;" class="navbar">
591
+
592
+
593
+ <table border="0" cellspacing="0" cellpadding="0" width="100%">
594
+ <tr>
595
+ <td rowspan="2" align='left' width="180" valign="bottom"><a id="navLogo" class="nonGateway" href="/">
596
+ <span id="navLogoPrimary" class="navSprite"><span>amazon.co.uk</span></span>
597
+ <span id="navLogoSecondary" class="navSprite nonPrime"></span>
598
+ </a></td>
599
+ <td width="100%" align='left' height="26">
600
+ <table width="100%" id="welcomeRowTable" cellspacing="0" cellpadding="0" border="0"><tr>
601
+ <td align="left" valign="bottom" class="navGreetingBkg"><div id="navidWelcomeMsg" style="white-space: nowrap;">
602
+ <span class="navGreeting">Hello.</span>
603
+ <span class="navMessage" style="white-space: nowrap;">Sign in to get <a href="/gp/yourstore?ie=UTF8&amp;signIn=1" rel="nofollow">personalised recommendations</a>.</span>
604
+ <span class="navMessage" style="white-space: nowrap;">New Customer? <a href="/gp/flex/sign-out.html?ie=UTF8&amp;path=%2Fgp%2Fyourstore&amp;signIn=1&amp;useRedirectOnSuccess=1&amp;action=sign-out" rel="nofollow">Start here</a>.</span>
605
+ </div></td>
606
+ <td align="left">&nbsp;</td>
607
+ <td id="navSwmSlot" align="right" valign="center" height="26">
608
+ <table id="navSwmSkedPop" border='0' cellspacing='0' cellpadding='0' height="100%" width="100%">
609
+ <tr>
610
+ <td align="right" valign="bottom">
611
+ <div id="navSwmMainHdgDiv" style="padding-bottom: 3px;">
612
+ <a id="navSwmMainHeading" href="/b?ie=UTF8&node=340840031">
613
+ Visit our new Pet Supplies Store
614
+ </a>
615
+ </div>
616
+ </td>
617
+ <td align="left" valign="bottom" width="5" rowspan="1"><div id="navSwmFlyoutTrigger" style="display:none; height:13px; width:13px; margin:2px 3px 3px 3px;">
618
+ <a name="navSwmSkedPop|he|navSwmSkedPop_content"><img src="http://g-ecx.images-amazon.com/images/G/02/x-locale/common/transparent-pixel._V192199769_.gif" width="1" alt="" class="default navSprite" id="navSwmFlyoutImage" height="1" border="0" /></a>
619
+ </div>
620
+ </td>
621
+ </tr>
622
+ </table> </td>
623
+ </tr></table>
624
+ </td>
625
+ </tr>
626
+
627
+ <tr>
628
+ <td>
629
+ <table id="navCrossshop" border="0" cellpadding="0" cellspacing="0" height="22">
630
+ <tr>
631
+ <td>
632
+ <a href='/gp/yourstore/home' class='navCrossshopLink'>Your Amazon.co.uk</a>
633
+ <span class="navCrossshopBar">&nbsp;|&nbsp;</span>
634
+ <a href='/Deals-Week/b?ie=UTF8&node=350613011' class='navCrossshopLink'>Deals of the Week</a>
635
+ <span class="navCrossshopBar">&nbsp;|&nbsp;</span>
636
+ <a href='/gp/gc' class='navCrossshopLink'>Gift Cards</a>
637
+ <span class="navCrossshopBar">&nbsp;|&nbsp;</span>
638
+ <a href='/gp/gift-central' class='navCrossshopLink'>Gifts & Wish Lists</a>
639
+ </td>
640
+ <td width="100%">&nbsp;</td>
641
+ <td>
642
+ <a href='/gp/css/homepage' class='navCrossshopYALink'>Your Account</a>
643
+ <span class="navCrossshopBar">&nbsp;|&nbsp;</span>
644
+ <a href='/Help/b?ie=UTF8&node=471044' class='navCrossshopYALink'>Help</a>
645
+ </td>
646
+
647
+ </tr>
648
+ </table>
649
+ </td>
650
+ </tr>
651
+
652
+ <tr class="navShopSearch" align="left" width="100%">
653
+ <td width="180"><div id="navShopAllButton" class="navSprite navButton navShopAllButtonSubnav">
654
+ <a class="destination" href="/gp/site-directory"><span class="text">Shop All Departments</span></a>
655
+ <a class="flyoutAnchor"><span class="navSprite downArrow"></span></a>
656
+ </div></td>
657
+ <td width="100%"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr>
658
+ <td width="100%"></td>
659
+ <td align="right" style="padding-right:1px;"><div id="navCartButton" class="navButton navBlueButton">
660
+ <div class="navSprite left"></div>
661
+ <div class="navSprite right"></div>
662
+ <div id="navCartEmpty">
663
+ <div class="navSprite icon"></div>
664
+ <a class="destination" href="/gp/cart/view.html" rel="nofollow"><span class="text">Basket</span></a>
665
+ </div>
666
+ </div></td>
667
+ <td align="right" style="padding-right:0px;"><div id="navWishListButton" class="navButton navBlueButton">
668
+ <div class="navSprite left"></div>
669
+ <div class="navSprite right"></div>
670
+ <a class="destination" href="/gp/registry/wishlist"><span class="text">Wish List</span></a>
671
+ </div></td>
672
+ <td class="navSprite navSearchEnd"></td>
673
+ </tr></table></td>
674
+ </tr>
675
+
676
+
677
+ <tr width="100%" height="23">
678
+ <td colspan="2" width="100%">
679
+ <table id="navCatSubnav" cellspacing="0">
680
+ <tbody><tr>
681
+ <td class="navCatLeft navSprite" width="7"><div class="navCatLeftSpc"></div></td>
682
+ <td class="navCat"><div class="navCatSpc"><a class="navCatA" href="/b?ie=UTF8&node=468294">Amazon.co.uk</a></div></td>
683
+ <td class="navSubLeft" width="1"><div class="navSubLeftSpc"></div></td>
684
+ <td class="navSubItem">
685
+ <a class="navSubA" href="/gp/registry/wishlist">Wish List</a>
686
+ </td>
687
+ <td class="navSubMid navSprite" width="3"><div class="navSubMidSpc"></div></td>
688
+ <td class="navSubItem">
689
+ <a class="navSubA" href="/gp/wedding/homepage">Wedding List</a>
690
+ </td>
691
+ <td class="navSubMid navSprite" width="3"><div class="navSubMidSpc"></div></td>
692
+ <td class="navSubItem">
693
+ <a class="navSubA" href="/gp/gc">Gift Certificates</a>
694
+ </td>
695
+ <td class="navSubMid navSprite" width="3"><div class="navSubMidSpc"></div></td>
696
+ <td class="navSubItem">
697
+ <a class="navSubA" href="/gp/gift-central">Gift Central</a>
698
+ </td>
699
+ <td class="navSubMid navSprite" width="3"><div class="navSubMidSpc"></div></td>
700
+ <td class="navSubItem">
701
+ <a class="navSubA" href="/gp/help/customer/display.html?ie=UTF8&nodeId=200037930">Gift services</a>
702
+ </td>
703
+ <td class="navSubRight navSprite" width="6"><div class="navSubRightSpc"></div></td>
704
+ </tr></tbody>
705
+ </table>
706
+ </td>
707
+ </tr>
708
+ <tr>
709
+ <td colspan="2" width="100%" height="2" style="background-color:#146eb4"></td>
710
+ </tr>
711
+
712
+ </table>
713
+
714
+
715
+
716
+ </div>
717
+
718
+
719
+
720
+
721
+
722
+
723
+
724
+
725
+
726
+
727
+ <script type="text/javascript"><!--
728
+ if (typeof _navbar._navEndRun == 'undefined') {
729
+ _navbar._navEndRun = true;
730
+
731
+
732
+ _navbar._endSpriteImage = new Image();
733
+ _navbar._endSpriteImage.onload = function() {_navbar.componentLoaded(); };
734
+ _navbar._endSpriteImage.src = window._navbarSpriteUrl;
735
+ }
736
+ --></script>
737
+ <!-- Tilu -->
738
+
739
+ <!-- EndNav -->
740
+ <div id="StyleInjection"></div>
741
+ <script>
742
+ amznJQ.available('jQuery', function() {
743
+ jQuery('#StyleInjection').html('<style type="text/css"> .hideInitial {display: block !important;} .showInitial {display: none !important;} </style>');
744
+ });
745
+
746
+ amznJQ.available('jQuery', function(){
747
+ var $ = jQuery;
748
+ if (typeof window.Registry === 'undefined') {
749
+ window.Registry = {};
750
+ }
751
+ if (typeof window.Registry.update === 'undefined') {
752
+ window.Registry.update = function(action,form,callback){
753
+ var sendData;
754
+ var queryString;
755
+ if ($.isFunction( form )) { //jQuery selector for the form
756
+ queryString = form.serialize();
757
+ sendData = {};
758
+ } else if (typeof form === 'object') {
759
+ sendData = form;
760
+ } else if (typeof form === 'string') {
761
+ queryString = form;
762
+ sendData = {};
763
+ } else {
764
+ sendData = {};
765
+ }
766
+ sendData.ie = "UTF8";
767
+ sendData.action = action;
768
+ sendData.sid = $('#RegistryGlobalForm input[name=sid]').val();
769
+ sendData.groupID = $('#RegistryGlobalForm input[name=gid]').val();
770
+ var url = $('#RegistryGlobalForm').attr('action');
771
+ if (queryString) {
772
+ url += "?" + queryString;
773
+ }
774
+ $.ajax({
775
+ url: url,
776
+ data: sendData,
777
+ dataType: 'json',
778
+ success: function(response,textStatus) {
779
+ callback(response,textStatus)
780
+ },
781
+ error: function(request,textStatus) {
782
+ callback({ok:0}, textStatus);
783
+ },
784
+ type: 'post'
785
+ });
786
+ };
787
+ }
788
+
789
+
790
+
791
+ if(typeof window.Registry.submitFallback === 'undefined') {
792
+
793
+ window.Registry.submitFallback = function(action) {
794
+
795
+ var formSubmit = document.createElement('form');
796
+ var sourceForm = $("form[name=editItems]");
797
+ formSubmit.action = sourceForm.attr('action');
798
+ formSubmit.method = sourceForm.attr('method');
799
+
800
+ for( var key in action ) {
801
+ if( action.hasOwnProperty(key) ) {
802
+ var hiddenElem = document.createElement('input');
803
+ hiddenElem.type = 'hidden';
804
+ hiddenElem.name = key;
805
+ hiddenElem.value = action[key];
806
+ formSubmit.appendChild(hiddenElem);
807
+ }
808
+ }
809
+
810
+ document.body.appendChild(formSubmit);
811
+ formSubmit.submit();
812
+
813
+ };
814
+ }
815
+
816
+
817
+ if (typeof window.Registry.listMessage === 'undefined') {
818
+ window.Registry.listMessage = function(msg){
819
+ var undo = msg.undo;
820
+ if (typeof msg.messageId !== 'undefined') {
821
+ msg = Registry.data.knownMessages[msg.messageId];
822
+ }
823
+
824
+ $('#listMessageerror, #listMessagealert, #listMessagesuccess, #listMessage').hide();
825
+ $('#listMessageerrorClose, #listMessagealertClose, #listMessagesuccessClose, #listMessageClose').show();
826
+ var id = '#listMessage' + msg['type'];
827
+ $(id + 'Text').html(msg.text.replace(/&quot;/g,'"'));
828
+ $(id + 'Title').html(msg.title);
829
+ if (undo) {
830
+ $(id + 'Undo').unbind('click').click(function(){undo(); $(id).hide(); return false;}).css({display: 'inline'});
831
+ } else {
832
+ $(id + 'Undo').hide();
833
+ }
834
+ $(id).show();
835
+ };
836
+ }
837
+ if (typeof window.Registry.listInsert === 'undefined') {
838
+ window.Registry.listInsert = function(name,private,source){
839
+ var section = '#regList' + (private === 'Y' ? 'private' : 'public') + 'Block';
840
+
841
+ if ($('#RegistryGlobalForm input[name=gid]').val() !== $('#RegistryGlobalForm input[name=cid]').val()) {
842
+ section = '#regListgroupBlock';
843
+ }
844
+
845
+ var done = 0;
846
+ $(section + ' .regListName').each(function(i){
847
+ var thisName = $(this).text();
848
+ if (thisName.toString().localeCompare(name.toString()) > 0) {
849
+ $(this).parent().before(source);
850
+ done = 1;
851
+ return false;
852
+ }
853
+ });
854
+ if (!done) {
855
+ $(section).append(source);
856
+ }
857
+ };
858
+ }
859
+
860
+ if (typeof window.Registry.transitionCell === 'undefined') {
861
+ window.Registry.transitionCell = function(container,
862
+ sourceContent,
863
+ transitionComplete,
864
+ onTransitionFill) {
865
+
866
+ var currentHeight = container.height();
867
+ var newContent = $(document.createElement('div'));
868
+ var transitionWrapper = container.find(".itemAction");
869
+ var targetHeight = sourceContent.height();
870
+
871
+ newContent.css("opacity",0);
872
+ transitionWrapper.append(newContent);
873
+
874
+ newContent.html(sourceContent.html());
875
+
876
+ if(onTransitionFill) {
877
+ onTransitionFill();
878
+ }
879
+
880
+ var contentsQuery = container.children("tr").not(":first")
881
+
882
+ if(container.next().length) {
883
+ contentsQuery = contentsQuery.not(":last");
884
+ }
885
+
886
+ var replacementHeight = 0;
887
+ contentsQuery.each(function() {
888
+ replacementHeight += $(this).height();
889
+ });
890
+
891
+ container.data('originalHeight',replacementHeight);
892
+ newContent.height(replacementHeight);
893
+
894
+
895
+ var matchTotal = 0;
896
+ contentsQuery.animate(
897
+ {opacity:0}, "fast",
898
+ function() {
899
+ matchTotal++;
900
+ if(matchTotal == contentsQuery.length) {
901
+ contentsQuery.css("display","none");
902
+ transitionWrapper.show();
903
+ var height = newContent.height();
904
+ newContent.animate({"height":targetHeight,
905
+ "opacity":1}, "fast", transitionComplete);
906
+ }
907
+ }
908
+ );
909
+ }
910
+ };
911
+
912
+ if (typeof window.Registry.reverseTransition === 'undefined') {
913
+ window.Registry.reverseTransition = function(container) {
914
+ var contentsQuery = container.children("tr").not(":first");
915
+ if(container.next().length) {
916
+ contentsQuery = contentsQuery.not(":last");
917
+ }
918
+
919
+ var transitionWrapper = container.find(".itemAction");
920
+ var originalHeight = container.data('originalHeight');
921
+
922
+ transitionWrapper.children('div').animate(
923
+ {opacity:0, height:originalHeight}, "fast",function() {
924
+ transitionWrapper.css("display","none");
925
+ contentsQuery.css("display",'');
926
+ transitionWrapper.html("");
927
+ contentsQuery.animate({"opacity":1},"fast");
928
+ });
929
+ };
930
+
931
+ }
932
+ if (typeof window.Registry.showItemError === 'undefined') {
933
+ window.Registry.showItemError = function(container, response, forceInline) {
934
+ if(response && response.recognized !== undefined &&
935
+ response.verified !== undefined &&
936
+ (!response.recognized || !response.verified)) {
937
+
938
+ window.location.reload();
939
+ }
940
+
941
+ var errorText = (response.message) ? response.message : "An error occurred, please try again in a moment";
942
+
943
+ if( errorText.inlineError) {
944
+ return errorText;
945
+ }
946
+
947
+ if( forceInline ) {
948
+ dummyErrorText = {};
949
+ dummyErrorText.inlineError = true;
950
+ dummyErrorText.text = errorText;
951
+ return dummyErrorText;
952
+ }
953
+
954
+ var errorContents = $("#itemErrorTemplate");
955
+ errorContents.find(".itemErrorText").text(errorText);
956
+
957
+ var errWrapper = container.find(".itemErrors");
958
+ errWrapper.html(errorContents.html());
959
+ errWrapper.show();
960
+ errWrapper.children('div').animate({opacity:1}, "fast");
961
+ };
962
+ }
963
+
964
+ if (typeof window.Registry.hideItemError === 'undefined') {
965
+ window.Registry.hideItemError = function(container) {
966
+ var errWrapper = container.find(".itemErrors");
967
+ errWrapper.children('div').animate({opacity:0}, "fast", function() {
968
+ errWrapper.hide();
969
+ errWrapper.html("");
970
+ });
971
+ };
972
+ }
973
+
974
+ if (typeof window.Registry.addBreakpoints === 'undefined') {
975
+ var breakRegex = new RegExp("((?:(?:&[^;]*\;)|(?:<[^>]*>)|[^" + String.fromCharCode(0x5c) + "s&<]){15})", "g");
976
+ window.Registry.addBreakpoints = function(input) {
977
+ return input.replace(breakRegex, '$1&#8203;');
978
+ };
979
+ }
980
+
981
+ });
982
+
983
+ </script>
984
+
985
+
986
+ <form style="display: none;" id="RegistryGlobalForm" action="/registry/wishlist/2F1084Q1YMV45/update">
987
+
988
+ <input type="hidden" name="sid" value="000-0000000-0000000" />
989
+ <input type="hidden" name="gid" value="A3NPR5U3TZ8VUE" />
990
+ <input type="hidden" name="cid" value="0" />
991
+ </form>
992
+
993
+
994
+
995
+
996
+
997
+
998
+
999
+
1000
+
1001
+
1002
+
1003
+ </%method>
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+ <style type="text/css">
1015
+
1016
+
1017
+ .wlSprite {
1018
+ background-image: url('http://g-ecx.images-amazon.com/images/G/02/common/sprites/sprite-wishlist-2._V189134815_.png');
1019
+ }
1020
+
1021
+ .wlSprite span{
1022
+ display: none;
1023
+ position: absolute;
1024
+ top: -9999px;
1025
+ }
1026
+
1027
+
1028
+ .wl_save{ display:block;cursor:pointer;float:left;
1029
+ height: 22px;
1030
+ width: 65px;
1031
+ background-position: -246px -104px;
1032
+ }
1033
+ .wl_cancel{ display:block;cursor:pointer;float:left;
1034
+ height: 22px;
1035
+ width: 65px;
1036
+ background-position: -246px -130px;
1037
+ }
1038
+ .wl_expand{ display:block;cursor:pointer;float:left;
1039
+ height:11px;
1040
+ width:11px;
1041
+ background-position: -368px -56px;
1042
+ }
1043
+ .wl_collapse{ display:block;cursor:pointer;float:left;
1044
+ height:11px;
1045
+ width:11px;
1046
+ background-position: -388px -56px;
1047
+ }
1048
+ .wl_bo_proceed{ display:block;cursor:pointer;float:left;
1049
+ height:22px;
1050
+ width: 152px;
1051
+ background-position: -246px -230px;
1052
+ }
1053
+ .wl_bo_giftwrapped{
1054
+ display: block;
1055
+ height:68px;
1056
+ width:68px;
1057
+ background-position: -68px -152px;
1058
+ margin: 0 auto;
1059
+ }
1060
+ .rememberButton {
1061
+ background-position: -246px -156px;
1062
+ height: 17px;
1063
+ width: 66px;
1064
+ display:inline-block;
1065
+ }
1066
+
1067
+
1068
+
1069
+ span.pagEllip {
1070
+ padding-left:5px;
1071
+ padding-right:4px;
1072
+ color:#004b91;
1073
+ }
1074
+
1075
+ .pagPage {
1076
+ margin-left: 9px;
1077
+ margin-right: 8px;
1078
+ }
1079
+
1080
+ .pagSelected {
1081
+ font-weight:bold;
1082
+ color:#e47911;
1083
+ }
1084
+ .pagLeadPage {
1085
+ margin-left:0px;
1086
+ }
1087
+
1088
+ .pagSide {
1089
+ font-weight:bold;
1090
+ }
1091
+
1092
+ .pagGradient {
1093
+ background: transparent url(http://g-ecx.images-amazon.com/images/G/02/x-locale/registry/wishlist/sprite-site-wide_paginate._V202994616_.png) repeat-x scroll 0 -220px;
1094
+ height:18px;
1095
+ position:relative;
1096
+ z-index:10;
1097
+ }
1098
+
1099
+ .pagDiv {
1100
+ text-align:center;
1101
+ margin-bottom:-3px;
1102
+ position:relative;
1103
+ z-index:20;
1104
+ font-family:verdana,arial,helvetica,sans-serif;
1105
+ font-size:13px;
1106
+ color:#a6a6a6;
1107
+ }
1108
+
1109
+ .pagDiv a {
1110
+ color:#004b91;
1111
+ text-decoration:none;
1112
+ }
1113
+
1114
+ .pagDiv a:visited {
1115
+ text-decoration:none;
1116
+ }
1117
+
1118
+ .pagDiv a:hover {
1119
+ text-decoration:underline;
1120
+ }
1121
+
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+ .wlProductInfoRow {
1130
+ display: inline-block;
1131
+ }
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+ .arui_dp,
1139
+ .arui_recs-list,
1140
+ .arui_ysh-iyr,
1141
+ .arui_iyr-list,
1142
+ .arui_not-interested,
1143
+ .arui_rate-it,
1144
+ .arui_is-preferred {
1145
+ position: relative;
1146
+ }
1147
+ .arui_noscript {
1148
+ position: absolute;
1149
+ top: 0px;
1150
+ background-color:#FFFFFF;
1151
+ z-index: 1;
1152
+ }
1153
+ .arui_dp_noscript {
1154
+ height: 74px;
1155
+ }
1156
+ .arui_loading {
1157
+ width: 73px;
1158
+ height: 14px;
1159
+ background: no-repeat center url('http://g-ecx.images-amazon.com/images/G/02/ui/loadIndicators/loadIndicator-label._V192262983_.gif');
1160
+ margin-left: auto;
1161
+ margin-right: auto;
1162
+ }
1163
+ .arui_ysh-iyr .arui_loading,
1164
+ .arui_dp .arui_loading {
1165
+ margin-left: 0;
1166
+ }
1167
+ .arui_rate-it .arui_loading {
1168
+ margin-right: 167px;
1169
+ }
1170
+ .arui_not-interested .arui_loading,
1171
+ .arui_iyr-list .arui_loading,
1172
+ .arui_is-preferred .arui_loading {
1173
+ margin-right: 38px;
1174
+ }
1175
+ .arui_recs-list .arui_loading {
1176
+ margin-left: 5px;
1177
+ }
1178
+ .arui_popover .arui_message {
1179
+ margin-left: 3px;
1180
+ vertical-align: bottom;
1181
+ }
1182
+ .arui_ysh-iyr .arui_checkbox {
1183
+ float: left;
1184
+ }
1185
+ .arui_ysh-iyr .arui_checkbox_label {
1186
+ margin-left: 20px;
1187
+ }
1188
+ .arui_ysh-iyr .arui_checkbox_wrapper {
1189
+ margin-bottom: 0.5em;
1190
+ }
1191
+ .arui_ysh-iyr .arui_stars_wrapper {
1192
+ margin-bottom: 0.8em;
1193
+ }
1194
+ .arui_ysh-iyr .arui_message {
1195
+ margin-bottom: 0.4em;
1196
+ }
1197
+
1198
+
1199
+
1200
+ .sortbarTopAnimate {
1201
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/x-locale/registry/wishlist/sprite-site-wide_paginate._V202994616_.png);
1202
+ background-position: 0 -240px;
1203
+ height: 15px;
1204
+ width: 100%;
1205
+ }
1206
+ .box-edge-top-left {
1207
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/v3/white-top-left.jpg) no-repeat top left;
1208
+ width: 5px;
1209
+ }
1210
+ .box-edge-top-rt {
1211
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/v3/white-top-right.jpg) no-repeat top right;
1212
+ width: 5px;
1213
+ }
1214
+ .box-edge-bot-left {
1215
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/v3/white-bot-left.jpg) no-repeat bottom left;
1216
+ height: 5px;
1217
+ }
1218
+ .box-edge-bot-rt {
1219
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/v3/white-bot-left.jpg) no-repeat bottom right;
1220
+ height: 5px;
1221
+ }
1222
+ .list-header {
1223
+ height: 40px;
1224
+ width: 100%;
1225
+ padding-left: 3px;
1226
+ border: 1px solid #c4c494;
1227
+ background: url(http://g-ecx.images-amazon.com/images/G/02/nav2/images/gui/tile-tan-bg._V192199336_.gif);
1228
+ background-color: #f6f6e9;
1229
+ }
1230
+ .roundBox .tl {
1231
+ background: no-repeat url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/v4/roundbox/tl._V192252716_.gif) top left;
1232
+ }
1233
+ .roundBox .tr {
1234
+ background: no-repeat url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/v4/roundbox/tr._V192252716_.gif) top right;
1235
+ }
1236
+ .roundBox .br {
1237
+ background: no-repeat url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/v4/roundbox/br._V192252717_.gif) bottom right;
1238
+ }
1239
+ .roundBox .bl {
1240
+ background: no-repeat url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/v4/roundbox/bl._V192252717_.gif) bottom left;
1241
+ padding: 7px;
1242
+ }
1243
+ #alertIconInfo {
1244
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/x-locale/communities/wishlist/uwl/errors-alerts-sprite._V192196136_.gif);
1245
+ background-position: 0 -50px;
1246
+ width: 25px;
1247
+ height: 25px;
1248
+ }
1249
+ #alertIconSuccess {
1250
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/x-locale/communities/wishlist/uwl/errors-alerts-sprite._V192196136_.gif);
1251
+ background-position: 0 -25px;
1252
+ width: 25px;
1253
+ height: 25px;
1254
+ }
1255
+ #alertIconWarning {
1256
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/x-locale/communities/wishlist/uwl/errors-alerts-sprite._V192196136_.gif);
1257
+ background-position: 0 -50px;
1258
+ width: 25px;
1259
+ height: 25px;
1260
+ }
1261
+ #alertIconFailure {
1262
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/x-locale/communities/wishlist/uwl/errors-alerts-sprite._V192196136_.gif);
1263
+ background-position: 0 -75px;
1264
+ width: 25px;
1265
+ height: 25px;
1266
+ }
1267
+ .shoveler ul li.shoveler-progress {
1268
+ background: no-repeat center 45px url(http://g-ecx.images-amazon.com/images/G/02/x-locale/personalization/shoveler/loading-indicator._V192241665_.gif);
1269
+ }
1270
+ .shoveler div.prev-button {
1271
+ background: transparent url(http://g-ecx.images-amazon.com/images/G/02/x-locale/personalization/shoveler/left-arrow-semi-rd._V192241784_.gif) no-repeat scroll 0 0;
1272
+ }
1273
+ .shoveler div.next-button {
1274
+ background: transparent url(http://g-ecx.images-amazon.com/images/G/02/x-locale/personalization/shoveler/right-arrow-semi-rd._V192241724_.gif) no-repeat scroll 0 0;
1275
+ }
1276
+ .merchtabs {
1277
+ margin: 0 10px 0 0;
1278
+ padding: 20px 0 0 0;
1279
+ font-weight: bold;
1280
+ float: left;
1281
+ width: 100%;
1282
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/tab-line.jpg) repeat-x bottom left;
1283
+ }
1284
+ .merchtabs li {
1285
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/tab.jpg) no-repeat top left;
1286
+ float:left;
1287
+ cursor: pointer;
1288
+ color: #032E97;
1289
+ margin: 0;
1290
+ padding: 0;
1291
+ font: 13px verdana,arial,helvetica,sans-serif;
1292
+ }
1293
+ .merchtabs li div {
1294
+ background: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/tab-right.jpg) no-repeat top right;
1295
+ padding: 5px 10px 4px 10px;
1296
+ }
1297
+ .merchtabs li div.last {
1298
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/tab-last.jpg);
1299
+ }
1300
+ .merchtabs li.active {
1301
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/tab-active.jpg);
1302
+ cursor: default;
1303
+ color: #E47911;
1304
+ }
1305
+ .merchtabs li.active div {
1306
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/tab-active-right.jpg);
1307
+ padding-bottom: 5px;
1308
+ }
1309
+ .merchtabs li.active div.last {
1310
+ background-image: url(http://g-ecx.images-amazon.com/images/G/02/gifts/registries/wishlist/tab-active-last.jpg);
1311
+ }
1312
+
1313
+
1314
+
1315
+ .lineItemGroup {
1316
+ font-size: 11px;
1317
+ margin-bottom: 6px;
1318
+ }
1319
+ .lineItemGroup .uwlBadgeText {
1320
+ color: #666666;
1321
+ font-size: 11px;
1322
+ }
1323
+ .lineItemPart .strikeprice {
1324
+ color:#666666;
1325
+ margin-right:5px;
1326
+ }
1327
+ .lineItemPart .price {
1328
+ font: 14px arial,verdana,helvetica,sans-serif;
1329
+ }
1330
+ .lineItemPart .wlPrice {
1331
+ font-size: 11px;
1332
+ }
1333
+ .liShowRelated {
1334
+ margin-top:2px;
1335
+ }
1336
+ .itemWrapper td.productImage {
1337
+ padding-right:15px;
1338
+ width: 135px;
1339
+ min-width: 135px;
1340
+ }
1341
+ .lineItemOwnerInfoJS {
1342
+ width: 155px;
1343
+ min-width: 155px;
1344
+ }
1345
+ .lineItemOwnerInfo {
1346
+ width: 220px;
1347
+ min-width: 220px;
1348
+ }
1349
+ .lineItemMainInfo {
1350
+ width: 100%;
1351
+ }
1352
+
1353
+ .wlLiMap {
1354
+ color: #000000;
1355
+ display: inline;
1356
+ }
1357
+ .wlLiMap span.seePrice {
1358
+ border-bottom: 1px dotted #004B91;
1359
+ }
1360
+ .wlLiAvailability,
1361
+ .wlLiAvailability a {
1362
+ font: bold 14px arial, verdana, helvetica, sans-serif;
1363
+ margin-bottom: 1px;
1364
+ }
1365
+ .wlAvailGreen {
1366
+ color: #009900;
1367
+ }
1368
+ .wlAvailOrange {
1369
+ color:#cc6600;
1370
+ }
1371
+ .wlAvailRed {
1372
+ color:#990000;
1373
+ }
1374
+ .wlLiMerchant {
1375
+ display: inline-block;
1376
+ padding-right: 8px;
1377
+ }
1378
+ .productTitle a {
1379
+ font-family: arial, verdana, helvetic,sans-serif !important;
1380
+ font-size: 14px !important;
1381
+ }
1382
+ .wlBuyButton {
1383
+ margin-right:6px;
1384
+ }
1385
+ div.iterator-item-separator {
1386
+ margin: 20px 0;
1387
+ }
1388
+ .wlLiMapPop,
1389
+ .wlLiMapPop td,
1390
+ .wlLiMapPop .listprice,
1391
+ .wlLiMapPop .price {
1392
+ font: 11px verdana,arial,helvetica,sans-serif;
1393
+ }
1394
+ .wlLiMapPop .priceBlockLabel,
1395
+ .wlLiMapPop .priceBlockLabelPrice {
1396
+ color: #666666;
1397
+ font-size: 11px;
1398
+ padding-right: 3px;
1399
+ text-align: right;
1400
+ vertical-align: middle;
1401
+ white-space: nowrap;
1402
+ }
1403
+ .wlLiMapPop .listprice,
1404
+ .wlLiMapPop .plusShippingText {
1405
+ color: #666666;
1406
+ }
1407
+ .wlLiMapPop .priceLarge {
1408
+ color: #990000;
1409
+ font: bold 14px arial,verdana,helvetica,sans-serif;
1410
+ }
1411
+ .wlLiMapPop hr {
1412
+ border-top: 1px dashed #999999;
1413
+ color: #ffffff;
1414
+ height: 1px;
1415
+ }
1416
+
1417
+ #profile h2 {
1418
+ color: #E47911;
1419
+ font-size: 13px;
1420
+ font-weight: bold;
1421
+ margin: 10px 5px;
1422
+ line-height: 22px;
1423
+ vertical-align: middle;
1424
+ }
1425
+ #profile .createPipeLink a {
1426
+ font-size: 14px;
1427
+ font-weight: bold;
1428
+ }
1429
+ #profileInfo {
1430
+ font-size: 11px;
1431
+ margin-top: 10px;
1432
+ }
1433
+ #profileInfoField {
1434
+ position: relative;
1435
+ left: 10px;
1436
+ }
1437
+
1438
+ </style>
1439
+
1440
+
1441
+
1442
+ <div width="100%">
1443
+
1444
+
1445
+ <div class="list-greetings" style="background-color: #FFD; color:black; text-align: center;">
1446
+ <b>Hello.</b> If this is your Wish List, please <a href="/gp/sign-in.html?ie=UTF8&amp;path=%2Fregistry%2Fwishlist%2F2F1084Q1YMV45&amp;useRedirectOnSuccess=1">sign in</a>.
1447
+ </div>
1448
+
1449
+ </div>
1450
+
1451
+
1452
+
1453
+
1454
+
1455
+
1456
+ <div style="position: relative; zoom: 1;">
1457
+ <div style="float: left; width: 210px;" class="amabot_left">
1458
+ <div width="100%" style="zoom: 1;padding-right: 0px; padding-top: 6px;" class="side-column">
1459
+ <div >
1460
+ <div>
1461
+ <div id="profileBox" class="wlBox">
1462
+ <span class="wlSprite wlBoxTL"><!-- &nbsp; --></span>
1463
+ <span class="wlBoxTL2"><!-- &nbsp; --></span>
1464
+ <span class="wlBoxT"><!-- &nbsp; --></span>
1465
+ <span class="wlSprite wlBoxTR"><!-- &nbsp; --></span>
1466
+ <span class="wlBoxTR2"><!-- &nbsp; --></span>
1467
+ <span class="wlBoxR"><!-- &nbsp; --></span>
1468
+ <span class="wlSprite wlBoxBR"><!-- &nbsp; --></span>
1469
+ <span class="wlBoxBR2"><!-- &nbsp; --></span>
1470
+ <span class="wlBoxB"><!-- &nbsp; --></span>
1471
+ <span class="wlSprite wlBoxBL"><!-- &nbsp; --></span>
1472
+ <span class="wlBoxBL2"><!-- &nbsp; --></span>
1473
+ <span class="wlBoxL"><!-- &nbsp; --></span>
1474
+ <div class="wlBoxInner">
1475
+
1476
+ <div id="profile">
1477
+ <h1 class="visitor">Nicholas Tinning</h1>
1478
+ <div style="text-align: center;">
1479
+
1480
+ <div class="wlSprite wl_ph_visitor">
1481
+ </div>
1482
+
1483
+ </div>
1484
+
1485
+
1486
+
1487
+
1488
+ <div id="profileInfo">
1489
+ <table border="0" cellspacing="0" cellpadding="0" class="visitor"><tr><th>This list is for:</th><td class="profileInfoField">Nicholas Tinning</td></tr><div style="clear:both;"></div><tr><th>Dispatch to:</th><td class="profileInfoField"><span class="default">No address entered</span></td></tr><tr><th>Birthday:</th><td class="profileInfoField"><span class="default">None entered</span></td></tr><tr><th>About me:</th><td class="profileInfoField"><span class="default">Nothing entered</span></td></tr></table>
1490
+ </div>
1491
+
1492
+
1493
+
1494
+ <div id="regListpublicBlock" class="regListBlock" style="display:none">
1495
+
1496
+
1497
+ <div class="greyhr"></div>
1498
+
1499
+ <h2 id="regListpublicHead" class="regListHead">Wish Lists</h2>
1500
+
1501
+
1502
+
1503
+
1504
+ <div id="regListsList2F1084Q1YMV45">
1505
+ <h3 class="regListName"><a href="/registry/wishlist/2F1084Q1YMV45" class="regListSel">Wishlist</a></h3>
1506
+ <div class="regListDetail">
1507
+ <span class="regListCount">0</span><span class="regListItem_plu" > items</span><span class="regListItem_sing" style="display:none"> item</span>
1508
+ <span class="regListDef"><span id="regListsDefaultBadge">(default)</span></span>
1509
+ </div>
1510
+ </div>
1511
+ </%init>
1512
+ </div>
1513
+
1514
+
1515
+ <div id="regListCreatePopover" style="display: none;">
1516
+ <form name="create-list" method="post" action="/gp/registry/wishlist/2F1084Q1YMV45">
1517
+
1518
+ <input type="hidden" name="dest-list" value="new-wishlist">
1519
+ <input type="hidden" name="no-update" value="1">
1520
+ <input type="hidden" name="movecopy" value="createnew">
1521
+ <div class="notesInlineError message mini error" style="display:none">
1522
+ <span class="mini" style="padding:0px;width:17px;height:17px;"></span>
1523
+ <h6>A problem occurred while saving</h6>
1524
+ <div class="itemErrorText" style="margin-left:5px;clear:both;">
1525
+ &bull;&nbsp;Please enter a valid List Name.
1526
+ </div>
1527
+ </div>
1528
+ <table style="margin-top:-13px">
1529
+ <tr>
1530
+ <td valign="top" style="padding-top:15px">
1531
+ <label for="createNewWLContent_t">
1532
+ <span class="strong">List Name:</span>
1533
+ </label>
1534
+ </td>
1535
+ <td valign="top">
1536
+ <table>
1537
+ <td>
1538
+ <input type="text" id="createNewWLContent_t" name="list-name" value="New Wish List" maxlength="60" size="30"/>
1539
+ </td>
1540
+ </table>
1541
+ <table>
1542
+
1543
+
1544
+ <tr>
1545
+ <td valign="top">
1546
+ <input type="radio" id="createNewWLContent_r0" name="isPrivate" value="U" checked="checked" />
1547
+ </td>
1548
+ <td>
1549
+ <label for="createNewWLContent_r0">
1550
+ <span class="strong">Make this list public</span><br/>
1551
+ Anyone can see this list.
1552
+ </label>
1553
+ </td>
1554
+ </tr>
1555
+ <tr>
1556
+ <td></td>
1557
+ <td>
1558
+ <label>
1559
+ <input type="checkbox" id="createNewWLContent_c0" name="isSearchable" value="Y" checked= "checked" />
1560
+ Make this list searchable on Amazon
1561
+ </label>
1562
+ </td>
1563
+ </tr>
1564
+ <tr>
1565
+ <td valign="top">
1566
+ <input type="radio" id="createNewWLContent_r1" name="isPrivate" value="Y" />
1567
+ </td>
1568
+ <td>
1569
+ <label for="createNewWLContent_r1">
1570
+ <span class="strong">Make this list private</span><br/>
1571
+ Only you can see this list.
1572
+ </label>
1573
+ </td>
1574
+ </tr>
1575
+ </table>
1576
+ </td>
1577
+ </tr>
1578
+ </table>
1579
+ <div style="padding-bottom:20px; padding-top:10px;">
1580
+ <input type="image" src="http://g-ecx.images-amazon.com/images/G/02/misc/transparent-pixel._V192263529_.gif" width="1" alt="Save Changes" name="submit.movecopy" class="wlSprite wl_save" id="createNewWLSave" height="1" border="0" />
1581
+ <span id="createNewWLCancel" class="wlSprite wl_cancel ap_custom_close"><span>Cancel</span></span>
1582
+ </div>
1583
+ </form>
1584
+ </div>
1585
+
1586
+
1587
+ </div>
1588
+
1589
+ </div>
1590
+ </div>
1591
+ </div>
1592
+
1593
+ <script type="text/javascript">
1594
+
1595
+
1596
+ </script>
1597
+ </div>
1598
+ <div ><img src="http://g-ecx.images-amazon.com/images/G/02/misc/transparent-pixel._V192263529_.gif" width="1" alt="" height="10" border="0" /></div>
1599
+ </div>
1600
+
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+
1610
+ </div>
1611
+ <div id="wlMain" style="margin-left: 225px;">
1612
+ <div width="100%" style="zoom: 1;padding-top: 6px" class="wlNoUnderline">
1613
+ <div >
1614
+
1615
+
1616
+
1617
+ <div id="listActions">
1618
+
1619
+
1620
+ <div style="display: none;" id="listMessageerror" class="message error">
1621
+ <span></span>
1622
+ <h6>
1623
+ <div id="listMessageerrorClose" style="display: none;" class="swSprite s_close listMessageClose"><div>Close</div></div>
1624
+ <div id="listMessageerrorTitle">The owner still needs to add some items to this Wish List.</div>
1625
+ <div id="listMessageerrorUndo"><a href="#">(Undo)</a></div>
1626
+ </h6>
1627
+ <p id="listMessageerrorText">
1628
+ If you need a gift, take a look at the suggestions below, explore our <a href="/gp/gift-central">Gift Ideas</a>, or search for something specific.
1629
+ </p>
1630
+ </div>
1631
+
1632
+ <div style="display: none;" id="listMessagewarning" class="message warning">
1633
+ <span></span>
1634
+ <h6>
1635
+ <div id="listMessagewarningClose" style="display: none;" class="swSprite s_close listMessageClose"><div>Close</div></div>
1636
+ <div id="listMessagewarningTitle">The owner still needs to add some items to this Wish List.</div>
1637
+ <div id="listMessagewarningUndo"><a href="#">(Undo)</a></div>
1638
+ </h6>
1639
+ <p id="listMessagewarningText">
1640
+ If you need a gift, take a look at the suggestions below, explore our <a href="/gp/gift-central">Gift Ideas</a>, or search for something specific.
1641
+ </p>
1642
+ </div>
1643
+
1644
+ <div style="display: none;" id="listMessagesuccess" class="message success">
1645
+ <span></span>
1646
+ <h6>
1647
+ <div id="listMessagesuccessClose" style="display: none;" class="swSprite s_close listMessageClose"><div>Close</div></div>
1648
+ <div id="listMessagesuccessTitle">The owner still needs to add some items to this Wish List.</div>
1649
+ <div id="listMessagesuccessUndo"><a href="#">(Undo)</a></div>
1650
+ </h6>
1651
+ <p id="listMessagesuccessText">
1652
+ If you need a gift, take a look at the suggestions below, explore our <a href="/gp/gift-central">Gift Ideas</a>, or search for something specific.
1653
+ </p>
1654
+ </div>
1655
+
1656
+ <div style="display: block;" id="listMessage" class="message ">
1657
+ <span></span>
1658
+ <h6>
1659
+ <div id="listMessageClose" style="display: none;" class="swSprite s_close listMessageClose"><div>Close</div></div>
1660
+ <div id="listMessageTitle">The owner still needs to add some items to this Wish List.</div>
1661
+ <div id="listMessageUndo"><a href="#">(Undo)</a></div>
1662
+ </h6>
1663
+ <p id="listMessageText">
1664
+ If you need a gift, take a look at the suggestions below, explore our <a href="/gp/gift-central">Gift Ideas</a>, or search for something specific.
1665
+ </p>
1666
+ </div>
1667
+
1668
+
1669
+ <script>
1670
+ amznJQ.available('jQuery', function(){
1671
+ var $ = jQuery;
1672
+ if (typeof window.Registry === 'undefined') {
1673
+ window.Registry = {};
1674
+ }
1675
+ if (typeof Registry.data === 'undefined') {
1676
+ Registry.data = {};
1677
+ }
1678
+ if (typeof Registry.data.knownMessages === 'undefined') {
1679
+ Registry.data.knownMessages = {};
1680
+ }
1681
+
1682
+ Registry.data.knownMessages.addUwlItem = { title: "Success!", text: "You added the item to your Wish List.", type: 'success'};
1683
+ Registry.data.knownMessages.atItemLimit = { title: "This Wish List has reached the maximum 2,500 items", text: "<a href=&quot;/registry/wishlist/2F1084Q1YMV45?_encoding=UTF8&amp;submit.movecopy=1&amp;dest-list=new-wishlist&amp;movecopy=copy&amp;isPrivate=1&amp;set-default=1&quot;>Create a new Wish List</a> and add this item to it (the new list will become the default list).", type: 'error'};
1684
+ Registry.data.knownMessages.createEmpty = { title: ", your new Wish List has been created but you haven&#39;t added any items to it yet.", text: "Explore our suggestions below or search for an item you&#39;d like to add.", type: 'success'};
1685
+ Registry.data.knownMessages.digitalAttributionRB = { title: "We've Updated Some Digital Items on Your Wish List", text: "You might notice that we've moved some digital items (MP3s, Video on Demand, Kindle books) you've purchased off your Amazon Wish List to your Purchased view. From now on, this will happen automatically for all digital items.", type: ''};
1686
+ Registry.data.knownMessages.editPrivacyPrivate = { title: "Your privacy settings have been saved. This is now a private Wish List.", text: "", type: 'success'};
1687
+ Registry.data.knownMessages.editPrivacyPublic = { title: "Your privacy settings have been saved. This is now a public Wish List.", text: "", type: 'success'};
1688
+ Registry.data.knownMessages.editPrivacyUnlisted = { title: "Your privacy settings have been saved. ", text: "", type: 'success'};
1689
+ Registry.data.knownMessages.emptyAlertOwner = { title: ", you need some items for this Wish List.", text: "Explore the suggestions below or search for something you&#39;d like to add.You can wish for anything at all (even if it&#39;s not on Amazon.co.uk) with <a href=&quot;/wishlist/get-button&quot;>Universal Wish List</a>.", type: ''};
1690
+ Registry.data.knownMessages.emptyAlertVisitor = { title: "The owner still needs to add some items to this Wish List.", text: "If you need a gift, take a look at the suggestions below, explore our <a href=&quot;/gp/gift-central&quot;>Gift Ideas</a>, or search for something specific.", type: ''};
1691
+ Registry.data.knownMessages.emptyViewPurchaseOwner = { title: "There are no items marked as purchased on this Wish List.", text: "To mark an item as purchased, it must be bought off the <a href=&quot;/registry/wishlist/2F1084Q1YMV45?_encoding=UTF8&amp;reveal=unpurchased&quot;>unpurchased view</a> of your Wish List. You can also click the Edit Comments, Quantity &amp; Priority link to the right of each item in the list to edit the quantity received", type: ''};
1692
+ Registry.data.knownMessages.emptyViewPurchaseVisitor = { title: "There are no items marked as purchased on this Wish List.", text: "Items are marked as purchased when they are bought directly off the <a href=&quot;/registry/wishlist/2F1084Q1YMV45?_encoding=UTF8&amp;reveal=unpurchased&quot;>unpurchased view</a> of the Wish List.", type: ''};
1693
+ Registry.data.knownMessages.nearItemLimit = { title: "This Wish List is approaching the maximum 2,500 items", text: "<a href=&quot;/registry/wishlist/2F1084Q1YMV45?_encoding=UTF8&amp;submit.movecopy=1&amp;dest-list=new-wishlist&amp;movecopy=copy&amp;isPrivate=1&amp;set-default=1&quot;>Create a new Wish List</a> and add this item to it (the new list will become the default list).", type: 'warning'};
1694
+ Registry.data.knownMessages.surpriseAlert = { title: "Alert! Items from your Wish List have been purchased.", text: "One or more of the items listed below has recently been purchased as a gift for you. If you try to buy something directly from the list, we'll warn you that it may be a duplicate purchase. (<a href=&quot;/registry/wishlist/2F1084Q1YMV45?_encoding=UTF8&amp;reveal=unwrap-unpurchased&quot;>Reveal All Items</a>)", type: 'warning'};
1695
+ });
1696
+ </script>
1697
+
1698
+
1699
+ <div style="float: right">
1700
+ <form action="/gp/registry/search.html?ie=UTF8&amp;type=wishlist" name="search-box" method="post"><input value="us-xml-wishlist" name="index" type="hidden" /><input value="templates/search/us-xml-wishlist-result.html" name="registry-error-page" type="hidden" />
1701
+
1702
+
1703
+
1704
+
1705
+
1706
+
1707
+ <table cellspacing="0" cellpadding="0" class="wl-title-searchbox">
1708
+ <tr valign="top">
1709
+ <td valign="middle" colspan="2" class="wl-title-searchbox-label"><label for="wishlistSearchFieldName">Find a Wish List</label></td>
1710
+ </tr>
1711
+ <tr valign="top">
1712
+ <td valign="middle" class="search-field-name"><input value="Enter name or e-mail" name="field-name" onclick="this.select()" id="wishlistSearchFieldName" type="text" size="15" />
1713
+ </td>
1714
+ <td valign="middle" style="padding-left: 6px;"><input type="image" src="http://g-ecx.images-amazon.com/images/G/02/misc/transparent-pixel._V192263529_.gif" width="1" alt="Go" id="wishlistSearchInputID" class="swSprite s_goTan" height="1" border="0" />
1715
+ </td>
1716
+ </tr>
1717
+ </table>
1718
+ </form></div>
1719
+
1720
+ <form>
1721
+ <span id="listTitleTxt">Wishlist</span>
1722
+ <div id="listActionMenus">
1723
+ <span id="printThisList">
1724
+ <div>
1725
+ <a href="/wishlist/2F1084Q1YMV45?_encoding=UTF8&amp;layout=standard-print&amp;disableNav=1&amp;visitor-view=1&amp;items-per-page=200&amp;page=1" target="_blank">Print this List</a>
1726
+ </div>
1727
+ </span>
1728
+ </div>
1729
+
1730
+ </form>
1731
+ <script>
1732
+ amznJQ.onReady('popover', function(){
1733
+ var $ = jQuery;
1734
+
1735
+
1736
+
1737
+ $('#printThisList').click(function(){
1738
+ window.open($('#printThisList a').attr('href'), '_blank',
1739
+ 'width=715,height=675,location=no,menubar=yes,scrollbars=yes'
1740
+ );
1741
+ return false;
1742
+ });
1743
+
1744
+ $('.search-field-name input').blur( function() {
1745
+ if ($(this).val() == '') {
1746
+ $(this).val("Enter name or e-mail");
1747
+ }
1748
+ });
1749
+
1750
+ $('.wl-title-searchbox').parents('form').submit(function() {
1751
+ var input = $(this).find('.search-field-name input');
1752
+ if (input.val() == "Enter name or e-mail") {
1753
+ input.val('');
1754
+ }
1755
+ });
1756
+
1757
+ if($('.search-field-name input').val() == '') {
1758
+ $('.search-field-name input').val("Enter name or e-mail");
1759
+ }
1760
+ });
1761
+ </script>
1762
+ </div>
1763
+
1764
+
1765
+
1766
+
1767
+ </div>
1768
+ <div >
1769
+ <div width="100%" style="zoom: 1;" class="list-items">
1770
+ <div id="sortbarDisplay">
1771
+ </div>
1772
+ <div >
1773
+
1774
+
1775
+ <div id="giftCardPrompt" style="padding-top:20px;">
1776
+ <h1>Amazon.co.uk Gift Certificates</h1>
1777
+ <table>
1778
+ <tr>
1779
+ <td>
1780
+ <a href="/gp/gc">
1781
+ <div class="wlSprite wlGiftCard">
1782
+ <span>Amazon.co.uk Gift Certificates</span>
1783
+ </div>
1784
+ </a>
1785
+ </td>
1786
+ <td valign="top" style="padding-right: 40px;">
1787
+ Give them the perfect present with a gift certificate. You can e-mail <a href="/gp/gc">Amazon.co.uk Gift Certificates</a>, print them from home, or send them by post (and they're always delivered for free).
1788
+ <br /><br />
1789
+ <span class="caret">&#155;</span>&nbsp;<a href="/gp/gc">Shop now</a>
1790
+ </td>
1791
+ </tr>
1792
+ </table>
1793
+ </div>
1794
+
1795
+
1796
+ </div>
1797
+ <div >
1798
+
1799
+
1800
+
1801
+
1802
+
1803
+
1804
+
1805
+
1806
+ <script language="javascript">
1807
+ if ( ! window.stageMarkers) {
1808
+ window.stageMarkers = {};
1809
+ window.stageMarkers.count = {};
1810
+ window.stageMarkers.stage = function (stage, t) {
1811
+ window.stageMarkers.count[stage] = 1 + (window.stageMarkers.count[stage] ? window.stageMarkers.count[stage] : 0);
1812
+ if (window.stageMarkers.count[stage] >= t) {
1813
+ amznJQ.completedStage(stage);
1814
+ }
1815
+ }
1816
+ }
1817
+ </script>
1818
+
1819
+ <div style="display:none;" id="cf-div">
1820
+ <img onload="if (typeof uet == 'function') { uet('cf'); }" src="http://g-ecx.images-amazon.com/images/G/02/x-locale/common/transparent-pixel._V192199769_.gif" width="1" alt="" height="1" border="0" /><img onload="if (typeof uet == 'function') { uet('cf'); }" src="http://ecx.images-amazon.com/images/G/02/x-locale/common/transparent-pixel._V192199769_.gif" width="1" alt="" height="1" border="0" />
1821
+ </div>
1822
+
1823
+
1824
+ </div>
1825
+ <div >
1826
+ </div>
1827
+ </div>
1828
+ </div>
1829
+ </div>
1830
+
1831
+
1832
+
1833
+
1834
+
1835
+ </div>
1836
+ <div style="width:900px;"></div>
1837
+ </div>
1838
+ <div style="clear: both;"></div>
1839
+
1840
+
1841
+
1842
+
1843
+
1844
+
1845
+
1846
+
1847
+
1848
+
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+
1855
+
1856
+
1857
+
1858
+
1859
+ <div id="navFooter">
1860
+ <table cellspacing="0">
1861
+ <tr>
1862
+ <td>
1863
+ <table class="navFooterThreeColumn" cellspacing="0">
1864
+ <tr>
1865
+ <td class="navFooterColSpacerOuter"></td>
1866
+ <td class="navFooterLinkCol">
1867
+ <div class="navFooterColHead">Get to Know Us</div>
1868
+ <ul>
1869
+ <li><a href="/b?ie=UTF8&node=202594011">Careers</a></li>
1870
+ <li><a href="/gp/redirect.html?_encoding=UTF8&location=http%3A%2F%2Fphx.corporate-ir.net%2Fphoenix.zhtml%3Fp%3Dirol-irhome%26c%3D97664&token=F9CAD8A11D4336B5E0B3C3B089FA066D0A467C1C">Investor Relations</a></li>
1871
+ <li><a href="/gp/press/home">Press Releases</a></li>
1872
+ <li><a href="/Amazon-and-our-Planet/b?ie=UTF8&node=299737031">Amazon and Our Planet</a></li>
1873
+ </ul>
1874
+ </td>
1875
+ <td class="navFooterColSpacerInner"></td>
1876
+ <td class="navFooterLinkCol">
1877
+ <div class="navFooterColHead">Make Money with Us</div>
1878
+ <ul>
1879
+ <li><a href="http://services.amazon.co.uk/services/sell-on-amazon/how-it-works/?ld=AZUKSOAFooter">Sell on Amazon</a></li>
1880
+ <li><a href="https://affiliate-program.amazon.co.uk">Associates Programme</a></li>
1881
+ <li><a href="http://services.amazon.co.uk/services/fulfilment-by-amazon/features-benefits/?ld=AZUKFBAFooter">Fulfilment by Amazon</a></li>
1882
+ <li><span class="navFooterRightArrowBullet">&rsaquo;</span> <a href="/gp/seller-account/mm-landing.html?ie=UTF8&topic=200313300">See all</a></li>
1883
+ </ul>
1884
+ </td>
1885
+ <td class="navFooterColSpacerInner"></td>
1886
+ <td class="navFooterLinkCol">
1887
+ <div class="navFooterColHead">Let Us Help You</div>
1888
+ <ul>
1889
+ <li><a href="/gp/help/customer/display.html?ie=UTF8&nodeId=492868">Delivery Rates & Policies</a></li>
1890
+ <li><a href="/gp/subs/primeclub/signup/main.html">Amazon Prime</a></li>
1891
+ <li><a href="/gp/css/returns/homepage.html">Returns</a></li>
1892
+ <li><a href="/gp/help/customer/display.html?ie=UTF8&nodeId=471044">Help</a></li>
1893
+ </ul>
1894
+ </td>
1895
+
1896
+ <td class="navFooterColSpacerOuter"></td>
1897
+ </tr>
1898
+ </table>
1899
+ </td>
1900
+ </tr>
1901
+ <tr>
1902
+ <td>
1903
+ <div class="navFooterLine navFooterLogoLine">
1904
+ <a href="/"><img src="http://g-ecx.images-amazon.com/images/G/02/gno/images/general/navAmazonLogoFooter._V192252709_.gif" width="133" alt="amazon.co.uk" height="28" border="0" /></a>
1905
+ </div>
1906
+ <div class="navFooterLine navFooterLinkLine">
1907
+ <a href="http://www.amazon.ca">Canada</a> |
1908
+ <a href="http://www.amazon.cn">China</a> |
1909
+ <a href="http://www.amazon.fr">France</a> |
1910
+ <a href="http://www.amazon.de">Germany</a> |
1911
+ <a href="http://www.amazon.co.jp">Japan</a> |
1912
+ <a href="http://www.amazon.com">United States</a>
1913
+
1914
+ <span>
1915
+ &nbsp;And don't forget:
1916
+ <a href="http://www.abebooks.co.uk">AbeBooks</a> |
1917
+ <a href="http://www.audible.co.uk">Audible</a> |
1918
+ <a href="http://www.dpreview.co.uk">DPReview</a> |
1919
+ <a href="http://uk.imdb.com">IMDb</a> |
1920
+ <a href="http://www.javari.co.uk">Javari</a> |
1921
+ <a href="http://www.shopbop.com/uk/welcome">Shopbop</a> |
1922
+ <a href="http://www.soundunwound.com">SoundUnwound</a>
1923
+
1924
+ </span>
1925
+ </div>
1926
+ <div class="navFooterLine navFooterLinkLine">
1927
+ <a href="/gp/help/customer/display.html?ie=UTF8&nodeId=1040616">Conditions of Use & Sale</a> |
1928
+ <a href="/gp/help/customer/display.html?ie=UTF8&nodeId=502584">Privacy Notice</a>
1929
+ <span>
1930
+ &nbsp;� 1996-2010, Amazon.com, Inc. or its affiliates
1931
+ </span>
1932
+
1933
+ </div>
1934
+
1935
+
1936
+ </td>
1937
+ </tr>
1938
+
1939
+
1940
+ </table>
1941
+ </div>
1942
+ <!-- whfh-b6kpBHxiNO848H5QvYmWQlWqpJ6wFUi7vjkV/j5pV6c= rid-1EPFW5H7788DBGF9SXF1 -->
1943
+
1944
+ </body>
1945
+ </html>
1946
+
1947
+