unapi 0.0.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.
data/lib/unapi.rb ADDED
@@ -0,0 +1,5 @@
1
+ require 'unapi/page'
2
+ require 'unapi/format'
3
+ require 'unapi/service'
4
+ require 'unapi/utils'
5
+ require 'unapi/validator'
@@ -0,0 +1,21 @@
1
+ module UnAPI
2
+
3
+ class Format
4
+ attr_accessor :name, :type, :docs, :namespace_uri, :schema_location
5
+
6
+ def Format.new_from_element(formats)
7
+ format = Format.new
8
+ formats.elements.each do |e|
9
+ case e.name
10
+ when 'name' : format.name = e.text
11
+ when 'type' : format.type = e.text
12
+ when 'docs' : format.docs = e.text
13
+ when 'namespace_uri' : format.namespace_uri = e.text
14
+ when 'schema_location' : format.schema_location = e.text
15
+ end
16
+ end
17
+ return format
18
+ end
19
+ end
20
+
21
+ end
data/lib/unapi/page.rb ADDED
@@ -0,0 +1,59 @@
1
+ require 'rubyful_soup'
2
+ require 'uri'
3
+ require 'unapi/service'
4
+ require 'unapi/utils'
5
+
6
+ module UnAPI
7
+
8
+ class Page
9
+ attr_reader :status_code, :document
10
+
11
+ # initialize the UnAPI::URI object with a web page url
12
+ def initialize(url)
13
+ @page_uri = URI.parse(url)
14
+ @status_code, @document = Utils.get_html_document(url)
15
+ end
16
+
17
+ # the unapi service url
18
+ def service_url
19
+ return nil if not @document or not @document.head
20
+ link_url = nil
21
+ @document.head.find_all('link') do |link|
22
+ link_url = link['href'] if link['title'] == 'unAPI'
23
+ end
24
+ return nil if not link_url
25
+
26
+ # if the host isn't mentioned then we'll assume relative to page_uri
27
+ service_uri = URI.parse(link_url)
28
+ if service_uri.relative?
29
+ service_uri.host = @page_uri.host
30
+ service_uri.port = @page_uri.port
31
+ service_uri.scheme = @page_uri.scheme
32
+ end
33
+
34
+ # if they included a ? let's get rid of that
35
+ service_uri.query = nil if service_uri.query == ''
36
+
37
+ return service_uri.to_s
38
+ end
39
+
40
+ # get a service object for interacting with the unap service
41
+ def service
42
+ return Service.new(service_url) if service_url
43
+ return nil
44
+ end
45
+
46
+ # get a list of uris for the page
47
+ def uris
48
+ uris = []
49
+ return uris if not @document
50
+ @document.find_all('span') do |span|
51
+ if span['class'] == 'unapi-uri' and span['title']
52
+ uris << span['title']
53
+ end
54
+ end
55
+ return uris
56
+ end
57
+ end
58
+
59
+ end
@@ -0,0 +1,45 @@
1
+ require 'unapi/format'
2
+ require 'unapi/utils'
3
+ require 'cgi'
4
+
5
+ module UnAPI
6
+
7
+ # a class that represents the UnAPI Service
8
+
9
+ class Service
10
+ attr_reader :url, :status_code, :document, :content_type
11
+
12
+ def initialize(url)
13
+ @url = url
14
+ end
15
+
16
+ def formats()
17
+ formats = []
18
+ @status_code, @document, @content_type = Utils.get_document(@url)
19
+ @document.elements.each('.//formats/format') do |e|
20
+ formats << Format.new_from_element(e)
21
+ end
22
+ return formats
23
+ end
24
+
25
+ def formats_for_uri(uri)
26
+ formats = []
27
+ uri_esc = CGI.escape(uri)
28
+ @status_code, @document, @content_type =
29
+ Utils.get_document(@url + "?uri=#{uri_esc}")
30
+ @document.elements.each('.//formats/format') do |e|
31
+ formats << Format.new_from_element(e)
32
+ end
33
+ return formats
34
+ end
35
+
36
+ def get_uri_in_format(uri, format)
37
+ uri_esc = CGI.escape(uri)
38
+ format_esc = CGI.escape(format)
39
+ @document = nil
40
+ @status_code, body, @content_type =
41
+ Utils.get(@url + "?uri=#{uri_esc}&format=#{format_esc}")
42
+ return body
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,49 @@
1
+ require 'rubyful_soup'
2
+ require 'net/http'
3
+ require 'rexml/document'
4
+ require 'tidy'
5
+
6
+ module UnAPI
7
+
8
+ # helper stuff used in the rest of the package
9
+
10
+ class Utils
11
+ def Utils.get(url)
12
+ begin
13
+ response = Net::HTTP.get_response(URI.parse(url))
14
+ code = Integer(response.code)
15
+ body = response.body == '' ? nil : response.body
16
+ # v1.8.2 has no content_type attribute
17
+ content_type = response.respond_to?('content_type') ?
18
+ response.content_type : response.header['content-type']
19
+ return code, body, content_type
20
+ rescue Exception => e
21
+ return nil, nil, nil
22
+ end
23
+ end
24
+
25
+ def Utils.get_document(url)
26
+ begin
27
+ code, xml, content_type = get(url)
28
+ return code, REXML::Document.new(xml), content_type
29
+ rescue Exception => e
30
+ return nil, nil, nil
31
+ end
32
+ end
33
+
34
+ def Utils.get_html_document(url)
35
+ begin
36
+ code, html, content_type = get(url)
37
+ # hack so that &#043; (or whatever) isn't passed off to the
38
+ # ruby sgml parser, since it barfs badly
39
+ html.gsub!(/&#0(\d+);/, '&#\1;')
40
+ return code, BeautifulSoup.new(html), content_type
41
+ rescue Exception => e
42
+ return nil, nil, nil
43
+ end
44
+ end
45
+
46
+ end
47
+
48
+ end
49
+
@@ -0,0 +1,175 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'unapi'
4
+
5
+ module UnAPI
6
+
7
+ class Message < String
8
+ attr_accessor :for_url
9
+
10
+ def initialize(string, url=nil)
11
+ super string
12
+ @for_url = url
13
+ end
14
+ end
15
+
16
+ class Pass < Message
17
+ end
18
+
19
+ class Fail < Message
20
+ end
21
+
22
+ class ValidatorHandler
23
+ attr_reader :passes, :failures
24
+
25
+ def initialize
26
+ @passes = 0
27
+ @failures = 0
28
+ end
29
+
30
+ def pass(msg)
31
+ @passes += 1
32
+ handle Pass.new(msg)
33
+ end
34
+
35
+ def fail(msg)
36
+ @failures += 1
37
+ handle Fail.new(msg)
38
+ end
39
+
40
+ def count
41
+ return @passes + @failures
42
+ end
43
+ end
44
+
45
+ class PrintHandler < ValidatorHandler
46
+ def initialize(filehandle)
47
+ super()
48
+ @filehandle = filehandle
49
+ end
50
+
51
+ def handle(msg)
52
+ @filehandle.print "#{count}: "
53
+ case msg
54
+ when Pass: @filehandle.print("PASS: #{msg}\n")
55
+ when Fail: @filehandle.print("FAIL: #{msg}\n")
56
+ when Warn: @filehandle.print("WARN: #{msg}\n")
57
+ end
58
+ end
59
+ end
60
+
61
+ class ListHandler < ValidatorHandler
62
+ attr_reader :messages
63
+ def initialize
64
+ super()
65
+ @messages = []
66
+ end
67
+ def handle(msg)
68
+ @messages << msg
69
+ end
70
+ end
71
+
72
+ class Validator
73
+
74
+ def initialize(handler)
75
+ @handler = handler
76
+ end
77
+
78
+ def validate_page(page_url)
79
+ page = UnAPI::Page.new page_url
80
+ check_service page
81
+ check_uris page
82
+ end
83
+
84
+ private
85
+
86
+ def check_service(page)
87
+ # make sure there is a service url
88
+ service_url = page.service_url
89
+ test service_url, "<link> url for unapi service"
90
+
91
+ # get the unapi service from the page
92
+ service = page.service
93
+
94
+ # make sure service responds to a format request
95
+ formats = service.formats
96
+ check_formats(formats, service, 'unapi service')
97
+ end
98
+
99
+ def check_uris(page)
100
+ # look for unap-uris on the page
101
+ service = page.service
102
+ uris = page.uris
103
+ test uris.length > 0, "found unapi-uris on the page"
104
+
105
+ # go through each identifier
106
+ uris.each do |uri|
107
+ @handler.pass "got unapi-uri #{uri}"
108
+
109
+ # verify it has formats available
110
+ formats = service.formats_for_uri(uri)
111
+ check_formats(formats, service, uri)
112
+
113
+ # request an invalid format
114
+ content = service.get_uri_in_format(uri, 'thisformatdoesnotexist')
115
+ test service.status_code == 415,
116
+ "request for uri #{uri} with bad format returns 415"
117
+
118
+ # verify that each format is available
119
+ content = ''
120
+ formats.each do |format|
121
+ content = service.get_uri_in_format(uri, format.name)
122
+ test service.status_code == 200,
123
+ "request for #{uri} content responded with 200 status code"
124
+ test (content != nil and content.length > 0),
125
+ "request for #{uri} returned data"
126
+ test service.content_type == format.type,
127
+ "request for #{uri} returned mime type #{service.content_type}"
128
+
129
+ # request an invalid uri with a valid format
130
+ service.get_uri_in_format('invaliduriinvaliduri', format.name)
131
+ test service.status_code == 404,
132
+ "request for invalid uri with valid format #{format.name} " +
133
+ "returned 404"
134
+ end
135
+ end
136
+ end
137
+
138
+ def check_formats(formats, service, target)
139
+ test service.content_type == 'application/xml',
140
+ "formats request for #{target} has content-type #{service.content_type}"
141
+
142
+ if target == 'unapi service'
143
+ test service.status_code == 200,
144
+ "formats request for #{target} returned 200 status code"
145
+ else
146
+ test service.status_code == 300,
147
+ "formats request for #{target} return 300 status code"
148
+ end
149
+
150
+ if formats.length > 0
151
+ @handler.pass "found #{formats.length} formats for #{target}"
152
+ count = 0
153
+ formats.each do |format|
154
+ count += 1
155
+ test format.name,
156
+ "format #{count} for #{target} has a name"
157
+ test format.type,
158
+ "format #{count} for #{target} has a type"
159
+ end
160
+ else
161
+ @handler.fail "no formats found for #{target}"
162
+ end
163
+ end
164
+
165
+ def test(ok, msg)
166
+ if ok
167
+ @handler.pass(msg)
168
+ else
169
+ @handler.fail(msg)
170
+ end
171
+ end
172
+
173
+ end
174
+ end
175
+
data/test.rb ADDED
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift 'lib'
4
+ require 'webrick'
5
+ require 'test/unapi_servlet'
6
+ require 'test/unit/testsuite'
7
+ require 'test/unit/ui/console/testrunner'
8
+ require 'test/unapi_test'
9
+ require 'test/validate_test'
10
+
11
+ # start a server in a separate thread with an unapi servlet running
12
+ # in it, with logging data going to files instead of the console
13
+ logger = WEBrick::BasicLog.new('logs/webrick.log')
14
+ access_log_stream = File.open('logs/webrick_access.log','w')
15
+ access_log = [[access_log_stream, WEBrick::AccessLog::COMBINED_LOG_FORMAT]]
16
+ server = WEBrick::HTTPServer.new(
17
+ :Port => 9999,
18
+ :DocumentRoot => 'test/',
19
+ :Logger => logger,
20
+ :AccessLog => access_log)
21
+ server.mount("/unapi", UnAPIServlet)
22
+ server_thread = Thread.new(server) do server.start end
23
+
24
+ # start up our tests -- we don't use the autorunner since
25
+ # it seems to use threads in a waywhich causes the tests to run
26
+ # after the server has shut down :-(
27
+ suite = Test::Unit::TestSuite.new("you-nappy test suite")
28
+ suite << UnAPITest.suite
29
+ suite << ValidateTest.suite
30
+ Test::Unit::UI::Console::TestRunner.run(suite)
31
+
32
+ # done testing the server can be shutdown
33
+ server.shutdown
data/test/index.html ADDED
@@ -0,0 +1,926 @@
1
+ <html>
2
+ <head>
3
+ <title>
4
+ Amazon.com: Online Shopping for Electronics, Apparel, Computers, Books, DVDs & more
5
+ </title>
6
+ <link rel="meta" type="application/xml" title="unAPI" href="http://localhost:9999/unapi" />
7
+ <meta name="description" content="Online shopping from the earth's biggest selection of books, magazines, music, DVDs, videos, electronics, computers, software, apparel & accessories, shoes, jewelry, tools & hardware, housewares, furniture, sporting goods, beauty & personal care, gourmet food & just about anything else.">
8
+ <meta name="keywords" content="Amazon, Amazon.com, Books, Online Shopping, Book Store, Magazine, Subscription, Music, CDs, DVDs, Videos, Electronics, Video Games, Computers, Cell Phones, Toys, Games, Apparel, Accessories, Shoes, Jewelry, Watches, Office Products, Sports & Outdoors, Sporting Goods, Baby Products, Health, Personal Care, Beauty, Home, Garden, Bed & Bath, Furniture, Tools, Hardware, Vacuums, Outdoor Living, Automotive Parts, Pet Supplies">
9
+ <style type="text/css"><!-- .serif { font-family: times,serif; font-size: small; }
10
+ .sans { font-family: verdana,arial,helvetica,sans-serif; font-size: small; }
11
+ .small { font-family: verdana,arial,helvetica,sans-serif; font-size: x-small; }
12
+ .h1 { font-family: verdana,arial,helvetica,sans-serif; color: #CC6600; font-size: small; }
13
+ .h3color { font-family: verdana,arial,helvetica,sans-serif; color: #CC6600; font-size: x-small; }
14
+ .tiny { font-family: verdana,arial,helvetica,sans-serif; font-size: xx-small; }
15
+ .websearch-string {font-family: verdana,arial,helvetica,sans-serif; font-size: xx-small; }
16
+ .listprice { font-family: arial,verdana,sans-serif; text-decoration: line-through; font-size: x-small; }
17
+ .price { font-family: verdana,arial,helvetica,sans-serif; color: #990000; font-size: x-small; }
18
+ .tinyprice { font-family: verdana,arial,helvetica,sans-serif; color: #990000; font-size: xx-small; }
19
+ .attention { background-color: #FFFFD5; }
20
+ .eyebrow {font-family: verdana,arial,helvetica,sans-serif; font-size: 10px; font-weight: bold; text-transform: uppercase; text-decoration: none; color: #FFFFFF;}
21
+ A.eyebrow:link { text-decoration: none;}
22
+ .breadcrumb {font-family: verdana,arial,helvetica,sans-serif;font-size: x-small;font-weight:bold;}
23
+ .breadcrumb-node {font-family: verdana,arial,helvetica,sans-serif;font-size: x-small;font-weight: bold;color: #CC6600;}
24
+ .horizontal-search {font-weight: bold; font-size: small; color: #FFFFFF; font-family: verdana,arial,helvetica,sans-serif;}
25
+ .horizontal-websearch {font-size: xx-small; font-family:verdana,arial,helvetica,sans-serif;padding-left: 12px;}
26
+ .horizontal-advanced-websearch {font-size: xx-small; color: #ffffff; font-family:verdana,arial,helvetica,sans-serif; text-decoration: none}
27
+ A.horizontal-advanced-websearch:hover {text-decoration: underline}
28
+ .topnav { font-family: verdana,arial,helvetica,sans-serif; font-size: 12px; text-decoration: none; } .topnav A:link, .topnav A:visited { text-decoration: none; color: #003399; }
29
+ .topnav A:hover { text-decoration: none; color: #CC6600; }
30
+ .topnav-active A:link, .topnav-active A:visited { font-family: verdana,arial,helvetica,sans-serif; font-size: 12px; color: #CC6600; text-decoration: none; }
31
+ .tabon a, .tabon a:visited { font-size: 10px; color: #FFCC66; font-family: verdana,arial,helvetica,sans-serif; text-decoration: none; text-transform: uppercase; font-weight: bold; line-height: 10px; }
32
+ .taboff a, .taboff a:visited { font-size: 10px; color: #000000; font-family: verdana,arial,helvetica,sans-serif; text-decoration: none; text-transform: uppercase; font-weight: bold; line-height: 10px; }
33
+ .tabon a:hover, .taboff a:hover { text-decoration: underline; }
34
+ .tabon div, .taboff div { margin-top: 7px; margin-left: 9px; margin-bottom: 5px; }
35
+ .popover-tiny { font-size: xx-small; font-family: verdana,arial,helvetica,sans-serif; }
36
+ .popover-tiny a, .popover-tiny a:visited { text-decoration: none; color: #003399; }
37
+ .popover-tiny a:hover { text-decoration: none; color: #CC6600; }
38
+ .indent { margin-left: 1em; }
39
+ .half { font-size: .5em; }
40
+ .list div { margin-bottom: 0.25em; text-decoration: none; }
41
+ .hr-center { margin: 15px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dotted; 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; }
42
+ .divider { border-top: 1px dashed #cc9; }
43
+ .big { font-family: verdana,arial,helvetica,sans-serif; font-size: ; }
44
+ --></style>
45
+ <script language="Javascript1.1" type="text/javascript">
46
+ <!--
47
+ function amz_js_PopWin(url,name,options){
48
+ var ContextWindow = window.open(url,name,options);
49
+ ContextWindow.opener = this;
50
+ ContextWindow.focus();
51
+ }
52
+ function amz_js_RefreshOriginalWindow(url) {
53
+ if ((window.opener == null) || (window.opener.closed))
54
+ {
55
+ var OriginalWindow = window.open(url);
56
+ OriginalWindow.opener = this;
57
+ }
58
+ else{
59
+ window.opener.location=url;
60
+ }
61
+ }
62
+ //-->
63
+ </script>
64
+ </head>
65
+ <body bgcolor="#FFFFFF" link="#003399" alink="#FF9933" vlink="#996633" topmargin=0 text="#000000" >
66
+ <a name="top"></a>
67
+ <style type="text/css">
68
+ <!--
69
+ .secondary input { font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 13px; }
70
+ .header,
71
+ .header a:link, .header a:active, .header a:visited,
72
+ .secondary a,
73
+ .searchtitle,
74
+ .gcsearchtitle,
75
+ .secondsearch .title, .gcsecondsearch .title,
76
+ .secondsearch2 .title {
77
+ font-family: tahoma,sans-serif;
78
+ color: #333;
79
+ font-size: 11px;
80
+ line-height: 11px;
81
+ }
82
+ .secondary a,
83
+ .tertiary a,
84
+ .searchtitle,
85
+ .gcsearchtitle,
86
+ .secondsearch .title,
87
+ .gcsecondsearch .title,
88
+ .secondsearch2 .title {
89
+ text-transform: capitalize;
90
+ }
91
+ .secondary a:link,
92
+ .secondary a:visited,
93
+ .secondary a:active,
94
+ .header a:link,
95
+ .header a:visited,
96
+ .header a:active {
97
+ text-decoration: none;
98
+ color: #333;
99
+ }
100
+ .tabs a:link, .tabs a:visited, .tools a:active, .header .navspacer {
101
+ font-size: 11px;
102
+ line-height: 11px;
103
+ color: #333;
104
+ text-decoration: none;
105
+ font-family: tahoma,sans-serif;
106
+ }
107
+ .header a:hover {
108
+ text-decoration: underline;
109
+ }
110
+ .tabs .tools a:link,
111
+ .tabs .tools a:visited,
112
+ .tabs .tools a:active {
113
+ color: #039;
114
+ font-size: 12px;
115
+ }
116
+ .tools .h3color {
117
+ color: #c60;
118
+ font-size: 12px;
119
+ }
120
+ .tabs .tools a:hover {
121
+ color: #c60;
122
+ }
123
+ .tools a:link.on, .tools a:visited.on, .tools a:active.on {
124
+ color: #c60;
125
+ }
126
+ .searchtitle {
127
+ font-size: 14px;
128
+ font-weight: bold;
129
+ color: white;
130
+ }
131
+ .gcsearchtitle {
132
+ font-size: 14px;
133
+ font-weight: bold;
134
+ color: black;
135
+ }
136
+ .secondsearch .title, .gcsecondsearch .title, .secondsearch2 .title {
137
+ font-size: 11px;
138
+ color: black;
139
+ }
140
+ .header .secondary {
141
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/subnav-bg.gif);
142
+ }
143
+ .secondary td {
144
+ background-image: none;
145
+ }
146
+ .secondary .secondsearch {
147
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/subnav-secondary-bg.gif);
148
+ background-repeat: no-repeat;
149
+ }
150
+ .secondary .gcsecondsearch {
151
+ background-repeat: no-repeat;
152
+ }
153
+ .secondary .secondsearch2 {
154
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/subnav-secondary-bg-lite.gif);
155
+ background-repeat: no-repeat;
156
+ }
157
+ .header .tabs {
158
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/tabs-line.gif);
159
+ }
160
+ .tabs .leftoff {
161
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/tabs-left-off.gif);
162
+ background-repeat: no-repeat;
163
+ }
164
+ .tabs .lefton {
165
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/tabs-left-on.gif);
166
+ background-repeat: no-repeat;
167
+ }
168
+ .tabs .middleoff {
169
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/tabs-middle-off.gif);
170
+ background-repeat: no-repeat;
171
+ }
172
+ .tabs .middleon {
173
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/tabs-middle-on.gif);
174
+ background-repeat: no-repeat;
175
+ white-space: nowrap;
176
+ }
177
+ .tabs .middleoffonleft {
178
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/tabs-middle-off-onleft.gif);
179
+ background-repeat: no-repeat;
180
+ }
181
+ .tabs .rightoff {
182
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/tabs-right-off.gif);
183
+ background-repeat: no-repeat;
184
+ }
185
+ .tabs .righton {
186
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/tabs-right-on.gif);
187
+ background-repeat: no-repeat;
188
+ }
189
+ .tabs .middleoff a, .tabs .middleon a, .tabs .middleoffonleft a {
190
+ display: block;
191
+ }
192
+ .tabs div {
193
+ margin-left: 23px;
194
+ }
195
+ .leftoff div, .lefton div {
196
+ margin-left: 13px;
197
+ }
198
+ .secondary .on, .tertiary .on {
199
+ font-weight: bold;
200
+ }
201
+ .header .tertiary, .tertiary .navspacer {
202
+ background-color: #006699;
203
+ color: white;
204
+ }
205
+ .tertiary a:link, .tertiary a:visited {
206
+ color: white;
207
+ }
208
+ .tertiary .secondsearch, .tertiary .secondsearch2 {
209
+ background-image:url(http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/subnav-secondary-bg-tan.gif);
210
+ background-repeat: no-repeat;
211
+ }
212
+ .tertiary .gcsecondsearch{
213
+ background-repeat: no-repeat;
214
+ }
215
+ .secondary .advsearch {
216
+ line-height: 11px;
217
+ }
218
+ .advsearch a:link, .advsearch a:visited, .advsearch a:active {
219
+ color: white;
220
+ font-size: 11px;
221
+ text-decoration: none;
222
+ }
223
+ .advsearch a:hover {
224
+ text-decoration: underline;
225
+ }
226
+ .secondary .gcadvsearch {
227
+ line-height: 11px;
228
+ }
229
+ .gcadvsearch a:link, .gcadvsearch a:visited, .gcadvsearch a:active {
230
+ color: black;
231
+ font-size: 11px;
232
+ text-decoration: none;
233
+ }
234
+ .gcadvsearch a:hover {
235
+ text-decoration: underline;
236
+ }
237
+ .popover-tiny a:hover {
238
+ text-decoration: underline;
239
+ }
240
+ .popover-tiny a:visited {
241
+ color: #963;
242
+ }
243
+ .gc-popover-tiny { font-size: .7em; font-family: verdana,arial,helvetica,sans-serif; }
244
+ .gc-popover-tiny a, .gc-popover-tiny a:visited { text-decoration: none; color: #003399; }
245
+ .gc-popover-tiny a:hover { text-decoration: underline; color: #CC6600; }
246
+ .gc-tiny { font-family: verdana,arial,helvetica,sans-serif; font-size: 1em; }
247
+ -->
248
+ </style>
249
+ <table border="0" width="100%" cellspacing="0" cellpadding="0" class="header" style="margin-top:5px">
250
+ <tr>
251
+ <td class="tabs">
252
+ <table border="0" cellspacing="0" cellpadding="0" align="center" height="33" >
253
+ <tr>
254
+ <td align="center" style="white-space:nowrap">
255
+ &nbsp;</td>
256
+ <td class="lefton"><div align="center"><a href="http://www.amazon.com/exec/obidos/subst/home/home.html"><img src="http://g-images.amazon.com/images/G/01/nav2/images/skins/teal/logo-on.gif" width=109 height=25 width="102" height="25" border="0"></a></div></td>
257
+ <td class="middleoffonleft"><div align="center"><a href="http://www.amazon.com/gp/yourstore" > Your
258
+ <br /> Store</a></div></td>
259
+ <td class="middleoff"><div align="center"><a href="http://www.amazon.com/exec/obidos/subst/home/all-stores.html" name="two-tabs|he|all-categories">See All 32<br><nobr>Product Categories</nobr></a></div></td>
260
+ <td class="rightoff" width="15"><img src="http://g-images.amazon.com/images/G/01/x-locale/common/transparent-pixel.gif" width="15" height="8" border="0" /></td>
261
+ <td class="tools">
262
+ <nobr>&nbsp;&nbsp
263
+ <a class="" href="http://www.amazon.com/gp/css/homepage.html"> Your Account</a> <span class="navspacer"><span class="light">&#124;</span></span>
264
+ <a class="" href="http://www.amazon.com/gp/cart/view.html"><img src="http://g-images.amazon.com/images/G/01/x-locale/common/icons/topnav-cart.gif" width=19 height=16 alt="Cart" border="0"> Cart</a> <span class="navspacer"><span class="light">&#124;</span></span>
265
+ <a class="" href="http://www.amazon.com/gp/registry/wishlist?type=wishlist">Wish List</a> <span class="navspacer"><span class="light">&#124;</span></span>
266
+ <a class="" href="http://www.amazon.com/exec/obidos/tg/browse/-/508510">Help</a> <span class="navspacer"><span class="light">&#124;</span></span>
267
+ <a id="goldboxPop_1" name="goldboxPop|he|goldboxPopDiv_1" href="http://www.amazon.com/exec/obidos/tg/stores/static/-/goldbox/index"><img src="http://g-images.amazon.com/images/G/01/goldbox/gb27/gb-closed.gif" width=30 height=27 alt="Gold Box" align="middle" border="0"></a> </nobr>
268
+ </td>
269
+ </tr>
270
+ </table>
271
+ </td>
272
+ </tr>
273
+ <tr>
274
+ <td class="secondary" height="62">
275
+ <table cellpadding="0" cellspacing="0" align="center">
276
+ <tr>
277
+ <style type="text/css">
278
+ <!--
279
+ .subnav {
280
+ font-family: Verdana, Arial, Helvetica, sans-serif;
281
+ font-size: 9px;
282
+ line-height: 10px;
283
+ font-weight: bold;
284
+ text-transform: uppercase;
285
+ color: #FFFFFF;
286
+ }
287
+ .currentlink {
288
+ font-family: Verdana, Arial, Helvetica, sans-serif;
289
+ font-size: 9px;
290
+ line-height: 10px;
291
+ font-weight: bold;
292
+ text-transform: uppercase;
293
+ color: #FFCC66;
294
+ text-decoration: none;}
295
+ A.subnav:link {
296
+ text-decoration: none;
297
+ color: #FFFFFF;
298
+ }
299
+ A.subnav:visited { text-decoration: none;
300
+ color: #FFFFFF;
301
+ }
302
+ A.subnav:hover { text-decoration: underline;
303
+ color: #FFFFFF;
304
+ }
305
+ -->
306
+ </style>
307
+ <td align="center" height="28"><a href=http://www.amazon.com/exec/obidos/tg/browse/-/229220 class="">Gift Ideas</a></td>
308
+ <td class="navspacer">&nbsp; | &nbsp;</td>
309
+ <td align="center" height="28"><a href=http://www.amazon.com/exec/obidos/tg/stores/static/-/gateway/international-gateway class="">International</a></td>
310
+ <td class="navspacer">&nbsp; | &nbsp;</td>
311
+ <td align="center" height="28"><a href=http://www.amazon.com/exec/obidos/tg/new-for-you/new-releases/-/main class="">New Releases</a></td>
312
+ <td class="navspacer">&nbsp; | &nbsp;</td>
313
+ <td align="center" height="28"><a href=http://www.amazon.com/exec/obidos/tg/new-for-you/top-sellers/-/main class="">Top Sellers</a></td>
314
+ <td class="navspacer">&nbsp; | &nbsp;</td>
315
+ <td align="center" height="28"><a href=http://www.amazon.com/exec/obidos/tg/browse/-/909656 class="">Today's Deals</a></td>
316
+ <td class="navspacer">&nbsp; | &nbsp;</td>
317
+ <td align="center" height="28"><a href=http://www.amazon.com/exec/obidos/subst/misc/sell-your-stuff.html class="">Sell Your Stuff</a></td>
318
+ </tr>
319
+ </table>
320
+ </td>
321
+ </tr>
322
+ </table>
323
+ <table border="0" width="100%" cellspacing="0" cellpadding="0">
324
+ </table>
325
+ <div id="popdownBaseline"></div>
326
+
327
+ <br>
328
+ <table width=100% cellpadding=0 cellspacing=0 border=0>
329
+ <tr valign=top>
330
+ <td width=174>
331
+ <TABLE border=0 cellspacing=0 cellpadding=0>
332
+ <TR valign=bottom align=center>
333
+ <td>
334
+ <table width="180" border="0" cellspacing="0" cellpadding="0">
335
+ <tr valign="top" bgcolor="#006699">
336
+ <td width="5"><img src="http://g-images.amazon.com/images/G/01/x-locale/common/icons/eyebrow-upper-left-corner.gif" width=5 height=5 border="0"></td>
337
+ <td>
338
+ <table width="99%" border="0" cellspacing="3" cellpadding="0">
339
+ <tr>
340
+ <td align="left" valign="bottom" class="eyebrow">BROWSE</td>
341
+ </tr>
342
+ </table>
343
+ </td>
344
+ <td width="5" align="right"><img src="http://g-images.amazon.com/images/G/01/x-locale/common/icons/eyebrow-upper-right-corner.gif" width=5 height=5 border="0"></td>
345
+ </tr>
346
+ </table>
347
+ </td>
348
+ </TR> <TR valign=top align=center>
349
+ <TD> <TABLE border=0 width= 180 cellpadding=1 cellspacing=0 bgcolor=#708090 ><TR> <TD width=100%><TABLE width=100% border=0 cellpadding=4 cellspacing=0 bgcolor=#708090><TR> <TD bgcolor=#ffffff valign=top width=100%>
350
+ <table width=170 border="0" cellpadding="0" cellspacing="0">
351
+ <tr> <td class=small>
352
+ <a href=/exec/obidos/flex-sign-in/?page=personalization/favorites/favorites-sign-in-secure.html&response=favorites-edit/personalization/favorites/edit-areas.html&pass_through=product-group-id.gateway.gateway&method=GET><img src="http://g-images.amazon.com/images/G/01/x-locale/personalization/add-favorites.gif" width=84 height=16 border=0></a>
353
+ <br><b class=h3color>Featured Stores</b>
354
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/1036592">Apparel &amp; Accessories</a>
355
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=3760911">Beauty</a>
356
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a
357
+ href="/exec/obidos/tg/browse/-/163450">DVD's TV Central</a>
358
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/172282">Electronics</a>
359
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=3370831">Gourmet Food</a>
360
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=3367581">Jewelry & Watches</a>
361
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=1040668">Shoes</a>
362
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/465600">Textbooks</a>
363
+ <br><br><font color=#CC6600><b>New Stores </b></font><br>
364
+ <span class="tiny">In Beta (<a href="/exec/obidos/subst/misc/beta-launch-pop-up.html/?ref=gw_br_hpc" target="AmazonHelp" onclick="amz_js_PopWin('/exec/obidos/subst/misc/beta-launch-pop-up.html/?ref=gw_br_beta','AmazonHelp','width=400,height=400,resizable=yes,scrollbars=yes,toolbar=yes,status=yes');return false;">What's this?</a>)</span>
365
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/15684181">Automotive</a>
366
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=11091801">Musical Instruments</a>
367
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=3760901">Health &amp; Personal Care</a>
368
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=3999141">Yellow Pages</a>
369
+ <br><br><b class=h3color>Books, Music, DVD</b>
370
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/283155">Books</a>
371
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/130">DVD</a>
372
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/599858">Magazine</a> <br><span class=tiny>&nbsp;</span>&nbsp;<a href="/exec/obidos/tg/browse/-/599858">Subscriptions</a>
373
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/5174">Music</a>
374
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/404272">Video</a>
375
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/13993911">Amazon Shorts</a>
376
+ <br><br><b class=h3color>Electronics & Office</b>
377
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/172282">Electronics</a>
378
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/1065836">Audio &amp; Video</a>
379
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/502394">Camera &amp; Photo</a>
380
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/1064954">Office Products</a>
381
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/229534">Software</a>
382
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/468642">Computer &amp;</a><br><span class=tiny>&nbsp;</span>&nbsp;<a href="/exec/obidos/tg/browse/-/468642">Video Games</a>
383
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/541966">Computers</a>
384
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/301185">Cell Phones &amp; Service</a>
385
+ <br><br><b class=h3color>Kids &amp; Baby</b>
386
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/171280">Toys &amp; Games</a>
387
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/540744">Baby</a>
388
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/585496">Imaginarium</a>
389
+ <br><br><b class=h3color>Home &amp; Garden</b>
390
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/1057792">Bed &amp; Bath</a>
391
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/1057794">Furniture &amp; D�cor</a>
392
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/1055398">Home &amp; Garden</a>
393
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/284507">Kitchen &amp; Housewares</a>
394
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/286168">Outdoor Living</a>
395
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/12923371">Pet Supplies</a>
396
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/228013">Tools &amp; Hardware</a>
397
+ <br><br><b class="h3color">Sports &amp; Fitness</b>
398
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=3407731">Exercise &amp; Fitness</a>
399
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=3375251">Sports &amp; Outdoors</a>
400
+ <br><br><b class=h3color>Gifts &amp; Registries</b>
401
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/registry/babyreg">Baby Registry</a>
402
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/225840">Free e-Cards</a>
403
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/product/B00067L6TQ">Gift Certificates</a>
404
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/229220">Gift Store<br></a>
405
+ <span class=tiny><font color=#003399>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/registry/wedding-homepage.html">Wedding Registry<br></a>
406
+ <span class=tiny><font color=#003399>&#149;</font></span>&nbsp;<a href="/exec/obidos/registry/wishlist">Wish List</a>
407
+ <br><br><b class=h3color>Amazon.com<br>Services</b>
408
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/gss">E-mail Subscriptions</a>
409
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/562436">Movie Showtimes</a>
410
+ <span class=tiny><font color="#003399"><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/browse.html?node=3999141">Yellow Pages</a>
411
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/600460">Corporate Accounts</a>
412
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="http://www.amazon.com/gp/pdp">Your Amazon Home</a>
413
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/search-handle-url/ispu=1&field-browse=1161764/">In-Store Pickup</a>
414
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/605012">Travel</a>
415
+ <br><br><b class=h3color>Bargains</b>
416
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="http://s1.amazon.com/exec/varzea/subst/home/home.html">Auctions</a>
417
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/45">Bargain Books</a>
418
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/517808">Outlet</a>
419
+ <span class=tiny><font color=#003399><br>&#149;</font></span>&nbsp;<a href="/exec/obidos/tg/browse/-/603224">Used<br></a>
420
+ <span class=tiny><font color=#003399>&#149;</font></span>&nbsp;<a href="http://s1.amazon.com/exec/varzea/subst/home/fixed.html">zShops</a>
421
+ <br><br><b class=h3color>Featured Partners</b>
422
+ <br>&nbsp;<a href="/exec/obidos/redirect-to-external-url?path=http%3A//clk.atdmt.com/AVE/go/cpblswwa0470000026ave/direct%3Bwi.135%3Bhi.15/01"><img src="http://g-images.amazon.com/images/G/01/hpc/weight-watchers-logo.gif" width=139 height=30 border="0" alt="WeightWatchers"></a>
423
+ <br>&nbsp;<a href="/exec/obidos/redirect-to-external-url?path=http%3A//www.tirerack.com/a.jsp%3Fa%3DFB1%26url%3D/index%5Famazon.jsp"><img src="http://g-images.amazon.com/images/G/01/merchants/logos/tirerack_120x25.gif" width=120 height=25 border="0" alt="tirerack.com"></a>
424
+ <br>&nbsp;<a href="/exec/obidos/redirect-to-external-url?path=http%3A//www.wine.com/promos/amazonwine.asp%3Fan%3Damazon%26s%3Damazon%26cid%3Damazon%5Fgateway%5Ffpbox"><img src="http://g-images.amazon.com/images/G/01/gourmet/winecom_logo_120.gif" width=120 height=30 border="0" alt="wine.com"></a>
425
+ <br>&nbsp;<a href="/exec/obidos/tg/browse/-/540744"><img src="http://g-images.amazon.com/images/G/01/toys/navigation/bru-logo.gif" width=111 height=20 border=0 alt=Babiesrus.com></a>
426
+ <br>&nbsp;<a href="/exec/obidos/tg/browse/-/1064952"><img src="http://g-images.amazon.com/images/G/01/merchants/logos/od-logo-143.gif" width=143 height=18 border=0 alt=Office Depot></a>
427
+ <br>&nbsp;<a href="/exec/obidos/tg/browse/-/700060"><img src="http://g-images.amazon.com/images/G/01/target/target-logo-sm.gif" width=71 height=17 border=0 alt=Target></a>
428
+ <br>&nbsp;<a href="/exec/obidos/tg/browse/-/171280"><img src="http://g-images.amazon.com/images/G/01/toys/navigation/tru-logo.gif" width=102 height=30 border=0 alt=Toysrus.com></a>
429
+ <br />&nbsp;<a href="/exec/obidos/redirect-to-partner?name=shutterfly"><img src="http://g-images.amazon.com/images/G/01/merchants/logos/shutterfly-logo-90x30.gif" width=90 height=30 border=0 alt=Shutterfly></a>
430
+ </td>
431
+ </tr>
432
+ </table>
433
+ </TD> </TR> </TABLE> </TD> </TR> </TABLE> </TD>
434
+ </TR>
435
+ </TABLE> <br clear=left>
436
+ <TABLE border=0 width=180 cellpadding=1 cellspacing=0 bgcolor=#99CC00 align=right><TR> <TD width=100%><TABLE width=100% border=0 cellpadding=4 cellspacing=0 bgcolor=#99CC00><TR> <TD bgcolor=#ffffff valign=top width=100%>
437
+ <img src="http://g-images.amazon.com/images/G/01/associates/make-money/homepage/make-money-tiger-box-header-163x19.gif" width=163 height=19 border=0>
438
+ <br/> <span class=small>
439
+ <ul>
440
+ <li><a href="/exec/obidos/subst/misc/sell-your-stuff.html">Marketplace</a></li>
441
+ <li><a href="http://associates.amazon.com/gp/associates/join">Associates</a></li>
442
+ <li><a href="/exec/obidos/subst/partners/direct/direct-application.html">Advantage</a></li>
443
+ <li><a href="http://www.amazon.com/gp/aws/landing.html">Web Services</a></li>
444
+ <li><a href="/exec/obidos/subst/misc/co-op/small-vendor-info.html">Paid Placements</a></li>
445
+ </ul>
446
+ <img src="http://g-images.amazon.com/images/G/01/marketing/orange-arrow.gif" width=10 height=9 border=0>
447
+ <a href="http://www.amazon.com/gp/browse.html?node=3309511">See all services</a>
448
+ <br/><br/>
449
+ </span>
450
+ </TD> </TR> </TABLE> </TD> </TR> </TABLE> <br clear=all><br>
451
+ <TABLE border=0 width=180 cellpadding=1 cellspacing=0 bgcolor=#708090 align=right><TR> <TD width=100%><TABLE width=100% border=0 cellpadding=4 cellspacing=0 bgcolor=#708090><TR> <TD bgcolor=#ffffff valign=top width=100%>
452
+ <b class=small>Special Features</b>
453
+ <br>
454
+ <ul class=small>
455
+ <li><a href="/exec/obidos/subst/misc/anywhere/anywhere.html">Amazon.com Mobile Access</a>
456
+ <li><a href="/exec/obidos/subst/misc/amazon-credit/marketing-page.html">Amazon Credit Account</a>
457
+ <li><a href="/exec/obidos/tg/feature/-/423495">Early Adopters</a>
458
+ <li><a href="/exec/obidos/tg/browse/-/225840">Free e-Cards</a>
459
+ <li><a href="http://www.amazon.com/gp/pdp">Your Amazon Home</a>
460
+ <li><a href="http://www.amazon.com/gp/product/B00067L6TQ">Gift Certificates</a><br>
461
+ <li><a href="/exec/obidos/tg/browse/-/13786321">Giving at Amazon.com</a><br>
462
+ <li><a href="http://s1.amazon.com/exec/varzea/subst/fx/home.html">Honor System</a><br>
463
+ <li><A href="/exec/obidos/subst/community/community.html">Purchase Circles</a><br>
464
+ <li><a href="http://www.amazon.com/gp/registry/wedding-homepage.html">Wedding Registry</a>
465
+ </ul>
466
+ </TD> </TR> </TABLE> </TD> </TR> </TABLE> <br clear="all"><br>
467
+ <table border="0" cellpadding="1" cellspacing="0" width="180">
468
+ <tbody>
469
+ <tr>
470
+ <td><table bgcolor="#FFFFFF" border="0" cellpadding="4" cellspacing="0">
471
+ <tbody>
472
+ <tr>
473
+ <td valign="top" bgcolor="#ffffff"><b class="small">Amazon.com Visa Card</b><a href="/exec/obidos/tg/visa/marketing/-/p/P/NO">
474
+ <img src="http://g-images.amazon.com/images/G/01/marketing/visa/2005/visa-card_tiny.gif" width=75 height=52 alt="Amazon.com Platinum Visa Credit card. Apply for the credit card and save." width="60" height="42" hspace="5" vspace="2" border="0" align="left">
475
+ </a><div class="small"><a href="/exec/obidos/tg/visa/marketing/-/p/P/NO/ref=b1_login_pgraph_home">Apply for Amazon.com Platinum Visa credit card and save</a></div></td>
476
+ </tr>
477
+ </tbody>
478
+ </table></td>
479
+ </tr>
480
+ </tbody>
481
+ </table>
482
+ <br>
483
+ <br clear=all>
484
+ </td>
485
+ <td width=10>&nbsp;</td>
486
+ <td>
487
+ <font face=verdana,arial,helvetica size=-1><font color=#CC6600><b>Hello.</b></font>
488
+ Sign in to get <a href=/exec/obidos/flex-sign-in?opt=a&page=recs/sign-in-secure.html&response=tg/recs/recs-post-login-dispatch/-/recs/pd_rw&#95;gw&#95;ur>personalized recommendations</a>. New customer? <a href=/exec/obidos/flex-sign-in?opt=oa&page=recs/sign-in-secure.html&response=tg/recs/recs-post-login-dispatch/-/recs>Start here</a>.
489
+ </font>
490
+ <br><br>
491
+ <div class="small">
492
+ <b class="h1">2006 Spring Preview: What to Read Next</b><br clear=left>
493
+ <span class="unapi-uri" title="urn:isbn:0553804790">
494
+ <a href="http://www.amazon.com/exec/obidos/ASIN/0553804790">
495
+ <img src="http://images.amazon.com/images/P/0553804790.01.37TRZZZZ.jpg" width=81 height=121 align=left valign=top hspace=5 vspace=3 border=0 border=0>
496
+ </a>
497
+ </span>
498
+ <span class="unapi-uri" title="urn:isbn:030723827X">
499
+ <a href="http://www.amazon.com/exec/obidos/ASIN/030723827X">
500
+ <img src="http://images.amazon.com/images/P/030723827X.01.37TRZZZZ.jpg" width=94 height=121 align=left valign=top hspace=5 vspace=3 border=0 border=0>
501
+ </a>
502
+ </span>
503
+ <span class="unapi-uri" title="urn:isbn:0307236579">
504
+ <a href="http://www.amazon.com/exec/obidos/ASIN/0307236579">
505
+ <img src="http://images.amazon.com/images/P/0307236579.01.35TRZZZZ.jpg" width=93 height=121 align=left valign=top hspace=5 vspace=3 border=0 border=0>
506
+ </a>
507
+ </span>
508
+ See what's coming up this spring in our 2006 sneak preview, including a thriller from <a href="http://www.amazon.com/exec/obidos/ASIN/0553804790">Dean Koontz</a>, a new cookbook from <a href="http://www.amazon.com/exec/obidos/ASIN/030723827X">Giada De Laurentiis</a>, and a <a href="http://www.amazon.com/exec/obidos/ASIN/0307236579">little knitting book</a> that will get you ready for summer. <br clear=all>
509
+ <ul>
510
+ <li>Top Releases: <a href="http://www.amazon.com/gp/richpub/listmania/fullview/R3PET96BPF14S4">Fiction</a> | <a href="http://www.amazon.com/gp/richpub/listmania/fullview/R1DTUMBWJP7PN1">Nonfiction</a>
511
+ <li><a href="http://www.amazon.com/gp/richpub/listmania/fullview/R1S1UJ1ZVWH8BL">Quirky Books We Love</a>
512
+ <li>Summer Preview: <a href="http://www.amazon.com/gp/richpub/listmania/fullview/R575K3URGBDSY">Fiction</a> | <a href="http://www.amazon.com/gp/richpub/listmania/fullview/R1PM16QTGA21LR">Nonfiction</a>
513
+ </ul>
514
+ </div>
515
+ <br clear=all><br>
516
+ <div class="small">
517
+ <b class="h1">Everything 70% to 90% Off</b><br clear=left>
518
+ <a href="http://www.amazon.com/exec/obidos/tg/feature/-/601626"><img src="http://g-images.amazon.com/images/G/01/marketing/generic-promotion/2003/60/upto-90per-off_60.gif" width=60 height=60 border=0 valign=top align=left></a>Why pay more? If you want to pay the lowest price, come shop the Outlet's lists of greatest savings. You'll save at least 70% and as much as 90%.
519
+ <br clear=all>
520
+ <ul>
521
+ <li>
522
+ <li>
523
+ <li>
524
+ </ul>
525
+ <p>
526
+ <img src="http://g-images.amazon.com/images/G/01/x-locale/common/orange-arrow.gif" width=10 height=9 border=0>&nbsp;
527
+ <font face=verdana,arial,helvetica size=-1> <a href="http://www.amazon.com/exec/obidos/tg/browse/-/517808">Shop all the Outlet deals</a> </font>
528
+ </div>
529
+ <br clear=all><br>
530
+ <div class="small">
531
+ <b class="h1">DVD Spring 2006 Preview</b><br clear=left>
532
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000E6EK3S">
533
+ <img src="http://images.amazon.com/images/P/B000E6EK3S.01.36TRZZZZ.jpg" width=103 height=121 align=left valign=top hspace=5 vspace=3 border=0 border=0>
534
+ </a><a href="http://www.amazon.com/exec/obidos/ASIN/B000E8M0WO">
535
+ <img src="http://images.amazon.com/images/P/B000E8M0WO.01.34TRZZZZ.jpg" width=85 height=121 align=left valign=top hspace=5 vspace=3 border=0 border=0>
536
+ </a>Here's a sneak peek at some top releases in March and April 2006,
537
+ <br clear=all>
538
+ <ul>
539
+ <li> <a href="http://www.amazon.com/exec/obidos/tg/listmania/list-browse/-/2F10WAKW8UQ2P">Top releases in March &amp; April</a>
540
+ <li> <a href="http://www.amazon.com/exec/obidos/tg/listmania/list-browse/-/2MLERHJ9UZNJ4">Top specialty titles</a>
541
+ <li> <a href="http://www.amazon.com/exec/obidos/tg/listmania/list-browse/-/3SGRXPEW5UTF2">Fully loaded DVDs</a>
542
+ <li> <a href="http://www.amazon.com/exec/obidos/tg/guides/guide-display/-/33ANNYKYRQSGN">TV DVDs that are coming soon</a>
543
+ </ul>
544
+ </div>
545
+ <br clear=all><br>
546
+ <div class="small">
547
+ <font color=#CC6600><b class="sans">Sony LCD TVs: Quality at Any Size</b></font><br clear="all" />
548
+ <table border="0" cellpadding="8" cellspacing="0" width="100%">
549
+ <tr>
550
+ <td width=33% valign="bottom" align=left class="small">
551
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000A2K3XW"><img src="http://g-images.amazon.com/images/G/01/electronics/promos/Sony-KDFE42A10-110.jpg" width=110 height=80 align=left border=0></a>
552
+ </td>
553
+ <td width=33% valign="bottom" align=left class="small">
554
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000A2K40Y"><img src="http://g-images.amazon.com/images/G/01/electronics/promos/Sony-KLVS32A10-110a.jpg" width=110 height=90 align=left border=0></a>
555
+ </td>
556
+ <td width=33% valign="bottom" align=left class="small">
557
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000A2K3Y6"><img src="http://g-images.amazon.com/images/G/01/electronics/promos/Sony-KDFE50A10-110.jpg" width=110 height=80 align=left border=0></a>
558
+ </td>
559
+ </tr>
560
+ <tr>
561
+ <td valign="top">
562
+ <b class="small"><a href="http://www.amazon.com/exec/obidos/ASIN/B000A2K3XW">42-Inch Rear Projection</a></b><br>
563
+ </td>
564
+ <td valign="top">
565
+ <b class="small"><a href="http://www.amazon.com/exec/obidos/ASIN/B000A2K40Y">32-Inch Flat Panel</a></b><br>
566
+ </td>
567
+ <td valign="top">
568
+ <b class="small"><a href="http://www.amazon.com/exec/obidos/ASIN/B000A2K3Y6">50-Inch Rear Projection</a></b><br>
569
+ </td>
570
+ </tr> </table>
571
+ <br>
572
+ </div>
573
+ <div class="small">
574
+ <b class="h1">Free Shipping on Select Plasma TVs</b><br clear=left>
575
+ <a href="http://www.amazon.com/exec/obidos/tg/feature/-/602681"><img src="http://g-images.amazon.com/images/G/01/electronics/promos/Samsung-PPM42M5S-90.jpg" width=90 height=73 border=0 valign=top align=left>
576
+ <br clear=all><br>
577
+ <div class="small">
578
+ <font color=#CC6600><b class="sans">Organize and Accessorize</b></font><br clear="all" />
579
+ <table border="0" cellpadding="8" cellspacing="0" width="100%">
580
+ <tr>
581
+ <td width=33% valign="bottom" align=left class="small">
582
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B0006I9QMO"><img src="http://g-images.amazon.com/images/G/01/apparel/promos/ipod-90.jpg" width=90 height=90 align=left border=0></a>
583
+ </td>
584
+ <td width=33% valign="bottom" align=left class="small">
585
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000AE3QLQ"><img src="http://g-images.amazon.com/images/G/01/apparel/promos/cell-phone-holder-90.jpg" width=90 height=90 align=left border=0></a>
586
+ </td>
587
+ <td width=33% valign="bottom" align=left class="small">
588
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000BPSFVU"><img src="http://g-images.amazon.com/images/G/01/apparel/promos/pda-case-90.jpg" width=90 height=90 align=left border=0></a>
589
+ </td>
590
+ </tr>
591
+ <tr>
592
+ <td valign="top">
593
+ <div style="margin-top: 6px; margin-left: 1px;" class="tiny">
594
+ <img src="http://g-images.amazon.com/images/G/01/icons/orange-arrow.gif" width=5 height=9>
595
+ <a href="http://www.amazon.com/gp/search.html?node=1036700&keywords=iPod+Case">See All iPod Cases</a>
596
+ </div>
597
+ </td>
598
+ <td valign="top">
599
+ <div style="margin-top: 6px; margin-left: 1px;" class="tiny">
600
+ <img src="http://g-images.amazon.com/images/G/01/icons/orange-arrow.gif" width=5 height=9>
601
+ <a href="http://www.amazon.com/exec/obidos/tg/browse/-/15743531">See All Cell Phone Holders</a>
602
+ </div>
603
+ </td>
604
+ <td valign="top">
605
+ <div style="margin-top: 6px; margin-left: 1px;" class="tiny">
606
+ <img src="http://g-images.amazon.com/images/G/01/icons/orange-arrow.gif" width=5 height=9>
607
+ <a href="http://www.amazon.com/gp/search.html?node=1036700&keywords=PDA+Case">See All PDA Cases</a>
608
+ </div>
609
+ </td>
610
+ </tr> <tr>
611
+ <td width=33% valign="bottom" align=left class="small">
612
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B00013ZJVQ"><img src="http://g-images.amazon.com/images/G/01/apparel/promos/messenger-bag-90.jpg" width=90 height=90 align=left border=0></a>
613
+ </td>
614
+ <td width=33% valign="bottom" align=left class="small">
615
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000B6JCQQ"><img src="http://g-images.amazon.com/images/G/01/apparel/promos/handbag-90.jpg" width=90 height=90 align=left border=0></a>
616
+ </td>
617
+ <td width=33% valign="bottom" align=left class="small">
618
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B0009PI6BQ"><img src="http://g-images.amazon.com/images/G/01/apparel/promos/sling-90.jpg" width=90 height=90 align=left border=0></a>
619
+ </td>
620
+ </tr>
621
+ <tr>
622
+ <td valign="top">
623
+ <div style="margin-top: 6px; margin-left: 1px;" class="tiny">
624
+ <img src="http://g-images.amazon.com/images/G/01/icons/orange-arrow.gif" width=5 height=9>
625
+ <a href="http://www.amazon.com/exec/obidos/tg/browse/-/15743231">See All Messenger Bags</a>
626
+ </div>
627
+ </td>
628
+ <td valign="top">
629
+ <div style="margin-top: 6px; margin-left: 1px;" class="tiny">
630
+ <img src="http://g-images.amazon.com/images/G/01/icons/orange-arrow.gif" width=5 height=9>
631
+ <a href="http://www.amazon.com/exec/obidos/tg/browse/-/15743631">See All Handbags</a>
632
+ </div>
633
+ </td>
634
+ <td valign="top">
635
+ <div style="margin-top: 6px; margin-left: 1px;" class="tiny">
636
+ <img src="http://g-images.amazon.com/images/G/01/icons/orange-arrow.gif" width=5 height=9>
637
+ <a href="http://www.amazon.com/exec/obidos/tg/browse/-/15743191">See All Backpacks</a>
638
+ </div>
639
+ </td>
640
+ </tr> </table>
641
+ <br>
642
+ </div>
643
+ <div class="small">
644
+ <font color=#CC6600><b class="sans">Amazon.com Presents The Oscars�</b></font><br clear="all" />
645
+ <table border="0" cellpadding="8" cellspacing="0" width="100%">
646
+ <tr>
647
+ <td width=33% valign="bottom" align=left class="small">
648
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000A3XY5A"> <img src="http://images.amazon.com/images/P/B000A3XY5A.01.40TRZZZZ.jpg" width=83 height=121 align=left valign=top hspace=5 vspace=3 border=0 border=0>
649
+ </a>
650
+ </td>
651
+ <td width=33% valign="bottom" align=left class="small">
652
+ <a href="http://www.amazon.com/gp/product/B000BXKEXO/103-2091352-3093440?_encoding=UTF8&m=A3ITI9OL2RKBEO&v=glance&n=284507"><img src="http://images.amazon.com/images/P/B000BXKEXO.01-A2X3FMBNSRPS6U._PE20_SCTZZZZZZZ_.jpg" align=left border=0></a>
653
+ </td>
654
+ <td width=33% valign="bottom" align=left class="small">
655
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000BEZQ18"> <img src="http://images.amazon.com/images/P/B000BEZQ18.01.37TRZZZZ.jpg" width=121 height=119 align=left valign=top hspace=5 vspace=3 border=0 border=0>
656
+ </a>
657
+ </td>
658
+ </tr>
659
+ <tr>
660
+ <td valign="top">
661
+ <b class="small"><a href="http://www.amazon.com/exec/obidos/tg/browse/-/549390">DVD's Oscar Central</a></b><br>
662
+ <span class="tiny">&#149;
663
+ </td>
664
+ <td valign="top">
665
+ <b class="small"><a href="http://www.amazon.com/gp/browse.html/103-2091352-3093440?_encoding=UTF8&node=3489231">Movie Posters</a></b><br>
666
+ <span class="tiny">&#149;
667
+ </td>
668
+ <td valign="top">
669
+ <b class="small"><a href="http://www.amazon.com/exec/obidos/tg/guides/guide-display/-/H4CWQADNGYVA/">Oscar Nominees in Music</a></b><br>
670
+ <span class="tiny">&#149;
671
+ </td>
672
+ </tr> </table>
673
+ <br>
674
+ </div>
675
+ <div class="small">
676
+ <font color=#CC6600><b class="sans">Sweet Deals on Diamonds, Pearls, Gemstones, and More</b></font><br clear="all" />
677
+ <table border="0" cellpadding="8" cellspacing="0" width="100%">
678
+ <tr>
679
+ <td width=33% valign="bottom" align=left class="small">
680
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000AXZE8K"><img src="http://g-images.amazon.com/images/G/01/jewelry/100/diamonds.jpg" width=100 height=100 align=left border=0></a>
681
+ </td>
682
+ <td width=33% valign="bottom" align=left class="small">
683
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B000AXVNI0"><img src="http://g-images.amazon.com/images/G/01/jewelry/100/gemstones-amazon.com.jpg" width=100 height=100 align=left border=0></a>
684
+ </td>
685
+ <td width=33% valign="bottom" align=left class="small">
686
+ <a href="http://www.amazon.com/exec/obidos/tg/browse/-/16014541"><img src="http://g-images.amazon.com/images/G/01/jewelry/100/w-and-e.jpg" width=100 height=100 align=left border=0></a>
687
+ </td>
688
+ </tr>
689
+ <tr>
690
+ <td valign="top">
691
+ <b class="small"><a href="http://www.amazon.com/exec/obidos/tg/browse/-/15959421">Diamonds</a></b><br>
692
+ <span class="tiny">&#149;
693
+ </td>
694
+ <td valign="top">
695
+ <b class="small"><a href="http://www.amazon.com/exec/obidos/tg/browse/-/16004771">Gemstones</a></b><br>
696
+ <span class="tiny">&#149;
697
+ </td>
698
+ <td valign="top">
699
+ <b class="small"><a href="http://www.amazon.com/exec/obidos/tg/browse/-/16014541">Wedding &amp; Engagement</a></b><br>
700
+ <span class="tiny">&#149;
701
+ </td>
702
+ </tr> <tr>
703
+ <td width=33% valign="bottom" align=left class="small">
704
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B0000SX0EU"><img src="http://g-images.amazon.com/images/G/01/jewelry/100/gold.jpg" width=100 height=100 align=left border=0></a>
705
+ </td>
706
+ <td width=33% valign="bottom" align=left class="small">
707
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B0000V8I5S"><img src="http://g-images.amazon.com/images/G/01/jewelry/100/silver.jpg" width=100 height=100 align=left border=0></a>
708
+ </td>
709
+ <td width=33% valign="bottom" align=left class="small">
710
+ <a href="http://www.amazon.com/exec/obidos/ASIN/B00081NCGA"><img src="http://g-images.amazon.com/images/G/01/jewelry/100/B00081NCGA-100.jpg" width=100 height=100 align=left border=0></a>
711
+ </td>
712
+ </tr>
713
+ <tr>
714
+ <td valign="top">
715
+ <b class="small"><a href="http://www.amazon.com/gp/browse.html/?node=3880591&keywords=gold">Gold</a></b><br>
716
+ <span class="tiny">&#149;
717
+ </td>
718
+ <td valign="top">
719
+ <b class="small"><a href="http://www.amazon.com/gp/browse.html/?node=3880591&keywords=silver">Silver</a></b><br>
720
+ <span class="tiny">&#149;
721
+ </td>
722
+ <td valign="top">
723
+ <b class="small"><a href="http://www.amazon.com/gp/browse.html/?node=3880591&pct-off=50-&rank=-launch-date&x=4&y=15">Save 50% or More</a></b><br>
724
+ <span class="tiny">&#149;
725
+ </td>
726
+ </tr> </table>
727
+ <br>
728
+ </div>
729
+ </td>
730
+ <td width=10>&nbsp;</td>
731
+ <td width=174>
732
+ <table width=100% cellpadding=3 cellspacing=0 border=0>
733
+ <tr>
734
+ <td>
735
+ <table border=0 width=180 cellpadding=1 cellspacing=0 bgcolor=#708090 ><tr><td><table width=100% border=0 cellpadding=4 cellspacing=0 bgcolor=#708090><tr><td bgcolor=#ffffff valign=top>
736
+ <div class="small">
737
+ <b class="h3color"><a href="http://www.amazon.com/exec/obidos/ASIN/B000E6EK3S"><i>Harry Potter and the Goblet of Fire</i>&#8482;</a></b><br clear=left>
738
+ <font face=verdana,arial,helvetica size=-1> <a href="http://www.amazon.com/exec/obidos/ASIN/B000E6EK3S">
739
+ <img src="http://images.amazon.com/images/P/B000E6EK3S.01.THUMBZZZ.jpg" width=64 height=75 align=left valign=top hspace=5 vspace=3 border=0 border=0>
740
+ </a>Save 29% when you pre-order <a href="http://www.amazon.com/exec/obidos/ASIN/B000E6EK3S"><i>Harry Potter and the Goblet of Fire</i></a> on DVD, or pre-order all four films with the <a href="http://www.amazon.com/exec/obidos/ASIN/B000E6UZZK"><i>Harry Potter: Years 1-4</i></a> collection.</font>
741
+ </div>
742
+ </td></tr></table></td></tr></table>
743
+ <br clear=all>
744
+ <table border=0 width=180 cellpadding=1 cellspacing=0 bgcolor=#708090 ><tr><td><table width=100% border=0 cellpadding=4 cellspacing=0 bgcolor=#708090><tr><td bgcolor=#ffffff valign=top>
745
+ <div class="small">
746
+ <b class="h3color"><a href="http://www.amazon.com/exec/obidos/ASIN/B000E1NXJ0"><i>Good Night, and Good Luck</i></a></b><br clear=left>
747
+ <font face=verdana,arial,helvetica size=-1> <a href="http://www.amazon.com/exec/obidos/ASIN/B000E1NXJ0">
748
+ <img src="http://images.amazon.com/images/P/B000E1NXJ0.01.THUMBZZZ.jpg" width=67 height=75 align=left valign=top hspace=5 vspace=3 border=0 border=0>
749
+ </a>Save 38% when you pre-order George Clooney's <a href="http://www.amazon.com/exec/obidos/ASIN/B000E1NXJ0"><i>Good Night, and Good Luck</i></a>, which was nominated for six Oscars�.</font>
750
+ </div>
751
+ </td></tr></table></td></tr></table>
752
+ <br clear=all>
753
+ <table border=0 width=180 cellpadding=1 cellspacing=0 bgcolor=#708090 ><tr><td><table width=100% border=0 cellpadding=4 cellspacing=0 bgcolor=#708090><tr><td bgcolor=#ffffff valign=top>
754
+ <div class="small">
755
+ <b class="h3color"><a href="http://www.amazon.com/exec/obidos/tg/feature/-/602770">Canon PowerShot Price Drops</a></b><br clear=left>
756
+ <font face=verdana,arial,helvetica size=-1><a href="http://www.amazon.com/exec/obidos/tg/feature/-/602770">
757
+ <img src="http://images.amazon.com/images/P/B000AYGDIO.01.THUMBZZZ.jpg" width=75 height=75 align=left valign=top hspace=5 vspace=3 border=0 border=0>
758
+ </a>Enjoy newly lowered prices on some of Canon's most popular <a href="http://www.amazon.com/exec/obidos/tg/feature/-/602770">PowerShot digital cameras</a>. <a href="http://www.amazon.com/exec/obidos/tg/feature/-/602770">Shop now</a>!</font>
759
+ </div>
760
+ </td></tr></table></td></tr></table>
761
+ <br clear=all>
762
+ <table border=0 width=180 cellpadding=1 cellspacing=0 bgcolor=#708090 ><tr><td><table width=100% border=0 cellpadding=4 cellspacing=0 bgcolor=#708090><tr><td bgcolor=#ffffff valign=top>
763
+ <div class="small">
764
+ <b class="h3color"><a href="http://www.amazon.com/exec/obidos/ASIN/B000COCUK2">Handy and Bright Sticky Light</a></b><br clear=left>
765
+ <font face=verdana,arial,helvetica size=-1> <a href="http://www.amazon.com/exec/obidos/ASIN/B000COCUK2">
766
+ </div>
767
+ </td></tr></table></td></tr></table>
768
+ <br clear=all>
769
+ <table border=0 width=180 cellpadding=1 cellspacing=0 bgcolor=#708090 ><tr><td><table width=100% border=0 cellpadding=4 cellspacing=0 bgcolor=#708090><tr><td bgcolor=#ffffff valign=top>
770
+ <div class="small">
771
+ <b class="h3color"><a href="http://www.amazon.com/exec/obidos/tg/browse/-/13889001">Free Shipping</a></b><br clear=left>
772
+ <font face=verdana,arial,helvetica size=-1><a href="http://www.amazon.com/exec/obidos/tg/browse/-/13889001"><img src="http://g-images.amazon.com/images/G/01/beauty/gwp/philosophy_grace_75.jpg" width=35 height=75 border=0 valign=top align=left></a>Enjoy free shipping on select purchases from <a href="http://www.amazon.com/exec/obidos/tg/browse/-/12880061">philosophy</a>, <a href="http://www.amazon.com/exec/obidos/tg/browse/-/11068891">Sephora</a>, <a href="http://www.amazon.com/exec/obidos/tg/browse/-/11055101">Avon</a>, and 20 more of your favorites at <a href="http://www.amazon.com/exec/obidos/tg/browse/-/13889001">Amazon.com Beauty</a>.</font>
773
+ </div>
774
+ </td></tr></table></td></tr></table>
775
+ <br clear=all>
776
+ </td>
777
+ </tr>
778
+ </table>
779
+ </td>
780
+ </tr>
781
+ </table>
782
+
783
+ <br clear="all">
784
+ <center>
785
+ <form method="get" action="/exec/obidos/search-handle-url/">
786
+ <table border="0" width="100%" cellpadding="1" cellspacing="0" bgcolor="#999999">
787
+ <tr><td>
788
+ <table border=0 width=100% bgcolor=#ffffff cellspacing=0 cellpadding=5 class="small">
789
+ <tr valign=top><td width=33% class="small">
790
+ <b>Where's My Stuff?</b><br>
791
+ &#149; Track your <a href=https://www.amazon.com/gp/css/history/view.html/?orderFilter=days-30>recent orders</a>.<br>
792
+ &#149; View or change your orders in <a href="/gp/css/homepage.html">Your Account</a>.
793
+ <script language="JavaScript1.1" type="text/javascript">
794
+ <!--
795
+ var agt=navigator.userAgent.toLowerCase();
796
+ var is_major = parseInt(navigator.appVersion);
797
+ var is_nav = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
798
+ && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
799
+ && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
800
+ var is_gecko = (agt.indexOf('gecko') != -1);
801
+ var is_ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
802
+ var is_aol = (agt.indexOf("aol") != -1);
803
+ var is_opera = (agt.indexOf("opera") != -1);
804
+ var is_win = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
805
+ //-->
806
+ </script>
807
+ <script language="JavaScript1.1" type="text/javascript">
808
+ <script language="JavaScript1.1" type="text/javascript">
809
+ <!--
810
+ //-->
811
+ </script>
812
+ </td>
813
+ <td width=33% class="small">
814
+ <b>Shipping &amp; Returns</b><br>
815
+ &#149; See our <a href="/exec/obidos/tg/browse/-/468520">shipping rates &amp; policies</a>.<br>
816
+ &#149; <a href="/exec/obidos/subst/help/self-service-returns.html">Return</a> an item (here's our <a href="/exec/obidos/tg/browse/-/468532/">Returns Policy</a>).
817
+ </td>
818
+ <td width=33% class="small">
819
+ <b>Need Help?</b><br>
820
+ <script language="JavaScript1.1" type="text/javascript">
821
+ <!--
822
+ displayLink('&#149; New customer? <a href=javascript:launch(\'/exec/obidos/subst/help/demo-new-customer/display-demo.html/\',788,444)>Click here</a> to learn about searching, browsing, and shopping at Amazon.com.<br>');
823
+ //-->
824
+ </script>
825
+ &#149; Forgot your password? <a href="/exec/obidos/self-service-forgot-password-get-email">Click here</a>.
826
+ <br>
827
+ &#149; <a href="/exec/obidos/subst/gifts/gift-certificates/gc-redeeming.html">Redeem</a> or <a href="http://www.amazon.com/gp/product/B00067L6TQ">buy</a> a gift certificate.<br>
828
+ &#149; <a href="/exec/obidos/tg/browse/-/508510">Visit our Help department</a>. <br>
829
+ </td></tr>
830
+ </table>
831
+ </td></tr>
832
+ <tr><td>
833
+ <table border=0 width=100% bgcolor=#FFCC66 cellspacing=0 cellpadding=5>
834
+ <tr><td align=center class="small">
835
+ <b>Search&nbsp;</b>
836
+ <select name=url>
837
+ <option value="index=blended" selected>All Products
838
+ <option value="index=stripbooks:relevance-above">Books
839
+ <option value="index=music">Popular Music
840
+ <option value="index=music-dd">Music Downloads
841
+ <option value="index=classical">Classical Music
842
+ <option value="index=dvd">DVD
843
+ <option value="index=vhs">VHS
844
+ <option value="index=apparel-index&platform=gurupa">Apparel
845
+ <option value="index=local-index&platform=gurupa">Yellow Pages</option>
846
+ <option value="index=theatrical">Movie Showtimes
847
+ <option value="index=toys">Toys
848
+ <option value="index=baby">Baby
849
+ <option value="index=pc-hardware">Computers
850
+ <option value="index=videogames">Video Games
851
+ <option value="index=electronics">Electronics
852
+ <option value="index=photo">Camera &amp; Photo
853
+ <option value="index=software">Software
854
+ <option value="index=tools">Tools &amp; Hardware
855
+ <option value="index=office-products">Office Products
856
+ <option value="index=magazines">Magazines
857
+ <option value="index=sporting-index&platform=gurupa">Sports &amp; Outdoors
858
+ <option value="index=garden">Outdoor Living
859
+ <option value="index=kitchen">Kitchen
860
+ <option value="index=jewelry-index&platform=gurupa">Jewelry &amp; Watches
861
+ <option value="index=beauty-index&platform=gurupa">Beauty
862
+ <option value="index=gourmet-index&platform=gurupa">Gourmet Food
863
+ <option value="index=mi-index&platform=gurupa">Musical Instruments
864
+ <option value="index=hpc-index&platform=gurupa">Health/Personal Care
865
+ <option value="index=kitchen&field-browse=12923371&store-name=kitchen&search-type=ss">Pet Supplies
866
+ <option value="index=books&field-browse=27&store-name=travel">Travel Books
867
+ <option value="index=wireless-phones">Cell Phones &amp; Service
868
+ <option value="index=outlet">Outlet
869
+ <option value="index=auction-redirect">Auctions
870
+ <option value="index=fixed-price-redirect">zShops
871
+ <option value="index=misc">Everything Else
872
+ <option value="index=automotive-index&platform=gurupa">Automotive</option>
873
+ </select>
874
+ <b>&nbsp;&nbsp;for&nbsp;&nbsp;</b>
875
+ <input type="text" name="field-keywords" size="15">&nbsp;&nbsp;
876
+ <input type=image name="Go" value="Go!" border=0 alt="Go!" src=http://g-images.amazon.com/images/G/01/v9/search-browse/go-button-gateway.gif width=21 height=21 border=0 align=absmiddle >
877
+ </td></tr></table>
878
+ </td></tr>
879
+ </table>
880
+ </form>
881
+ <div align="right">
882
+ <a href="#top" class="small">Top of Page</a>
883
+ </div>
884
+ <center>
885
+ <p>
886
+ <a href=/exec/obidos/subst/home/all-stores.html>Directory of All Stores</a><p>
887
+ Our International Sites:
888
+ <a href="/exec/obidos/redirect-to-external-url?path=http%3A//www.amazon.ca/exec/obidos/redirect-home%3Ftag%3Dis%5Frd%5Fca%5F1%26site%3Damazon">Canada</a>
889
+ &nbsp;&nbsp;|&nbsp;&nbsp;
890
+ <a href="/exec/obidos/redirect-to-external-url?path=http%3A//www.amazon.co.uk/exec/obidos/redirect-home%3Ftag%3Dintl-usgt-ukhome-21%26site%3Damazon">United Kingdom</a>
891
+ &nbsp;&nbsp;|&nbsp;&nbsp;
892
+ <a href="/exec/obidos/redirect-to-external-url?path=http%3A//www.amazon.de/exec/obidos/redirect-home%3Ftag%3Dintl-usgt-dehome-21%26site%3Dhome">Germany</a>
893
+ &nbsp;&nbsp;|&nbsp;&nbsp;
894
+ <a href="/exec/obidos/redirect-to-external-url?path=http%3A//www.amazon.co.jp/exec/obidos/redirect-home%3Ftag%3Dintl-usgatew-jphome-22%26site%3Damazon">Japan</a>
895
+ &nbsp;&nbsp|&nbsp;&nbsp;
896
+ <a href="/exec/obidos/redirect-to-external-url?path=http%3A//www.amazon.fr/exec/obidos/redirect-home%3Fsite%3Damazon%26tag%3Dusfr-gatew-footer-21">France</a>
897
+ &nbsp;&nbsp|&nbsp;&nbsp;
898
+ <a href="/exec/obidos/redirect-to-external-url?path=http%3A//www.joyo.com/%3Fsource%3Damazon-usgatew">China</a>
899
+ <p>
900
+ <a href=/exec/obidos/tg/browse/-/508510>Help</a>&nbsp;&nbsp;|&nbsp;&nbsp;
901
+ <a href=http://www.amazon.com/gp/cart/view.html>Shopping Cart</a>&nbsp;&nbsp;|&nbsp;&nbsp;
902
+ <a href=/gp/css/homepage.html>Your Account</a>&nbsp;&nbsp;|&nbsp;&nbsp;
903
+ <a href="http://www.amazon.com/gp/browse.html?node=3309511">Sell Items</a>&nbsp;&nbsp;|&nbsp;&nbsp;
904
+ <a href="/exec/obidos/flex-sign-in?opt=a&page=ordering/one-click-address-sign-in-secure.html&response=one-click-main&method=GET&return-url=one-click-main">1-Click Settings</a>
905
+ <p>
906
+ <a href="/exec/obidos/redirect-to-external-url/?path=http%3A//phx.corporate-ir.net/phoenix.zhtml%3Fc%3D97664%26p%3Dirol-irhome">Investor Relations</a>&nbsp;&nbsp;|&nbsp;&nbsp;
907
+ <a href="/exec/obidos/redirect-to-external-url/?path=http%3A//phx.corporate-ir.net/phoenix.zhtml%3Fc%3D176060%26p%3Dirol-mediaHome">Press Room</a>&nbsp;&nbsp;|&nbsp;&nbsp;
908
+ <a href="http://www.amazon.com/gp/browse.html/?node=14201851">Careers</a>&nbsp;&nbsp;|&nbsp;&nbsp;
909
+ <a href="http://www.amazon.com/gp/browse.html?node=3435371">Join Associates</a>&nbsp;&nbsp;|&nbsp;&nbsp;
910
+ <a href=/exec/obidos/subst/partners/direct/direct-application.html>Join Advantage</a>&nbsp;&nbsp;|&nbsp;&nbsp;
911
+ <a href="http://s1.amazon.com/exec/varzea/subst/fx/home.html">Join Honor System</a>
912
+ </center>
913
+ <center>
914
+ <p>
915
+ <div class="tiny" align=center>
916
+ <A HREF="/exec/obidos/subst/misc/policy/conditions-of-use.html/">Conditions of Use</A> | <A HREF="/exec/obidos/tg/browse/-/468496/">Privacy Notice</A> &copy; 1995-2005, Amazon.com, Inc. or its affiliates
917
+ </div>
918
+ </center>
919
+ <!-- whfhFnLbv+BB4dy8gBERhU/mSB6moMvPZM9r -->
920
+ <script language="Javascript1.1" type="text/javascript">
921
+ <!--
922
+ top.focus();
923
+ //-->
924
+ </script>
925
+ </body>
926
+ </html>