forked from grangier/python-goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_cnbc1.html
More file actions
1008 lines (919 loc) · 152 KB
/
Copy pathtest_cnbc1.html
File metadata and controls
1008 lines (919 loc) · 152 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html class="cnbc_html" xmlns:tvservices="http://www.msnbc.com"><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta http-equiv="pics-label" content="(pics-1.1 "http://www.icra.org/ratingsv02.html" l gen true for "http://www.msnbc.msn.com" r (nz 1vz 1lz 1oz 1cz 1) "http://www.rsac.org/ratingsv01.html" l gen true for "http://www.msnbc.msn.com" r (l 0n 0s 0v 0))"><meta property="og:title" content="Fed's Statement on Operation Twist with a Twist"><meta property="og:url" content="http://www.cnbc.com/id/44613978/"><meta property="og:image" content="http://media.cnbc.com/i/CNBC/CNBC_Images/header/CNBC_Logo_PS.gif"><meta property="og:site_name" content="CNBC.com"><meta property="og:description" content="The Fed launched much anticipated "operation twist" with a twist—it is also taking direct aim at mortgages. The Fed also warned of significant downside economic risks. Check out how it changed its statement."><meta name="description" content="The Fed launched much anticipated "operation twist" with a twist—it is also taking direct aim at mortgages. The Fed also warned of significant downside economic risks. Check out how it changed its statement."><meta name="Search.Document" content="story"><meta name="Search.Title" content="Fed's Statement on Operation Twist with a Twist"><meta name="Search.Byline" content="Patti Domm"><meta name="Search.Source" content="CNBC.com"><meta name="Search.Updated" content="Wed, 21 Sep 2011 20:35:28 GMT"><meta name="Search.Expires" content="Fri, 31 Dec 9999 23:59:59 GMT"><meta name="GOOGLEBOT" content="unavailable_after: 31-Dec-9999 23:59:59 GMT"><meta name="Search.Section" content="Market Insider with Patti Domm"><meta name="keywords" content="Bonds,Economy,Interest Rates,Economy (Global),Banking,Economic Measures,Debt,Central Banks,Ben Bernanke,Federal Reserve,Currencies,Investment Strategy,Top Blogs"><title>Stock Market and Investing: Fed's Statement on Operation Twist with a Twist - CNBC</title><link rel="stylesheet" type="text/css" href="/css/cnbc.css?rti=201016"><link rel="stylesheet" type="text/css" href="/id/20003434?rti=201111"><link rel="apple-touch-icon" href="http://media.cnbc.com/i/CNBC/CNBC_Images/mobile_images/cnbc_iphone_icon.png"><link rel="canonical" href="http://www.cnbc.com/id/44613978/Fed_s_Statement_on_Operation_Twist_with_a_Twist"><style>#linkslist44613978{display:none;}</style><link rel="stylesheet" type="text/css" href="/id/29842157/"><script type="text/javascript" src="/js/std.js"></script><script src="/default.ashx/id/23149822/" type="text/javascript"></script><input type="hidden" id="cnbc_story_publisheddate" name="cnbc_story_publisheddate" value="634522341288670000"><script type="text/javascript">
var cnbc_newMediaServer_img = 'http://media.cnbc.com/i/CNBC/CNBC_Images';
var cnbc_global_quoteServer='http://quote.cnbc.com';
var cnbc_watchlistURL='http://watchlist.cnbc.com/';
var cnbc_RegisterURL='https://register.cnbc.com/';
var cnbc_LoginURL='https://login.cnbc.com/';
var cnbc_AppsURL='http://apps.cnbc.com/';
var cnbc_QuoteURLPartnerID = '2';
var cnbc_QuoteUrlSuffix = '/quote-html-webservice/quote.htm';
var cnbc_QuoteUrlFVSuffix = '/quote-html-webservice/fvquote.htm';
var cnbc_QuotePageURL = 'http://data.cnbc.com/quotes';
var cnbc_validUserCheckURL = 'https://login.cnbc.com/cas/checkCasTicket?';
var cnbc_validUserCheckTimeout = '10800000 ';
var cnbc_symservice_url = 'http://symlookup.cnbc.com/symlookup.do';
var cnbc_symlookup_page_url = '/id/15837272';
var cnbc_symmaxresults = '10';
var cnbc_static_symmaxresults = '20';
var cnbc_symDropMenuTop = '48';
var cnbc_symDropMenuLeft = '0';
var cnbc_symSymbolCount = '5';
var cnbc_serverTimeUrl = 'http://videometa.cnbc.com/getadmincontent.do?action=servertime&output=json';
var cnbc_commentCountStr = 'http://comments.cnbc.com/comments/count/view.js';
var cnbc_commentsCountBatch = '100';
</script><script type="text/javascript" src="/js/cnbc.js?rti=201008"></script>
<script type="text/javascript" src="/js/cnbc_quote_components.js?rti=201008"></script>
<script type="text/javascript" src="/js/cnbc_videocontroller.js?rti=201008"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Common/js/core/prototype_ajax.js?rti=201008"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Common/js/core/base.js?rti=201008"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Common/js/core/requestor.js?rti=201008"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Common/js/basesymlookup.js?rti=201008"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Common/js/partners/cnbc/symlookup.js?rti=201008"></script>
<script type="text/javascript" src="http://ticker.cnbc.com/scripts/cnbc_ticker.js?v=C0950"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/js/Comments/cnbc_headerSearchUpdate.js?v=V06"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/js/cnbc_quote_components-ipad.js?V=16"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/js/storyPagePagination2.js?vers=1.0"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/js/yahoobuzz/partnersharedOverrider.js?vers=1.0"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/js/jquery/jquery.js"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/CNBC_DART/js/cnbc_dart_data.js?ver=16"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/CNBC_DART/js/cnbc_dart_init.js?ver=10"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/js/cnbc_video_date.js?vers=002"></script>
<script>
var cnbc_showcommentcount = true;
</script>
<script type="text/javascript" src="http://media.cnbc.com/i//CNBC/Components/js/Comments/CommentsSubmitSuccessUpdate.js?vers=001"></script>
<script type="text/javascript" src="http://media.cnbc.com/i/CNBC/Components/js/cnbc_displayUsername_Override.js"></script>
<script type="text/javascript" lang="javascript" src="http://cdn.gigya.com/JS/socialize.js?apikey=2_Jx5rsFp18pauXYlKGzHQVpbahcR1iJ30bbyfqZsn69A6vbt3dQ7gYFCESWKMM1sP"></script>
<script>
var conf = { APIKey:'2_Jx5rsFp18pauXYlKGzHQVpbahcR1iJ30bbyfqZsn69A6vbt3dQ7gYFCESWKMM1sP' }
var ua = new gigya.services.socialize.UserAction();
</script><script> var cnbc_doctype = 'Story';</script><script type="text/javascript">
var cnbc_videoShareDocId=15840232;
var cnbc_videoPlusURL='http://plus.cnbc.com';
var cnbc_bumperURL='http://podcast.cnbc.com.edgesuite.net/cnbc-video-bumper.wmv';
var cnbc_flashBumperURL='http://podcast.cnbc.com.edgesuite.net/firstinbusiness1.flv';
var cnbc_sectionName= 'Market Insider with Patti Domm';
var cnbc_topSection= 'News';
var cnbc_subSection= 'CNBC Blogs';
var cnbc_subSubSection= 'Market Insider with Patti Domm';
var cnbc_microSection= '';
var cnbc_nanoSection= '';
var cnbc_docid= '44613978';
var cnbc_doclayout= 'BlogPost';
var cnbc_docsource= 'CNBC.com';
var cnbc_pagedesc= 'Fed\'s Statement on Operation Twist with a Twist';
var cnbc_videosectionid='15839263';
var cnbc_tickerRootPath='http://www.cnbc.com';
var cnbc_tickerDataPath='http://ticker.cnbc.com';
var cnbc_tickerQuoteID='15837290';
var cnbc_tickerVideoID='15840232';
var cnbc_tickerGuestID='15837857';
var cnbc_tickerHelpID='15839052';
var cnbc_videorestriction='"keywords=;redirect1=https://register.cnbc.com/refreshlogin.jsp?login-view=blogs&service=[url];redirect2=http://www.cnbc.com/id/16225965"';
var cnbc_adsite='nbcu.cnbc';
var cnbc_globalvideoformat='flashv2';
var cnbc_FlashNAURL='http://media.cnbc.com/i/CNBC/components/video/player/plusErrorMsg.flv';
var cnbc_FlashPlayer='http://media.cnbc.com/i/CNBC/Components/FlashVideo/flashVideoPlayerv81';
var cnbc_FlashPlayerInline='http://media.cnbc.com/i/CNBC/Components/FlashVideo/inline/flashVideoPlayerv14';
var cnbc_FlashLoaderURL='http://media.cnbc.com/i/CNBC/components/Video/Player/Video_Player_Loading.swf?v1';
var cnbc_trunc_sect=null
var cnbc_adord=Math.random()*10000000000000000;
var enableCallbacks = true;
var enableAuto3rdPartyTracking = true;
var dartPlayer = null;
try
{
DARTReady = function()
{
if(!enableAuto3rdPartyTracking)
{
dartPlayer.setAutoLogThirdPartyImpression(false);
dartPlayer.setAutoLogThirdPartyClick(false);
}
}
}
catch(e){}
</script><script type="text/javascript">gEnabled=false;</script></head><body leftmargin="0" topmargin="0" class="cnbc"><script src="http://www.nbcudigitaladops.com/hosted/global_header.js" language="JavaScript"></script><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="1" height="1" id="flashQuoteProxy" align="middle"><param name="allowScriptAccess" value="always"><param name="movie" value="http://quote.cnbc.com/quoteproxy.swf"><param name="quality" value="high"><param name="bgcolor" value="#ffffff"><embed quality="high" bgcolor="#ffffff" width="1" height="1" name="flashQuoteProxy" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://quote.cnbc.com/quoteproxy.swf"></embed></object><div id="cnbc_contents" align="center"><div class="w970 cnbc_hd"><div id="wrapper" class="w1100"><div><a href="#skipnav" style="display:none;visibility:hidden">Skip navigation</a><script>pd_top('Story','html40','44613978','Fed\'s Statement on Operation Twist with a Twist','The Fed launched much anticipated "operation twist" with a twist—it is also taking direct aim at mortgages. The Fed also warned of significant downside economic risks. Check out how it changed its statement.','CNBCNews','News','CNBC Blogs','','1','16:35, 21/09/11','Patti Domm','blogpost','','','','69715','', '1',0,
{AdBanner:{AdGroup:'SLAWTB',AdSizeCode:'LG',Width:'468',Height:'60'},AdBannerFront:{},AdSponsor:{AdGroup:'SLAAAL',AdSizeCode:'S3',Width:'120',Height:'30'},AdOverThePage:{}}
,'CNBC','true','CNBC.com','Market Insider with Patti Domm','');pd_me.ads = {'adShowcaseJson':{'adCallString':'&PG=SLAWSH&AP=SA','adWidth':'300','adHeight':'250'}};</script><div id="nm_c1" class="nmX"> </div><div id="nm_c2" class="nmX"> </div><div id="nm_c3" class="nmX"> </div><div id="nm_c4" class="nmX"> </div></div><div id="head" class="w779"><div pcid="0" style="padding-bottom:0px;"><div id="headerOverlay" class="clr" style="display:block;width:auto; position:relative; top:0px; left:0px; height:0px; width:0px; display:inline; z-index:50000;; ;"><div class="none" style="auto"><div class="noneB noneBI clr" style="auto"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EQ27393163"><style>
#headerOverlay{
color: #ccd6df;
font-size:11px;
line-height:130%;
}
#headerOverlay strong{
color: #ffd226;
}
#headerOverlay a {color:#ccd6df;text-decoration:none;}
#headerOverlay a:hover {color:#ffd226;}
#headerOverlay a:visited {color:#ccd6df;}
#headerOverlay a:visited:hover {color:#ffd226;}
</style><div id="headerFlashRT" style="position:relative; z-index:50001"><div class="fL" style="width:;height:;position:absolute; top:05px; left:740px; width: 225px;"><script language="javascript">var fl=new flashObj2();fl.flashFile = "http://msnbcmedia.msn.com/i/CNBC/CNBC_Images/_TV_PROMO/New Folder/MDPC_Flippy_2011_TradingOn.swf";fl.flashVars = "";fl.bgcolor = "";fl.altImgWB3 = "";fl.url = "";fl.width = "216";fl.height = "55";fl.ID = "fl44610895";fl.play = "true";fl.loop = "true";fl.quality = "Best";fl.scale = "noborder";fl.salign = "tl";fl.mode = "transparent";fl.cabVersion = "7,0,0,0";fl.flashVer = "7";fl.defaultType = "";fl.htm = "";fl.downloadLink = "top";fl.webTV = "true";fl.deviceFont = "false";fl.instrumented = "false";fl.seamlessTabbing = "";try {fl.write();}catch(e) {document.write(writeFlashComponent2(fl));}</script></div></div></div></div></div></div></div><div pcid="0" style="padding-bottom:0px;"><div id="cnbc_hdsect" class="fL w970" style="display:block;"><div id="cnbc_home_but" onmouseover="cnbc_elementState(this,'cursor','pointer');" onmouseout="cnbc_elementState(this,'cursor','default');" title="CNBC.com Homepage" onclick="cnbc_multionclick('/');"></div><div id="cnbc_qsrch"><div id="cnbc_quote_chart" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><form method="POST" autocomplete="off" action="http://data.cnbc.com/quotes" id="cnbc_quote_box_header" name="cnbc_quote_box_header"><div class="w100p h25"></div><div class="w100p"><div class="fL" style="margin-right: 2px; _margin-top:-1px;"><input id="cnbc_hdqbox" type="text" class="cnbc_hdfld" name="input_symbol" size="16" value="Symbol / Company" onfocus="cnbc_clr_addto_wl(this.id)" onKeyPress="javascript: return submitEnterSlash(this.form,this.form.input_symbol.value);"></div><div class="fL"><input type="image" value="Go" width="26" height="21" align="absmiddle" name="goimage" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/go_btn.gif" onclick="javascript: cnbc_radiogroup_submitSlash_form_with_symbol(this.form,this.form.input_symbol.value);"></div><div class="sbtxt fL cf10" style="margin-right: 1px; width: 38px; line-height: 11px;"><a href="/id/15837272">Symbol Lookup</a></div></div></form><div id="symDropDownMenu" style="display: none;"></div><script type="text/javascript">
onloadAutoSuggest();
</script></div><form method="POST"><div id="cnbc_srch"><div class="fL"><div class="fL" style="margin-right: 2px; _margin-top:-1px;"><input id="cnbc_hdsrch" name="searchboxinput" type="text" class="cnbc_hdfld" size="40" value=" " onfocus="cnbc_clr_addto_wl(this.id)" onKeyPress="return cnbc_srchbox_submitenter(this);"></div><div class="fL"><input type="image" value="Search" width="26" height="21" align="absmiddle" name="searchimage" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/go_btn.gif" onclick="cnbc_srchbox_submit(this.form,'http://search.cnbc.com/main.do',this.form.searchboxinput.value);"></div></div></div></form><div id="cnbc_tic_ad_area"><div class="fL"><img width="88" height="7" src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/header_spon_title.gif"></div><div class="fL"><script type="text/javascript">
var pgValue = "CNBSEB";
var cmsKeyWord = "alternative investing";
var cmsNewPG = "CNBWAB";
if ((cmsKeyWord.length > 0) && (cmsNewPG.length > 0)) { var newPG = cmsNewPG.split(';'); var group = cmsKeyWord.split(';');
if (newPG.length == group.length) { var description = cnbc_pagedesc.toLowerCase();
for(var x = 0; x < group.length; x++) { var keyWord = group[x].split('|'); for (var j = 0; j < keyWord.length; j++) {
if (description.indexOf(keyWord[j].toLowerCase()) != -1) { pgValue = newPG[x]; j = keyWord.length; x = group.length; }}}}}
</script><div id="SearchBox88x31" name="SearchBox88x31"></div><script type="text/javascript">
if (cnbc_DARTFlag=="new")
{
cnbc_DARTAdCall(88,31,pgValue);
} else {
dapMgr.enableACB("SearchBox88x31",false);
dapMgr.renderAd("SearchBox88x31","&PG=" + pgValue + "&AP=1071&PN=CNBC",88,31);
}
</script></div></div></div><div id="cnbc_mbrsect"><div id="cnbc_usertime"><span id="cnbc_add_wl_tag" class="cf10 wl_navfont clr_ahover cstrong wcomp" align="right"></span><br><span id="cnbc_username" class="w_username"></span><br><script language="JavaScript" type="text/javascript">cnbc_displayUsername("cnbc_usertime","cnbc_username");</script></div><div align="right" class="mbrlks" id="signInLinksDiv"><div id="unreg_user" style="display:none;"><a class="cnbcRegister" href="https://register.cnbc.com/memberCenter.do">Register</a><a class="cnbcSignIn" href="#" onclick="javascript:cnbc_signIn('https://register.cnbc.com/refreshlogin.jsp','?source=header&service=url');return false;">Sign In</a></div><div id="reg_user" style="display:none;"><a class="cnbcRegister" href="https://register.cnbc.com/memberCenter.do">Member Center</a><a class="cnbcSignIn" href="#" onclick="javascript:cnbc_gotomodURL('https://login.cnbc.com/cas/logout','?service=url');">Sign Out</a></div><div id="overlay" style="display:none;"><a class="cnbcRegister" href="https://register.cnbc.com/memberCenter.do">Register</a><img class="cnbc_lineNav" style="margin-bottom:-5px; _margin-bottom:-5px;" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/signInHeader.gif"></div><script language="JavaScript">cnbc_toggleUserState();</script></div></div><div id="signInDivHidden" style="display:none"><div class="topLeft"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/topLeft.gif" width="7" height="7" class="borderImage"></div><div class="topRight"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/topRight.gif" width="7" height="7" class="borderImage"></div><div class="bottomRight"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/bottomRight.gif" width="7" height="7" class="borderImage"></div><div class="bottomLeft"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/bottomLeft.gif" width="7" height="7" class="borderImage"></div><div class="leftImage" id="leftImage"><img id="leftImageDiv" src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/left.gif" width="7" height="276px" class="borderImage"></div><div class="topImage"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/top.gif" width="282" height="7" class="borderImage"></div><div class="topImageFiller"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/filler.gif" width="50" height="7"></div><div class="rightImage" id="rightImage"><img id="rightImageDiv" src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/right.gif" width="7" height="276px" class="borderImage"></div><div class="bottomImage"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/navigation/bottom.gif" width="330" height="7" class="borderImage"></div></div><div id="cnbc_hNav"><div class="fL" style="height:26px;"><div id="hnav_15839285" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFFFFF;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'" href="/id/15839285">HOME</a></div></div><div class="fL" style="height:26px;" onmouseover="cnbc_drpdwnmouseOver('subnav_15837362'); cnbc_drpdwnpos('hnav_15837362','subnav_15837362');" onmouseout="cnbc_drpdwnmouseOut('subnav_15837362');"><div id="hnav_15837362" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFDF0A;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFDF0A'" href="/id/15837362">NEWS</a></div></div><div class="fL" style="height:26px;" onmouseover="cnbc_drpdwnmouseOver('subnav_15839121'); cnbc_drpdwnpos('hnav_15839121','subnav_15839121');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839121');"><div id="hnav_15839121" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFFFFF;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'" href="/id/15839121">MARKETS</a></div></div><div class="fL" style="height:26px;" onmouseover="cnbc_drpdwnmouseOver('subnav_15839135'); cnbc_drpdwnpos('hnav_15839135','subnav_15839135');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839135');"><div id="hnav_15839135" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFFFFF;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'" href="/id/15839135">EARNINGS</a></div></div><div class="fL" style="height:26px;" onmouseover="cnbc_drpdwnmouseOver('subnav_15839069'); cnbc_drpdwnpos('hnav_15839069','subnav_15839069');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839069');"><div id="hnav_15839069" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFFFFF;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'" href="/id/15839069">INVESTING</a></div></div><div class="fL" style="height:26px;" onmouseover="cnbc_drpdwnmouseOver('subnav_15839263'); cnbc_drpdwnpos('hnav_15839263','subnav_15839263');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839263');"><div id="hnav_15839263" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFFFFF;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'" href="/id/15839263">VIDEO</a></div></div><div class="fL" style="height:26px;" onmouseover="cnbc_drpdwnmouseOver('subnav_15837856'); cnbc_drpdwnpos('hnav_15837856','subnav_15837856');" onmouseout="cnbc_drpdwnmouseOut('subnav_15837856');"><div id="hnav_15837856" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFFFFF;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'" href="/id/15837856">CNBC TV</a></div></div><div class="fL" style="height:26px;" onmouseover="cnbc_drpdwnmouseOver('subnav_30011296'); cnbc_drpdwnpos('hnav_30011296','subnav_30011296');" onmouseout="cnbc_drpdwnmouseOut('subnav_30011296');"><div id="hnav_30011296" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFFFFF;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'" href="/id/30011296">CNBC 360</a></div></div><div class="fL" style="height:26px;"><div id="hnav_40954456" class="fL cnbc_NavTxt" style="height:16px; margin-top:7px;"><a style="text-decoration:none;color:#FFFFFF;" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'" href="/id/40954456">CNBC PRO</a></div></div></div></div><div id="cnbc_sub_hNav"><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt"><a href="/id/15837362/"><span id="hsubnav_15837362">U.S.</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/19832390/"><span id="hsubnav_19832390">Asia-Pacific</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/19794221/"><span id="hsubnav_19794221">Europe</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/20910258/"><span id="hsubnav_20910258">Economy</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/19836768/"><span id="hsubnav_19836768">Energy</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/21344232/"><span id="hsubnav_21344232">Green</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/19854910/"><span id="hsubnav_19854910">Technology</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/16561378/"><span id="hsubnav_16561378">Blogs</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/19916736/"><span id="hsubnav_19916736">Wires</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/23937480/"><span id="hsubnav_23937480">Slideshows</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_dvdr"><a href="/id/16903222/"><span id="hsubnav_16903222">Special Reports</span></a></div><div style="margin-top:3px;" class="fL cnbc_sub_NavTxt_last"><a href="/id/25097425/"><span id="hsubnav_25097425">Corrections</span></a></div></div></div><div class="fL w970 adOPAContainer" align="center"><div id="USNewsBlogs728" name="USNewsBlogs728"></div><script type="text/javascript">
if (cnbc_DARTFlag=="new")
{
cnbc_DARTAdCall(728,90,"CNBGE7");
} else {
dapMgr.enableACB("USNewsBlogs728",false);
dapMgr.renderAd("USNewsBlogs728","&PG=CNBGE7&AP=1390&PN=CNBC",728,90);
}
</script></div></div><div id="page" class="fL"><div id="mbody" class="fL"><div id="content" class="w970 fL clrR"><div class="refresh_layout"><div class="SCol w100p"><div id="subheader_33453243" class="cnbcSubHeader " style="" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive"><h1>Market Insider</h1></div><div id="renderReaderContent" style="display:none" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive"><map name="map42990976"><area coords="0,0,960,50" shape="rect" alt="Market Insider" href="/id/20409666/"></map><img src="http://media.cnbc.com/i/CNBC/Sections/News_And_Analysis/_Blogs/Beat Blogs/Market Insider/COVER/market_insider_960x50.jpg" border="0" height="50" width="960" vspace="0" hspace="0" title="Market Insider - CNBC.com" alt="Market Insider - CNBC.com" usemap="
 #map42990976"></div><script language="javascript" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive">
var cnbcSubHeaderId = document.getElementById('subheader_'+ 33453243);
cnbcSubHeaderId.innerHTML = document.getElementById('renderReaderContent').innerHTML;
</script></div><div class="CCol fR clrR mR2a"><div class="CColC"><div pcid="0" style="padding-bottom:20px;"><div class="fL" style="width:350;height:;padding-bottom:10px;
padding-left:25px;
margin-bottom:30px;
margin-top:10px;"><div class="fL"><img width="150" vspace="0" hspace="0" height="18" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/flexi/assets/cnbcsponsoredby.gif"></div><div id="USNewsBlogs300x250" name="USNewsBlogs300x250"></div><script type="text/javascript">
if (cnbc_DARTFlag=="new")
{
cnbc_DARTAdCall(300,900,"CNBGE3");
} else {
dapMgr.enableACB("USNewsBlogs300x250",false);
dapMgr.renderAd("USNewsBlogs300x250","&PG=CNBGE3&AP=&PN=CNBC",300,900);
}
</script></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MasConId_ID0EVB23279575" class="clr" style="display:block;width:100%px; margin-top: 10px; margin-bottom: 10px; clear: none;; ;"><div class="BLOGMC_" style="100%"><div class="BLOGMC_H" style="100%"><div class="BLOGMC_HI" style="100%"><div class="BLOGMC_HC" style="100%"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; "><a href="/id/20409666/?site=14081545">RECENT POSTS</a></h2></div><div class="fR h100p padR"><div class="fL h100p"><table class="h100p"><tr><td valign="middle"><p><img src="http://media.cnbc.com/j/CNBC/CNBC_Images/flexi/assets/arrow_front_white.standard.gif" border="0" vspace="0" hspace="0"></p></td></tr></table></div><div class="fL cFont txttrans_none wcomp padL2 " style="line-height:20px; "><a href="/id/20409666/?site=14081545">More</a></div></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EVB23279575"><div style="display:none; width:80%;"><br/>Current DateTime: 08:48:59 23 Sep 2011<br/>LinksList Documentid: 23279717<br/>Expiration DateTime: 9/23/2011 8:51:17 PM</div><div class="Dot_CNBC_BoxB Dot_CNBC_BoxBI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><span class="commentsCount" style="display:none" id="_23279717_1"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("", "23279717_1","cnbcCommentsTxt" );
</script><div class="disptable"><ul class="ll_bullet disptable"><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44648425" class="cf11 cnorm">Week Ahead: Traders Expect a Volatile Final Week of the Quarter</a><span class="commentsCount" style="display:none" id="44648425_23279717_1"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44648425", "23279717_1","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44647369" class="cf11 cnorm">Silver Prices Slammed — Here's Why</a><span class="commentsCount" style="display:none" id="44647369_23279717_2"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44647369", "23279717_2","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44640787" class="cf11 cnorm">HP's CEO Decision Conundrum</a><span class="commentsCount" style="display:none" id="44640787_23279717_3"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44640787", "23279717_3","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44633558" class="cf11 cnorm">Friday Look Ahead: Stocks are Likely to Take Another Run at the Summer's Lows</a><span class="commentsCount" style="display:none" id="44633558_23279717_4"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44633558", "23279717_4","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44626413" class="cf11 cnorm">Global Meltdown: Investors Are Dumping Nearly Everything</a><span class="commentsCount" style="display:none" id="44626413_23279717_5"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44626413", "23279717_5","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44616427" class="cf11 cnorm">Thursday Look Ahead: Traders Look for Something to Break Gloom</a><span class="commentsCount" style="display:none" id="44616427_23279717_6"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44616427", "23279717_6","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44613978" class="cf11 cnorm">Fed's Statement on Operation Twist with a Twist</a><span class="commentsCount" style="display:none" id="44613978_23279717_7"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44613978", "23279717_7","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44613160" class="cf11 cnorm">Moody's 'Out of Its Mind,' Ratings Action 'Absurd': Bove</a><span class="commentsCount" style="display:none" id="44613160_23279717_8"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44613160", "23279717_8","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44612142" class="cf11 cnorm">Fed's 'Operation Twist' and Stocks: A History Lesson</a><span class="commentsCount" style="display:none" id="44612142_23279717_9"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44612142", "23279717_9","cnbcCommentsTxt" );
</script></li><li class="ll_bullet cFont cf11 clr" id="linkslist23279717"><a href="/id/44602488" class="cf11 cnorm">Wednesday Look Ahead: Fed Expected to Bring On Operation Twist, as Republicans Complain</a><span class="commentsCount" style="display:none" id="44602488_23279717_10"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("44602488", "23279717_10","cnbcCommentsTxt" );
</script></li></ul></div><span class="commentsCount" style="display:none" id="_23279717_1"></span><script>
cnbc_commentCountMapObj.cnbc_commentCountMap_put("", "23279717_1","cnbcCommentsTxt" );
</script></li></ul></div></div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MIBioMC" class="clr" style="display:block;width:350px; margin-bottom: 20px;; ;"><div class="BLOGMC_" style="350"><div class="BLOGMC_H" style="350"><div class="BLOGMC_HI" style="350"><div class="BLOGMC_HC" style="350"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; ">EDITOR</h2></div><div class="fR h100p padR"></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="350"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EXF30584894">
<div style="display:none; width:80%;"><br/>Current DateTime: 08:51:09 23 Sep 2011<br/>LinksList Documentid: 44039410</div><div class="BLOGLL_B BLOGLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"><td><a href="http://www.cnbc.com/id/15837548/cid/98209"><img align="left" border="0" vspace="0" hspace="0" class="mB5 mR10 BLOGLL_IMG" src="http://msnbcmedia.msn.com/i/CNBC/Sections/News_And_Analysis/_Blogs/Beat Blogs/Market Insider/COVER/_Images/domm_patti_60x60.jpg"></a></td><td width="95%" class="cFont cf11"><a href="http://www.cnbc.com/id/15837548/cid/98209" class="cstrong cf12">Patti Domm</a><div class="featDefRelated disptable"><ul class="ll_bullet featDefRelated disptable"><p class="featDefRelated disptable nomargin clr">CNBC Executive Editor, News, responsible for news coverage of the markets and economy.</p></ul></div></td></tr></table></li></ul></div>
</div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MasConId_ID0ESAAC44039478" class="clr" style="display:block;width:100%px; margin-bottom: 10px;; ;"><div class="BLOGMC_" style="100%"><div class="BLOGMC_H" style="100%"><div class="BLOGMC_HI" style="100%"><div class="BLOGMC_HC" style="100%"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; ">CONTRIBUTORS</h2></div><div class="fR h100p padR"></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0ESAAC44039478"><div style="display:none; width:80%;"><br/>Current DateTime: 08:51:09 23 Sep 2011<br/>LinksList Documentid: 44039414</div><div class="BLOGLL_B BLOGLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"><td><a href="/id/42785994"><img align="left" border="0" vspace="0" hspace="0" class="mB5 mR10 BLOGLL_IMG" src="http://msnbcmedia.msn.com/i/CNBC/Sections/News_And_Analysis/_Blogs/Beat Blogs/Market Insider/COVER/_Images/greenberg_herb_60x60.jpg"></a></td><td width="95%" class="cFont cf11"><a href="/id/42785994" class="cstrong cf12">Herb Greenberg</a><div class="featDefRelated disptable"><ul class="ll_bullet featDefRelated disptable"><p class="featDefRelated disptable nomargin clr">Senior Stocks Commentator</p></ul></div></td></tr></table></li><li class="nobullet disptable cFont cf11 clr"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"><td><a href="/id/20398120"><img align="left" border="0" vspace="0" hspace="0" class="mB5 mR10 BLOGLL_IMG" src="http://msnbcmedia.msn.com/i/CNBC/Sections/News_And_Analysis/_Blogs/Beat Blogs/Market Insider/COVER/_Images/pisani_bob_60x60.jpg"></a></td><td width="95%" class="cFont cf11"><a href="/id/20398120" class="cstrong cf12">Bob Pisani</a><div class="featDefRelated disptable"><ul class="ll_bullet featDefRelated disptable"><p class="featDefRelated disptable nomargin clr">On-Air Stocks Editor</p></ul></div></td></tr></table></li><li class="nobullet disptable cFont cf11 clr"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"><td><a href="/id/42991888"><img align="left" border="0" vspace="0" hspace="0" class="mB5 mR10 BLOGLL_IMG" src="http://msnbcmedia.msn.com/i/CNBC/Sections/News_And_Analysis/_Blogs/Beat Blogs/Market Insider/COVER/_Images/epperson_sharon_60x60.jpg"></a></td><td width="95%" class="cFont cf11"><a href="/id/42991888" class="cstrong cf12">Sharon Epperson</a><div class="featDefRelated disptable"><ul class="ll_bullet featDefRelated disptable"><p class="featDefRelated disptable nomargin clr">Senior Energy & Personal Finance Correspondent</p></ul></div></td></tr></table></li><li class="nobullet disptable cFont cf11 clr"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"><td><a href="/id/42991872"><img align="left" border="0" vspace="0" hspace="0" class="mB5 mR10 BLOGLL_IMG" src="http://msnbcmedia.msn.com/i/CNBC/Sections/News_And_Analysis/_Blogs/Beat Blogs/Market Insider/COVER/_Images/santelli_rick_60x60.jpg"></a></td><td width="95%" class="cFont cf11"><a href="/id/42991872" class="cstrong cf12">Rick Santelli</a><div class="featDefRelated disptable"><ul class="ll_bullet featDefRelated disptable"><p class="featDefRelated disptable nomargin clr">On-Air Editor</p></ul></div></td></tr></table></li><li class="nobullet disptable cFont cf11 clr"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"><td><a href="/id/42991966"><img align="left" border="0" vspace="0" hspace="0" class="mB5 mR10 BLOGLL_IMG" src="http://msnbcmedia.msn.com/i/CNBC/Sections/News_And_Analysis/_Blogs/Beat Blogs/Market Insider/COVER/_Images/spechler_lori2_60x60.jpg"></a></td><td width="95%" class="cFont cf11"><a href="/id/42991966" class="cstrong cf12">Lori Spechler</a><div class="featDefRelated disptable"><ul class="ll_bullet featDefRelated disptable"><p class="featDefRelated disptable nomargin clr">Senior Editor at CNBC, commodity trader in a former life. </p></ul></div></td></tr></table></li></ul></div></div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MasConId_ID0EWBAC44039053" class="clr" style="display:block;width:100%px; margin-bottom: 10px;; ;"><div class="BLOGMC_" style="100%"><div class="BLOGMC_H" style="100%"><div class="BLOGMC_HI" style="100%"><div class="BLOGMC_HC" style="100%"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; "><a href="/id/15839215/">STOCKS</a></h2></div><div class="fR h100p padR"><div class="fL cFont txttrans_none wcomp padL2 " style="line-height:20px; ">» <a href="/id/15839215/">More</a></div></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EWBAC44039053"><div class="clr" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><span id="WSODQ_COMPONENT_ID0E2DAC19751224"><div class="cnbc_bg_cfdde6 h13"><div class="fL h13" style="width: 22%;" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/symbol.gif"></div></div><div class="fL h13" style="width: 22%;" align="right"><div class="h13 padR10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/last.gif"></div></div><div class="fL h13" style="width: 12%;" align="center"></div><div class="fL h13" style="width: 22%;" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/change.gif"></div></div><div class="fL h13" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/per_change.gif"></div></div></div><div class="clr"><table class="w100p" border="0" cellspacing="0" cellpadding="0"><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID1ED"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_.DJIA_SYMBOL_1_ID0E2DAC19751224"><a onclick="window.location='http://data.cnbc.com/quotes/.DJIA'">DOW</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_.DJIA_LAST_1_ID0E2DAC19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_.DJIA_CHANGEARROW_1_ID0E2DAC19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_.DJIA_CHANGE_1_ID0E2DAC19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_.DJIA_CHANGEPCT_1_ID0E2DAC19751224"></span></div></div><span id="WSODQSTREAMOFF_.DJIA_FLASH_1_ID0E2DAC19751224"></span></div></div></td></tr><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID1EE"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_COMP_SYMBOL_1_ID0E2DAC19751224"><a onclick="window.location='http://data.cnbc.com/quotes/COMP'">NASDAQ</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_COMP_LAST_1_ID0E2DAC19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_COMP_CHANGEARROW_1_ID0E2DAC19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_COMP_CHANGE_1_ID0E2DAC19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_COMP_CHANGEPCT_1_ID0E2DAC19751224"></span></div></div><span id="WSODQSTREAMOFF_COMP_FLASH_1_ID0E2DAC19751224"></span></div></div></td></tr><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID1EF"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_.SPX_SYMBOL_1_ID0E2DAC19751224"><a onclick="window.location='http://data.cnbc.com/quotes/.SPX'">S&P 500</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_.SPX_LAST_1_ID0E2DAC19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_.SPX_CHANGEARROW_1_ID0E2DAC19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_.SPX_CHANGE_1_ID0E2DAC19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_.SPX_CHANGEPCT_1_ID0E2DAC19751224"></span></div></div><span id="WSODQSTREAMOFF_.SPX_FLASH_1_ID0E2DAC19751224"></span></div></div></td></tr></table></div><script language="JavaScript" type="text/javascript">
cnbc_quoteComponent_init_getData(".DJIA,COMP,.SPX","WSODQ_COMPONENT_ID0E2DAC19751224","WSODQ","true","ID0E2DAC197512241","off","false",'flexQuote');
</script></span></div></div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MasConId_ID0ESIAC44039037" class="clr" style="display:block;width:100%px; margin-bottom: 10px;; ;"><div class="BLOGMC_" style="100%"><div class="BLOGMC_H" style="100%"><div class="BLOGMC_HI" style="100%"><div class="BLOGMC_HC" style="100%"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; "><a href="/id/15839171/">COMMODITIES</a></h2></div><div class="fR h100p padR"><div class="fL cFont txttrans_none wcomp padL2 " style="line-height:20px; ">» <a href="/id/15839171/">More</a></div></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0ESIAC44039037"><div class="clr" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><span id="WSODQ_COMPONENT_ID0EXKAC19751224"><div class="cnbc_bg_cfdde6 h13"><div class="fL h13" style="width: 22%;" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/symbol.gif"></div></div><div class="fL h13" style="width: 22%;" align="right"><div class="h13 padR10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/last.gif"></div></div><div class="fL h13" style="width: 12%;" align="center"></div><div class="fL h13" style="width: 22%;" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/change.gif"></div></div><div class="fL h13" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/per_change.gif"></div></div></div><div class="clr"><table class="w100p" border="0" cellspacing="0" cellpadding="0"><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID2ED"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="cnbc_show_Delayed_data h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_CLCV1_SYMBOL_0_ID0EXKAC19751224"><a onclick="window.location='/id/15839171'">OIL</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_CLCV1_LAST_0_ID0EXKAC19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_CLCV1_CHANGEARROW_0_ID0EXKAC19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_CLCV1_CHANGE_0_ID0EXKAC19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_CLCV1_CHANGEPCT_0_ID0EXKAC19751224"></span></div></div><span id="WSODQSTREAMOFF_CLCV1_FLASH_0_ID0EXKAC19751224"></span></div></div></td></tr><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID2EE"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="cnbc_show_Delayed_data h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_GCCV1_SYMBOL_0_ID0EXKAC19751224"><a onclick="window.location='/id/15839171'">Gold</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_GCCV1_LAST_0_ID0EXKAC19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_GCCV1_CHANGEARROW_0_ID0EXKAC19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_GCCV1_CHANGE_0_ID0EXKAC19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_GCCV1_CHANGEPCT_0_ID0EXKAC19751224"></span></div></div><span id="WSODQSTREAMOFF_GCCV1_FLASH_0_ID0EXKAC19751224"></span></div></div></td></tr><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID2EF"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="cnbc_show_Delayed_data h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_SICV1_SYMBOL_0_ID0EXKAC19751224"><a onclick="window.location='/id/15839171'">SILVER</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_SICV1_LAST_0_ID0EXKAC19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_SICV1_CHANGEARROW_0_ID0EXKAC19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_SICV1_CHANGE_0_ID0EXKAC19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_SICV1_CHANGEPCT_0_ID0EXKAC19751224"></span></div></div><span id="WSODQSTREAMOFF_SICV1_FLASH_0_ID0EXKAC19751224"></span></div></div></td></tr></table></div><script language="JavaScript" type="text/javascript">
cnbc_quoteComponent_init_getData("CLCV1,GCCV1,SICV1","WSODQ_COMPONENT_ID0EXKAC19751224","WSODQ","false","ID0EXKAC197512240","off","false",'flexQuote');
</script></span></div></div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MasConId_ID0EOPAC44039049" class="clr" style="display:block;width:100%px; margin-bottom: 10px;; ;"><div class="BLOGMC_" style="100%"><div class="BLOGMC_H" style="100%"><div class="BLOGMC_HI" style="100%"><div class="BLOGMC_HC" style="100%"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; "><a href="/id/15839178/">CURRENCIES</a></h2></div><div class="fR h100p padR"><div class="fL cFont txttrans_none wcomp padL2 " style="line-height:20px; ">» <a href="/id/15839178/">More</a></div></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EOPAC44039049"><div class="clr" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><span id="WSODQ_COMPONENT_ID0EUBAE19751224"><div class="cnbc_bg_cfdde6 h13"><div class="fL h13" style="width: 22%;" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/symbol.gif"></div></div><div class="fL h13" style="width: 22%;" align="right"><div class="h13 padR10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/last.gif"></div></div><div class="fL h13" style="width: 12%;" align="center"></div><div class="fL h13" style="width: 22%;" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/change.gif"></div></div><div class="fL h13" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/per_change.gif"></div></div></div><div class="clr"><table class="w100p" border="0" cellspacing="0" cellpadding="0"><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID3ED"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_EUR%3dX_SYMBOL_0_ID0EUBAE19751224"><a onclick="window.location='/id/15839178'">EUR/USD</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_EUR%3dX_LAST_0_ID0EUBAE19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_EUR%3dX_CHANGEARROW_0_ID0EUBAE19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_EUR%3dX_CHANGE_0_ID0EUBAE19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_EUR%3dX_CHANGEPCT_0_ID0EUBAE19751224"></span></div></div><span id="WSODQSTREAMOFF_EUR%3dX_FLASH_0_ID0EUBAE19751224"></span></div></div></td></tr><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID3EE"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_JPY%3dX_SYMBOL_0_ID0EUBAE19751224"><a onclick="window.location='/id/15839178'">USD/JPY</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_JPY%3dX_LAST_0_ID0EUBAE19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_JPY%3dX_CHANGEARROW_0_ID0EUBAE19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_JPY%3dX_CHANGE_0_ID0EUBAE19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_JPY%3dX_CHANGEPCT_0_ID0EUBAE19751224"></span></div></div><span id="WSODQSTREAMOFF_JPY%3dX_FLASH_0_ID0EUBAE19751224"></span></div></div></td></tr><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID3EF"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_GBP%3dX_SYMBOL_0_ID0EUBAE19751224"><a onclick="window.location='/id/15839178'">GBP/USD</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_GBP%3dX_LAST_0_ID0EUBAE19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_GBP%3dX_CHANGEARROW_0_ID0EUBAE19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_GBP%3dX_CHANGE_0_ID0EUBAE19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_GBP%3dX_CHANGEPCT_0_ID0EUBAE19751224"></span></div></div><span id="WSODQSTREAMOFF_GBP%3dX_FLASH_0_ID0EUBAE19751224"></span></div></div></td></tr></table></div><script language="JavaScript" type="text/javascript">
cnbc_quoteComponent_init_getData("EUR=X,JPY=X,GBP=X","WSODQ_COMPONENT_ID0EUBAE19751224","WSODQ","true","ID0EUBAE197512241","off","false",'flexQuote');
</script></span></div></div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MasConId_ID0ELGAE44038868" class="clr" style="display:block;width:100%px; margin-bottom: 10px;; ;"><div class="BLOGMC_" style="100%"><div class="BLOGMC_H" style="100%"><div class="BLOGMC_HI" style="100%"><div class="BLOGMC_HC" style="100%"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; "><a href="/id/15839203/">TREASURYS</a></h2></div><div class="fR h100p padR"><div class="fL cFont txttrans_none wcomp padL2 " style="line-height:20px; ">» <a href="/id/15839203/">More</a></div></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0ELGAE44038868"><div class="clr" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><span id="WSODQ_COMPONENT_ID0EQIAE19751224"><div class="cnbc_bg_cfdde6 h13"><div class="fL h13" style="width: 22%;" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/symbol.gif"></div></div><div class="fL h13" style="width: 22%;" align="right"><div class="h13 padR10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/last.gif"></div></div><div class="fL h13" style="width: 12%;" align="center"></div><div class="fL h13" style="width: 22%;" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/change.gif"></div></div><div class="fL h13" align="left"><div class="h13 padL10"><img border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/per_change.gif"></div></div></div><div class="clr"><table class="w100p" border="0" cellspacing="0" cellpadding="0"><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID4ED"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_US2YT%3dXX_SYMBOL_0_ID0EQIAE19751224"><a onclick="window.location='/id/15839203'">2-Yr</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_US2YT%3dXX_LAST_0_ID0EQIAE19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_US2YT%3dXX_CHANGEARROW_0_ID0EQIAE19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_US2YT%3dXX_CHANGE_0_ID0EQIAE19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_US2YT%3dXX_CHANGEPCT_0_ID0EQIAE19751224"></span></div></div><span id="WSODQSTREAMOFF_US2YT%3dXX_FLASH_0_ID0EQIAE19751224"></span></div></div></td></tr><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID4EE"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_US5YT%3dXX_SYMBOL_0_ID0EQIAE19751224"><a onclick="window.location='/id/15839203'">5-Yr</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_US5YT%3dXX_LAST_0_ID0EQIAE19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_US5YT%3dXX_CHANGEARROW_0_ID0EQIAE19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_US5YT%3dXX_CHANGE_0_ID0EQIAE19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_US5YT%3dXX_CHANGEPCT_0_ID0EQIAE19751224"></span></div></div><span id="WSODQSTREAMOFF_US5YT%3dXX_FLASH_0_ID0EQIAE19751224"></span></div></div></td></tr><tr><td><div onmouseout="mrq_mouseOut(this);" onmouseover="mrq_mouseOver(this);" class="h23 cnbc_wl_mrq_div bluefont cursor_pt ocomp" id="idID4EF"><div class="bluefont cFont cf11 h23 lh21 clr cursor_pt ocomp"><div class="fL h23" style="width: 22%;" align="left"><div class="h23 uC cstrong padL10 lh21"><span id="WSODQSTREAMOFF_US10YT%3dXX_SYMBOL_0_ID0EQIAE19751224"><a onclick="window.location='/id/15839203'">10-Yr</a></span></div></div><div class="fL h23" style="width: 22%;" align="right"><div class="h23 padR10 lh21 blac"><span id="WSODQSTREAMOFF_US10YT%3dXX_LAST_0_ID0EQIAE19751224">
Loading...
</span></div></div><div class="fL h23 lh8" style="width: 12%;" align="center"><div style="padding-top: 5px;"><span id="WSODQSTREAMOFF_US10YT%3dXX_CHANGEARROW_0_ID0EQIAE19751224"></span></div></div><div class="fL h23 blac" style="width: 22%;" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_US10YT%3dXX_CHANGE_0_ID0EQIAE19751224"></span></div></div><div class="fL h23 blac" align="left"><div class="h23 padL10 lh21"><span id="WSODQSTREAMOFF_US10YT%3dXX_CHANGEPCT_0_ID0EQIAE19751224"></span></div></div><span id="WSODQSTREAMOFF_US10YT%3dXX_FLASH_0_ID0EQIAE19751224"></span></div></div></td></tr></table></div><script language="JavaScript" type="text/javascript">
cnbc_quoteComponent_init_getData("US2YT=XX,US5YT=XX,US10YT=XX","WSODQ_COMPONENT_ID0EQIAE19751224","WSODQ","true","ID0EQIAE197512241","off","false",'flexQuote');
</script></span></div></div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MasConId_ID0EHNAE44040050" class="clr" style="display:block;width:100%px; margin-bottom: 10px;; ;"><div class="BLOGMC_" style="100%"><div class="BLOGMC_H" style="100%"><div class="BLOGMC_HI" style="100%"><div class="BLOGMC_HC" style="100%"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; "><a href="/id/20360207/">MARKET MOVERS</a></h2></div><div class="fR h100p padR"><div class="fL cFont txttrans_none wcomp padL2 " style="line-height:20px; ">» <a href="/id/20360207/">More</a></div></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EHNAE44040050"><iframe name="marketmovers_mi" id="marketmovers_mi" src="http://api.cnbc.com/api/movers/movers.asp?chartType=both&rowCount=3&link=quote" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="338" height="300"></iframe></div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div id="MIRSSMC" class="clr" style="display:block;width:100%px; margin-bottom:20px;; ;"><div class="BLOGMC_" style="100%"><div class="BLOGMC_H" style="100%"><div class="BLOGMC_HI" style="100%"><div class="BLOGMC_HC" style="100%"><div style="height:20px; " class="fL w100p"><div class="fL padL" style="line-height:20px; "><h2 class="CNBC_refreshH1 BLOGMC_HC cstrong cFont txttrans_none " style="line-height:20px; ">RSS FEED</h2></div><div class="fR h100p padR"><div class="fL cFont txttrans_none wcomp padL2 " style="line-height:20px; ">» <a href="/id/17073179/">Help</a></div></div></div></div></div></div><div class="BLOGMC_B BLOGMC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EKQAE30584898"><div style="display:none; width:80%;"><br/>Current DateTime: 08:51:09 23 Sep 2011<br/>LinksList Documentid: 30584899</div><div class="BLOGMC_B BLOGMC_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"><td><a href="http://www.cnbc.com/id/30584902/device/rss/rss.xml "><img align="left" border="0" vspace="0" hspace="0" class="mB5 mR10 BLOGMC_IMG" src="http://msnbcmedia.msn.com/i/CNBC/CNBC_Images/flexi/assets/rss_24x24.gif"></a></td><td width="95%" class="cFont cf11"><a href="http://www.cnbc.com/id/30584902/device/rss/rss.xml " class="cstrong cf12">Subscribe to this RSS feed</a><div class="featDefRelated disptable"><ul class="ll_bullet featDefRelated disptable"><p class="featDefRelated disptable nomargin clr">Stay up to date with the Market Insider blog.</p></ul></div></td></tr></table></li></ul></div><link rel="alternate" title="CNBC.com - Sports Biz" href="http://www.cnbc.com/id/30584902/device/rss/rss.xml" type="application/rss+xml"></div></div></div></div></div><div pcid="0" style="padding-bottom:20px;"><div class="fL" style="width:350;height:;padding-bottom:10px;
padding-left:25px;
margin-bottom:40px;
margin-top:20px;"></div></div></div></div><div id="cnbc_textbody" class="BCol fL blogLayout"><script type="text/javascript">setDefault('cnbc_textbody');</script><div class="BColC"><div class="marB20" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive"><h1 class="cnbc_blghdln">Fed's Statement on Operation Twist with a Twist</h1></div><div class="w100p clr cnbc_blgwlt_dot" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive"><div class="padT"><div class="fL w349"><div class="fL tool_datetime clr">Published:
<span class="cnbc_sbhd_comp">Wednesday, 21 Sep 2011 | 4:35 PM ET </span></div></div><div class="fR tool_textsize"><img width="20" height="20" hspace="0" vspace="0" align="left" src="http://media.cnbc.com/i/CNBC/CNBC_Images/header/icon_textT.gif"><span class="cnbc_sbhd_comp fL padR">Text Size </span><a href="#" onClick="dcrFontContent('cnbc_textbody');return false;"><img width="16" height="20" hspace="0" vspace="0" align="left" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/header/icon_text_minus.gif"></a><a href="#" onClick="incrFontContent('cnbc_textbody');return false;"><img width="16" height="20" hspace="0" vspace="0" align="left" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/header/icon_text_plus.gif"></a></div></div></div><div class="w100p clr cnbc_blgwlt_dot" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive"><div class="w100p fL clr padT"><div class="fL clr padB20"><div class="fL"><span class="cnbc_sbhd_comp">By: <a href="/id/15837548/cid/98209">Patti Domm</a><br>CNBC Executive News Editor</span><br></div></div></div><div class="partnerCompWrapper cnbc_blgwlt_dot shareTop" style="" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><div class="cnbc_fblike"></div><div class="partnerShareCont"><ul class="partnerShare"><li class="" style="margin-right: 50px;"><style>
#divButtons .gig-button-container-facebook-like {margin-right:-2px;}
#divButtons .gig-button-container-twitter {margin-right:15px;}
#divButtons .gig-button-container-google-plusone {margin-right:-16px;}
#divButtons .gig-button-container-linkedin {margin-right:17px;}
</style>
<script>
var params ={
userAction:ua,
shareButtons: [{provider:'facebook-like',action:'recommend'},{provider:'twitter'},{provider:'google-plusone'},{provider:'linkedin'},{provider:'share',enableCount:false}],
containerID: 'divButtons'}
</script>
<div id="divButtons"></div>
<script>
gigya.services.socialize.showShareBarUI(conf,params);
</script> </li></ul></div></div></div><div style="" class="storyBody"><p class="textBodyBlack"><span id="byLine"></span>Some traders found Wednesday's <b><strong><a href="/id/44612678/"><strong>Fed statement</strong></a> </strong></b>to be a bit gloomier than expected.</p><p class="textBodyBlack"><span id="byLine"></span>One reason may be the addition of concern about Europe: "there are significant downside risks to the economic outlook, <em>including strains in global financial markets</em>." </p><p class="textBodyBlack"><span id="byLine"></span>
<div id="playerIFRAMEVid" class=" fL vidInlineWrapper" style="width:340;"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="cnbcplayer" width="320" height="285"><param name="type" value="application/x-shockwave-flash"><param name="allowfullscreen" value="true"><param name="allowscriptaccess" value="always"><param name="quality" value="best"><param name="wmode" value="transparent"><param name="bgcolor" value="#000000"><param name="salign" value="lt"><param name="movie" value="http://plus.cnbc.com/rssvideosearch/action/player/id/3000046948/code/cnbcinline/module/videoModule"><embed PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" allowfullscreen="true" allowscriptaccess="always" bgcolor="#000000" quality="best" salign="lt" type="application/x-shockwave-flash" wmode="transparent" name="cnbcplayer" width="320" height="285" src="http://plus.cnbc.com/rssvideosearch/action/player/id/3000046948/code/cnbcinline/module/videoModule"></embed></object><iframe id="IFRAME_44616599" SRC="/id/44616599" NAME="CNBCVideo44616599" FRAMEBORDER="0" SCROLLING="NO" WIDTH="340" HEIGHT="105"></iframe></div>
</p><p class="textBodyBlack"><span id="byLine"></span>The Fed did launch much anticipated "operation twist" with a twist—it is also taking direct aim at mortgages. The Fed said it would replace $400 billion in short-term Treasurys (3-years or less) to the same amount of longer term securities—with durations of 6- to 30-years.</p><p class="textBodyBlack"><span id="byLine"></span>But it also said it would reinvest the runoff from its maturing mortgage securities back into the mortgage market. Take a<b><strong> <a href="http://msnbcmedia.msn.com/i/CNBC/Sections/News_And_Analysis/_Blogs/Beat%20Blogs/Market%20Insider/DAILY%20POSTS/crt_sept_fomc_statement_comparison.pdf">look here</a> </strong></b>at the Fed's statement and how it was changed from the August statement, courtesy of Ian Lyngen, senior Treasury strategist at CRT Capital. </p><p class="textBodyBlack"><span id="byLine"></span>"<em>Questions? Comments? Email us at <script>document.write("<a href='mailto:"+"marketinsider"+"@"+"cnbc.com'>");</script><script>document.write("marketinsider"+"@"+"cnbc.com");</script><script>document.write('</a>');</script></em></p><div class="textBodyBlack clr"><i><em>© 2011 CNBC.com</em></i></div><img width="100%" height="0"></div><div class="cnbc_tags_comp w100p clr marT20 marB20" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive"><div class="cnbc_keywords cnbc_rdMore"><div><span class="title">Topics:</span><span class="content"><a href="/id/15837548/cid/97097/Interest_Rates">Interest Rates</a> | <a href="/id/15837548/cid/97250/Economy_Global">Economy (Global)</a> | <a href="/id/15837548/cid/105197/Banking">Banking</a> | <a href="/id/15837548/cid/139676/Economic_Measures">Economic Measures</a> | <a href="/id/15837548/cid/105194/Debt">Debt</a> | <a href="/id/15837548/cid/114014/Central_Banks">Central Banks</a> | <a href="/id/15837548/cid/97112/Ben_Bernanke">Ben Bernanke</a> | <a href="/id/15837548/cid/97242/Federal_Reserve">Federal Reserve</a> | <a href="/id/15837548/cid/97220/Currencies">Currencies</a> | <a href="/id/15837548/cid/97101/Investment_Strategy">Investment Strategy</a></span></div></div></div><div class="cnbcPrintEmail" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive"><a class="print" href="javascript:printThis('44613978')">Print</a><a class="email" href="javascript:emailThis('44613978')">Email</a></div><div class="fL padR20 mT2" xmlns:archive="urn:schemas-microsoft-com:workbench:xslt:archive"></div></div><div class="clr BColB"><div pcid="0" style="padding-bottom:0px;"><div class="partnerCompWrapper cnbc_blgwlt_dot shareTop shareBottom" style="margin-top: -5px; background-image: none !important;" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><div class="cnbc_fblike"></div><div class="partnerShareCont"><ul class="partnerShare"><li class="" style="margin-right: 50px;"><style>
#divButtonsBottom .gig-button-container-facebook-like {margin-right:-2px;}
#divButtonsBottom .gig-button-container-twitter {margin-right:15px;}
#divButtonsBottom .gig-button-container-google-plusone {margin-right:-16px;}
#divButtonsBottom .gig-button-container-linkedin {margin-right:17px;}
</style>
<script>
var paramsbottom ={
userAction:ua,
shareButtons: [{provider:'facebook-like',action:'recommend'},{provider:'twitter'},{provider:'google-plusone'},{provider:'linkedin'},{provider:'share',enableCount:false}],
containerID: 'divButtonsBottom'
}
</script>
<div id="divButtonsBottom"></div>
<script>
gigya.services.socialize.showShareBarUI(conf,paramsbottom);
</script> </li></ul></div></div></div><div pcid="0" style="padding-bottom:0px;"><div class="fL" style="width:100%;height:;margin:30px 0 0 0; _margin:20px 0 0 0;"><div id="Blog520SpnsrdLnks" style="padding: 5px 0px 5px 0px; width: 100%; border-top:1px solid #CCD6DB;">
<script type="text/javascript">adsonar_placementId=1515497;adsonar_pid=2257770;adsonar_ps=-1;adsonar_zw=520;adsonar_zh=235;adsonar_jv='ads.adsonar.com';</script><script language="JavaScript" src="http://js.adsonar.com/js/adsonar.js"></script>
</div></div></div><div pcid="0" style="padding-bottom:0px;"><div class="fL" style="width:530;height:;margin:20px 0 0 0;"><div id="CNBCFilmstrip2a" class="clr" style="display:block;width:100%px; ; ;"><div class="FS2MC_" style="100%"><div class="FS2MC_H" style="100%"><div class="FS2MC_HI" style="100%"><div class="FS2MC_HC" style="100%"><div style="height:20px;" class="fL w100p"><div class="fL padL h100p"><table class="h100p"><tr><td valign="middle"><p><img src="http://media.cnbc.com/i/CNBC/Components/Art/common/mini_peacock_grey.gif" border="0" height="11" width="17" vspace="0" hspace="0"></p></td></tr></table></div><div class="fL padL" style="line-height:20px;"><h2 class="CNBC_refreshH1 FS2MC_HC cstrong cFont txttrans_none " style="line-height:20px;">CNBC HIGHLIGHTS</h2></div><div class="fR h100p padR"><div class="fL cFont txttrans_none wcomp padL2 " style="line-height:20px;">» More: <a href="/id/16561378/">Blogs</a> | <a href="/id/34576225/">Quizzes</a> | <a href="/id/23937480/">Slideshows</a> | <a href="/id/16903222/">Special Reports</a> | <a href="/id/15839263/">Video</a></div></div></div></div></div></div><div class="FS2MC_B FS2MC_BI clr" style="100%"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EXB19829949"><div style="width:140;" class="fL ocomp CNBCFlimStrip"><div style="width:140;" class="wcomp FL_DIV"><div class="cFont clr FL_BI"><ul class="ll_bullet FL_ART"><li class="nobullet cFont cf11 clr FL_ART_LI"><a href="/id/44318876/"><img src="http://media.cnbc.com/i/CNBC/Sections/News_And_Analysis/_Special_Reports/IMF-WB_Mtg_Fall2011/Graphics/CNBC_IMF_Meeting_140.jpg" border="0" height="105" width="140" vspace="0" hspace="0" title="IMF and World Bank Meeting - A CNBC Special Report" alt="IMF and World Bank Meeting - A CNBC Special Report"></a></li></ul><ul class="ll_bullet FL_TITLE"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="nobullet cFont cf11 clr cstrong FL_TITLE_LI"><a href="/id/44503870/">Global Village</a> </span></li></ul><ul class="ll_bullet FL_DESP"><li class="nobullet cFont cf11 clr">With the European debt crisis shaking markets, the IMF/World Bank meeting is happening at the right time.</li></ul><ul class="ll_bullet FL_TAG"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="cnbc_moreLinks_tab_item FL_SPAN"><a href="/id/44504069/">Asia Wants Larger Role</a> </span></li></ul></div></div></div><div style="width:140;" class="fL ocomp CNBCFlimStrip"><div style="width:140;" class="wcomp FL_DIV"><div class="cFont clr FL_BI"><ul class="ll_bullet FL_ART"><li class="nobullet cFont cf11 clr FL_ART_LI"><a href="/id/44597558/"><img src="http://media.cnbc.com/i/CNBC/Sections/News_And_Analysis/__Story_Inserts/graphics/__EDUCATION/_SCHOOLS/columbia_university_140.jpg" border="0" height="105" width="140" vspace="0" hspace="0" title="Columbia" alt="Columbia"></a></li></ul><ul class="ll_bullet FL_TITLE"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="nobullet cFont cf11 clr cstrong FL_TITLE_LI"><a href="/id/44597558/">Top CEO Schools</a> </span></li></ul><ul class="ll_bullet FL_DESP"><li class="nobullet cFont cf11 clr">Not every CEO is a college grad, but some schools produce more top execs than others. Here they are.</li></ul><ul class="ll_bullet FL_TAG"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="cnbc_moreLinks_tab_item FL_SPAN"><a href="/id/43974865/">Non Grad CEOs</a> </span></li></ul></div></div></div><div style="width:140;" class="fL ocomp CNBCFlimStrip"><div style="width:140;" class="wcomp FL_DIV"><div class="cFont clr FL_BI"><ul class="ll_bullet FL_ART"><li class="nobullet cFont cf11 clr FL_ART_LI"><a href="/id/44613765/"><img src="http://media.cnbc.com/i/CNBC/Sections/News_And_Analysis/__Story_Inserts/graphics/__EMPLOYMENT/PROFESSION/dental_hygienist_140.jpg" border="0" height="105" width="140" vspace="0" hspace="0" title="Dental Hygienist" alt="Dental Hygienist"></a></li></ul><ul class="ll_bullet FL_TITLE"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="nobullet cFont cf11 clr cstrong FL_TITLE_LI"><a href="/id/44613765/">Underrated Jobs</a> </span></li></ul><ul class="ll_bullet FL_DESP"><li class="nobullet cFont cf11 clr">Some jobs aren't flashy, but they have qualities that are overlooked. Here’s some jobs under the radar.</li></ul><ul class="ll_bullet FL_TAG"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="cnbc_moreLinks_tab_item FL_SPAN"><a href="/id/44123457/">Jobs for Millennials</a> </span></li></ul></div></div></div><div style="width:140;" class="fL ocomp CNBCFlimStrip"><div style="width:140;" class="wcomp FL_DIV"><div class="cFont clr FL_BI"><ul class="ll_bullet FL_ART"><li class="nobullet cFont cf11 clr FL_ART_LI"><a href="/id/44642769/"><img src="http://media.cnbc.com/i/CNBC/Sections/News_And_Analysis/__Story_Inserts/graphics/__TRANSPORTATION/_AIRCRAFT/_SPECIALS/space_rubbish_140.jpg" border="0" height="105" width="140" vspace="0" hspace="0"></a></li></ul><ul class="ll_bullet FL_TITLE"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="nobullet cFont cf11 clr cstrong FL_TITLE_LI"><a href="/id/44642769/">Sky Is Falling!!?</a> </span></li></ul><ul class="ll_bullet FL_DESP"><li class="nobullet cFont cf11 clr">A NASA satellite is headed back to earth. Where should its pieces land? Our readers have suggestions.</li></ul><ul class="ll_bullet FL_TAG"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="cnbc_moreLinks_tab_item FL_SPAN"><a href="/id/42251653/">Apocalypse 2012</a> </span></li></ul></div></div></div><div style="width:140;" class="fL ocomp CNBCFlimStrip"><div style="width:140;" class="wcomp FL_DIV"><div class="cFont clr FL_BI"><ul class="ll_bullet FL_ART"><li class="nobullet cFont cf11 clr FL_ART_LI"><a href="/id/44629981/"><img src="http://media.cnbc.com/i/CNBC/Sections/News_And_Analysis/__Story_Inserts/graphics/__SPORTS/WINTER_SPORTS/ski_140.jpg" border="0" height="105" width="140" vspace="0" hspace="0"></a></li></ul><ul class="ll_bullet FL_TITLE"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="nobullet cFont cf11 clr cstrong FL_TITLE_LI"><a href="/id/44629981/">Rich Still Skiing</a> </span></li></ul><ul class="ll_bullet FL_DESP"><li class="nobullet cFont cf11 clr">The CEO of Vail Resorts says the rich are still hitting the slopes and boosting his bottom line.</li></ul><ul class="ll_bullet FL_TAG"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="cnbc_moreLinks_tab_item FL_SPAN"><a href="/id/44583647/">Luxury Spending Down?</a> </span></li></ul></div></div></div><div style="width:140;" class="fL ocomp CNBCFlimStrip"><div style="width:140;" class="wcomp FL_DIV"><div class="cFont clr FL_BI"><ul class="ll_bullet FL_ART"><li class="nobullet cFont cf11 clr FL_ART_LI"><a href="/id/44038297/"><img src="http://media.cnbc.com/i/CNBC/Sections/News_And_Analysis/_Special_Reports/Future_Innovation_2011/Graphics/CNBC_Future_Innovation_140b.jpg" border="0" height="105" width="140" vspace="0" hspace="0" title="Future of Innovation - A CNBC Special Report" alt="Future of Innovation - A CNBC Special Report"></a></li></ul><ul class="ll_bullet FL_TITLE"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="nobullet cFont cf11 clr cstrong FL_TITLE_LI"><a href="/id/44180282/">Yankee Ingenuity</a> </span></li></ul><ul class="ll_bullet FL_DESP"><li class="nobullet cFont cf11 clr">How important is innovation to national success?</li></ul><ul class="ll_bullet FL_TAG"><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="cnbc_moreLinks_tab_item FL_SPAN"><a href="/id/44038453/">Bad Innovation? You Bet!</a> </span></li><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="cnbc_moreLinks_tab_item FL_SPAN"><a href="/id/44504564/">Most Innovative States</a> </span></li><li class="nobullet cFont cf11 clr FL_TAG_LI"><span class="cnbc_moreLinks_tab_item FL_SPAN"><a href="/id/44180278/">Encouraging Innovation</a> </span></li></ul></div></div></div></div></div></div></div></div></div><div pcid="0" style="padding-bottom:0px;"><input type="hidden" id="cnbc_activeduration" name="cnbc_activeduration" value=""><div id="getcomments_error" class="clr regis_error" style="display:none;"></div><a name="comments_top"></a><div id="allcomments" class="CNBC_boxComB" style="display:none;"><div class="clr w100p CNBC_boxComBT"><div class="fR cFont txttrans_none padL2"><div class="fL padL"><span class="fL"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/comments/comments_icon.png"></span></div><div id="totalComments" class="fL cFont padL2 com_tot"></div></div><div class="cFont txttrans_none padL2 cstrong">COMMENTS</div></div><div class="CNBC_boxComBI"><div id="comParent"></div><div id="comPagination" class="CNBC_boxComP"><script language="JavaScript">
cnbc_com_LinksPerPage = "10";
cnbc_com_LinksDisplay = "5";
cnbc_com_HidePageDisplay = "false";
cnbc_com_Separator = " | ";
</script><div class="w100p mB5 cnbc_PagBox"><div class="padT10 padB cstrong">More Comments</div><div class="fL w100p cnDtLn bgX ht1 lh1"> </div><div style="height:24px;" class="clr padL padR"><table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" class="CNBC_boxComP_TB"><tr><td width="30%" align="left" class="cnbc_PagBox_L_TD"><div id="leftPagCol" style="display:none;"><a>« First</a> | <a>« Previous</a></div></td><td width="40%" align="center" class="cnbc_PagBox_C_TD"><div id="centerPagCol"></div></td><td width="30%" align="right" class="cnbc_PagBox_R_TD"><div id="rightPagCol" style="display:none;"><a>Next »</a> | <a>Last »</a></div></td></tr></table></div></div></div></div></div><script language="JavaScript">
cnbc_com_authInterval = "120000";
cnbc_com_partnerid = "3650";
cnbc_com_pagesize = "10";
cnbc_com_currpage = "44613978";
cnbc_com_comid = "1";
cnbc_com_page = "";
cnbc_com_pgn = "";
cnbc_com_reportTopPos = "20";
cnbc_com_reportLeftPos = "-424";
cnbc_com_rep_confirm = "Thank you for your concern. Please note CNBC takes all reports of abuse seriously <br/>and is committed to taking appropriate action.<br/>";
cnbc_displayComments('http://comments.cnbc.com/comments/getcomments','view=xml&contentID=o8vt4rPS9FKgnK42SDNa5A%3d%3d&contentType=BLOG&pagesize=10&partnerId=3650','comParent','allcomments','http://comments.cnbc.com/comments/flag');
cnbc_com_authTimeout = setTimeout("cnbc_updateAuthKey('32372321')",cnbc_com_authInterval);
</script><div class="confirm_error clr" id="com_submit_success" style="display:none;"><br/><br/><strong>Thank you for joining our discussion. Your comment has been posted.</strong><br/><br/></div><div id="add_comment" class="clr w100p CNBC_boxComF" style="display:none;"><div class="clr w100p CNBC_boxComFT"><div class="cFont txttrans_none padL2 cstrong">ADD COMMENTS</div></div><div id="com_unreg_user" class="w100p clr" style="display:none;"><div class="confirm_error clr" id="add_info" style="display:none;"><strong>Please <a href="#" onclick="
 cnbc_gotomodURL('http://login.cnbc.com/authproxy/comments/auth.do','?commentsRedirectUrl=url');return false;
 ">Sign In</a> or <a href="#" onclick="
 cnbc_gotomodURL('http://register.cnbc.com/registerUser.do','?source=comments&commentsRedirectUrl=url');return false;
 ">Register</a> to participate.</strong></div><div class="confirm_error clr" id="add_info_opt" style="display:none;"><strong>In order to add a comment you must click <a href="#" onclick="
 cnbc_gotomodURL('http://login.cnbc.com/authproxy/comments/auth.do','?commentsRedirectUrl=url');return false;
 ">here</a> and accept our terms and conditions.</strong></div></div><div id="com_reg_user" class="w100p clr" style="display:none;"><div id="com_user" class="fL clr w100p"><span class="fL padR" id="add_username"></span><span class="cFont padL2 cstrong"><a href="#" onclick="
 cnbc_editSignURL('https://register.cnbc.com/membercenter/profilemanager.do?method=viewUser&cb_service=');return false;
 ">Edit Screen Name</a></span><br></div></div><div id="com_forms" class="fL w100p clr"><form name="commentsPreviewForm" onsubmit="cnbc_validate_preview_commentsform(this,'http://comments.cnbc.com/comments/preview'); return false;" method="POST"><div class="fL w100p clr"><div class="clr" id="title"><div class="clr" id="charcount_title"></div></div><div class="clr" id="text"><textarea id="add_comments" name="comments" class="comtextarea" cols="58" rows="12" oninput="
 cnbc_updateCharCount(this.value.length, 'charcount');
 " onpaste="
 cnbc_updateCharCount(this.value.length, 'charcount');
 " onkeyup="
 cnbc_updateCharCount(this.value.length, 'charcount');
 ">Please sign-in/optin or register to be able to submit comments.</textarea></div><div class="fL clr" id="chardisplay"><div class="fL padR">Remaining characters </div><div id="charcount" class="fL comcharcount"></div></div><div class="clr" id="prvw"><input type="hidden" name="contentid" value="o8vt4rPS9FKgnK42SDNa5A%3d%3d"><input type="image" id="prvw_btn" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/comments/prevw_btn.png"></div><div class="confirm_error clr" id="legal_info"><strong>CNBC welcomes your contribution. Please respect our community and the integrity of its participants. CNBC reserves the right to moderate and approve your comment. </strong><br/><br/></div></div></form></div></div><div id="commentExpirationMessage" class="confirm_error clr" style="display:none;">Sorry, we are no longer accepting comments.</div><div id="preview_comment" class="clr w100p CNBC_boxComF" style="display:none;"><div class="clr w100p CNBC_boxComFT"><div class="cFont txttrans_none padL2 cstrong">PREVIEW COMMENT</div></div><div id="com_user" class="fL clr w100p"><span id="prvw_username"></span></div><div class="fL w100p clr"><form name="commentsSubmitform" onsubmit="cnbc_submit_commentsform(this, 'http://comments.cnbc.com/comments/save'); return false;" method="POST"><div class="regis_error clr padT" id="add_message"></div><div id="comments_confirm" class="confirm_error clr marT10"><strong>Your comments have not been posted yet.</strong><br/>Please review your submission to make sure you are comfortable with your entry.<br/><br/></div><div class="clr" id="title">Your Comments:</div><div class="clr" id="text"><pre id="prvw_comments" class="comdisplayarea"></pre></div><div class="clr" id="edit_submit"><input type="hidden" name="contenttype" value="BLOG"><input type="hidden" name="content" value="" id="prvw_content"><input type="hidden" name="contentid" value="o8vt4rPS9FKgnK42SDNa5A%3d%3d"><input type="image" id="edit_but" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/comments/edit_btn.png" onclick="cnbc_toggleCommentsForms('add');return false;"><br><br><input type="image" id="submit_btn" border="0" src="http://media.cnbc.com/i/CNBC/CNBC_Images/comments/submit_btn.png"></div></form></div></div><script language="JavaScript">
cnbc_displayCommentsUsername('Screen Name: ','add_username','block');
cnbc_displayCommentsUsername('Screen Name: ','prvw_username','block');
cnbc_toggleCommentUserState("com_reg_user", "com_unreg_user", "div");
cnbc_checkServerTimeCommentExpiration();
cnbc_com_errorsMessage = new Array('<strong>Your comments have not been posted yet.</strong><br/>Please review your submission to make sure you are comfortable with your entry.<br/><br/>',
'<br/><strong>We are currently experiencing technical difficulties and are engaged on a solution.We do value your opinions so please revisit this post soon to share your comment.</strong><br/><br/>',
'<br/><strong>We are currently experiencing technical difficulties and are engaged on a solution.We do value your opinions so please revisit this post soon to share your comment.</strong><br/><br/>',
'<strong>CNBC.com does not accept links within comments.</strong><br/>Please Edit your comment and remove the link.<br/><br/>',
'<strong>It appears your comment contains language deemed inappropriate for CNBC.com.</strong><br/>Please resubmit your comment without profanity.<br/><br/>',
'<strong>You have not submitted any comments.</strong><br/>Please complete the form and preview your comments.',
'<strong>You have exceeded the character limit (1100).</strong><br/>Please Edit your comment to fit within CNBC.com’s guildelines.<br/><br/>',
'<strong>No Comments have been posted.</strong>',
'<strong>Your last comment was submitted too recently. </strong><br/>Please wait a minute and resubmit your comment.<br/>',
'<strong>We are currently experiencing technical difficulties. </strong><br/>We apologize for the inconvenience. (error #342)<br/>',
'<strong>We have detected an error in your login.</strong><br/>Please Log out and log back in.<br/>');
cnbc_com_reportRedirect = "http://login.cnbc.com/authproxy/comments/auth.do";
</script></div><div pcid="0" style="padding-bottom:0px;"><script>
<!--
//setTimeout('document.location=document.location' ,305000);
var CNBC_IDLE_ENABLED = true;
self.setInterval("cnbc_PageReloadInterval()", Number(300*1000));
cnbc_max_idleTime = Number(270);
cnbc_ActivateAllEventListeners(cnbc_resetCounter);
//-->
</script></div></div></div></div></div></div></div></div><div class="clr"><div><br><div pcid="0" style="padding-bottom:0px;"><script>
var ysource_index = location.href.indexOf("__source=yahoo");
var ybsource_index = location.href.indexOf("__source=yahoobuzz");
var ygsource_index = location.href.indexOf("__source=yahoogames");
var yssource_index = location.href.indexOf("__source=yahoosports");
var yhsource_index = location.href.indexOf("__source=yahoohotjobs");
var yrsource_index = location.href.indexOf("__source=yahoorealestate");
if (ysource_index != -1 && ybsource_index == -1 && ygsource_index == -1 && yssource_index == -1 && yhsource_index == -1 && yrsource_index == -1) {
//show yahoo logo
document.write("<center><div align=\"left\" style=\"padding:10px; padding-left:10px; width:950px; _width:970px; clear: both; background-color: rgb(255, 255, 255);\">");
document.write("<a href=\"http://finance.yahoo.com/\" target=\"_self\">");
document.write("<img src=\"http://us.i1.yimg.com/us.yimg.com/i/us/fi/gr/yahoo_buttons/yfprplbtn_130x30.gif\" border=\"0\"/>");
document.write("</a></div></center>");
}
</script></div><div pcid="0" style="padding-bottom:0px;"><div style="padding-bottom: 0px;" pcid="0">
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_15839285"
onmouseover="cnbc_drpdwnmouseOver('subnav_15839285');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839285');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_15837362"
onmouseover="cnbc_drpdwnmouseOver('subnav_15837362');" onmouseout="cnbc_drpdwnmouseOut('subnav_15837362');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67,
107); height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15837362/site/14081545/">U.S.</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/19832390/site/14081545/">Asia-Pacific</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/19794221/site/14081545/">Europe</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/20910258/site/20910258/">Economy</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/19836768/site/14081545/">Energy</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/21344232/site/14081545/">Green</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/19854910/site/14081545/">Technology</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/16561378/site/14081545/">Blogs</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/19916736/site/14081545/">Wires</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/23937480/site/14081545/">Slideshows</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/16903222/site/14081545/">Special Reports</a></div>
</div>
<div class="cnbc_submenutitle" style="height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/25097425/site/14081545/">Corrections</a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_15839121"
onmouseover="cnbc_drpdwnmouseOver('subnav_15839121');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839121');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67,
107); height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839121/site/14081545/">Markets Front</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/17689937/site/14081545/">Pre-Markets</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15921552/site/14081545/">World Markets</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/30032887/">Latin America</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839215/site/14081545/">Stocks</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/26272770/site/14081545/">Dow 30</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839171/site/14081545/">Commodities</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839178/site/14081545/">Currencies</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839203/site/14081545/">Bonds</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839193/site/14081545/">Funds</a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_15839135"
onmouseover="cnbc_drpdwnmouseOver('subnav_15839135');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839135');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67,
107); height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839135/site/14081545/">Earnings Front</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/18038403/site/14081545/">News</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15906175/site/14081545/">Calendar</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/18080780/site/14081545/">Surprises</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839133/site/14081545/">Highlights</a></div>
</div>
<div class="cnbc_submenutitle" style="height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/16454339/site/14081545/">Ideas</a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_15839069"
onmouseover="cnbc_drpdwnmouseOver('subnav_15839069');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839069');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67,
107); height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/21114826/site/14081545/">Stock Blog</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/21324812/site/14081545/">Personal Finance</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/41585735/site/14081545/">CNBC Explains</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://portfolio.cnbc.com/">Portfolio</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://watchlist.cnbc.com/">Watchlist</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839076/site/14081545/">Stock Screener</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839074/site/14081545/">Fund Screener</a></div>
</div>
<div class="cnbc_submenutitle" style="height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839133/site/14081545/">Earnings Screener</a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_15839263"
onmouseover="cnbc_drpdwnmouseOver('subnav_15839263');" onmouseout="cnbc_drpdwnmouseOut('subnav_15839263');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67,
107); height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839263/site/14081545/?tabid=15839796&tabheader=false">
Latest Video</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839263/site/14081545/?tabid=20414341&tabheader=false">
Top Video</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839263/site/14081545/?tabid=15839798&tabheader=false">
US Video</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839263/site/14081545/?tabid=15839797&tabheader=false">
Europe Video</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839263/site/14081545/?tabid=15839801&tabheader=false">
Asia Video</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/41585735/site/14081545">CNBC Explains</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839263/site/14081545/?tabid=20429036&tabheader=false">
CEO Interviews</a></div>
</div>
<div class="cnbc_submenutitle" style="height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15839263/site/14081545/?tabid=20429059&tabheader=false">
Analyst Interviews</a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_15837856"
onmouseover="cnbc_drpdwnmouseOver('subnav_15837856');" onmouseout="cnbc_drpdwnmouseOut('subnav_15837856');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67,
107); height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15837856/site/14081545/">CNBC U.S.</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15838789/site/14081545/">CNBC Asia Pacific</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15838668/site/14081545/">CNBC Europe</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15837872/site/14081545/">CNBC World</a></div>
</div>
<div class="cnbc_submenutitle" style="height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/20996011/site/14081545/">CNBC HD+</a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_30011296"
onmouseover="cnbc_drpdwnmouseOver('subnav_30011296');" onmouseout="cnbc_drpdwnmouseOut('subnav_30011296');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/33077961">Apps</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://pro.cnbc.com">CNBC PRO</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/15837856">CNBC TV</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.nbcuniversalstore.com/index.php?v=cnbc_original-productions">DVDs</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/42567955">Events</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.nbcuniversalstore.com/?v=cnbc">Merchandise</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/31317817">Mobile</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/31315473">Podcasts</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/31206300">Radio</a></div>
</div>
<div class="cnbc_submenutitle" style="border-bottom: 1px solid rgb(57, 67, 107);
height: 25px; line-height: 25px; text-align: left;">
<div class="cnbc_submenutitle">
<a style="color: rgb(255, 255, 255); text-decoration: none; margin-top: 3px; margin-left: -5px;"
class="cnbc_submenutitle" onmouseover="this.style.color='#FFDF0A'" onmouseout="this.style.color='#FFFFFF'"
href="http://www.cnbc.com/id/31316402">Widgets</a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- CNBC PRO -->
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_17915729"
onmouseover="cnbc_drpdwnmouseOver('subnav_17915729');" onmouseout="cnbc_drpdwnmouseOut('subnav_17915729');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- /CNBC PRO -->
<div class="fL" style="display: none; position: absolute; z-index: 10000000;" id="subnav_20996011"
onmouseover="cnbc_drpdwnmouseOver('subnav_20996011');" onmouseout="cnbc_drpdwnmouseOut('subnav_20996011');">
<div class="fL cnbc_submenutitle cnbc_submbk" style="width: inherit;">
<table>
<tbody>
<tr>
<td style="width: 100%;">
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script>cnbc_init_droparrows('menu_arrow_','img',cur_navSect);</script>
</div></div><div pcid="0" style="padding-bottom:0px;"><script>
cnbc_getCommentsCount(cnbc_commentCountStr) ;
</script></div><div pcid="0" style="padding-bottom:0px;"><div class="fL" style="width:100%;height:;"><div class="fL" style="width:;height:;float: none ! important; width:970px;"><div class="fL" style="width:;height:;width:965px;
_width:970px;
padding: 10px 0 10px 5px;
_padding: 10px 0 10px 5px;
background-color:#3e3e3f;"><div class="fL" style="width:;height:;background:url(http://msnbcmedia.msn.com/i/CNBC/Components/Footer/2009_Redesign/CNBC_Footer_Nav_Column_IMG_BG.gif);
background-position: top left;
background-repeat:repeat-y;"><div class="fL" style="width:;height:;padding:10px 10px 10px 10px;
margin: 0 5px 0 0;
width:100px;
_width:120px;"><div style="display:none; width:80%;"><br/>Current DateTime: 07:41:23 23 Sep 2011<br/>LinksList Documentid: 29778429</div><div class="FOOTLL_B FOOTLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><a href="/id/15837362" class="cstrong FOOTLL_HCF txttrans_none">CNBC NEWS</a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"></tr></table></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15837362" class="cstrong cf12">U.S. News</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/19832390" class="cstrong cf12">Asia-Pacific News</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/19794221" class="cstrong cf12">Europe News</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/20910258" class="cstrong cf12">Economy</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/19836768" class="cstrong cf12">Energy</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/21344232" class="cstrong cf12">Green</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/19854910" class="cstrong cf12">Technology</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/16561378" class="cstrong cf12">Blogs</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/28140607" class="cstrong cf12">Wires</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/23937480" class="cstrong cf12">Slideshows</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/16903222" class="cstrong cf12">Special Reports</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/25097425" class="cstrong cf12">Corrections</a></li></ul></div></div><div class="fL" style="width:;height:;padding:10px 10px 10px 10px;
margin: 0 5px 0 0;
width:100px;
_width:120px;">
<div style="display:none; width:80%;"><br/>Current DateTime: 09:14:12 23 Sep 2011<br/>LinksList Documentid: 29778428</div><div class="FOOTLL_B FOOTLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><a href="/id/15839121" class="cstrong FOOTLL_HCF txttrans_none">MARKETS</a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"></tr></table></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/17689937" class="cstrong cf12">Pre-Markets</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15921552" class="cstrong cf12">World Markets</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839215" class="cstrong cf12">Stocks</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/26272770" class="cstrong cf12">Dow 30</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839171" class="cstrong cf12">Commodities</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839178" class="cstrong cf12">Currencies</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839203" class="cstrong cf12">Bonds</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839193" class="cstrong cf12">Funds</a></li></ul></div>
</div><div class="fL" style="width:;height:;padding:10px 10px 10px 10px;
margin: 0 5px 0 0;
width:100px;
_width:120px;"><div style="display:none; width:80%;"><br/>Current DateTime: 09:13:44 23 Sep 2011<br/>LinksList Documentid: 29779196</div><div class="FOOTLL_B FOOTLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><a href="/id/15839135" class="cstrong FOOTLL_HCF txttrans_none">EARNINGS</a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"></tr></table></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/18038403" class="cstrong cf12">News</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15906175" class="cstrong cf12">Calendar</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/18080780" class="cstrong cf12">Surprises</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839133" class="cstrong cf12">Highlights</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/16454339" class="cstrong cf12">Ideas</a></li></ul></div></div><div class="fL" style="width:;height:;padding:10px 10px 10px 10px;
margin: 0 5px 0 0;
width:100px;
_width:120px;">
<div style="display:none; width:80%;"><br/>Current DateTime: 06:31:32 23 Sep 2011<br/>LinksList Documentid: 29779197</div><div class="FOOTLL_B FOOTLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><a href="/id/15839069" class="cstrong FOOTLL_HCF txttrans_none">INVESTING</a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"></tr></table></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/21114826" class="cstrong cf12">Stock Blog</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/21324812" class="cstrong cf12">Personal Finance</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://portfolio.cnbc.com" class="cstrong cf12">Portfolio (Beta)</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://watchlist.cnbc.com" class="cstrong cf12">Watchlist</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839076" class="cstrong cf12">Stock Screener</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839074" class="cstrong cf12">Fund Screener</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15839133" class="cstrong cf12">Earnings Screener</a></li></ul></div>
</div><div class="fL" style="width:;height:;padding:10px 10px 10px 10px;
margin: 0 5px 0 0;
width:100px;
_width:120px;"><div style="display:none; width:80%;"><br/>Current DateTime: 09:13:44 23 Sep 2011<br/>LinksList Documentid: 29779200</div><div class="FOOTLL_B FOOTLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><a href="/id/15839263" class="cstrong FOOTLL_HCF txttrans_none">VIDEO</a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"></tr></table></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://www.cnbc.com/id/15839263/?tabid=15839796&tabheader=false" class="cstrong cf12">Latest Video</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://www.cnbc.com/id/15839263/?tabid=20414341&tabheader=false" class="cstrong cf12">Top Video</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://www.cnbc.com/id/15839263/?tabid=15839798&tabheader=false" class="cstrong cf12">U.S. Video</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://www.cnbc.com/id/15839263/?tabid=15839801&tabheader=false" class="cstrong cf12">Asia-Pacific Video</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://www.cnbc.com/id/15839263/?tabid=15839797&tabheader=false" class="cstrong cf12">Europe Video</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://www.cnbc.com/id/15839263/?tabid=20429036&tabheader=false" class="cstrong cf12">CEO Interviews</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://www.cnbc.com/id/15839263/?tabid=20429059&tabheader=false" class="cstrong cf12">Analyst Interviews</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="http://pro.cnbc.com " class="cstrong cf12">CNBC Pro</a></li></ul></div></div><div class="fL" style="width:;height:;padding:10px 10px 10px 10px;
margin: 0 5px 0 0;
width:100px;
_width:120px;"><div style="display:none; width:80%;"><br/>Current DateTime: 12:29:14 23 Sep 2011<br/>LinksList Documentid: 29779199</div><div class="FOOTLL_B FOOTLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><a href="/id/15837856" class="cstrong FOOTLL_HCF txttrans_none">CNBC TV</a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"></tr></table></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15837856" class="cstrong cf12">CNBC U.S.</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15838789" class="cstrong cf12">CNBC Asia-Pacific</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15838668" class="cstrong cf12">CNBC Europe</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/15837872" class="cstrong cf12">CNBC World</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/20996011" class="cstrong cf12">CNBC HD+</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/40419133" class="cstrong cf12">Channel Finder</a></li></ul></div></div><div class="fL" style="width:210;height:;padding:10px 10px 10px 10px;
width:190px;
_width:210px;"><div style="display:none; width:80%;"><br/>Current DateTime: 01:09:13 23 Sep 2011<br/>LinksList Documentid: 29779198</div><div class="FOOTLL_B FOOTLL_BI"><ul class="ll_bullet"><li class="nobullet disptable cFont cf11 clr"><a href="/id/30011296" class="cstrong FOOTLL_HCF txttrans_none">MORE</a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr align="left" valign="top"></tr></table></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/30011296" class="cstrong cf12">CNBC 360</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/25935031" class="cstrong cf12">CNBC Mobile Website</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/28295763" class="cstrong cf12">RSS</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/27681626" class="cstrong cf12">Real-Time Quotes and Extended Hours</a></li><li class="featSecondary disptable cFont cf11 clr"><a href="/id/17362414" class="cstrong cf12">Latest Press Releases</a></li></ul></div></div></div></div><div class="fL" style="width:;height:;width:965px;
_width:970px;
padding: 0 0 10px 5px;
_padding: 5px 0 10px 5px;
background-color:#3e3e3f;"><div class="fL" style="width:60;height:;float:left;
margin: 0 15px 0 0;
padding:13px 0 0 10px;
_padding: 3px 0 0 5px;"><map name="map29774040"><area coords="0,0,60,43" shape="rect" alt="CNBC" href="/id/15839285/"></map><img src="http://media.cnbc.com/i/CNBC/Components/Footer/2009_Redesign/CNBC_Logo_Footer.gif" border="0" align="Absmiddle" height="43" width="60" vspace="0" hspace="0" title="CNBC" alt="CNBC" usemap="
 #map29774040"></div><div class="fL" style="width:860;height:;float:left;
margin: 0 0 0 0;
_margin: 0 0 0 0;"><div id="MasConId_ID0EWCAC29255996" class="clr" style="display:block;width:860px; margin: 10px 0 0 0;
_margin: 0 0 0 0;
line-height: 1.4;; ;"><div class="FOOTMC_" style="860"><div class="FOOTMC_B FOOTMC_BI clr" style="860"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EWCAC29255996"><a href="/id/15907487/">About CNBC</a> | <a href="/id/15920090/">Site Map</a> | <a href="/id/15837339/">Privacy Policy</a> | <a href="/id/15837353/">Terms of Service</a> | <a href="http://www.comcast.com/Corporate/About/CorporateInfo/independent-programming.html">Independent Programming Report</a> | <a href="http://videoreprints.cnbc.com/">Video Reprints</a> | <a href="/id/35083111/">Advertise</a> | <a href="/id/15839052/">Help</a> | <a href="https://register.cnbc.com/email/EmailSupport.jsp">Contact</a></div></div></div></div></div></div><div class="fL" style="width:;height:;width:965px;
_width:970px;
padding: 0 0 10px 5px;
_padding: 5px 0 5px 5px;
background-color:#343434;"><div class="fL" style="width:600;height:;float:left;
margin: 0 0 0 0;"><div id="MasConId_ID0EWJAC29256525" class="clr" style="display:block;width:600px; margin-top:10px;; ;"><div class="FTRCMC_" style="600"><div class="FTRCMC_B FTRCMC_BI clr" style="600"><div class="w100p" style="height:auto; ;" id="cnbcMCBody_ID0EWJAC29256525"><img src="http://media.cnbc.com/i/CNBC/CNBC_Images/componentbacks/realtime_footer_icon.jpg" border="0" height="11" width="20" vspace="0" hspace="0"> Data is a real-time snapshot *Data is delayed at least 15 minutes<br>Global Business and Financial News, Stock Quotes, and Market Data and Analysis<br><br>© 2011 CNBC LLC. All Rights Reserved.<br><a alt="http://www.nbcuni.com/" href="http://www.nbcuni.com/"><img src="http://media.cnbc.com/i/CNBC/Components/Footer/2009_Redesign_v2/CNBC_Footer_NBCUni.gif" border="0" height="15" width="150" vspace="5" hspace="0" title="A Division of NBCUniversal" alt="A Division of NBCUniversal"></a></div></div></div></div></div><div class="fL" style="width:360;height:;float:left;
text-align: right;
margin: 0 0 0 0;
padding: 15px 0 0 0;"><map name="map29385677"><area coords="0,0,165,60" shape="rect" alt="Thomson Reuters" href="/id/16061983/"></map><img src="http://media.cnbc.com/i/CNBC/Components/Footer/2009_Redesign/Thomson_Reuters_Logo2.gif" border="0" height="60" width="165" vspace="0" hspace="0" title="Thomson Reuters" alt="Thomson Reuters" usemap="
 #map29385677"></div></div></div></div></div></div> </div></div></div><div id="omni" class="omni"><script language="JavaScript">
var scodePath = cnbc_tickerDataPath + "/js/s_code.js";
s_linkInternalFilters="javascript:,cnbc.com";
var s_account="nbcuglobal, nbcucnbcd, nbcucnbcbu";
var s_prop8 ="cnbc";
var s_prop9 ="cnbc.com";
var s_prop10=cnbc_sectionName;
var s_prop31=cnbc_topSection;
var s_prop32=cnbc_subSection;
var s_prop33=cnbc_subSubSection;
var s_prop34=cnbc_microSection;
var s_prop35=cnbc_nanoSection;
var s_prop36=cnbc_docid;
var s_prop37=cnbc_doctype;
var s_prop38=cnbc_doclayout;
var s_prop39=cnbc_docsource;
document.write('<s'+'cript src="'+scodePath+'"></s'+'cript>');
</script><script language="JavaScript">
<!--
/* You may give each page an identifying name, server, and channel on
the next lines. */
s.pageName=s_prop37.substr(0,7) + "|" + s_prop31.substr(0,11) + "|" + s_prop32.substr(0,20) + "|" + cnbc_docid.substr(0,8) + "|" + cnbc_pagedesc.substr(0,50);
s.server=""
s.channel="free: cnbc.com"
s.pageType=""
s.prop1=""; //user group if needed
s.prop2=""; //Content Group
s.prop3=""; //Content Type
s.prop4=""; //Content Name
/* E-commerce Variables */
s.campaign=""
s.state=""
s.zip=""
s.events=""
s.products=""
s.purchaseID=""
s.eVar1=""
s.eVar2=""
s.eVar3=""
s.eVar4=""
s.eVar5=""
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//-->
</script><script language="JavaScript">
<!--
if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//-->
</script></div><script type="text/javascript">
try
{
cnbc_init_services();
cnbc_highlightSubText(cnbc_docid,"sub_active");
}
catch(e){}
</script><script src="http://www.nbcudigitaladops.com/hosted/global.js" language="JavaScript"></script><script language="JavaScript" type="text/javascript">
cnbcSwitchOnRemember("cnbcStreamQuoteMasterToggleRememberSwitch");
setTimeout("cnbc_comboQuoteMoveRun()",10);
</script><div id="news1x1" name="news1x1"></div><script type="text/javascript">