wapi 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3536abdf0424addcfa3ab271c6ba7d4fa2dbfbaa
4
+ data.tar.gz: 04864e25377ab1b2644a7bd6147792b1f65c237c
5
+ SHA512:
6
+ metadata.gz: 8f7fe1bdd23f32bc4734fb067fe5e98d65094cda21ba08868dfa3bd93fd3b8d26cb9892b4ade22d373fafafffe0e038ee3eaf8488df7cb2ef87095dcd066f363
7
+ data.tar.gz: 01277265c2d7d4bb08016a1e7faa890b4c2f679ac65508011b89a0c5f4ed910b723fb4ad9f44798e5ea965b044439fed525df4dee2a052c44fdc2c32a996f089
@@ -0,0 +1,27 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Wapi'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+
18
+ Bundler::GemHelper.install_tasks
19
+
20
+ require 'rspec/core'
21
+ require 'rspec/core/rake_task'
22
+
23
+ desc "Run all specs in spec directory (excluding plugin specs)"
24
+ RSpec::Core::RakeTask.new(:spec)
25
+
26
+
27
+ task default: :spec
@@ -0,0 +1,28 @@
1
+ require File.expand_path('../wapi/version', __FILE__)
2
+ require File.expand_path('../wapi/parser', __FILE__)
3
+
4
+ require 'nokogiri'
5
+ require 'open-uri'
6
+
7
+ module Wapi
8
+ class Report
9
+ attr_reader :html
10
+
11
+ WAVES_URL = 'http://waves.terra.com.br/surf/ondas'
12
+
13
+ def initialize(beach, url=WAVES_URL)
14
+ beach_url = "#{url}#{beach}"
15
+ @html = Nokogiri::HTML(open(beach_url))
16
+ end
17
+
18
+ def check
19
+ conditions = {}
20
+
21
+ ConditionParser::constants.each do |constant|
22
+ conditions[constant.downcase] = ConditionParser.const_get(constant).extract(@html)
23
+ end
24
+
25
+ conditions
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,11 @@
1
+ require 'wapi/parsers/info'
2
+ require 'wapi/parsers/name'
3
+ require 'wapi/parsers/date'
4
+ require 'wapi/parsers/photos'
5
+ require 'wapi/parsers/waves'
6
+ require 'wapi/parsers/wind'
7
+
8
+ module Wapi
9
+ module ConditionParser
10
+ end
11
+ end
@@ -0,0 +1,10 @@
1
+
2
+ module Wapi
3
+ module ConditionParser
4
+ class Date
5
+ def self.extract html
6
+ html.css("#content h2")[0].content.split(': ')[1]
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,13 @@
1
+ module Wapi
2
+ module InfoParser
3
+ module ClassMethods
4
+ def content_for html, where
5
+ html.css("#content .info div")[where].content.strip.split(":")[1].strip
6
+ end
7
+ end
8
+
9
+ def self.included(base)
10
+ base.extend(ClassMethods)
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,9 @@
1
+ module Wapi
2
+ module ConditionParser
3
+ class Name
4
+ def self.extract html
5
+ html.css("#content h1")[0].content
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ module Wapi
2
+ module ConditionParser
3
+ class Photos
4
+ def self.extract html
5
+ html.css('.wavescheck-photo .pic').map { |pic| pic['alt'] }
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,21 @@
1
+ module Wapi
2
+ module ConditionParser
3
+ class Waves
4
+ include Wapi::InfoParser
5
+
6
+ @xpath = {
7
+ size: 2,
8
+ quality: 3,
9
+ direction: 4
10
+ }
11
+
12
+ def self.extract html
13
+ {
14
+ size: content_for(html, @xpath[:size]),
15
+ quality: content_for(html, @xpath[:quality]),
16
+ direction: content_for(html, @xpath[:direction])
17
+ }
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,19 @@
1
+ module Wapi
2
+ module ConditionParser
3
+ class Wind
4
+ include Wapi::InfoParser
5
+
6
+ @xpath = {
7
+ direction: 7,
8
+ strength: 8
9
+ }
10
+
11
+ def self.extract html
12
+ {
13
+ direction: content_for(html, @xpath[:direction]),
14
+ strength: content_for(html, @xpath[:strength])
15
+ }
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,3 @@
1
+ module Wapi
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,17 @@
1
+ describe Wapi::Report do
2
+ before :all do
3
+ url = File.dirname(__FILE__) + "/parsers/Waves.html"
4
+ @api = Wapi::Report.new("", url)
5
+ end
6
+
7
+ it 'should parse all conditions' do
8
+ conditions = @api.check
9
+
10
+ expect(conditions[:name]).to eql 'Praia do Vizinho - Fortaleza (CE)'
11
+
12
+ expect(conditions[:waves]).not_to be nil
13
+ expect(conditions[:waves][:size]).to eq '0.5 m'
14
+ expect(conditions[:waves][:direction]).to eq 'Leste'
15
+ expect(conditions[:waves][:quality]).to eq 'Mexida (Ruim)'
16
+ end
17
+ end
@@ -0,0 +1,933 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- saved from url=(0069)http://waves.terra.com.br/surf/ondas/ceara/fortaleza/praia-do-vizinho -->
3
+ <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css">.gm-style .gm-style-mtc label,.gm-style .gm-style-mtc div{font-weight:400}</style><style type="text/css">.gm-style .gm-style-cc span,.gm-style .gm-style-cc a,.gm-style .gm-style-mtc div{font-size:10px}</style><link type="text/css" rel="stylesheet" href="./Waves_files/css"><style type="text/css">@media print { .gm-style .gmnoprint, .gmnoprint { display:none }}@media screen { .gm-style .gmnoscreen, .gmnoscreen { display:none }}</style><style type="text/css">.gm-style{font-family:Roboto,Arial,sans-serif;font-size:11px;font-weight:400;text-decoration:none}</style>
4
+
5
+
6
+
7
+
8
+
9
+
10
+ <meta name="og:title" content="Wavescheck - Boletim das ondas">
11
+ <meta name="og:type" content="article">
12
+ <meta name="og:description" content="Praia do Vizinho - Fortaleza (CE)">
13
+ <meta name="keywords" content="boletim da ondas previsão condição do mar tempo praia surf ondulação swell Praia do Vizinho Fortaleza CE" xml:lang="pt-BR" lang="pt-BR">
14
+ <meta name="og:image" content="http://waves.terra.com.br/wavescheck/580621_1_693x520.jpg">
15
+
16
+ <title>Waves</title>
17
+
18
+ <style type="text/css">div#reports table { width: 100%; margin: 0 auto;font-family: Verdana, Arial;border-spacing: 1px;color: #5b5b5b;font-size: 14px;}
19
+ div#reports table a {color: #5b5b5b;text-decoration: none;}
20
+ div#reports table td.forecast {text-align: center;width: 26px;height: 26px;padding: 0;}
21
+ div#reports table tr.header {font-weight: bold;}
22
+ div#reports table tr.header td.weekday {text-align: center;}
23
+ div#reports table tr {background-color: #e5e5e5;}
24
+ div#reports table tr:nth-child(even) {background-color: #e5e5e5;}
25
+ div#reports table tr:nth-child(odd) {background-color: #e4e4e4;}
26
+ div#reports table tr td,div#reports table tr th {text-align: left;padding: 4px;}
27
+ div#reports table tr th {text-align: center;}
28
+ div#reports table tr th {background-color: #e4e4e4;}
29
+ div#reports table tr td.zone {font-weight: bold;padding: 4px;background-color: #e4e4e4;}
30
+ div#reports .wfbad,.wfregular,.wfgood {width: 0;height: 0;border: 1px solid #000066;margin: 0 auto; font-size: 0;}
31
+ div#reports .wfbad {background-color: red;}
32
+ div#reports .wfregular {background-color: yellow;}
33
+ div#reports .wfgood {background-color: green;}
34
+ div#reports .wh0 {padding: 0px;border:0;border-top: 1px solid black;width:8px;}
35
+ div#reports .wh25 {padding: 1px;}
36
+ div#reports .wh50 {padding: 2px;}
37
+ div#reports .wh75 {padding: 3px;}
38
+ div#reports .wh100 {padding: 4px;}
39
+ div#reports .wh125 {padding: 5px;}
40
+ div#reports .wh150 {padding: 6px;}
41
+ div#reports .wh175 {padding: 7px;}
42
+ div#reports .wh200 {padding: 8px;}
43
+ div#reports .wh225 {padding: 9px;}
44
+ div#reports .wh250 {padding: 10px;}
45
+ div#reports .wh275 {padding: 11px;}
46
+ div#reports .wh300 {padding: 12px;}
47
+ div#forecast_table {clear: both;font-size: 12px;border-top: 1px solid white;margin-top: 0px;}
48
+ div#forecast_table table {border-spacing: 1px;color: #5b5b5b;font-family: Verdana; font-size: 12px;}
49
+ div#forecast_table td {width: 28px;text-align: center;background-color: #e5e5e5;padding: 4px;}
50
+ div#forecast_table th {text-align: left;background-color: #e0e0e0;padding: 4px;width: 97px;}
51
+ div#forecast_table td.night {background-color: #a8a8a8;color: #333;}
52
+ div#forecast_table td.day {background-color: #ededed;color: #333;}
53
+ div#forecast_table td.rise {background-color:#e0e0e0;color: #333;}
54
+ div#forecast_table td.yellow {background-color: #ffffc6;color: #330;}
55
+ div#forecast_table td.red {background-color: #ffc6c6;color: #600;}
56
+ div#forecast_table td.green {background-color: #c2fac5;color: #060;}
57
+ div#forecast_table tr.day th {text-align: center;background-color: #d6d6d6;}
58
+ div#forecast_table td.o00 {background-color: #fff;}
59
+ div#forecast_table td.o05 {background-color: #e5e5e5;}
60
+ div#forecast_table td.o10 {background-color: #e4e4e4;}
61
+ div#forecast_table td.o15 {background-color: #dbdbdb;}
62
+ div#forecast_table td.o20 {background-color: #d2d2d2;}
63
+ div#forecast_table td.o25 {background-color: #95d8ff;}
64
+ div#forecast_table td.o30 {background-color: #7ed0ff;}
65
+ div#forecast_table td.v00 {background-color: #fff;}
66
+ div#forecast_table td.v05 {background-color: #e5e5e5;}
67
+ div#forecast_table td.v10 {background-color: #e4e4e4;}
68
+ div#forecast_table td.v15 {background-color: #dbdbdb;}
69
+ div#forecast_table td.v20 {background-color: #d2d2d2;}
70
+ div#forecast_table td.v25 {background-color: #95d8ff;}
71
+ div#forecast_table td.v30 {background-color: #7ed0ff;}
72
+ </style><script type="text/javascript" src="./Waves_files/req" async="" style=""></script><script type="text/javascript" async="">nvg23155.syncSimbiose=function(){try{if(!window.localStorage.getItem("nvgSimb")){nvg23155.include("//userdmp.com/dmp/cs?dc=ngg&csid="+nvg23155.usr+"&to=%2F%2Fnavdmp.com%2Freq%3Fsbid%3D%7Buid%7D");window.localStorage.setItem("nvgSimb",1)}}catch(ex){console.log(ex)}};try{nvg23155.syncSimbiose()}catch(ex){console.log(ex)};</script><script id="navegg" type="text/javascript" src="./Waves_files/tm23155.js"></script><script type="text/javascript" src="./Waves_files/event"></script><script type="text/javascript" async="" src="./Waves_files/lidar.js"></script><script type="text/javascript" async="" src="./Waves_files/lidar.js"></script><script type="text/javascript" async="" src="./Waves_files/ga.js"></script><script async="" type="text/javascript" src="./Waves_files/gpt.js"></script><script type="text/javascript">
73
+ var estado = 'ce.gral';
74
+ var cidade = 'ce_fortaleza';
75
+ var praia = 'praiadovizinho';
76
+ var tgmKey = 'br.waves.wavescheck';
77
+ </script>
78
+
79
+ <link href="./Waves_files/main.css" rel="stylesheet" type="text/css">
80
+ <link href="./Waves_files/SurfReport.css" rel="stylesheet" type="text/css">
81
+ <link href="./Waves_files/css(1)" rel="stylesheet" type="text/css">
82
+ <link href="./Waves_files/perfect-scrollbar-0.4.1.min.css" rel="stylesheet" type="text/css">
83
+
84
+ <link href="http://waves.terra.com.br/system/skins/waves/img/favicon.ico" rel="shortcut icon">
85
+
86
+ <!--[if lt IE 9]>
87
+ <script src="/js/html5shiv.js"></script>
88
+ <style type="text/css">
89
+ div#promocao {width: 308px;}
90
+ div#promocao div a img {margin: 0 3px;}
91
+ div#promocao div a:FIRST-CHILD img {margin: 0 0 0 3px;}
92
+ div#promocao div a:LAST-CHILD img {margin: 0 2px 0 0;}
93
+ </style>
94
+ <![endif]-->
95
+ <!--[if lt IE 7]>
96
+ <style type="text/css">div#pic{ margin-top: -9px; }</style>
97
+ <![endif]-->
98
+
99
+ <script type="text/javascript" src="./Waves_files/js"></script><script src="./Waves_files/main.js" type="text/javascript"></script>
100
+ <script type="text/javascript" src="./Waves_files/jquery.min.js"></script>
101
+ <script type="text/javascript" src="./Waves_files/swfobject.js"></script>
102
+ <script type="text/javascript" src="./Waves_files/tagman.js"></script>
103
+ <script type="text/javascript" src="./Waves_files/AdsWaves.js"></script>
104
+ <script type="text/javascript" src="./Waves_files/WavesAds.js"></script>
105
+ <script type="text/javascript" src="./Waves_files/jquery.jplayer.min.js"></script>
106
+ <script type="text/javascript" src="./Waves_files/TableofTide.js"></script>
107
+ <script type="text/javascript" src="./Waves_files/SurfReport.js"></script>
108
+ <script type="text/javascript" src="./Waves_files/Forecast.js"></script>
109
+
110
+ <script type="text/javascript">
111
+ <!--//
112
+ var terra_info_service = "ParBR_300131";
113
+ var terra_info_channel = "br.esportes.surfe";
114
+ var terra_info_type = "www";
115
+ var terra_info_id = "page";
116
+ var terra_stats_idCrtfc = 300131;
117
+ var terra_stats_uv_c = "waves";
118
+ //-->
119
+ </script>
120
+ <script type="text/javascript" src="./Waves_files/contentpar.js"></script><script language="JavaScript" src="./Waves_files/201404220000d.js"></script>
121
+
122
+
123
+
124
+
125
+ <script type="text/javascript">var player = new Object();</script>
126
+
127
+
128
+ <script type="text/javascript">
129
+ $(function() {
130
+ AdsWaves({
131
+ zones:[
132
+ {
133
+ id: "1",
134
+ divId: "div",
135
+ customDelivery: function(zone, banner, isFlashEnabled){
136
+
137
+ var adContent = "<div style='width: 204px; height: 643px; position: relative; float: left;'>";
138
+ adContent+= "<a target='_blank' href='" + banner.click + "' style='float: left;'>";
139
+ adContent+= "<img src='" + (banner.img + "?" + parseInt(Math.random() * 1000)) + "' style='top: 0px; position: absolute; left: -790px;'>";
140
+ adContent+= "</a>";
141
+ adContent+= "</div>";
142
+
143
+ Forecast({
144
+ id : "forecast_content",
145
+ table_id : "forecast_table",
146
+ compare_id : "reports",
147
+
148
+
149
+ lat : -3.70864,
150
+ lon : -38.4618,
151
+ spot : 2136,
152
+ fuso : -3,
153
+ sunrise : 5.0833335,
154
+ sunset : 17.85,
155
+ server : "http://previsao.waves.com.br/",
156
+ img_server : "http://previsao.waves.com.br/" ,
157
+ bg : (banner.img + "?" + parseInt(Math.random() * 1000)),
158
+ adContent : adContent
159
+ });
160
+
161
+ }
162
+ }
163
+ ],
164
+ local: false
165
+ });
166
+
167
+
168
+ TableOfTide.init({
169
+ divId : "tide_content",
170
+ id : "30340",
171
+ lat : -3.70864,
172
+ lon : -38.4618,
173
+ fuso : -3
174
+ });
175
+
176
+ });
177
+
178
+ var wcv = {
179
+ path : '',
180
+ video_url : '',
181
+ image_url : ''
182
+ };
183
+
184
+
185
+ iuv_max = 13;
186
+
187
+
188
+
189
+
190
+
191
+ $(function() {
192
+ wcv.changePhoto = function() {
193
+ var childrens = $(".photos").children();
194
+ var toalOfPhotos = childrens.length - 1;
195
+ var position = 0;
196
+ childrens.each(function(index, value) {
197
+ if (this.style.display == "block") {
198
+ position = index == toalOfPhotos ? 0 : index + 1;
199
+ this.style.display = "none";
200
+ }
201
+ });
202
+ childrens[position].style.display = "block";
203
+ var img = childrens[position].firstElementChild;
204
+ img.src = img.alt;
205
+ };
206
+ $(".nextPhoto").mouseover(function() {
207
+ $(".nextPhoto").css("display", "block");
208
+ }).click(wcv.changePhoto);
209
+ $(".photos").mouseover(function() {
210
+ $(".nextPhoto").css("display", "block");
211
+ }).mouseout(function() {
212
+ $(".nextPhoto").css("display", "none");
213
+ }).click(wcv.changePhoto);
214
+ });
215
+
216
+ </script>
217
+
218
+
219
+
220
+
221
+ <script type="text/javascript">
222
+ var googletag = googletag || {};
223
+ googletag.cmd = googletag.cmd || [];
224
+ (function() {
225
+ var gads = document.createElement('script');
226
+ gads.async = true;
227
+ gads.type = 'text/javascript';
228
+ var useSSL = 'https:' == document.location.protocol;
229
+ gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
230
+ var node = document.getElementsByTagName('script')[0];
231
+ node.parentNode.insertBefore(gads, node);
232
+ })();
233
+ </script>
234
+
235
+ <script type="text/javascript">
236
+ googletag.cmd.push(function() {
237
+ googletag.defineSlot('/9541677/wc-relogio', [202, 90], 'div-gpt-ad-1360958572723-0').addService(googletag.pubads());
238
+ googletag.defineSlot('/9541677/wc-vitrine', [300, 600], 'div-gpt-ad-1362149513081-0').addService(googletag.pubads());
239
+ googletag.defineSlot('/9541677/wc-background', [1, 1], 'div-gpt-ad-1362149470346-0').addService(googletag.pubads());
240
+ googletag.defineSlot('/9541677/wc-banner-medio-praias', [300, 250], 'div-gpt-ad-1382729900892-0').addService(googletag.pubads());
241
+ googletag.defineSlot('/9541677/wc-banner-fixo-praias', [300, 100], 'div-gpt-ad-1385384840460-0').addService(googletag.pubads());
242
+
243
+
244
+ googletag.pubads().enableSingleRequest();
245
+ googletag.pubads().collapseEmptyDivs();
246
+ googletag.enableServices();
247
+ });
248
+
249
+ </script>
250
+
251
+ <script type="text/javascript">
252
+ var _gaq = _gaq || [];
253
+ _gaq.push(['_setAccount', 'UA-4236845-1']);
254
+ _gaq.push(['_trackPageview']);
255
+
256
+ (function() {
257
+ var ga = document.createElement('script');
258
+ ga.type = 'text/javascript';
259
+ ga.async = true;
260
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
261
+ var s = document.getElementsByTagName('script')[0];
262
+ s.parentNode.insertBefore(ga, s);
263
+ })();
264
+ </script>
265
+ <script async="" type="text/javascript" src="./Waves_files/pubads_impl_49.js"></script><script type="text/javascript" src="./Waves_files/osd.js"></script><script type="text/javascript" charset="UTF-8" src="./Waves_files/{common,map,overlay}.js"></script><script type="text/javascript" charset="UTF-8" src="./Waves_files/{util,onion}.js"></script><script type="text/javascript" charset="UTF-8" src="./Waves_files/{controls}.js"></script><script type="text/javascript" charset="UTF-8" src="./Waves_files/{stats}.js"></script><script type="text/javascript" charset="UTF-8" src="./Waves_files/{marker}.js"></script><script type="text/javascript" charset="UTF-8" src="./Waves_files/{geometry,poly}.js"></script><script type="text/javascript" charset="UTF-8" src="./Waves_files/QuotaService.RecordEvent"></script></head>
266
+ <body style="">
267
+ <div id="fb-root"></div>
268
+ <div id="bg" style="background-image: url(http://waves.terra.com.br/ads/wavesshop/201409/1920x1200_16_09_2014.jpg); background-attachment: fixed; background-position: 50% 0%; background-repeat: no-repeat no-repeat;">
269
+ <div id="wrapper" style="width: 1332px; margin: 0px auto; background-position: -294px 0px;">
270
+ <div id="leftArea" style="overflow: visible; height: 100%; position: fixed; background-image: url(http://waves.terra.com.br/ads/wavesshop/201409/1920x1200_16_09_2014.jpg); width: 168px; float: left; background-position: -294px 0px;"><a href="http://ads.waves.com.br/redirect?banner.id=67" target="_blank" style="text-decoration: none;"><span id="contador" style="left: 33px; top: 255px; font-size: 18px; letter-spacing: 0.2em; display: block; position: relative; z-index: 999999; color: rgb(255, 255, 255); text-decoration: none; font-family: &#39;Arial Black&#39;, Gadget, sans-serif;">12:11:33</span><div style="padding: 37px 6px 300px 4px; border: 0px; height: 250px;"></div></a></div><div id="rightArea" style="width: 168px; overflow: visible; height: 590px; margin-left: 1164px; position: fixed; background-image: url(http://waves.terra.com.br/ads/wavesshop/201409/1920x1200_16_09_2014.jpg); float: right; background-position: 462px 0px;"><a href="http://ads.waves.com.br/redirect?banner.id=67" target="_blank" style="text-decoration: none;"><span id="segundo_contador" style="left: 25px; top: 255px; font-size: 18px; letter-spacing: 0.2em; display: block; position: relative; z-index: 999999; color: rgb(255, 255, 255); text-decoration: none; font-family: &#39;Arial Black&#39;, Gadget, sans-serif;">12:11:33</span><div style="padding: 37px 4px 300px 6px; border: 0px; height: 250px;"></div></a></div><div id="page" style="border-left-width: 1px; border-left-style: solid; border-left-color: white; border-right-width: 1px; border-right-style: solid; border-right-color: white; margin-left: 168px;">
271
+
272
+
273
+
274
+ <div id="terra">
275
+ <iframe frameborder="no" scrolling="no" src="./Waves_files/index.html" width="100%" height="24" allowtransparency="true">
276
+ </iframe>
277
+ </div>
278
+
279
+ <div class="header-advertisers">
280
+
281
+ <!-- wc-relogio -->
282
+ <div id="div-gpt-ad-1360958572723-0" style="width:202px; height:90px; float: right;"><a href="http://ads.waves.com.br/redirect?banner.id=3" target="_blank"><img src="./Waves_files/clock_24_01_2014.jpg"></a><span id="contadorRelogio" style="display: block; position: relative; z-index: 999999; color: rgb(0, 0, 0); text-decoration: none; font-family: &#39;Arial Black&#39;, Gadget, sans-serif; font-size: 12px; bottom: 45px; left: 115px; width: 75px;">12 : 48 : 26</span><span style="position: relative; font-size: 10px; bottom: 85px; left: 121px; font-family: &#39;Arial Black&#39;, Gadget, sans-serif;">16/09/2014</span>
283
+ <script type="text/javascript">
284
+ googletag.cmd.push(function() { googletag.display('div-gpt-ad-1360958572723-0'); });
285
+ </script>
286
+ <div id="google_ads_iframe_/9541677/wc-relogio_0__container__" style="border: 0pt none;"><iframe id="google_ads_iframe_/9541677/wc-relogio_0" name="google_ads_iframe_/9541677/wc-relogio_0" width="202" height="90" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;"></iframe></div><iframe id="google_ads_iframe_/9541677/wc-relogio_0__hidden__" name="google_ads_iframe_/9541677/wc-relogio_0__hidden__" width="0" height="0" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom; visibility: hidden; display: none;"></iframe></div>
287
+
288
+ <div id="sbanner" bok=""><iframe src="./Waves_files/728x90.html" style="width:728px;height:90px;border:none;overflow:hidden" bok=""></iframe></div>
289
+
290
+ </div>
291
+
292
+ <div class="menu-wrap">
293
+
294
+
295
+
296
+ <div class="menu-header">
297
+
298
+ <a class="logo" href="http://waves.terra.com.br/">
299
+ <img src="./Waves_files/waves.png">
300
+ </a>
301
+
302
+ <div class="menu">
303
+ <ul class="nav menu-top">
304
+ <li class="li-menu li-first">
305
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/brasil/">Wavescheck</a>
306
+ <ul>
307
+ <li>
308
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/rio-grande-do-sul">Rio Grande do Sul</a>
309
+ </li>
310
+ <li>
311
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/santa-catarina">Santa Catarina</a>
312
+ </li>
313
+ <li>
314
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/parana">Paraná</a>
315
+ </li>
316
+ <li>
317
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/sao-paulo">São Paulo</a>
318
+ </li>
319
+ <li>
320
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/rio-de-janeiro">Rio de Janeiro</a>
321
+ </li>
322
+ <li>
323
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/espirito-santo">Espírito Santo</a>
324
+ </li>
325
+ <li>
326
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/bahia">Bahia</a>
327
+ </li>
328
+ <li>
329
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/sergipe">Sergipe</a>
330
+ </li>
331
+ <li>
332
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/alagoas">Alagoas</a>
333
+ </li>
334
+ <li>
335
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/pernambuco">Pernambuco</a>
336
+ </li>
337
+ <li>
338
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/paraiba">Paraíba</a>
339
+ </li>
340
+ <li>
341
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/rio-grande-do-norte">Rio Grande do Norte</a>
342
+ </li>
343
+ <li>
344
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/ceara">Ceará</a>
345
+ </li>
346
+ <li>
347
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/maranhao">Maranhão</a>
348
+ </li>
349
+ <li>
350
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/para">Pará</a>
351
+ </li>
352
+ <li>
353
+ <a href="http://waves.terra.com.br/surf/ondas/condicao/internacional/">Internacional</a>
354
+ </li>
355
+ </ul>
356
+ </li>
357
+ <li class="li-menu">
358
+ <a href="http://waves.terra.com.br/surf/noticias/videos">Vídeos</a>
359
+ </li>
360
+ <li class="li-menu">
361
+ <a href="http://waves.terra.com.br/surf/noticias/longboard">
362
+ <span>Longboard</span>
363
+ </a>
364
+ </li>
365
+ <li class="li-menu">
366
+ <a href="http://waves.terra.com.br/surf/noticias/bigwaves">
367
+ <span>Big Surf</span>
368
+ </a>
369
+ </li>
370
+ <li class="li-menu">
371
+ <a href="http://waves.terra.com.br/surf/noticias/fluirtv">
372
+ <span>Fluir TV</span>
373
+ </a>
374
+ </li>
375
+ <li class="li-menu"><a href="http://supclub.com.br/" target="_blank">Supclub</a></li>
376
+ <li class="li-menu"><a href="http://fluir.terra.com.br/" target="_blank">Fluir</a></li>
377
+ <li class="li-menu"><a href="http://www.wavesshop.com.br/?utm_source=Portal_Waves&utm_medium=Home_Page&utm_content=botaoloja&utm_campaign=botao_page" target="_blank">Waves Shop</a></li>
378
+ </ul>
379
+
380
+ <ul class="nav menu-bottom">
381
+
382
+ <li class="li-menu li-first">
383
+ <a href="http://waves.terra.com.br/surf/noticias/">Últimas Notícias</a>
384
+ </li>
385
+ <li class="li-menu">
386
+ <a href="http://waves.terra.com.br/surf/noticias/colunas">Colunistas</a>
387
+ <ul>
388
+ <li>
389
+ <a href="http://waves.terra.com.br/surf/noticias/colunistas/ana-paula/cores-do-mar">Cores do Mar</a>
390
+ </li>
391
+ <li>
392
+ <a href="http://waves.terra.com.br/surf/noticias/colunas/fabio-gouveia">Espêice Fia</a>
393
+ </li>
394
+ <li>
395
+ <a href="http://waves.terra.com.br/surf/noticias/colunas/tulio-brandao">Leitura de Onda</a>
396
+ </li>
397
+ <li>
398
+ <a href="http://waves.terra.com.br/surf/noticias/colunas-muitas-aguas">Muitas Águas</a>
399
+ </li>
400
+ <li>
401
+ <a href="http://waves.terra.com.br/surf/noticias/colunas-palanque-movel">Palanque Móvel</a>
402
+ </li>
403
+ <li>
404
+ <a href="http://waves.terra.com.br/surf/noticias/feminino/raio-x">Raio X</a>
405
+ </li>
406
+ <li>
407
+ <a href="http://waves.terra.com.br/surf/noticias/colunas-soul-surf">Soul Surf</a>
408
+ </li>
409
+ </ul>
410
+ </li>
411
+ <li class="li-menu">
412
+ <a href="http://waves.terra.com.br/surf/noticias/competicao">
413
+ <span>Competição</span>
414
+ </a>
415
+ <ul>
416
+ <li>
417
+ <a href="http://waves.terra.com.br/surf/noticias/competicao/wct">WCT</a>
418
+ </li>
419
+ <li>
420
+ <a href="http://waves.terra.com.br/surf/noticias/competicao/wqs">WQS</a>
421
+ </li>
422
+ <li>
423
+ <a href="http://waves.terra.com.br/surf/noticias/bigwaves">BWWT</a>
424
+ </li>
425
+ <li>
426
+ <a href="http://waves.terra.com.br/surf/noticias/competicao/isa">ISA</a>
427
+ </li>
428
+ <li>
429
+ <a href="http://waves.terra.com.br/surf/noticias/longboard">Longboard</a>
430
+ </li>
431
+ <li>
432
+ <a href="http://waves.terra.com.br/surf/noticias/bodyboard">Bodyboard</a>
433
+ </li>
434
+ <li>
435
+ <a href="http://waves.terra.com.br/surf/noticias/feminino">Feminino</a>
436
+ </li>
437
+ <li>
438
+ <a href="http://waves.terra.com.br/surf/noticias/competicao/profissional">Profissional</a>
439
+ </li>
440
+ <li>
441
+ <a href="http://waves.terra.com.br/surf/noticias/competicao/amador">Amador</a>
442
+ </li>
443
+ </ul>
444
+ </li>
445
+ <li class="li-menu">
446
+ <a href="http://waves.terra.com.br/surf/noticias/expedicao/barca-da-galera">Barca da Galera</a>
447
+ </li>
448
+ <li class="li-menu">
449
+ <a href="http://waves.terra.com.br/surf/noticias/bodyboard">
450
+ <span>Bodyboard</span>
451
+ </a>
452
+ </li>
453
+ <li class="li-menu">
454
+ <a href="http://waves.terra.com.br/surf/noticias/feminino">
455
+ <span>Feminino</span>
456
+ </a>
457
+ </li>
458
+ <li class="li-menu last-item">
459
+ <a href="http://waves.terra.com.br/">Geral</a>
460
+ <ul>
461
+ <li>
462
+ <a href="http://waves.terra.com.br/surf/noticias/variedades-ambiente">Ambiente</a>
463
+ </li>
464
+ <li>
465
+ <a href="http://waves.terra.com.br/surf/noticias/variedades-balada">Balada</a>
466
+ </li>
467
+ <li>
468
+ <a href="http://waves.terra.com.br/surf/noticias/variedades-equipamentos">Equipamento</a>
469
+ </li>
470
+ <li>
471
+ <a href="http://waves.terra.com.br/surf/noticias/expedicao">Expedições</a>
472
+ </li>
473
+ <li>
474
+ <a href="http://waves.terra.com.br/surf/noticias/variedades-mercado">Mercado</a>
475
+ </li>
476
+ <li>
477
+ <a href="http://waves.terra.com.br/surf/noticias/multimidia">Multimídia</a>
478
+ </li>
479
+ <li>
480
+ <a href="http://waves.terra.com.br/surf/noticias/variedades-novidade">Novidade</a>
481
+ </li>
482
+ <li>
483
+ <a href="http://waves.terra.com.br/surf/noticias/variedades-promocoes">Promoções</a>
484
+ </li>
485
+ <li>
486
+ <a href="http://waves.terra.com.br/surf/noticias/entrevistas">Entrevistas</a>
487
+ </li>
488
+ </ul>
489
+ </li>
490
+ </ul>
491
+ </div>
492
+
493
+ <div class="social-networks">
494
+ <a href="http://ads.waves.com.br/redirect?banner.id=42">
495
+ <img alt="Facebook" src="./Waves_files/facebook.png">
496
+ </a>
497
+ <a href="http://ads.waves.com.br/redirect?banner.id=44">
498
+ <img alt="Instagram" src="./Waves_files/instagram.png">
499
+ </a>
500
+ <a href="http://ads.waves.com.br/redirect?banner.id=43">
501
+ <img alt="Twitter" src="./Waves_files/twitter.png">
502
+ </a>
503
+ <a href="http://ads.waves.com.br/redirect?banner.id=49">
504
+ <img alt="YouTube" src="./Waves_files/youtube.png">
505
+ </a>
506
+ <a href="http://ads.waves.com.br/redirect?banner.id=45">
507
+ <img alt="Play Store" src="./Waves_files/playstore.png">
508
+ </a>
509
+ <a href="http://ads.waves.com.br/redirect?banner.id=46">
510
+ <img alt="Apple Store" src="./Waves_files/applestore.png">
511
+ </a>
512
+ </div>
513
+
514
+ <form id="search" action="http://waves.terra.com.br/waves/view/busca" method="post">
515
+ <input type="search" name="query" placeholder="Buscar...">
516
+ </form>
517
+
518
+ <hr style="border: 0; border-top: 1px solid #bbb; float: left; width: 100%; position: relative; bottom: 0;">
519
+
520
+ </div>
521
+ </div>
522
+
523
+
524
+
525
+ <div id="publicidade">
526
+
527
+ <script type="text/javascript">
528
+ tgm.ShowArea("right", "site=" + site ,"zone=" + zone, "publicidade=" + estado, "publicidade2=" + cidade);
529
+ </script><script type="text/javascript" src="./Waves_files/ShowArea.aspx"></script><script type="text/javascript">if (typeof(estado) == "undefined") { estado = ""; };document.write('<scr'+'ipt src="http://ad.doubleclick.net/N1211/adj/br.terra.waves/wavescheck.'+estado+';;sz=300x600;;;;kw=half1;ord=0.493349228505?"></scr'+'ipt>');</script><script src="./Waves_files/wavescheck.ce.gral;;sz=300x600;;;;kw=half1"></script><div class="GoogleActiveViewClass" id="DfpVisibilityIdentifier_8329571888316423" data-admeta-dfp="1211/br.terra.waves/wavescheck.ce.gral,300,600,17653192060730791213,0.02"><a target="_blank" href="http://googleads.g.doubleclick.net/aclk?sa=L&ai=CkI2brVsYVKe3GPPP0AG7r4DwAqiL_twEAAAQASAAUPSQvFZgzZjggOgCggEXY2EtcHViLTQxNTU0OTczMTQ1NzUwOTPIAQLgAgCoAwGqBLIBT9BhJyrzPgQCEwSidW5Ypg_8PKrZcwDPqBp27D83yQKycoUQChGSZzV0_2JYnXYMoLMayWI-eg9SSQzYE9bnoDI25HpbaHaFp1f7jp99ae22bdqzBnvKVOF7h3sqc0BafB3Svja6sj5ciE0RpAkt_A5JuOBgHliJ6CMHtwbICStfkBoXF2BFdSr_6QO3bOvUr42a7jzSq14YTf0PKnwpz4pQmDkWixLZhc1HOhmB6VHApeAEAaAGFA&num=0&sig=AOD64_03dXMJ3IZR3ENUdINngELUfgAs6g&client=ca-pub-4155497314575093&adurl=http://www.aerofish.com.br"><img src="./Waves_files/7445857371061801018" width="300" height="600" alt="" border="0"></a><script>(function(){var g=this,l=function(a,b){var c=a.split("."),d=g;c[0]in d||!d.execScript||d.execScript("var "+c[0]);for(var e;c.length&&(e=c.shift());)c.length||void 0===b?d=d[e]?d[e]:d[e]={}:d[e]=b},m=function(a,b,c){return a.call.apply(a.bind,arguments)},n=function(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var c=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(c,d);return a.apply(b,c)}}return function(){return a.apply(b,arguments)}},p=function(a,b,c){p=Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?m:n;return p.apply(null,arguments)},q=Date.now||function(){return+new Date};var r=document,s=window;var t=function(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.call(null,a[c],c,a)},w=function(a,b){a.google_image_requests||(a.google_image_requests=[]);var c=a.document.createElement("img");c.src=b;a.google_image_requests.push(c)};var x=function(a){return{visible:1,hidden:2,prerender:3,preview:4}[a.webkitVisibilityState||a.mozVisibilityState||a.visibilityState||""]||0},y=function(a){var b;a.mozVisibilityState?b="mozvisibilitychange":a.webkitVisibilityState?b="webkitvisibilitychange":a.visibilityState&&(b="visibilitychange");return b};var C=function(){this.g=r;this.k=s;this.j=!1;this.i=null;this.h=[];this.o={};if(z)this.i=q();else if(3==x(this.g)){this.i=q();var a=p(this.q,this);A&&(a=A("di::vch",a));this.p=a;var b=this.g,c=y(this.g);b.addEventListener?b.addEventListener(c,a,!1):b.attachEvent&&b.attachEvent("on"+c,a)}else B(this)},A;C.m=function(){return C.n?C.n:C.n=new C};var D=/^([^:]+:\/\/[^/]+)/m,G=/^\d*,(.+)$/m,z=!1,B=function(a){if(!a.j){a.j=!0;for(var b=0;b<a.h.length;++b)a.l.apply(a,a.h[b]);a.h=[]}};C.prototype.s=function(a,b){var c=b.target.u();(c=G.exec(c))&&(this.o[a]=c[1])};C.prototype.l=function(a,b){this.k.rvdt=this.i?q()-this.i:0;var c;if(c=this.t)t:{try{var d=D.exec(this.k.location.href),e=D.exec(a);if(d&&e&&d[1]==e[1]&&b){var f=p(this.s,this,b);this.t(a,f);c=!0;break t}}catch(u){}c=!1}c||w(this.k,a)};C.prototype.q=function(){if(3!=x(this.g)){B(this);var a=this.g,b=y(this.g),c=this.p;a.removeEventListener?a.removeEventListener(b,c,!1):a.detachEvent&&a.detachEvent("on"+b,c)}};var H=/^true$/.test("")?!0:!1;var I={},J=function(a){var b=a.toString();a.name&&-1==b.indexOf(a.name)&&(b+=": "+a.name);a.message&&-1==b.indexOf(a.message)&&(b+=": "+a.message);if(a.stack){a=a.stack;var c=b;try{-1==a.indexOf(c)&&(a=c+"\n"+a);for(var d;a!=d;)d=a,a=a.replace(/((https?:\/..*\/)[^\/:]*:\d+(?:.|\n)*)\2/,"$1");b=a.replace(/\n */g,"\n")}catch(e){b=c}}return b},M=function(a,b,c,d){var e=K,f,u=!0;try{f=b()}catch(h){try{var N=J(h);b="";h.fileName&&(b=h.fileName);var E=-1;h.lineNumber&&(E=h.lineNumber);var v;t:{try{v=c?c():"";break t}catch(S){}v=""}u=e(a,N,b,E,v)}catch(k){try{var O=J(k);a="";k.fileName&&(a=k.fileName);c=-1;k.lineNumber&&(c=k.lineNumber);K("pAR",O,a,c,void 0,void 0)}catch(F){L({context:"mRE",msg:F.toString()+"\n"+(F.stack||"")},void 0)}}if(!u)throw h;}finally{if(d)try{d()}catch(T){}}return f},K=function(a,b,c,d,e,f){a={context:a,msg:b.substring(0,512),eid:e&&e.substring(0,40),file:c,line:d.toString(),url:r.URL.substring(0,512),ref:r.referrer.substring(0,512)};P(a);L(a,f);return!0},L=function(a,b){try{if(Math.random()<(b||.01)){var c="/pagead/gen_204?id=jserror"+Q(a),d="http"+("https:"==s.location.protocol?"s":"")+"://pagead2.googlesyndication.com"+c,d=d.substring(0,2E3);w(s,d)}}catch(e){}},P=function(a){var b=a||{};t(I,function(a,d){b[d]=s[a]})},R=function(a,b,c,d,e){return function(){var f=arguments;return M(a,function(){return b.apply(c,f)},d,e)}},Q=function(a){var b="";t(a,function(a,d){if(0===a||a)b+="&"+d+"="+("function"==typeof encodeURIComponent?encodeURIComponent(a):escape(a))});return b};A=function(a,b,c,d){return R(a,b,void 0,c,d)};z=H;l("vu",R("vu",function(a,b){var c=a.replace("&amp;","&"),d=/(google|doubleclick).*\/pagead\/adview/.test(c),e=C.m();if(d){d="&vis="+x(e.g);b&&(d+="&ve=1");var f=c.indexOf("&adurl"),c=-1==f?c+d:c.substring(0,f)+d+c.substring(f)}e.j?e.l(c,b):e.h.push([c,b])}));l("vv",R("vv",function(){z&&B(C.m())}));})();</script><script>vu("http://pubads.g.doubleclick.net/pagead/adview?ai\x3dB73w2rVsYVKe3GPPP0AG7r4DwAqiL_twEAAAAEAEgADgAUPSQvFZY-Ne0ncsBYM2Y4IDoAoIBF2NhLXB1Yi00MTU1NDk3MzE0NTc1MDkzsgESd2F2ZXMudGVycmEuY29tLmJyugEJZ2ZwX2ltYWdlyAEC2gFFaHR0cDovL3dhdmVzLnRlcnJhLmNvbS5ici9zdXJmL29uZGFzL2NlYXJhL2ZvcnRhbGV6YS9wcmFpYS1kby12aXppbmhvwAIC4AIA6gImMTIxMS9ici50ZXJyYS53YXZlcy93YXZlc2NoZWNrLmNlLmdyYWz4AvLRHpADnASYA-ADqAMB0ASQTuAEAaAGFA\x26sigh\x3dA2vl0bBlOog")</script><script language="javascript">
530
+ function ajustaBackup(adSize){
531
+ if(window.frameElement.parentNode.parentNode.getElementsByTagName("img").length >= 1){
532
+ for (var i = 0; i < window.frameElement.parentNode.parentNode.getElementsByTagName("img").length; i++) {
533
+ if(parseInt(window.frameElement.parentNode.parentNode.getElementsByTagName("img").item(i).offsetWidth)==adSize){
534
+ var imagemBackup = window.frameElement.parentNode.parentNode.getElementsByTagName("img").item(i);
535
+ var altImg = imagemBackup.height / imagemBackup.width;
536
+ imagemBackup.style.width = "620px";
537
+ imagemBackup.style.height = parseInt(imagemBackup.width)*altImg+"px";
538
+ imagemBackup.parentNode.style.width = imagemBackup.width + "px";
539
+ imagemBackup.parentNode.style.height = imagemBackup.height + "px";
540
+ break;
541
+ }
542
+ }
543
+ } else if (document.getElementsByTagName("img").length >= 1){
544
+ for (var i = 0; i < document.getElementsByTagName("img").length; i++) {
545
+ if(parseInt(document.getElementsByTagName("img").item(i).offsetWidth)==adSize){
546
+ var imagemBackup = document.getElementsByTagName("img").item(i);
547
+ var altImg = imagemBackup.height / imagemBackup.width;
548
+ imagemBackup.style.width = "620px";
549
+ imagemBackup.style.height = parseInt(imagemBackup.width)*altImg+"px";
550
+ window.frameElement.style.width = imagemBackup.width + "px";
551
+ window.frameElement.style.height = imagemBackup.height + "px";
552
+ break;
553
+ }
554
+ }
555
+ }
556
+ }
557
+
558
+ if("300"=="1260"){
559
+ function verificaFoco() {
560
+ var parallaxTop = parseInt(window.frameElement.parentNode.parentNode.offsetTop);
561
+ try {
562
+ if (window.frameElement.id.search(".home") != -1){ parallaxTop = parseInt(parallaxTop) + parseInt(top.document.getElementById("zaz-gambit-table").offsetTop); }
563
+ } catch (error) {};
564
+ var windowHeight = top.window.innerHeight;
565
+ //var checkFocus = (navigator.appName == "Microsoft Internet Explorer") ? parallaxTop-top.document.documentElement.scrollTop : parallaxTop-top.window.scrollY;
566
+ var checkFocus = (navigator.appName == "Microsoft Internet Explorer")?parallaxTop-(top.document.documentElement.scrollTop+windowHeight):parallaxTop-(top.window.scrollY+windowHeight);
567
+
568
+ if (checkFocus <= 600 && checkFocus >= -1700) {
569
+ top.eval('var iframeTop = "' + parallaxTop + '";');
570
+ top.eval('var windowSize = "' + windowHeight / 2 + '";');
571
+ top.eval('var parallaxFrame = "' + window.frameElement.id + '";');
572
+ try{
573
+ if (checkFocus <= -45 && top.document.getElementById("out-of-page-terra-ad").textContent != "") {
574
+ top.document.getElementById("out-of-page-terra-ad").innerHTML = "";
575
+ }
576
+ } catch (error) {}
577
+ }
578
+ }
579
+ if (typeof (ontouchmove) == "undefined") {
580
+ window.frameElement.style.height = "600px";
581
+ top.eval('window.onscroll=function(){var imagePosition=(iframeTop-windowSize)+420;var scrollLocation=(navigator.appName=="Microsoft Internet Explorer")?document.documentElement.scrollTop:window.scrollY;var marginTop=((imagePosition-scrollLocation)*-1)-(((imagePosition-scrollLocation)*-1)/5);window.top.frames[parallaxFrame].document.body.style.marginTop=marginTop+"px"};');
582
+ setInterval("verificaFoco()", 500);
583
+ verificaFoco();
584
+ } else {
585
+ setTimeout("ajustaBackup(1260)",1500);
586
+ }
587
+ } else if("300"=="970" || "300"=="971"){
588
+ if(typeof(ontouchmove) != "undefined") { setTimeout("ajustaBackup(970)",1500); }
589
+ }
590
+ </script></div>
591
+
592
+ <!-- wc-vitrine -->
593
+ <div id="div-gpt-ad-1362149513081-0" class="dfp-wc" style="width:300px; height:600px;">
594
+ <script type="text/javascript">
595
+ googletag.cmd.push(function() { googletag.display('div-gpt-ad-1362149513081-0'); });
596
+ </script><div id="google_ads_iframe_/9541677/wc-vitrine_0__container__" style="border: 0pt none;"><iframe id="google_ads_iframe_/9541677/wc-vitrine_0" name="google_ads_iframe_/9541677/wc-vitrine_0" width="300" height="600" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;"></iframe></div>
597
+ </div>
598
+
599
+ <div class="dfp-wc" style="float: left; width: 300px; height: 250px; margin-top: 10px;" bok=""><iframe src="./Waves_files/300x250.html" style="width:300px;height:250px;border:none;overflow:hidden" bok=""></iframe></div>
600
+
601
+ <!-- wc-banner-medio-praias -->
602
+ <div id="div-gpt-ad-1382729900892-0" class="dfp-wc" style="width: 300px; height: 250px; display: none;" bok=""><iframe src="./Waves_files/300x250.html" style="width:300px;height:250px;border:none;overflow:hidden" bok=""></iframe></div>
603
+
604
+ <!-- wc-banner-fixo-praias -->
605
+ <div id="div-gpt-ad-1385384840460-0" class="dfp-wc" style="width: 300px; height: 100px; display: none;">
606
+ <script type="text/javascript">
607
+ googletag.cmd.push(function() { googletag.display('div-gpt-ad-1385384840460-0'); });
608
+ </script><div id="google_ads_iframe_/9541677/wc-banner-fixo-praias_0__container__" style="border: 0pt none;"><iframe id="google_ads_iframe_/9541677/wc-banner-fixo-praias_0" name="google_ads_iframe_/9541677/wc-banner-fixo-praias_0" width="300" height="100" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;"></iframe></div>
609
+ </div>
610
+
611
+ <!-- wc-background -->
612
+ <div id="div-gpt-ad-1362149470346-0" style="width:1px; height:1px;">
613
+ <script type="text/javascript">
614
+ googletag.cmd.push(function() { googletag.display('div-gpt-ad-1362149470346-0'); });
615
+ </script><div id="google_ads_iframe_/9541677/wc-background_0__container__" style="border: 0pt none;"><iframe id="google_ads_iframe_/9541677/wc-background_0" name="google_ads_iframe_/9541677/wc-background_0" width="1" height="1" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" src="javascript:"<html><body style='background:transparent'></body></html>"" style="border: 0px; vertical-align: bottom;"></iframe></div>
616
+ </div>
617
+
618
+ </div>
619
+ <div id="content">
620
+
621
+
622
+
623
+
624
+
625
+ <iframe class="fb-like" id="likeAnalysis" name="analise" src="./Waves_files/like.html">
626
+ </iframe>
627
+
628
+ <h1>Praia do Vizinho - Fortaleza (CE)</h1>
629
+ <h2>Última Atualização: Segunda-feira, 15 de Setembro de 2014 07:43</h2>
630
+
631
+ <div class="pic">
632
+ <ul class="nav">
633
+
634
+ <li class="photo selected">Fotos</li>
635
+ </ul>
636
+ <div class="holder">
637
+
638
+ <div class="nextPhoto" style="display: none;">Clique para ver a próxima foto</div>
639
+
640
+ <div class="photos">
641
+
642
+
643
+
644
+
645
+
646
+ <div class="wavescheck-photo" style="display: block;">
647
+ <img class="pic" src="./Waves_files/580621_1_693x520.jpg" alt="http://waves.terra.com.br/wavescheck/580621_1_693x520.jpg" width="622" height="415">
648
+ </div>
649
+
650
+ <div class="wavescheck-photo" style="display: none;">
651
+ <img class="pic" src="./Waves_files/loader_622x415.gif" alt="http://waves.terra.com.br/wavescheck/580621_2_693x520.jpg" width="622" height="415">
652
+ </div>
653
+
654
+
655
+ </div>
656
+ <div class="live"></div>
657
+ </div>
658
+ </div>
659
+
660
+ <div class="webcamfoot">
661
+
662
+ <p>Envie críticas e sugestões para <a href="mailto:webmaster@waves.com.br">webmaster@waves.com.br</a></p>
663
+ </div>
664
+
665
+
666
+ <div class="info">
667
+ <div>
668
+ <h1>Ondulação</h1>
669
+ <div>
670
+ <div>
671
+ <span>Tamanho:</span> 0.5 m
672
+ </div>
673
+ <div>
674
+ <span>Formação:</span> Mexida (Ruim)
675
+ </div>
676
+ <div>
677
+ <span>Direção:</span> Leste
678
+ </div>
679
+ </div>
680
+ </div>
681
+
682
+ <div>
683
+ <h1>Vento</h1>
684
+ <div>
685
+ <div>
686
+ <span>Direção:</span> Leste
687
+ </div>
688
+ <div>
689
+ <span>Intensidade:</span> Moderado
690
+ </div>
691
+ </div>
692
+ </div>
693
+
694
+ <div>
695
+ <h1>Temperatura</h1>
696
+ <div>
697
+ <div>
698
+ Apenas um colete
699
+ </div>
700
+ </div>
701
+ </div>
702
+
703
+ <div class="last">
704
+ <h1>Tempo</h1>
705
+ <div>
706
+ <div>
707
+ Ensolarado
708
+ </div>
709
+ </div>
710
+ </div>
711
+
712
+ </div>
713
+
714
+ <div class="report">
715
+
716
+
717
+ <p>Bom dia galera.Ondas mexidas Na maré enchendo pode ser que melhore a formação.</p>
718
+
719
+ <p>Por Associação Beneficente Boca do Golfinho</p>
720
+ <p>Atualização: Os boletins e as fotos deste pico são atualizados de segunda a sábado.</p>
721
+
722
+ <div id="promocao" class="chkv">
723
+ <h1>Veja os boletins da galera.</h1>
724
+ <a id="tropical" href="http://ads.waves.com.br/redirect?banner.id=19">
725
+ <img id="tropical" src="./Waves_files/tropical_white.png" alt="Tropical Brasil">
726
+ </a>
727
+ <div>
728
+ <a href="http://waves.terra.com.br/surf/usersreports/">
729
+ <img src="./Waves_files/531070_2_90x63.jpg">
730
+ </a>
731
+ <a href="http://waves.terra.com.br/surf/usersreports/">
732
+ <img src="./Waves_files/531054_1_90x63.jpg">
733
+ </a>
734
+ <a href="http://waves.terra.com.br/surf/usersreports/">
735
+ <img src="./Waves_files/500310_1_90x63.jpg">
736
+ </a>
737
+ </div>
738
+ <a href="https://play.google.com/store/apps/details?id=br.com.waves.android">
739
+ <img alt="Google Play" src="./Waves_files/AppGooglePlay.jpg">
740
+ </a>
741
+ <a href="https://itunes.apple.com/br/app/waves/id473692868">
742
+ <img alt="Applet Store" src="./Waves_files/AppAppleStore.jpg">
743
+ </a>
744
+ </div>
745
+
746
+ <div class="simple-forecast">
747
+ <span>Próximos Dias</span>
748
+ <div class="simple-forecast-content"><div><h2>Quarta-feira<div style="background-color: green;"></div></h2><h2>1.4 - 1.4 m</h2><span>L</span></div><div><h2>Quinta-feira<div style="background-color: red;"></div></h2><h2>1.4 - 1.4 m</h2><span>L</span></div><div class="last"><h2>Sexta-feira<div style="background-color: red;"></div></h2><h2>1.3 - 1.4 m</h2><span>L</span></div></div>
749
+ <div class="line"></div>
750
+ </div>
751
+
752
+ <!-- Se pico for indonésia, inclui zona de banner -->
753
+
754
+ <!-- ############################################ -->
755
+ </div>
756
+
757
+ <div class="tide">
758
+ <div class="header">
759
+ <div>Fonte: Marinha do Brasil</div>
760
+ <h1>Tábua da Maré</h1>
761
+ </div>
762
+ <div id="tide_content" style="background-color: rgb(224, 239, 252); color: rgb(0, 95, 163); -webkit-user-select: none; cursor: default; position: relative;"><div style="position: absolute; top: 1%; left: 0px; text-align: center; font-size: 0.8em; width: 328px;">Porto de Mucuripe (CE)</div><div style="position: absolute; top: 1%; left: 328px; width: 328px; text-align: center; font-size: 0.8em;">Terça-feira (16) 23:01 - 2.2 m</div><div id="wrapper" style="position: relative; top: 24px; width: 656px; height: 341px;"><div style="border-left-width: 1px; border-left-style: solid; border-left-color: red; width: 0px; height: 341px; position: absolute; top: 0px; left: 0px; z-index: 3000; -webkit-transform: translateX(328px);"></div><canvas width="656" height="341" style="position: absolute; top: 0px; left: 0px;"></canvas></div></div>
763
+ </div>
764
+
765
+ <div class="clear"></div>
766
+ </div>
767
+
768
+
769
+
770
+
771
+ <div class="forecast">
772
+ <div class="header">
773
+ <table>
774
+ <tbody><tr>
775
+ <td>
776
+ <h1>Previsão das condições do mar</h1>
777
+ </td>
778
+ <td>
779
+ <h1>
780
+ <a id="link_previsao" href="http://waves.terra.com.br/system/skins/waves/pages/Previsao.html">Saiba mais sobre a previsão</a>
781
+ </h1>
782
+ </td>
783
+ </tr>
784
+ </tbody></table>
785
+ </div>
786
+ <div id="forecast_content"><div style="width: 994px; height: 643px; background-color: rgb(255, 255, 255); background-image: url(http://ads.waves.com.br/files/0/68.jpg?275); position: relative;"><div style="position: absolute; left: 790px; top: 0px; width: 204px; height: 643px; overflow: hidden;"><div style="width: 204px; height: 643px; position: relative; float: left;"><a target="_blank" href="http://ads.waves.com.br/redirect?banner.id=68" style="float: left;"><img src="./Waves_files/68.jpg" style="top: 0px; position: absolute; left: -790px;"></a></div></div><div id="brasil" style="position: absolute; width: 148px; height: 241px; top: 0px; left: 0px; background-color: white; border-right-width: 1px; border-right-style: solid; border-right-color: black; background-image: url(http://previsao.waves.com.br/geomap?lat1=5&amp;lat2=-35&amp;lon2=-28&amp;lon1=-54&amp;zoom=3);"><div style="border: 0px none;"><div style="position: absolute; top: 47px; left: 83px; width: 8px; height: 7px; font-size: 0px; border: 1px solid red; z-index: 3000;"></div><img src="./Waves_files/map" style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: block;"><img src="./Waves_files/map(1)" style="position: absolute; z-index: 1; left: 0px; display: block;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; left: 0px; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"></div></div><div style="position: relative; width: 380px; height: 204px; top: 5px; left: 155px; border: 1px solid black; background-color: rgb(255, 255, 255); color: rgb(0, 95, 163); -webkit-user-select: none; cursor: default; font-family: Verdana;"><div style="position: relative; top: 0px; width: 380px; height: 175px;"><div style="border-left-width: 1px; border-left-style: solid; border-left-color: red; width: 0px; height: 175px; position: absolute; top: 0px; left: 0px; z-index: 3000;"></div><canvas width="380" height="175" style="position: absolute; top: 0px; left: 0px;"></canvas></div><div style="position: absolute; top: 25px; left: 5px; font-size: 10px; color: black; z-index: 2;">Terça-feira (16) - 12 horas</div><div style="position: absolute; top: 177px; left: 10px; font-size: 9px; color: blue; z-index: 2;">Altura significativa</div><div style="position: absolute; top: 188px; left: 36px; font-size: 12px; color: blue; z-index: 2;"></div><div style="position: absolute; top: 177px; left: 110px; font-size: 9px; color: red; z-index: 2;">Perí­odo de pico</div><div style="position: absolute; top: 188px; left: 134px; font-size: 12px; color: red; z-index: 2;"></div><div style="position: absolute; top: 177px; left: 190px; font-size: 9px; color: red; font-family: Verdana; z-index: 2;">Direção de pico</div><div style="position: absolute; top: 188px; left: 215px; font-size: 12px; color: red; z-index: 2;"></div><svg xmlns="http://www.w3.org/2000/svg" class="action" width="14px" height="14px" viewBox="0 0 14 14" version="1.1" style="position: absolute; top: 188px; left: 235px; z-index: 2; fill: #ff0000;">
787
+ <g><polygon points="8,14 5,8 7,8 7,0 9,0 9,8 11,8 8,14"></polygon></g>
788
+ </svg><div style="position: absolute; top: 177px; left: 283px; font-size: 9px; color: gray; z-index: 2;">Vento</div><div style="position: absolute; top: 188px; left: 270px; font-size: 12px; color: gray; z-index: 2;"></div><div style="position: absolute; top: 177px; left: 337px; font-size: 9px; color: gray; z-index: 2;">Direção</div><div style="position: absolute; top: 188px; left: 336px; font-size: 12px; color: gray; z-index: 2;"></div><svg xmlns="http://www.w3.org/2000/svg" class="action" width="14px" height="14px" viewBox="0 0 14 14" version="1.1" style="position: absolute; top: 188px; left: 356px; z-index: 2; fill: #808080;">
789
+ <g><polygon points="8,14 5,8 7,8 7,0 9,0 9,8 11,8 8,14"></polygon></g>
790
+ </svg></div><div style="position: absolute; width: 254px; height: 214px; top: 1px; left: 538px; background-image: url(http://previsao.waves.com.br/buoy_bg.png);"><div id="spectra" style="margin-left: 37px; margin-top: 17px; position: relative;"><img src="./Waves_files/buoy_empty.png" style="position: absolute; left: 0px; top: 0px; border: 0px; display: none;"><div style="border: 0px none;"><img src="./Waves_files/spectra" style="position: absolute; z-index: 1; left: 0px; display: block;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"><img style="position: absolute; z-index: 1; left: 0px; display: none;"></div></div></div><div style="position: absolute; width: 600px; height: auto; top: 213px; left: 151px; padding: 2px; font-family: Verdana; font-size: 10px;"><select id="maptype"><option value="as">Altura significativa</option><option value="pp">Perí­odo de pico</option><option value="vv">Velocidade do vento</option>"; </select> <select><option value="pp">-- Clicar um ponto no mapa --</option><option value="1775,-3.509148,-38.877228"> São Gonçalo do Amarante - Morro do Chapéu (CE)</option><option value="461,-3.673632,-38.64209">Caucaia - Boca da Barra</option><option value="462,-3.673632,-38.64209">Caucaia - Cata-vento</option><option value="464,-3.673632,-38.64209">Caucaia - Iparana</option><option value="463,-3.673632,-38.64209">Caucaia - Icaraí</option><option value="469,-3.7153573,-38.534912">Fortaleza - Leste Oeste</option><option value="473,-3.7047064,-38.463287">Fortaleza - Titanzinho</option><option value="2136,-3.7077239,-38.45932">Fortaleza - Praia do Vizinho</option><option value="465,-3.7491233,-38.443268">Fortaleza - Diário</option><option value="466,-3.7491233,-38.443268">Fortaleza - Praia do Futuro</option><option value="468,-3.7491233,-38.443268">Fortaleza - Jaqueline</option><option value="472,-3.7491233,-38.443268">Fortaleza - Portão</option><option value="1564,-3.8774889,-38.35956">Aquirraz - Porto das Dunas</option><option value="1563,-3.8816779,-38.35681">Aquirraz - Prainha</option><option value="1562,-3.92232,-38.29834">Iguape - Iguape</option><option value="1560,-4.013152,-38.204987">Caponga - Caponga</option><option value="1561,-4.2287655,-38.020935">Beberibe - Praia das Fontes</option></select><input type="checkbox" id="coz"> Centralizar pico ao ampliar </div><div style="position: absolute; left: 0px; top: 241px; width: 702px; height: 401px; border-top-width: 1px; border-top-style: solid; border-top-color: black; background-color: rgb(229, 227, 223); overflow: hidden;"><div class="gm-style" style="position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; overflow: hidden; width: 100%; height: 100%; z-index: 0; cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1; width: 100%; -webkit-transform-origin: 0px 0px; -webkit-transform: matrix(1, 0, 0, 1, -121, 67);"><div style="position: absolute; left: 0px; top: 0px; z-index: 100; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="width: 256px; height: 256px; position: absolute; left: 61px; top: -9px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 317px; top: -9px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 317px; top: -265px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 61px; top: -265px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 61px; top: 247px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 317px; top: 247px;"></div><div style="width: 256px; height: 256px; position: absolute; left: -195px; top: -9px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 573px; top: -9px;"></div><div style="width: 256px; height: 256px; position: absolute; left: -195px; top: 247px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 573px; top: -265px;"></div><div style="width: 256px; height: 256px; position: absolute; left: -195px; top: -265px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 573px; top: 247px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 829px; top: -9px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 829px; top: -265px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 829px; top: 247px;"></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 101; width: 100%;"><div style="border: 0px none; position: absolute; left: -176.7955555555818px; top: -237.61875644681277px; width: 1055.8577777778264px; height: 875.75482016147px;"><img src="./Waves_files/mark.png" style="z-index: 3001; position: absolute; margin-left: -5px; margin-top: -5px; top: 41.76066666666666%; left: 60.963172413793046%; display: block;"><img src="./Waves_files/map(2)" style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: block;"><img src="./Waves_files/map(3)" style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: block;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; z-index: 1; display: none;"><img style="position: absolute; left: 0px; width: 100%; height: 100%; opacity: 0.3; z-index: 2; display: none;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 30;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 317px; top: -9px;"><canvas width="256" height="256" draggable="false" style="-webkit-user-select: none; position: absolute; left: 0px; top: 0px;"></canvas></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 61px; top: -9px;"><canvas width="256" height="256" draggable="false" style="-webkit-user-select: none; position: absolute; left: 0px; top: 0px;"></canvas></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 317px; top: -265px;"><canvas width="256" height="256" draggable="false" style="-webkit-user-select: none; position: absolute; left: 0px; top: 0px;"></canvas></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 317px; top: 247px;"><canvas width="256" height="256" draggable="false" style="-webkit-user-select: none; position: absolute; left: 0px; top: 0px;"></canvas></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 573px; top: -9px;"><canvas width="256" height="256" draggable="false" style="-webkit-user-select: none; position: absolute; left: 0px; top: 0px;"></canvas></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 61px; top: 247px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 61px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 573px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 573px; top: 247px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 829px; top: -9px;"><canvas width="256" height="256" draggable="false" style="-webkit-user-select: none; position: absolute; left: 0px; top: 0px;"></canvas></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: -195px; top: -9px;"><canvas width="256" height="256" draggable="false" style="-webkit-user-select: none; position: absolute; left: 0px; top: 0px;"></canvas></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: -195px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 829px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: -195px; top: 247px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 829px; top: 247px;"></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 102; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 103; width: 100%;"><div style="position: absolute; left: 0px; top: 0px; z-index: -1;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 61px; top: -9px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 317px; top: -9px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 317px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 61px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 61px; top: 247px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 317px; top: 247px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: -195px; top: -9px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 573px; top: -9px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: -195px; top: 247px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 573px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: -195px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 573px; top: 247px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 829px; top: -9px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 829px; top: -265px;"></div><div style="width: 256px; height: 256px; overflow: hidden; position: absolute; left: 829px; top: 247px;"></div></div></div></div><div style="position: absolute; z-index: 0; left: 0px; top: 0px;"><div style="overflow: hidden; width: 702px; height: 402px;"><img src="./Waves_files/StaticMapService.GetMapImage" style="width: 702px; height: 401px;"></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><div style="width: 256px; height: 256px; position: absolute; left: 61px; top: -9px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 317px; top: -9px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(1)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 317px; top: -265px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(2)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 61px; top: -265px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(3)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 61px; top: 247px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(4)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 317px; top: 247px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(5)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: -195px; top: -9px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(6)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 573px; top: -9px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(7)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: -195px; top: 247px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(8)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 573px; top: -265px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(9)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: -195px; top: -265px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(10)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 573px; top: 247px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(11)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 829px; top: -9px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(12)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 829px; top: 247px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(13)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 256px; height: 256px; position: absolute; left: 829px; top: -265px; opacity: 1; transition: opacity 200ms ease-out; -webkit-transition: opacity 200ms ease-out;"><img src="./Waves_files/kh(14)" draggable="false" style="width: 256px; height: 256px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 2; width: 100%; height: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 3; width: 100%; -webkit-transform-origin: 0px 0px; -webkit-transform: matrix(1, 0, 0, 1, -121, 67);"><div style="position: absolute; left: 0px; top: 0px; z-index: 104; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 105; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 106; width: 100%;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 107; width: 100%;"><div style="z-index: -202; cursor: pointer; display: none;"><div style="width: 30px; height: 27px; overflow: hidden; position: absolute;"><img src="./Waves_files/undo_poly.png" draggable="false" style="position: absolute; left: 0px; top: 0px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; width: 90px; height: 27px;"></div></div></div></div></div><div style="margin-left: 5px; margin-right: 5px; z-index: 1000000; position: absolute; left: 0px; bottom: 0px;"><a target="_blank" href="http://maps.google.com/maps?ll=-3.707724,-38.45932&z=10&t=k&hl=en-US&gl=US&mapclient=apiv3" title="Click to see this area on Google Maps" style="position: static; overflow: visible; float: none; display: inline;"><div style="width: 62px; height: 26px; cursor: pointer;"><img src="./Waves_files/google_white2.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 62px; height: 26px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></a></div><div class="gmnoprint" style="z-index: 1000001; position: absolute; right: 165px; bottom: 0px; width: 141px;"><div draggable="false" class="gm-style-cc" style="-webkit-user-select: none;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a style="color: rgb(68, 68, 68); text-decoration: none; cursor: pointer; display: none;">Map Data</a><span style="">Imagery ©2014 TerraMetrics</span></div></div></div><div style="background-color: white; padding: 15px 21px; border: 1px solid rgb(171, 171, 171); font-family: Roboto, Arial, sans-serif; color: rgb(34, 34, 34); -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 16px; box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 16px; z-index: 10000002; display: none; width: 256px; height: 148px; position: absolute; left: 201px; top: 111px;"><div style="padding: 0px 0px 10px; font-size: 16px;">Map Data</div><div style="font-size: 13px;">Imagery ©2014 TerraMetrics</div><div style="width: 13px; height: 13px; overflow: hidden; position: absolute; opacity: 0.7; right: 12px; top: 12px; z-index: 10000; cursor: pointer;"><img src="./Waves_files/mapcnt3.png" draggable="false" style="position: absolute; left: -2px; top: -336px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div class="gmnoscreen" style="position: absolute; right: 0px; bottom: 0px;"><div style="font-family: Roboto, Arial, sans-serif; font-size: 11px; color: rgb(68, 68, 68); direction: ltr; text-align: right; background-color: rgb(245, 245, 245);">Imagery ©2014 TerraMetrics</div></div><div class="gmnoprint gm-style-cc" draggable="false" style="z-index: 1000001; position: absolute; -webkit-user-select: none; right: 95px; bottom: 0px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a href="http://www.google.com/intl/en-US_US/help/terms_maps.html" target="_blank" style="text-decoration: none; cursor: pointer; color: rgb(68, 68, 68);">Terms of Use</a></div></div><div draggable="false" class="gm-style-cc" style="-webkit-user-select: none; position: absolute; right: 0px; bottom: 0px;"><div style="opacity: 0.7; width: 100%; height: 100%; position: absolute;"><div style="width: 1px;"></div><div style="background-color: rgb(245, 245, 245); width: auto; height: 100%; margin-left: 1px;"></div></div><div style="position: relative; padding-right: 6px; padding-left: 6px; font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); white-space: nowrap; direction: ltr; text-align: right;"><a target="_new" title="Report errors in the road map or imagery to Google" href="http://maps.google.com/maps?ll=-3.707724,-38.45932&z=10&t=k&hl=en-US&gl=US&mapclient=apiv3&skstate=action:mps_dialog$apiref:1&output=classic" style="font-family: Roboto, Arial, sans-serif; font-size: 10px; color: rgb(68, 68, 68); text-decoration: none; position: relative;">Report a map error</a></div></div><div class="gmnoprint" draggable="false" controlwidth="78" controlheight="348" style="margin: 5px; -webkit-user-select: none; position: absolute; left: 0px; top: 0px;"><div class="gmnoprint" controlwidth="78" controlheight="80" style="cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default; width: 78px; height: 78px; position: absolute; left: 0px; top: 0px;"><div class="gmnoprint" controlwidth="78" controlheight="80" style="width: 78px; height: 78px; position: absolute; left: 0px; top: 0px;"><div style="visibility: hidden;"><svg version="1.1" overflow="hidden" width="78px" height="78px" viewBox="0 0 78 78" style="position: absolute; left: 0px; top: 0px;"><circle cx="39" cy="39" r="35" stroke-width="3" fill-opacity="0.2" fill="#f2f4f6" stroke="#f2f4f6"></circle><g transform="rotate(0 39 39)"><rect x="33" y="0" rx="4" ry="4" width="12" height="11" stroke="#a6a6a6" stroke-width="1" fill="#f2f4f6"></rect><polyline points="36.5,8.5 36.5,2.5 41.5,8.5 41.5,2.5" stroke-linejoin="bevel" stroke-width="1.5" fill="#f2f4f6" stroke="#000"></polyline></g></svg></div></div><div class="gmnoprint" controlwidth="59" controlheight="59" style="position: absolute; left: 10px; top: 11px;"><div style="width: 59px; height: 59px; overflow: hidden; position: relative;"><img src="./Waves_files/mapcnt3.png" draggable="false" style="position: absolute; left: 0px; top: 0px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"><div title="Pan left" style="position: absolute; left: 0px; top: 20px; width: 19.666666666666668px; height: 19.666666666666668px; cursor: pointer;"></div><div title="Pan right" style="position: absolute; left: 39px; top: 20px; width: 19.666666666666668px; height: 19.666666666666668px; cursor: pointer;"></div><div title="Pan up" style="position: absolute; left: 20px; top: 0px; width: 19.666666666666668px; height: 19.666666666666668px; cursor: pointer;"></div><div title="Pan down" style="position: absolute; left: 20px; top: 39px; width: 19.666666666666668px; height: 19.666666666666668px; cursor: pointer;"></div></div></div></div><div controlwidth="32" controlheight="40" style="cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default; position: absolute; left: 23px; top: 85px;"><div style="width: 32px; height: 40px; overflow: hidden; position: absolute; left: 0px; top: 0px;"><img src="./Waves_files/cb_scout2.png" draggable="false" style="position: absolute; left: -9px; top: -102px; width: 1028px; height: 214px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 32px; height: 40px; overflow: hidden; position: absolute; left: 0px; top: 0px; visibility: hidden;"><img src="./Waves_files/cb_scout2.png" draggable="false" style="position: absolute; left: -107px; top: -102px; width: 1028px; height: 214px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 32px; height: 40px; overflow: hidden; position: absolute; left: 0px; top: 0px; visibility: hidden;"><img src="./Waves_files/cb_scout2.png" draggable="false" style="position: absolute; left: -58px; top: -102px; width: 1028px; height: 214px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div style="width: 32px; height: 40px; overflow: hidden; position: absolute; left: 0px; top: 0px; visibility: hidden;"><img src="./Waves_files/cb_scout2.png" draggable="false" style="position: absolute; left: -205px; top: -102px; width: 1028px; height: 214px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div class="gmnoprint" controlwidth="0" controlheight="0" style="opacity: 0.6; display: none; position: absolute;"><div title="Rotate map 90 degrees" style="width: 22px; height: 22px; overflow: hidden; position: absolute; cursor: pointer;"><img src="./Waves_files/mapcnt3.png" draggable="false" style="position: absolute; left: -38px; top: -360px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div><div class="gmnoprint" controlwidth="25" controlheight="218" style="position: absolute; left: 27px; top: 130px;"><div title="Zoom in" style="width: 23px; height: 24px; overflow: hidden; position: relative; cursor: pointer; z-index: 1;"><img src="./Waves_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -400px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Click to zoom" style="width: 25px; height: 170px; overflow: hidden; position: relative; cursor: pointer; top: -4px;"><img src="./Waves_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -87px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Drag to zoom" style="width: 21px; height: 14px; overflow: hidden; position: absolute; -webkit-transition: top 0.25s ease; transition: top 0.25s ease; z-index: 2; cursor: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur) 8 8, default; left: 2px; top: 100px;"><img src="./Waves_files/mapcnt3.png" draggable="false" style="position: absolute; left: 0px; top: -384px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div><div title="Zoom out" style="width: 23px; height: 23px; overflow: hidden; position: relative; cursor: pointer; top: -4px; z-index: 3;"><img src="./Waves_files/mapcnt3.png" draggable="false" style="position: absolute; left: -17px; top: -361px; width: 59px; height: 492px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px;"></div></div></div><div class="gmnoprint" style="margin: 5px; z-index: 0; position: absolute; cursor: pointer; right: 0px; top: 0px;"><div class="gm-style-mtc" style="float: left;"><div draggable="false" title="Show street map" style="direction: ltr; overflow: hidden; text-align: center; position: relative; color: rgb(86, 86, 86); font-family: Roboto, Arial, sans-serif; -webkit-user-select: none; font-size: 11px; background-color: rgb(255, 255, 255); padding: 1px 6px; border-bottom-left-radius: 2px; border-top-left-radius: 2px; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.14902); -webkit-box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; min-width: 23px;">Map</div><div style="background-color: white; z-index: -1; padding-top: 2px; -webkit-background-clip: padding-box; background-clip: padding-box; border-width: 0px 1px 1px; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-right-color: rgba(0, 0, 0, 0.14902); border-bottom-color: rgba(0, 0, 0, 0.14902); border-left-color: rgba(0, 0, 0, 0.14902); -webkit-box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; position: absolute; left: 0px; top: 19px; text-align: left; display: none;"><div draggable="false" title="Show street map with terrain" style="color: rgb(0, 0, 0); font-family: Roboto, Arial, sans-serif; -webkit-user-select: none; font-size: 11px; background-color: rgb(255, 255, 255); padding: 3px 8px 3px 3px; direction: ltr; text-align: left; white-space: nowrap;"><span role="checkbox" style="box-sizing: border-box; position: relative; line-height: 0; font-size: 0px; margin: 0px 5px 0px 0px; display: inline-block; background-color: rgb(255, 255, 255); border: 1px solid rgb(198, 198, 198); border-top-left-radius: 1px; border-top-right-radius: 1px; border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; width: 13px; height: 13px; vertical-align: middle;"><div style="position: absolute; left: 1px; top: -2px; width: 13px; height: 11px; overflow: hidden; display: none;"><img src="./Waves_files/imgs8.png" draggable="false" style="position: absolute; left: -52px; top: -44px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; width: 68px; height: 67px;"></div></span><label style="vertical-align: middle; cursor: pointer;">Terrain</label></div></div></div><div class="gm-style-mtc" style="float: left;"><div draggable="false" title="Show satellite imagery" style="direction: ltr; overflow: hidden; text-align: center; position: relative; color: rgb(0, 0, 0); font-family: Roboto, Arial, sans-serif; -webkit-user-select: none; font-size: 11px; background-color: rgb(255, 255, 255); padding: 1px 6px; border-bottom-right-radius: 2px; border-top-right-radius: 2px; -webkit-background-clip: padding-box; background-clip: padding-box; border-width: 1px 1px 1px 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-top-color: rgba(0, 0, 0, 0.14902); border-right-color: rgba(0, 0, 0, 0.14902); border-bottom-color: rgba(0, 0, 0, 0.14902); -webkit-box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; min-width: 38px; font-weight: 500;">Satellite</div><div style="background-color: white; z-index: -1; padding-top: 2px; -webkit-background-clip: padding-box; background-clip: padding-box; border-width: 0px 1px 1px; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-right-color: rgba(0, 0, 0, 0.14902); border-bottom-color: rgba(0, 0, 0, 0.14902); border-left-color: rgba(0, 0, 0, 0.14902); -webkit-box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; position: absolute; right: 0px; top: 19px; text-align: left; display: none;"><div draggable="false" title="Zoom in to show 45 degree view" style="color: rgb(184, 184, 184); font-family: Roboto, Arial, sans-serif; -webkit-user-select: none; font-size: 11px; background-color: rgb(255, 255, 255); padding: 3px 8px 3px 3px; direction: ltr; text-align: left; white-space: nowrap; display: none;"><span role="checkbox" style="box-sizing: border-box; position: relative; line-height: 0; font-size: 0px; margin: 0px 5px 0px 0px; display: inline-block; background-color: rgb(255, 255, 255); border: 1px solid rgb(241, 241, 241); border-top-left-radius: 1px; border-top-right-radius: 1px; border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; width: 13px; height: 13px; vertical-align: middle;"><div style="position: absolute; left: 1px; top: -2px; width: 13px; height: 11px; overflow: hidden; display: none;"><img src="./Waves_files/imgs8.png" draggable="false" style="position: absolute; left: -52px; top: -44px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; width: 68px; height: 67px;"></div></span><label style="vertical-align: middle; cursor: pointer;">45°</label></div><div draggable="false" title="Show imagery with street names" style="color: rgb(0, 0, 0); font-family: Roboto, Arial, sans-serif; -webkit-user-select: none; font-size: 11px; background-color: rgb(255, 255, 255); padding: 3px 8px 3px 3px; direction: ltr; text-align: left; white-space: nowrap;"><span role="checkbox" style="box-sizing: border-box; position: relative; line-height: 0; font-size: 0px; margin: 0px 5px 0px 0px; display: inline-block; background-color: rgb(255, 255, 255); border: 1px solid rgb(198, 198, 198); border-top-left-radius: 1px; border-top-right-radius: 1px; border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; width: 13px; height: 13px; vertical-align: middle;"><div style="position: absolute; left: 1px; top: -2px; width: 13px; height: 11px; overflow: hidden; display: none;"><img src="./Waves_files/imgs8.png" draggable="false" style="position: absolute; left: -52px; top: -44px; -webkit-user-select: none; border: 0px; padding: 0px; margin: 0px; width: 68px; height: 67px;"></div></span><label style="vertical-align: middle; cursor: pointer;">Labels</label></div></div></div></div></div></div><img src="./Waves_files/scalewh.png" id="scalewh" style="position: absolute; left: 701px; top: 241px; width: 89px; height: 402px;"><img src="./Waves_files/scalewp.png" id="scalewp" style="position: absolute; left: 701px; top: 241px; width: 89px; height: 402px; display: none;"><img src="./Waves_files/scalews.png" id="scalews" style="position: absolute; left: 701px; top: 241px; width: 89px; height: 402px; display: none;"></div></div>
791
+ </div>
792
+
793
+ <div class="board">
794
+ <div class="menuPrevisao">
795
+ <div>Análise da previsão</div>
796
+ <div style="background-color: rgb(232, 43, 1); border-left-width: 1px; border-left-style: solid; border-right-width: 1px; border-right-style: solid;">Previsão em forma de números tabulados</div>
797
+ <div>Tabela comparativa para os picos da região</div>
798
+ </div>
799
+
800
+ <div class="forecast-analysis" style="display: none;">
801
+ <p>
802
+ Terça, 16 de Setembro de 2014
803
+ </p>
804
+ <p>A terça-feira amanhece com ondulações de leste e de nordeste, com ondas de meio metro.
805
+ </p><p>
806
+ </p><p>A formação é regular, com vento moderado de sudeste que deixa o mar meio mexido, mas tem surf em várias praias.
807
+ </p><p>
808
+ </p><p>Nesta quarta-feira, as ondas seguem de leste e mantêm meio metro, com vento moderado de sudeste de manhã e leste à tarde.
809
+ </p>
810
+ <p class="por">
811
+ Por
812
+ Herbert Passos Neto
813
+ </p>
814
+ </div>
815
+
816
+ <div id="forecast_table" style="display: block;"><table><tbody><tr class="day"><th></th><th colspan="4">Terça-feira</th><th colspan="8">Quarta-feira</th><th colspan="8">Quinta-feira</th><th colspan="4">Sexta-feira</th></tr><tr><th>Hora</th><td class="day">12</td><td class="rise">15</td><td class="night">18</td><td class="night">21</td><td class="night">0</td><td class="rise">3</td><td class="day">6</td><td class="day">9</td><td class="day">12</td><td class="rise">15</td><td class="night">18</td><td class="night">21</td><td class="night">0</td><td class="rise">3</td><td class="day">6</td><td class="day">9</td><td class="day">12</td><td class="rise">15</td><td class="night">18</td><td class="night">21</td><td class="night">0</td><td class="rise">3</td><td class="day">6</td><td class="day">9</td></tr><tr><th>Perí­odo (s)</th><td class="green">14.4</td><td class="green">14.1</td><td class="green">13.6</td><td class="green">13.3</td><td class="green">13.2</td><td class="green">12.9</td><td class="green">12.6</td><td class="green">12.3</td><td class="green">12.2</td><td class="green">12.1</td><td class="green">12</td><td class="red">6.6</td><td class="red">6.8</td><td class="red">6.7</td><td class="red">6.6</td><td class="red">6.5</td><td class="red">6.3</td><td class="red">6.1</td><td class="red">6.2</td><td class="red">6.5</td><td class="red">6.5</td><td class="red">6.5</td><td class="red">6.5</td><td class="red">6.4</td></tr><tr><th>Tamanho (m)</th><td class="o10">1.3</td><td class="o10">1.4</td><td class="o10">1.3</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o15">1.5</td><td class="o10">1.4</td><td class="o10">1.3</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.4</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.4</td></tr><tr><th>Direção</th><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td></tr><tr><th>Vento (km/h)</th><td class="v30">30</td><td class="v30">32</td><td class="v25">27</td><td class="v25">27</td><td class="v25">25</td><td class="v25">27</td><td class="v25">27</td><td class="v30">30</td><td class="v30">31</td><td class="v30">33</td><td class="v25">27</td><td class="v25">27</td><td class="v25">28</td><td class="v25">27</td><td class="v25">28</td><td class="v30">31</td><td class="v30">33</td><td class="v30">34</td><td class="v25">27</td><td class="v25">27</td><td class="v25">27</td><td class="v25">26</td><td class="v25">27</td><td class="v30">32</td></tr><tr><th>Direção</th><td class="v30">L</td><td class="v30">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">SE</td><td class="v30">SE</td><td class="v30">L</td><td class="v30">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">SE</td><td class="v30">SE</td><td class="v30">L</td><td class="v30">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">L</td><td class="v30">L</td></tr><tr class="day"><th></th><th colspan="4">Sexta-feira</th><th colspan="8">Sábado</th><th colspan="8">Domingo</th><th colspan="4">Segunda-feira</th></tr><tr><th>Hora</th><td class="day">12</td><td class="rise">15</td><td class="night">18</td><td class="night">21</td><td class="night">0</td><td class="rise">3</td><td class="day">6</td><td class="day">9</td><td class="day">12</td><td class="rise">15</td><td class="night">18</td><td class="night">21</td><td class="night">0</td><td class="rise">3</td><td class="day">6</td><td class="day">9</td><td class="day">12</td><td class="rise">15</td><td class="night">18</td><td class="night">21</td><td class="night">0</td><td class="rise">3</td><td class="day">6</td><td class="day">9</td></tr><tr><th>Perí­odo (s)</th><td class="red">6.3</td><td class="red">6.3</td><td class="red">6.4</td><td class="red">6.4</td><td class="red">6.7</td><td class="red">6.6</td><td class="red">6.5</td><td class="red">6.5</td><td class="red">6.4</td><td class="red">6.2</td><td class="red">6.4</td><td class="red">6.5</td><td class="red">6.7</td><td class="red">6.7</td><td class="red">6.6</td><td class="red">6.5</td><td class="red">6.4</td><td class="red">6.3</td><td class="red">6.2</td><td class="red">6.3</td><td class="red">6.4</td><td class="red">6.6</td><td class="red">6.7</td><td class="red">6.5</td></tr><tr><th>Tamanho (m)</th><td class="o10">1.4</td><td class="o10">1.3</td><td class="o10">1.2</td><td class="o10">1.2</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.2</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.2</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.2</td><td class="o10">1.3</td><td class="o10">1.3</td><td class="o10">1.4</td><td class="o10">1.2</td><td class="o10">1.2</td><td class="o10">1.2</td><td class="o10">1.2</td><td class="o10">1.2</td><td class="o10">1.3</td></tr><tr><th>Direção</th><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td><td class="o10">L</td></tr><tr><th>Vento (km/h)</th><td class="v30">33</td><td class="v30">31</td><td class="v20">24</td><td class="v20">24</td><td class="v25">26</td><td class="v25">25</td><td class="v20">24</td><td class="v25">27</td><td class="v25">29</td><td class="v30">31</td><td class="v25">25</td><td class="v25">25</td><td class="v25">25</td><td class="v20">24</td><td class="v20">24</td><td class="v25">28</td><td class="v25">29</td><td class="v30">32</td><td class="v20">24</td><td class="v20">23</td><td class="v20">24</td><td class="v20">23</td><td class="v20">24</td><td class="v30">30</td></tr><tr><th>Direção</th><td class="v30">L</td><td class="v30">L</td><td class="v20">L</td><td class="v20">L</td><td class="v25">L</td><td class="v25">L</td><td class="v20">SE</td><td class="v25">SE</td><td class="v25">L</td><td class="v30">L</td><td class="v25">L</td><td class="v25">L</td><td class="v25">L</td><td class="v20">L</td><td class="v20">SE</td><td class="v25">SE</td><td class="v25">L</td><td class="v30">L</td><td class="v20">L</td><td class="v20">L</td><td class="v20">L</td><td class="v20">L</td><td class="v20">L</td><td class="v30">L</td></tr></tbody></table></div>
817
+ <div id="reports" style="display: none; margin-top: 0px;"><div style="position: relative;"><div style="border: 1px solid black; background-color: rgb(238, 238, 102); font-family: Verdana; font-size: 10px; position: absolute; z-index: 10000; width: 170px; height: 50px; display: none; padding: 4px; top: 20px; left: 20px;">Testando</div><table><tbody><tr><td colspan="4" style="background-color: rgb(91, 91, 91); color: white; font-weight: bold;">Tabela comparativa</td><td colspan="22" style="font-weight: bold; background-color: rgb(91, 91, 91); color: white; text-align: center;">Previsão</td></tr><tr class="header"><td colspan="2" style="background-color: rgb(222, 222, 222);">Picos</td><td colspan="2" style="background-color: rgb(226, 226, 226);">Boletim</td><td colspan="2" style="background-color: rgb(91, 91, 91); color: white;"></td><td colspan="3" class="weekday" style="background-color: rgb(91, 91, 91); color: white;">Quarta</td><td colspan="3" class="weekday" style="background-color: rgb(91, 91, 91); color: white;">Quinta</td><td colspan="3" class="weekday" style="background-color: rgb(91, 91, 91); color: white;">Sexta</td><td colspan="3" class="weekday" style="background-color: rgb(91, 91, 91); color: white;">Sábado</td><td colspan="3" class="weekday" style="background-color: rgb(91, 91, 91); color: white;">Domingo</td><td colspan="3" class="weekday" style="background-color: rgb(91, 91, 91); color: white;">Segunda</td><td colspan="2" class="weekday" style="background-color: rgb(91, 91, 91); color: white;"></td></tr><tr><td class="zone"> São Gonçalo do Amarante</td><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/-sao-goncalo-do-amarante/morro-do-chapeu-(ce)">Morro do Chapéu (CE)<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td></tr><tr><td rowspan="4" class="zone">Caucaia</td><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/caucaia/boca-da-barra">Boca da Barra<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/caucaia/catavento">Cata-vento<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/caucaia/iparana">Iparana<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/caucaia/icarai">Icaraí<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226); cursor: pointer;"><div class="wh50 wfregular"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td rowspan="7" class="zone">Fortaleza</td><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/fortaleza/leste-oeste">Leste Oeste<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh75 wfgood"></div></td></tr><tr><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/fortaleza/titanzinho">Titanzinho<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td colspan="2"><a href="./Waves_files/Waves.html">Praia do Vizinho<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh150 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh150 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh150 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh150 wfbad"></div></td></tr><tr><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/fortaleza/diario">Diário<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td></tr><tr><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/fortaleza/praia-do-futuro">Praia do Futuro<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226); cursor: pointer;"><div class="wh50 wfregular"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td></tr><tr><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/fortaleza/jaqueline">Jaqueline<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td></tr><tr><td colspan="2"><a href="http://waves.terra.com.br/surf/ondas/ceara/fortaleza/portao">Portão<img src="./Waves_files/report.png" alt="Confira boletim" style="border: 0px; margin-left: 8px; float: right;"></a></td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td></tr><tr><td rowspan="2" class="zone">Aquirraz</td><td colspan="2">Porto das Dunas</td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td colspan="2">Prainha</td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td class="zone">Iguape</td><td colspan="2">Iguape</td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td class="zone">Caponga</td><td colspan="2">Caponga</td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr><tr><td class="zone">Beberibe</td><td colspan="2">Praia das Fontes</td><td class="forecast" style="background-color: rgb(226, 226, 226);"></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh125 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfgood"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td><td class="forecast" style="cursor: pointer;"><div class="wh100 wfbad"></div></td></tr></tbody></table></div></div>
818
+ </div>
819
+
820
+
821
+
822
+ <div id="footer">
823
+
824
+ <div id="leftFoot">
825
+ <img src="./Waves_files/waves.png">
826
+ <div>Copyright New Wave<br>Informação e Tecnologia<br>Digital LTDA.</div>
827
+ </div>
828
+ <div id="rightFoot">
829
+ <div class="col">
830
+ <h1><a href="http://waves.terra.com.br/surf/noticias/entrevistas/34">Entrevistas</a></h1>
831
+ <h1><a href="http://waves.terra.com.br/surf/noticias/bodyboard/expedicao/40">Expedições</a></h1>
832
+ <h1><a href="http://waves.terra.com.br/surf/gatinhas/">Gatinhas</a></h1>
833
+ <h1><a href="http://waves.terra.com.br/surf/especial/tv/11">TV Waves</a></h1>
834
+ <h1><a href="http://waves.terra.com.br/surf/especial/bodyboard/5">Bodyboard</a></h1>
835
+ <h1><a href="http://waves.terra.com.br/surf/noticias/bigwaves/67">Big Waves</a></h1>
836
+ <h1 class="h1top"><a href="http://waves.terra.com.br/surf/noticias/longboard/competicao/60">Competição</a></h1>
837
+ <ul>
838
+ <li><a href="http://waves.terra.com.br/surf/noticias/competicao/world-tour/26">World Tour</a></li>
839
+ <li><a href="http://waves.terra.com.br/surf/noticias/competicao/wqs/27">WQS</a></li>
840
+ <li><a href="http://waves.terra.com.br/surf/noticias/competicao/profissional/junior/335">Pro Junior</a></li>
841
+ <li><a href="http://waves.terra.com.br/surf/noticias/competicao/isa/28">ISA</a></li>
842
+ <li><a href="http://waves.terra.com.br/surf/noticias/competicao/amador/32">Amador</a></li>
843
+ </ul>
844
+ <h1 class="h1top"><a href="http://waves.terra.com.br/surf/noticias/colunistas/3">Colunistas</a></h1>
845
+ <ul>
846
+ <li><a href="http://waves.terra.com.br/surf/noticias/colunistas/ana-paula/cores-do-mar/646">Cores do Mar</a></li>
847
+ <li><a href="http://waves.terra.com.br/surf/noticias/colunistas/fabio-gouveia/459">Espêice Fia</a></li>
848
+ <li><a href="http://waves.terra.com.br/surf/noticias/colunistas/tulio-brandao/430">Leitura de onda</a></li>
849
+ <li><a href="http://waves.terra.com.br/surf/noticias/colunistas/motaury-porto/54">Muitas águas</a></li>
850
+ <li><a href="http://waves.terra.com.br/surf/noticias/colunistas/55">Palanque móvel</a></li>
851
+ <li><a href="http://waves.terra.com.br/surf/noticias/colunistas/sidao-tenucci/56">Soul Surf</a></li>
852
+ </ul>
853
+ </div>
854
+ <div class="col">
855
+ <h1><a href="http://waves.terra.com.br/surf/noticias/variedades/43">Geral</a></h1>
856
+ <ul>
857
+ <li><a href="http://waves.terra.com.br/surf/noticias/balada/6">Balada</a></li>
858
+ <li><a href="http://waves.terra.com.br/surf/noticias/44">Notícias</a></li>
859
+ <li><a href="http://waves.terra.com.br/surf/noticias/equipamentos/45">Equipamentos</a></li>
860
+ <li><a href="http://waves.terra.com.br/surf/noticias/meio-ambiente/4">Meio Ambiente</a></li>
861
+ <li><a href="http://waves.terra.com.br/surf/noticias/mercado/46">Mercado</a></li>
862
+ <li><a href="http://waves.terra.com.br/surf/noticias/promocao/48">Promoções</a></li>
863
+ <li><a href="http://waves.terra.com.br/surf/noticias/som/47">Som</a></li>
864
+ <li><a href="http://waves.terra.com.br/surf/noticias/art/49">Surf Art</a></li>
865
+ </ul>
866
+ <h1 class="h1top"><a href="http://waves.terra.com.br/surf/especial/longboard/10">Longboard</a></h1>
867
+ <ul>
868
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/competicao/60">Competição</a></li>
869
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/viagens/41">Trips</a></li>
870
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/videos/61">Vídeos</a></li>
871
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/62">Novidades</a></li>
872
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/entrevistas/63">Entrevista</a></li>
873
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/colunistas/64">Opinião</a></li>
874
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/feminino/89">Feminino</a></li>
875
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/fotos/65">Fotos</a></li>
876
+ <li><a href="http://waves.terra.com.br/surf/noticias/longboard/equipamentos/66">Equipamentos</a></li>
877
+ </ul>
878
+ </div>
879
+ <div class="col">
880
+ <h1><a href="http://waves.terra.com.br/surf/ondas/condicao/brasil/">Wavescheck</a></h1>
881
+ <ul>
882
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/rio-grande-do-sul/5">Rio Grande do Sul</a></li>
883
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/santa-catarina/4">Santa Catarina</a></li>
884
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/parana/3">Paraná</a></li>
885
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/sao-paulo/1">São Paulo</a></li>
886
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/rio-de-janeiro/2">Rio de Janeiro</a></li>
887
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/espirito-santo/6">Espírito Santo</a></li>
888
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/bahia/7">Bahia</a></li>
889
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/sergipe/15">Sergipe</a></li>
890
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/alagoas/8">Alagoas</a></li>
891
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/pernambuco/13">Pernambuco</a></li>
892
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/paraiba/12">Paraíba</a></li>
893
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/rio-grande-do-norte/14">Rio Grande do Norte</a></li>
894
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/ceara/9">Ceará</a></li>
895
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/maranhao/10">Maranhão</a></li>
896
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/para/11">Pará</a></li>
897
+ <li><a href="http://waves.terra.com.br/surf/ondas/condicao/internacional/">Internacional</a></li>
898
+ </ul>
899
+ <h1 class="h1top"><a href="http://waves.terra.com.br/user/CreateUserAction_input.action">Cadastre-se</a></h1>
900
+ <ul>
901
+ <li><a href="http://waves.terra.com.br/user/Login">Alterar dados</a></li>
902
+ <li><a href="http://waves.terra.com.br/surf/noticia/aviso-legal/17735">Regulamento</a></li>
903
+ </ul>
904
+ </div>
905
+ <div class="col">
906
+ <h1><a href="http://waves.terra.com.br/surf/especial/feminino/13">Feminino</a></h1>
907
+ <ul>
908
+ <li><a href="http://waves.terra.com.br/surf/noticias/feminino/16">Feminews</a></li>
909
+ <li><a href="http://waves.terra.com.br/surf/noticias/feminino/longboard/89">Longboard</a></li>
910
+ <li><a href="http://waves.terra.com.br/surf/noticias/feminino/angela/105">Angela</a></li>
911
+ <li><a href="http://waves.terra.com.br/surf/noticias/feminino/mapa/19">Mapa da Mina</a></li>
912
+ <li><a href="http://waves.terra.com.br/surf/noticias/feminino/competicao/22">Palanque</a></li>
913
+ <li><a href="http://waves.terra.com.br/surf/fotos/gatos/25907">Peixões</a></li>
914
+ <li><a href="http://waves.terra.com.br/surf/fotos/gatos/25907">Raio X</a></li>
915
+ <li><a href="http://waves.terra.com.br/surf/noticias/colunistas/ana-paula/cores-do-mar/646">Cores do Mar</a></li>
916
+ </ul>
917
+ <h1 class="h1top"><a href="http://waves.terra.com.br/">Waves</a></h1>
918
+ <ul>
919
+ <li><a href="http://duvidas.terra.com.br/">Fale conosco</a></li>
920
+ <li><a href="http://waves.terra.com.br/surf/noticia/expediente/25932">Expediente</a></li>
921
+ <li><a href="mailto:marcelo@waves.com.br">Anuncie aqui</a></li>
922
+ </ul>
923
+ <h1 class="h1top"><a href="http://waves.terra.com.br/surf/noticia/regulamento-de-utilizacao-do-site-waves/17735">Aviso Legal</a></h1>
924
+ </div>
925
+ </div>
926
+ </div>
927
+
928
+ <script type="text/javascript">terra_stats_metrics();</script>
929
+ </div>
930
+ </div>
931
+ </div>
932
+
933
+ <script type="text/javascript" async="" src="./Waves_files/areainfo"></script><iframe id="destination_publishing_iframe_terra_0" src="./Waves_files/dest4.html" style="display: none; width: 0px; height: 0px;"></iframe><iframe id="google_osd_static_frame_9414679317269" name="google_osd_static_frame" style="display: none; width: 0px; height: 0px;"></iframe></body><object id="79996b79-f8da-a598-082a-2aa38b8cb190" width="0" height="0" type="application/gas-events-cef"></object></html>