-
Notifications
You must be signed in to change notification settings - Fork 1
/
hindu.html
7255 lines (7198 loc) · 374 KB
/
hindu.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>
The Hindu: Breaking News, Elections News, Sports News, Live Updates
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Breaking News, Elections News, Sports News, Live Updates">
<link rel="shortcut icon" type="image/x-icon" href="http://www.thehindu.com/favicon.ico">
<link rel="icon" type="image/ico" href="http://www.thehindu.com/favicon.ico">
<link rel="apple-touch-icon" href="http://www.thehindu.com/apple-touch-icon.png">
<link rel="apple-touch-icon-precomposed" href="http://www.thehindu.com/apple-touch-icon-precomposed.png">
<meta name="msapplication-starturl" content="http://www.thehindu.com/">
<meta name="msapplication-task" content="name=News; action-uri=http://www.thehindu.com/news/; icon-uri=http://www.thehindu.com/favicon.ico">
<meta name="msapplication-task" content="name=Opinion; action-uri=http://www.thehindu.com/opinion/; icon-uri=http://www.thehindu.com/favicon.ico">
<meta name="msapplication-task" content="name=Sport; action-uri=http://www.thehindu.com/sport/; icon-uri=http://www.thehindu.com/favicon.ico">
<meta name="msapplication-task" content="name=Business; action-uri=http://www.thehindu.com/business/; icon-uri=http://www.thehindu.com/favicon.ico">
<meta name="msapplication-task" content="name=Subscribe to RSS; action-uri=http://www.thehindu.com/?service=rss; icon-uri=http://www.thehindu.com/favicon.ico">
<meta name="fragment" content="!">
<meta name="description" content="Latest news, analysis, comment, in-depth coverage of politics, business, sport, environment, cinema and arts from India's national newspaper">
<script type="text/javascript" async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/analytics_002.js"></script><script async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/gtm.js"></script><script async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/vrs.js"></script><script id="twitter-wjs" async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/widgets.js"></script><script id="facebook-jssdk" async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/sdk.js"></script><script async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/uwt.js"></script><script src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/116935752050016" async=""></script><script async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/fbevents.js"></script><script type="text/javascript" async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/9791.js"></script><script type="text/javascript" async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/conversion_async.js"></script><script async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/gtm_002.js"></script><script async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/beacon.js"></script><script type="text/javascript" async="" defer="defer" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/piwik.js"></script><script async="" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/analytics.js"></script><script>(function (w, d, u) {
w.readyQ = [];
w.bindReadyQ = [];
function p(x, y) {
if (x == "ready") {
w.bindReadyQ.push(y);
} else {
w.readyQ.push(x);
}
};
var a = {ready: p, bind: p};
w.$ = w.jQuery = function (f) {
if (f === d || f === u) {
return a
} else {
p(f)
}
}
})(window, document)
</script>
<script type="text/javascript">
/* Front end properties configured in nursery */
var FrontEndConfig = {"audioPlayer":"mediaelement","media.jwplayer.options.primary":"flash","media.jwplayer.ga.enabled":"true","media.jwplayer.hls.mimeTypes":"vnd.apple.mpegURL,application/x-mpegURL","videoPlayer":"flowplayer","media.jwplayer.sharing.enabled":"true","media.jwplayer.hls.enabled":"true"};
if (typeof(FrontEndConfig) == 'undefined') {
FrontEndConfig = {};
}
FrontEndConfig.rootURL = "http://www.thehindu.com/";
/* Client-side device detection */
var WFClientTypeDef = {"medium":"(min-width: 768px) and (max-width: 1023px)","xlarge":"(min-width: 1600px)","large":"(min-width: 1024px) and (max-width: 1599px)","small":"(max-width: 767px)"};
var imageSizes = [80, 100, 115, 155, 170, 215, 230, 240, 300, 320, 355, 435, 460, 480, 615, 660, 730, 810, 960, 1080, 1140];
var isMobile=false;
var isTablet=false;
var isDesktop=false;
var isLargeDesktop=false;
for ( var type in WFClientTypeDef) {
if (window.matchMedia(WFClientTypeDef[type]).matches) {
switch (type) {
case "xlarge":
isLargeDesktop=true; break;
case "large":
isDesktop=true;
break;
case "medium":
isTablet=true; break;
case "small":
isMobile=true;
break;
}
break;
}
}
$(function(){
$.each(FrontEndConfig, function(key, value) {
/* Regular properties other than JW Player setup options
are being processed here */
if (key.indexOf('media.jwplayer.options') < 0) {
FrontEndConfig[key] = WFUtils.parseStringToJSONObject(value);
}
});
});
</script>
<meta property="fb:app_id" content="137450626398044">
<meta property="og:site_name" content="The Hindu">
<meta name="keywords" content="">
<meta name="news_keywords" content="">
<meta property="og:url" content="http://www.thehindu.com/">
<meta property="og:type" content="website">
<meta property="og:title" content="Breaking News, Elections News, Sports News, Live Updates">
<meta property="og:description" content="Latest news, analysis, comment, in-depth coverage of politics, business, sport, environment, cinema and arts from India's national newspaper">
<meta property="og:image" content="http://www.thehindu.com/static/theme/default/base/img/og-image.jpg">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta name="twitter:title" content="Breaking News, Elections News, Sports News, Live Updates">
<meta name="twitter:description" content="Latest news, analysis, comment, in-depth coverage of politics, business, sport, environment, cinema and arts from India's national newspaper">
<meta name="twitter:image" content="http://www.thehindu.com/static/theme/default/base/img/og-image.jpg">
<meta name="apple-itunes-app" content="app-id=584786636">
<meta name="twitter:app:id:googleplay" content="com.mobstac.thehindu">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@The_Hindu">
<meta name="twitter:domain" content="thehindu.com">
<meta name="twitter:app:name:ipad" content="The Hindu">
<meta name="twitter:app:id:ipad" content="584786636">
<meta name="twitter:app:name:googleplay" content="The Hindu (Official App)">
<meta name="twitter:app:id:iphone" content="771672321">
<meta name="google-play-app" content="app-id=com.mobstac.thehindu">
<meta name="twitter:app:name:iphone" content="The Hindu for iPhone">
<script type="text/javascript" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/moe_webSdk.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="http://www.thehindu.com/static/js/holder.min.js" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/holder.js"></script><script type="text/javascript">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','TO_DL','GTM-WS2ZXK9');</script><style id="holderjs-style" type="text/css"></style><style type="text/css">.fb_hidden{position:absolute;top:-10000px;z-index:10001}.fb_reposition{overflow:hidden;position:relative}.fb_invisible{display:none}.fb_reset{background:none;border:0;border-spacing:0;color:#000;cursor:auto;direction:ltr;font-family:"lucida grande", tahoma, verdana, arial, sans-serif;font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:1;margin:0;overflow:visible;padding:0;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;visibility:visible;white-space:normal;word-spacing:normal}.fb_reset>div{overflow:hidden}.fb_link img{border:none}@keyframes fb_transform{from{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.fb_animate{animation:fb_transform .3s forwards}
.fb_dialog{background:rgba(82, 82, 82, .7);position:absolute;top:-10000px;z-index:10001}.fb_reset .fb_dialog_legacy{overflow:visible}.fb_dialog_advanced{padding:10px;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px}.fb_dialog_content{background:#fff;color:#333}.fb_dialog_close_icon{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 0 transparent;cursor:pointer;display:block;height:15px;position:absolute;right:18px;top:17px;width:15px}.fb_dialog_mobile .fb_dialog_close_icon{top:5px;left:5px;right:auto}.fb_dialog_padding{background-color:transparent;position:absolute;width:1px;z-index:-1}.fb_dialog_close_icon:hover{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -15px transparent}.fb_dialog_close_icon:active{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -30px transparent}.fb_dialog_loader{background-color:#f6f7f9;border:1px solid #606060;font-size:24px;padding:20px}.fb_dialog_top_left,.fb_dialog_top_right,.fb_dialog_bottom_left,.fb_dialog_bottom_right{height:10px;width:10px;overflow:hidden;position:absolute}.fb_dialog_top_left{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/ye/r/8YeTNIlTZjm.png) no-repeat 0 0;left:-10px;top:-10px}.fb_dialog_top_right{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/ye/r/8YeTNIlTZjm.png) no-repeat 0 -10px;right:-10px;top:-10px}.fb_dialog_bottom_left{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/ye/r/8YeTNIlTZjm.png) no-repeat 0 -20px;bottom:-10px;left:-10px}.fb_dialog_bottom_right{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/ye/r/8YeTNIlTZjm.png) no-repeat 0 -30px;right:-10px;bottom:-10px}.fb_dialog_vert_left,.fb_dialog_vert_right,.fb_dialog_horiz_top,.fb_dialog_horiz_bottom{position:absolute;background:#525252;filter:alpha(opacity=70);opacity:.7}.fb_dialog_vert_left,.fb_dialog_vert_right{width:10px;height:100%}.fb_dialog_vert_left{margin-left:-10px}.fb_dialog_vert_right{right:0;margin-right:-10px}.fb_dialog_horiz_top,.fb_dialog_horiz_bottom{width:100%;height:10px}.fb_dialog_horiz_top{margin-top:-10px}.fb_dialog_horiz_bottom{bottom:0;margin-bottom:-10px}.fb_dialog_iframe{line-height:0}.fb_dialog_content .dialog_title{background:#6d84b4;border:1px solid #365899;color:#fff;font-size:14px;font-weight:bold;margin:0}.fb_dialog_content .dialog_title>span{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/yd/r/Cou7n-nqK52.gif) no-repeat 5px 50%;float:left;padding:5px 0 7px 26px}body.fb_hidden{-webkit-transform:none;height:100%;margin:0;overflow:visible;position:absolute;top:-10000px;left:0;width:100%}.fb_dialog.fb_dialog_mobile.loading{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/ya/r/3rhSv5V8j3o.gif) white no-repeat 50% 50%;min-height:100%;min-width:100%;overflow:hidden;position:absolute;top:0;z-index:10001}.fb_dialog.fb_dialog_mobile.loading.centered{width:auto;height:auto;min-height:initial;min-width:initial;background:none}.fb_dialog.fb_dialog_mobile.loading.centered #fb_dialog_loader_spinner{width:100%}.fb_dialog.fb_dialog_mobile.loading.centered .fb_dialog_content{background:none}.loading.centered #fb_dialog_loader_close{color:#fff;display:block;padding-top:20px;clear:both;font-size:18px}#fb-root #fb_dialog_ipad_overlay{background:rgba(0, 0, 0, .45);position:absolute;bottom:0;left:0;right:0;top:0;width:100%;min-height:100%;z-index:10000}#fb-root #fb_dialog_ipad_overlay.hidden{display:none}.fb_dialog.fb_dialog_mobile.loading iframe{visibility:hidden}.fb_dialog_content .dialog_header{-webkit-box-shadow:white 0 1px 1px -1px inset;background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#738ABA), to(#2C4987));border-bottom:1px solid;border-color:#1d4088;color:#fff;font:14px Helvetica, sans-serif;font-weight:bold;text-overflow:ellipsis;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0;vertical-align:middle;white-space:nowrap}.fb_dialog_content .dialog_header table{-webkit-font-smoothing:subpixel-antialiased;height:43px;width:100%}.fb_dialog_content .dialog_header td.header_left{font-size:12px;padding-left:5px;vertical-align:middle;width:60px}.fb_dialog_content .dialog_header td.header_right{font-size:12px;padding-right:5px;vertical-align:middle;width:60px}.fb_dialog_content .touchable_button{background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#4966A6), color-stop(.5, #355492), to(#2A4887));border:1px solid #29487d;-webkit-background-clip:padding-box;-webkit-border-radius:3px;-webkit-box-shadow:rgba(0, 0, 0, .117188) 0 1px 1px inset, rgba(255, 255, 255, .167969) 0 1px 0;display:inline-block;margin-top:3px;max-width:85px;line-height:18px;padding:4px 12px;position:relative}.fb_dialog_content .dialog_header .touchable_button input{border:none;background:none;color:#fff;font:12px Helvetica, sans-serif;font-weight:bold;margin:2px -12px;padding:2px 6px 3px 6px;text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0}.fb_dialog_content .dialog_header .header_center{color:#fff;font-size:16px;font-weight:bold;line-height:18px;text-align:center;vertical-align:middle}.fb_dialog_content .dialog_content{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/y9/r/jKEcVPZFk-2.gif) no-repeat 50% 50%;border:1px solid #555;border-bottom:0;border-top:0;height:150px}.fb_dialog_content .dialog_footer{background:#f6f7f9;border:1px solid #555;border-top-color:#ccc;height:40px}#fb_dialog_loader_close{float:left}.fb_dialog.fb_dialog_mobile .fb_dialog_close_button{text-shadow:rgba(0, 30, 84, .296875) 0 -1px 0}.fb_dialog.fb_dialog_mobile .fb_dialog_close_icon{visibility:hidden}#fb_dialog_loader_spinner{animation:rotateSpinner 1.2s linear infinite;background-color:transparent;background-image:url(https://static.xx.fbcdn.net/rsrc.php/v3/yD/r/t-wz8gw1xG1.png);background-repeat:no-repeat;background-position:50% 50%;height:24px;width:24px}@keyframes rotateSpinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
.fb_iframe_widget{display:inline-block;position:relative}.fb_iframe_widget span{display:inline-block;position:relative;text-align:justify}.fb_iframe_widget iframe{position:absolute}.fb_iframe_widget_fluid_desktop,.fb_iframe_widget_fluid_desktop span,.fb_iframe_widget_fluid_desktop iframe{max-width:100%}.fb_iframe_widget_fluid_desktop iframe{min-width:220px;position:relative}.fb_iframe_widget_lift{z-index:1}.fb_hide_iframes iframe{position:relative;left:-10000px}.fb_iframe_widget_loader{position:relative;display:inline-block}.fb_iframe_widget_fluid{display:inline}.fb_iframe_widget_fluid span{width:100%}.fb_iframe_widget_loader iframe{min-height:32px;z-index:2;zoom:1}.fb_iframe_widget_loader .FB_Loader{background:url(https://static.xx.fbcdn.net/rsrc.php/v3/y9/r/jKEcVPZFk-2.gif) no-repeat;height:32px;width:32px;margin-left:-16px;position:absolute;left:50%;z-index:4}</style></head><body class=""><div class="overlay-screen"></div>
<link href="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/thelec04.css" rel="stylesheet">
<style type="text/css">
.article-cont #jsontable-ma table, .article-cont #jsontable-go table, .article-cont #jsontable-uk table, .article-cont #jsontable-pu table, .article-cont #jsontable-up table {width: 100%;} </style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-10158580-1', 'auto');
ga('create', 'UA-10158580-27', 'auto', 'clientTracker');
ga('send', 'pageview');
ga('clientTracker.send', 'pageview');
</script>
<!-- Begin ZEDO - GoogleAnalytic_1 -->
<script type="text/javascript">
var zzp=new Image();
zzp.src="http://m8.zedo.com/log/p.gif?a=2682504;c=2132000329;x=3840;n=2132;e=i;i=0;s=1;z="+Math.random();</script>
<noscript>
<img width="1" height="1" border="0" src="http://m8.zedo.com/log/p.gif?a=2682504;g=0;c=2132000329;x=3840;n=2132;i=0;e=i;s=1;z="/>
</noscript>
<!-- End ZEDO - GoogleAnalytic_1 -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://piwik.thehindu.co.in/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<script type="text/javascript">
new function(d) {
var adcode = "<!-- Javascript tag: -->" +
"<!-- begin ZEDO for channel: HIndu_Interstitial , publisher: Hindu , Ad Dimension: Intromercial - 1 x 1 -->" +
"<" + "script language=\"JavaScript\">" +
"var zflag_nid=\"2132\"; var zflag_cid=\"87/1\"; var zflag_sid=\"1\"; var zflag_width=\"1\"; var zflag_height=\"1\"; var zflag_sz=\"16\"; var zflag_background_color=\"#FFFFFF\"; var zlflag_lightbox_right_header= \"click here to go to thehindu.com\"; var zflag_opacity=\"100\"; <" + "/script>" +
"" +
"<" + "script language=\"JavaScript\" src=\"http://d8.zedo.com/jsc/d8/fo.js\"><" + "/script>" +
"<!-- end ZEDO for channel: HIndu_Interstitial , publisher: Hindu , Ad Dimension: Intromercial - 1 x 1 -->";
var device = "";
for ( var type in WFClientTypeDef) {
if (window.matchMedia(WFClientTypeDef[type]).matches) {
switch (type) {
case "xlarge":
device = 'desktop';
break;
case "large":
device = 'desktop';
break;
case "medium":
device = 'tab';
break;
case "small":
device = 'mobile';
break;
}
break;
}
}
var writeOnDocument = true;
var skipOnDeviceValue = "[medium, small]";
var noSkipOnDevice = skipOnDeviceValue.length > 0;
if(noSkipOnDevice) {
if (skipOnDeviceValue.indexOf("large") > -1 && 'desktop' == device) {
writeOnDocument = false;
}
if (skipOnDeviceValue.indexOf("medium") > -1 && 'tab' == device) {
writeOnDocument = false;
}
if (skipOnDeviceValue.indexOf("small") > -1 && 'mobile' == device) {
writeOnDocument = false;
}
}
if(writeOnDocument) {
d.write(adcode);
}
}(document);
</script><!-- Javascript tag: --><!-- begin ZEDO for channel: HIndu_Interstitial , publisher: Hindu , Ad Dimension: Intromercial - 1 x 1 --><script language="JavaScript">var zflag_nid="2132"; var zflag_cid="87/1"; var zflag_sid="1"; var zflag_width="1"; var zflag_height="1"; var zflag_sz="16"; var zflag_background_color="#FFFFFF"; var zlflag_lightbox_right_header= "click here to go to thehindu.com"; var zflag_opacity="100"; </script><script language="JavaScript" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/fo.js"></script><script language="javascript" src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/fm.js" charset="UTF-8"></script><span id="Zedo-Ad=1393187_87_1_1_1;Domain=.zedo.com"></span><iframe style="display:none;" id="zzblankad" height="0" width="0"></iframe><!-- end ZEDO for channel: HIndu_Interstitial , publisher: Hindu , Ad Dimension: Intromercial - 1 x 1 -->
<link href="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/wf-helper-classes.css" rel="stylesheet">
<link href="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/default-base.css" rel="stylesheet"> <link href="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/plug-in.css" rel="stylesheet">
<style type="text/css">
/*For Jw Player start*/
.headline{
padding-top:10px !important;
font-size:13px!important;
line-height :15.5px !important;
}
.close-icon{
position: absolute;
background: #133b5a;
cursor: pointer;
right: 95%;
padding: 2px 10px;
color:#fff;
}
/*Mobile start*/
@media (max-width: 767px) and (min-width: 1px){
.mobileClrBnt {
font-size : 19px!important;
}
.lead-video-cont .video-section .story4-text-img {
width : 100% !important;
}
.video-section{
padding: 10px 10px 10px 20px !important;
}
}
/*Mobile end*/
/*Laptop*/
@media (max-width: 1598px) and (min-width: 1000px){
.lead-video-cont .video-section .story4-text-img {
width : 100% !important;
}
.video-section .video-playlist-container
{
padding-right:10%;
}
}
/*Desktop big top*/
@media (max-width: 1999px) and (min-width: 1599px){
.lead-video-cont .video-section .story4-text-img {
width : 100% !important;
}
}
@media (max-width: 767px) and (min-width: 1px) and (orientation : landscape){
.lead-video-cont .video-section .story4-text-img{
width : 100% !important;
height : 202px!important;
}
.playlisticon{
left: 91%!important;
bottom: 5%!important;
}
}
/*Ipad start*/
@media (max-width: 999px) and (min-width: 768px){
.jw-controlbar-center-group {
right:7%;
}
.lead-video-cont .video-section .story4-text-img {
width : 100% !important;
}
.video-section .video-playlist-container
{
padding-right:10%;
}
}
/*Ipad End*/
/*For Jw Player End*/
@media (max-width: 1023px) and (min-width: 768px) {
.trending-menu > ul > li:nth-child(n+2) {display: none;}
.sub-menu-sticky > ul > li:nth-child(n+7) {display: none;}
.city-menu-1 > nav > ul > li:nth-child(n+7) {display: none;}
/* Main Menu */
#main-menu > ul > li:nth-child(n+7) {display: none !important;}
#main-menu > ul > li:nth-last-child(-n+2) {display: block !important;}
}
@media (min-width: 1024px) and (max-width: 1599px){
.trending-menu > ul > li:nth-child(n+5) {display: none;}
.sub-menu-sticky > ul > li:nth-child(n+9) {display: none;}
.city-menu-1 > nav > ul > li:nth-child(n+10) {display: none;}
/* Main menu */
#main-menu > ul > li:nth-child(n+10) {display: none;}
#main-menu > ul > li:nth-last-child(-n+2) {display: block;}
}
@media (min-width: 1600px) {
.trending-menu > ul > li:nth-child(n+6) {display: none;}
.list-inline > ul > li:nth-child(n+4) {display: none;}
.sub-menu-sticky > ul > li:nth-child(n+13) {display: none;}
.city-menu-1 > nav > ul > li:nth-child(n+13) {display: none;}
}
/*#main-menu>ul>li:nth-child(3){position:relative;}
#main-menu>ul>li:nth-child(3):after {
content: " New!";
top: -8px;
left: 55px;
color: rgb(255, 0, 31);
font-size: 10px;
font-family: 'Fira-Sans-Semibold',sans-serif;
position: absolute;
} */
/*hamburger*/
.other-menu ul.menu {list-style: none;}
/* breaking news - start */
.breakingNews100-container a{ text-decoration: none;} .marquee1 a:after{content: " | ";color: #FF0000;display: inline-block;font-size: 100%;margin: 0 0 0 .5em;} .marquee1 a:last-child:after{ content: "| ";color: #FF0000;display: inline-block;font-size: 100%;margin: 0 .5em 0 .5em;}
@media (max-width: 1023px){.remove-brk-news {margin-right:-1px;}}
.breakingNews100-heading{border-right: 6px solid #e6e6e1 ! important;}
.container{ padding-left: 0px;}
.breakingNews100-sub-cont {overflow-x: hidden;}
@media (max-width: 480px){
.breakingNews100-heading{
line-height: 10px;
padding: 3px;
width: 26%;
white-space: initial;
font-size: 10px! important;
}
}
/* breaking news - end */
</style>
<!--[if lt IE 9]>
<script src="http://www.thehindu.com/static/js/html5shiv.js"></script>
<script src="http://www.thehindu.com/static/js/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">
var _comscore = _comscore || [];
_comscore.push({ c1: "2", c2: "11398210" });
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=11398210&cv=2.0&cj=1" />
</noscript>
<script type="text/javascript"> var fillerList = "14664883#widget_viewPicker,14664882#widget_viewPicker,14664881#widget_viewPicker,14664880#widget_viewPicker";
var fillerArray = fillerList.split(",");
function loadTag(selector, fo_tag, skipOnDevice, content_width, content_height) {
if(isDesktop) {
fo_tag = fo_tag.replace("zflag_kw", "zflag_kw_test");
}
var writeOnDocument = true;
var noSkipOnDevice = skipOnDevice.length > 0;
if(noSkipOnDevice) {
if (skipOnDevice.indexOf("large") > -1 && (isDesktop || isLargeDesktop)) {
writeOnDocument = false;
}
if (skipOnDevice.indexOf("medium") > -1 && isTablet) {
writeOnDocument = false;
}
if (skipOnDevice.indexOf("small") > -1 && isMobile) {
writeOnDocument = false;
}
}
if(writeOnDocument) {
document.getElementById(selector).style.width = content_width + "px";
document.getElementById(selector).style.height = content_height + "px";
var iframeId = "ifrm_"+selector;
var html = '<style type="text/css">*{ margin:0px; }</style> <scr' +'ipt type="text/javascript">'+fo_tag+'</scr' +'ipt>';
html += '<scr' +'ipt type="text/javascript" src="http://d8.zedo.com/jsc/d8/fo.js"></scr' +'ipt>';
var _iframe = document.createElement('iframe');
_iframe.name="zedoLaterloadframe";
_iframe.id=iframeId;
_iframe.frameBorder=0;
_iframe.scrolling="no";
_iframe.allowTransparency="true";
_iframe.width=content_width;
_iframe.height=content_height;
_iframe.setAttribute('allowFullScreen', '');
document.getElementById(selector).appendChild(_iframe);
document.getElementById(iframeId).onload = function() {
var _frmcont = document.getElementById(iframeId).contentWindow.document.body.outerHTML;
_frmcont = _frmcont.toLowerCase();
if (_frmcont.search('id="zzblankad"') == -1) {
} else {
document.getElementById(selector).style.display = "none"; if("true") {
if(fillerList && fillerArray.length > 0 && document.getElementById(selector).parentElement.className.includes("row")) {
var widgetInfo = fillerArray[0].split("#");
var widgetId = widgetInfo[0].trim();
var widgetName = widgetInfo[1].trim();
var url="http://www.thehindu.com/?service=widget&widgetContentId="+widgetId+"&widgetName="+widgetName;
var z = document.createElement('div');
z.setAttribute("class","wf-placeholder");
z.setAttribute("id","flc" + selector );
z.setAttribute("data-loadURL",url);
z.setAttribute("data-skip-profiles",""); document.getElementById(selector).parentElement.appendChild(z); if(typeof(WidgetLazyload) != "undefined"){
WidgetLazyload($("#flc" + selector) );
}
// Then trigger the fragment loading of Widget Framework
// Removing the widget id from the array.
fillerArray.shift();
}
}
}
}
var _brwAppv = navigator.appVersion;
var bmsie = _brwAppv.match(/MSIE (\d+)\./); if (bmsie !== null) {
_iframe.contentWindow.contents = html;
_iframe.src = 'javascript:window["contents"]';
} else {
try {
_iframe.src = "javascript:\"<html><body style='background:transparent'></body></html>\"";
var iframeDoc = _iframe.contentWindow ? _iframe.contentWindow.document : _iframe.contentDocument;
iframeDoc.open("text/html", "replace"), iframeDoc.write(html), iframeDoc.close();
setTimeout(function() { }, 2000);
} catch (e) {
}
}
}
}
</script>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-W5VV9N"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W5VV9N');</script>
<!-- End Google Tag Manager -->
<section class=" ">
<div class="top-add hidden-xs hidden-sm ad-box">
<div id="test_ad_14750401" class="media" style="width: 728px; height: 90px;">
<!-- begin ZEDO for channel: Advt:Hindu_homepage_LB , publisher: Hindu -->
<script type="text/javascript"> var skipOnDeviceValue = "[medium, small]";
var zflag_nid="2132"; var zflag_cid="3/1"; var zflag_sid="1"; var zflag_width="728"; var zflag_height="90"; var zflag_sz="14";
loadTag('test_ad_14750401', 'var zflag_nid="2132"; var zflag_cid="3/1"; var zflag_sid="1"; var zflag_width="728"; var zflag_height="90"; var zflag_sz="14";', skipOnDeviceValue, zflag_width, zflag_height); </script><iframe name="zedoLaterloadframe" id="ifrm_test_ad_14750401" scrolling="no" allowfullscreen="" src="javascript:"<html><body style='background:transparent'></body></html>"" height="90" frameborder="0" width="728"></iframe>
<!-- end ZEDO for channel: Advt:Hindu_homepage_LB , publisher: Hindu -->
</div>
</div>
</section>
<div class="container-main">
<header class="home" role="banner">
<div class="container">
<div class="row">
<div class="col-xs-12">
<section class="header-top clear hidden-xs">
<!-- [Socialize] -->
<div class="socialize hidden-xs">
<ul>
<li><a href="https://www.facebook.com/thehindu" class="fb" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/The_Hindu" class="tw" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/company/the-hindu" class="in" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://instagram.com/the_hindu/?ref=badge" class="ins" target="_blank"><i class="fa fa-instagram"></i></a></li>
<li><a href="mailto:web.thehindu@thehindu.co.in" class="user"><i class="fa fa-envelope"></i></a></li>
<li><a href="http://www.thehindu.com/social/" class="user"><i class="fa fa-mobile"></i></a></li>
<li><a href="https://epaper.thehindu.com/" class="user"><i class="fa fa-newspaper-o"></i></a></li>
</ul>
</div>
<!-- [/Socialize] -->
<div class="search-block">
<form action="http://www.thehindu.com/search/"> <input data-type="search" placeholder="Search here" name="q" required="" oninvalid="setCustomValidity('Please enter your search text.')" oninput="setCustomValidity('')" type="text"> <button class="fa fa-search search-selection-icon" style="background: none !important; color: black"></button>
</form>
</div>
</section>
<section class="logo-block">
<div id="logo" class="logo">
<a href="http://www.thehindu.com/">
<img src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/logo.png" alt="Return to frontpage">
</a>
<p class="hidden-xs">
<span id="todaysdate">Sunday, April 23, 2017</span>
<span class="today-paper"><a href="http://www.thehindu.com/todays-paper/">Today's Paper</a></span>
<span id="weather"></span>
</p>
<script type="text/javascript">
var days = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];
var months = ['January','February','March','April','May','June','July','August','September','October','November','December'];
var today = new Date();
var day = days[ today.getDay() ];
var month = months[ today.getMonth() ];
$(function(){
$("#todaysdate").html(day + ", " + month +" " + today.getDate() + ", " + today.getFullYear());
});
</script>
</div>
</section>
<nav class="navbar main-menu clear " role="navigation">
<div class="just-in-conatiner hidden-sm hidden-md hidden-lg">
<i class="fa fa-bell"></i>
<span class="just-in-counter">15</span>
</div>
<div class="menu-icon">
<a href="javascript:void(0)" id="menu-button">
<!-- <span class="menu-text hidden-xs">Menu</span> --><i class="icon"></i>
</a>
</div>
<div id="main-menu">
<ul class=" hidden-xs">
<li class="active">
<a href="http://www.thehindu.com/">
Home
</a>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/news/" class="dropdown-toggle" data-toggle="dropdown">News <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.thehindu.com/news/national/">National </a></li>
<li><a href="http://www.thehindu.com/news/international/">International </a></li>
<li><a href="http://www.thehindu.com/news/states/">States </a></li>
<li><a href="http://www.thehindu.com/news/cities/">Cities </a></li>
</ul>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/opinion/" class="dropdown-toggle" data-toggle="dropdown">Opinion <b class="caret"></b></a>
<ul class="dropdown-menu">
<li class=""><a href="http://www.thehindu.com/opinion/cartoon/">Cartoon </a></li>
<li><a href="http://www.thehindu.com/opinion/columns/">Columns </a></li>
<li><a href="http://www.thehindu.com/opinion/editorial/">Editorial </a></li>
<li><a href="http://www.thehindu.com/opinion/interview/">Interview </a></li>
<li><a href="http://www.thehindu.com/opinion/lead/">Lead </a></li>
<li><a href="http://www.thehindu.com/opinion/Readers-Editor/">Readers' Editor </a></li>
<li><a href="http://www.thehindu.com/opinion/op-ed/">Comment </a></li>
<li><a href="http://www.thehindu.com/opinion/open-page/">Open Page </a></li>
<li><a href="http://www.thehindu.com/opinion/letters/">Letters </a></li>
</ul>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/business/" class="dropdown-toggle" data-toggle="dropdown">Business <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.thehindu.com/business/agri-business/">Agri-Business </a></li>
<li><a href="http://www.thehindu.com/business/Industry/">Industry </a></li>
<li><a href="http://www.thehindu.com/business/Economy/">Economy </a></li>
<li><a href="http://www.thehindu.com/business/markets/">Markets </a></li>
<li><a href="http://www.thehindu.com/business/budget/">Budget </a></li>
<li><a href="http://www.thehindubusinessline.com/markets/" target="">Stock Quotes </a></li>
</ul>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/sport/" class="dropdown-toggle" data-toggle="dropdown">Sport <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.thehindu.com/sport/cricket/">Cricket </a></li>
<li><a href="http://www.thehindu.com/sport/football/">Football </a></li>
<li><a href="http://www.thehindu.com/sport/hockey/">Hockey </a></li>
<li><a href="http://www.thehindu.com/sport/tennis/">Tennis </a></li>
<li><a href="http://www.thehindu.com/sport/athletics/">Athletics </a></li>
<li><a href="http://www.thehindu.com/sport/motorsport/">Motorsport </a></li>
<li><a href="http://www.thehindu.com/sport/races/">Races </a></li>
<li><a href="http://www.thehindu.com/sport/other-sports/">Other Sports </a></li>
</ul>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/entertainment/" class="dropdown-toggle" data-toggle="dropdown">Entertainment <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.thehindu.com/entertainment/art/">Art </a></li>
<li><a href="http://www.thehindu.com/entertainment/dance/">Dance </a></li>
<li><a href="http://www.thehindu.com/entertainment/movies/">Movies </a></li>
<li><a href="http://www.thehindu.com/entertainment/music/">Music </a></li>
<li><a href="http://www.thehindu.com/entertainment/reviews/">Reviews </a></li>
<li><a href="http://www.thehindu.com/entertainment/theatre/">Theatre </a></li>
</ul>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/life-and-style/" class="dropdown-toggle" data-toggle="dropdown">Life & Style <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.thehindu.com/life-and-style/fashion/">Fashion </a></li>
<li><a href="http://www.thehindu.com/life-and-style/fitness/">Fitness </a></li>
<li><a href="http://www.thehindu.com/life-and-style/food/">Food </a></li>
<li><a href="http://www.thehindu.com/life-and-style/motoring/">Motoring </a></li>
<li><a href="http://www.thehindu.com/life-and-style/travel/">Travel </a></li>
<li><a href="http://www.thehindu.com/life-and-style/homes-and-gardens/">Homes and gardens </a></li>
</ul>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/society/" class="dropdown-toggle" data-toggle="dropdown">Society <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.thehindu.com/society/faith/">Faith </a></li>
<li><a href="http://www.thehindu.com/society/history-and-culture/">History & Culture </a></li>
</ul>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/books/" class="dropdown-toggle" data-toggle="dropdown">Books <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.thehindu.com/books/books-reviews/">Reviews </a></li>
<li><a href="http://www.thehindu.com/books/books-authors/">Authors </a></li>
</ul>
</li>
<li class="dropdown">
<a href="http://www.thehindu.com/sci-tech/" class="dropdown-toggle" data-toggle="dropdown">Sci-Tech <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.thehindu.com/sci-tech/science/">Science </a></li>
<li><a href="http://www.thehindu.com/sci-tech/technology/">Technology </a></li>
<li><a href="http://www.thehindu.com/sci-tech/health/">Health </a></li>
<li><a href="http://www.thehindu.com/sci-tech/agriculture/">Agriculture </a></li>
<li><a href="http://www.thehindu.com/sci-tech/energy-and-environment/">Environment </a></li>
<li><a href="http://www.thehindu.com/sci-tech/technology/gadgets/">Gadgets </a></li>
<li><a href="http://www.thehindu.com/sci-tech/technology/internet/">Internet </a></li>
</ul>
</li>
<li class="">
<a href="http://www.thehindu.com/thread/">
thREAD
</a>
</li>
</ul>
</div>
</nav>
<div class="justin-popup-container hidden-sm hidden-md hidden-lg">
<span class="justin-heading">
JUST IN
</span>
<div class="justin-text-cont">
<ul>
<li>
<a href="http://www.thehindu.com/sport/cricket/rcb-sinks-to-an-all-time-low/article18196537.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> <span>4hrs</span></span>
RCB sinks to an all-time low
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/international/programme-ideology-define-choices/article18196227.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> <span>5hrs</span></span>
Programme, ideology define choices
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/adityanath-orders-biometric-attendance/article18196221.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> <span>5hrs</span></span>
Adityanath orders biometric attendance
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/14-arrested-for-agra-violence/article18196220.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> <span>5hrs</span></span>
14 arrested for Agra violence
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/bihar-man-had-no-role-in-kanpur-nia/article18196119.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> <span>6hrs</span></span>
Bihar man had no role in Kanpur: NIA
</a>
</li>
<li>
<a href="http://www.thehindu.com/sport/cricket/bravo-ruled-out-of-ipl/article18195843.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
Bravo ruled out of IPL
</a>
</li>
<li>
<a href="http://www.thehindu.com/society/history-and-culture/rare-manuscript-of-us-declaration-of-independence-discovered/article18195841.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
Rare manuscript of U.S. Declaration of Independence discovered
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/38-indians-detained-in-uk-for-visa-breach/article18195735.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
38 Indians detained in U.K. for visa breach </a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/army-takes-aim-at-its-structure/article18195717.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
Army plans to raise inclusiveness
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/now-apply-for-passports-in-hindi/article18195711.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
Now apply for passports in Hindi </a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/manipur-stares-at-fuel-crisis-again/article18195700.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
Manipur stares at fuel crisis again
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/now-australia-wants-a-lemoa/article18195694.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
Now, Australia wants a LEMOA
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/60-to-be-senior-citizen-age-limit/article18195678.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
60 to be senior citizen age limit
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/third-bcim-meet-in-kolkata-from-tuesday-china-sending-30-member-team/article18195668.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
Beijing’s Belt-Road plan overshadows BCIM meet
</a>
</li>
<li>
<a href="http://www.thehindu.com/news/national/modi-asks-reach-out-to-students/article18195391.ece?homepage=true">
<span class="red-color"><i class="fa fa-clock-o"></i> </span>
Modi asks states to reach out to students from J&K </a>
</li>
</ul>
<span class="close-justin-container">
<a class="cj-sub-container">CLOSE</a>
</span>
<script type="text/javascript">
$(document).ready(function(e){
var just_in_count = $(".justin-text-cont ul li").length;
$(".just-in-counter").html(just_in_count);
});
</script>
</div>
</div>
<nav class="navbar trending-menu trending-menu-home hidden-xs " role="navigation">
<span class="fts-menu">
TRENDING TODAY
</span>
<ul class="list-inline">
<li>
<a href="http://www.thehindu.com/tag/204-81/tamil-nadu" class="label label-default txt">Tamil Nadu</a>
</li>
<li>
<a href="http://www.thehindu.com/tag/117-81/delhi" class="label label-default txt">Delhi</a>
</li>
<li>
<a href="http://www.thehindu.com/topic/The_Hindu_Metro_Plus/" class="label label-default txt">The Hindu MetroPlus</a>
</li>
<li>
<a href="http://www.thehindu.com/topic/Sheena_Bora_Murder_Case_/" class="label label-default txt">Sheena Bora Murder Case</a>
</li>
<li>
<a href="http://www.thehindu.com/tag/144-81/karnataka" class="label label-default txt">Karnataka</a>
</li>
<li>
<a href="http://www.thehindu.com/tag/1194-1193-1171/employee-benefits" class="label label-default txt">employee benefits</a>
</li>
</ul>
<div class="right-highlights-news">
<a href="http://www.thehindu.com/news/international/why-we-need-to-pay-attention-to-the-upcoming-french-elections/article18189949.ece?homepage=true">
<i class="fa fa-dot-circle-o fa-lg yellow-color blink-active" style="display: inline-block; opacity: 0.683473;"></i>
French elections explained
</a>
<!-- <span class="art_sub_head-gradient"></span>-->
</div>
</nav>
<div class="mob-top-add hidden-sm hidden-md hidden-lg">
<div class="14842493 add hidden-md hidden-lg ">
<script type="text/javascript">
new function(d) {
var adcode = "<!-- Javascript tag: -->" +
"<!-- begin ZEDO for channel: Hindu WAP Top , publisher: Hindu , Ad Dimension: WAP - 320 x 50 -->" +
"<" + "script language=\"JavaScript\">" +
"var zflag_nid=\"2132\"; " +
"var zflag_cid=\"135\"; " +
"var zflag_sid=\"1\"; " +
"var zflag_width=\"320\"; " +
"var zflag_height=\"50\"; " +
"var zflag_sz=\"93\";" +
"var zflag_ct =\"LAudience:\";" +
"<" + "/script>" +
"<" + "script type=\"text/javascript\" src=\"http://ad.crwdcntrl.net/5/c=7869/pe=y/var=lotauds\"><" + "/script>" +
"<" + "script type=\"text/javascript\" src=\"http://www.thehindu.com/brandhub/article16804858.ece/Binary/lotameTHwap_2940577a.js\"><" + "/script>" +
"<" + "script language=\"JavaScript\" src=\"http://d8.zedo.com/jsc/d8/fo.js\"><" + "/script>" +
"<!-- end ZEDO for channel: Hindu WAP Top , publisher: Hindu , Ad Dimension: WAP - 320 x 50 -->" +
"" +
"<!-- Begin ZEDO Mobile -->" +
"<" + "script language=\"JavaScript\">" +
"var zzp=new Image();" +
"zzp.src=\"http://m8.zedo.com/log/p.gif?a=2682506;c=2132000329;x=3840;n=2132;e=i;i=0;s=1;z=\"+Math.random();<" + "/script>" +
"<noscript>" +
"<img width=1 height=1 border=0 src=\"http://m8.zedo.com/log/p.gif?a=2682506;g=0;c=2132000329;x=3840;n=2132;i=0;e=i;s=1;z=[timestamp]\">" +
"</noscript>" +
"<!-- End ZEDO Mobile -->";
var device = "";
for ( var type in WFClientTypeDef) {
if (window.matchMedia(WFClientTypeDef[type]).matches) {
switch (type) {
case "xlarge":
device = 'desktop';
break;
case "large":
device = 'desktop';
break;
case "medium":
device = 'tab';
break;
case "small":
device = 'mobile';
break;
}
break;
}
}
var writeOnDocument = true;
var skipOnDeviceValue = "[large, medium]";
var noSkipOnDevice = skipOnDeviceValue.length > 0;
if(noSkipOnDevice) {
if (skipOnDeviceValue.indexOf("large") > -1 && 'desktop' == device) {
writeOnDocument = false;
}
if (skipOnDeviceValue.indexOf("medium") > -1 && 'tab' == device) {
writeOnDocument = false;
}
if (skipOnDeviceValue.indexOf("small") > -1 && 'mobile' == device) {
writeOnDocument = false;
}
}
if(writeOnDocument) {
d.write(adcode);
}
}(document);
</script>
</div>
</div>
</div>
</div>
</div>
</header>
<div class=" ">
</div>
<section class=" " role="main">
<div class="container">
<div id="BreakingNews">
<div class="col-xs-12">
<div class="row">
<script type="text/javascript">
$(function(){ var speed = 45000 * $(window).width() /1600; var pauseOnHover=true;
if($(window).width() < 868)
{
pauseOnHover=false; }
$('.marquee1').marquee({speed:speed,duplicated:true,gap:2,delayBeforeStart :0,pauseOnHover:pauseOnHover,duration: 10000,startVisible:true,delayBeforeStart:3000}); $(".remove-brk-news").click(function(){$("div .breakingNews100-container").remove();}); });
</script> </div>
</div>
</div>
<div class="main">
<div class="row">
<div class="50_3x_Lead1StoryBlueBg">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 hover-icon">
<div class="ls50x3Bluebg-container" data-vr-contentbox="">
<a href="http://www.thehindu.com/news/national/prime-minister-narendra-modi-addressing-the-chief-ministers-at-niti-aayog-meeting-in-new-delhi/article18194878.ece?homepage=true" class="ls50x3Bluebg-img focuspoint" data-focus-x="0" data-focus-y="0">
<img src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/23PMInfrajpg.jpeg" data-variant="WIDE" data-device-variant="LANDSCAPE~LANDSCAPE~LANDSCAPE" data-src-template="http://www.thehindu.com/news/article18196049.ece/BINARY/thumbnail/23PMInfrajpg" data-proxy-image="http://www.thehindu.com/news/article18196049.ece/ALTERNATES/WIDE_100/23PMInfrajpg" data-proxy-width="" alt="Plan pitch: Narendra Modi chairing the third Governing Council meeting of the NITI Aayog in New Delhi on Sunday." title="Plan pitch: Narendra Modi chairing the third Governing Council meeting of the NITI Aayog in New Delhi on Sunday." class="media-object lazy adaptive placeholder" data-original="http://www.thehindu.com/news/article18196049.ece/alternates/LANDSCAPE_320/23PMInfrajpg" data-selected-width="320" style="display: block;">
</a>
<div class="ls50x3Bluebg-text">
<div class="ls50x3Bluebg-heading">
<!-- <i class="fa fa-dot-circle-o fa-lg yellow-color blink-active" style="padding-right: 2px;"></i> -->
<h1>
<a href="http://www.thehindu.com/news/national/prime-minister-narendra-modi-addressing-the-chief-ministers-at-niti-aayog-meeting-in-new-delhi/article18194878.ece?homepage=true" title="Updated: April 23, 2017 23:09 ISTPublished: April 23, 2017 13:31 IST" data-vr-excerpttitle="">
Narendra Modi asks States to speed up infrastructure spending </a>
</h1>
</div>
<a href="http://www.thehindu.com/profile/author/Yuthika-Bhargava-505/" class="person-name lnk">Yuthika Bhargava</a>
<p class="hidden-xs white-text">
Modi gave credit to all CMs for coming on one platform for GST, keeping aside ideological and political differences.
</p>
<div class="news-comments-area">
<ul>
<li>
<i class="fa fa-clock-o"></i>
</li>
<li data-ccount="18194878"><i class="fa fa-comment"></i> 3</li>
</ul>
</div>
</div>
<div class="hover-social-media-top hidden-xs" data-share-url="http://www.thehindu.com/news/national/prime-minister-narendra-modi-addressing-the-chief-ministers-at-niti-aayog-meeting-in-new-delhi/article18194878.ece" data-share-text="Narendra Modi asks States to speed up infrastructure spending "><ul><a style="color:#3B5998; border-right:1px solid #fff;"><li><i class="fa fa-facebook"></i></li></a><a style="color:#55ACEE;"><li><i class="fa fa-twitter"></i></li></a></ul></div>
</div>
</div>
</div>
<div class="50_1x_StoryCard mobile-padding">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="story-card" data-vr-contentbox="">
<a href="http://www.thehindu.com/news/international/france-goes-to-polls-on-sunday-french-expatriates-in-the-us-canada-and-south-america-already-voted-on-saturday/article18194684.ece?homepage=true" class="story-card-img focuspoint " data-focus-x="0" data-focus-y="0">
<img src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/FRENCHELECTION.jpeg" data-variant="SQUARE" data-device-variant="SQUARE~SQUARE~SQUARE" data-src-template="http://www.thehindu.com/news/international/article18194683.ece/BINARY/thumbnail/FRENCHELECTION" data-proxy-image="http://www.thehindu.com/news/international/article18194683.ece/ALTERNATES/SQUARE_100/FRENCHELECTION" data-proxy-width="" alt="" title="French expats wait in line to vote in Montreal on Saturday. France goes to the polls on Sunday for the first round of the 2017 French presidential election." class="media-object lazy adaptive placeholder" data-original="http://www.thehindu.com/news/international/article18194683.ece/alternates/SQUARE_115/FRENCHELECTION" data-selected-width="115" style="display: block;">
</a>
<div class="story-card-news">
<span class="story-card-heading">
<a class="kicker-text hidden-xs">
</a>
<a href="http://www.thehindu.com/news/international/" class="section-name">
International
</a>
</span>
<h2>
<a href="http://www.thehindu.com/news/international/france-goes-to-polls-on-sunday-french-expatriates-in-the-us-canada-and-south-america-already-voted-on-saturday/article18194684.ece?homepage=true" title="Updated: April 24, 2017 01:12 ISTPublished: April 23, 2017 11:08 IST" data-vr-excerpttitle="">
France's Le Pen hails 'historic' result after reaching runoff
</a>
</h2>
<div class="news-comments-area">
<ul>
<li>
<i class="fa fa-clock-o"></i> </li>
<li data-ccount="18194684"></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="50_1x_StoryCard mobile-padding">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="story-card" data-vr-contentbox="">
<a href="http://www.thehindu.com/news/national/bihar-man-had-no-role-in-kanpur-nia/article18196119.ece?homepage=true" class="story-card-img focuspoint " data-focus-x="0" data-focus-y="0">
<img src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/TH24KANPUR.jpeg" data-variant="SQUARE" data-device-variant="SQUARE~SQUARE~SQUARE" data-src-template="http://www.thehindu.com/news/national/article18196118.ece/BINARY/thumbnail/TH24KANPUR" data-proxy-image="http://www.thehindu.com/news/national/article18196118.ece/ALTERNATES/SQUARE_100/TH24KANPUR" data-proxy-width="" alt="" title="Death trail: Over 140 people were killed as Indore-Patna Express derailed near Kanpur on November 20." class="media-object lazy adaptive placeholder" data-original="http://www.thehindu.com/news/national/article18196118.ece/alternates/SQUARE_115/TH24KANPUR" data-selected-width="115" style="display: block;">
</a>
<div class="story-card-news">
<span class="story-card-heading">
<a class="kicker-text hidden-xs">
</a>
<a href="http://www.thehindu.com/news/national/" class="section-name">
National
</a>
</span>
<h2>
<a href="http://www.thehindu.com/news/national/bihar-man-had-no-role-in-kanpur-nia/article18196119.ece?homepage=true" title="Updated: April 23, 2017 23:17 ISTPublished: April 23, 2017 23:17 IST" data-vr-excerpttitle="">
Bihar man had no role in Kanpur: NIA
</a>
</h2>
<div class="news-comments-area">
<ul>
<li>
<i class="fa fa-clock-o"></i> <span>6hrs</span>
</li>
<li data-ccount="18196119"></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="50_1x_StoryCard mobile-padding">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="story-card" data-vr-contentbox="">
<a href="http://www.thehindu.com/business/Economy/centre-mulls-nodal-body-for-transport/article18195484.ece?homepage=true" class="story-card-img focuspoint " data-focus-x="0" data-focus-y="0">
<img src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/th24%252520logistics_002.jpeg" data-variant="SQUARE" data-device-variant="SQUARE~SQUARE~SQUARE" data-src-template="http://www.thehindu.com/business/Economy/article18195483.ece/BINARY/thumbnail/th24%20logistics" data-proxy-image="http://www.thehindu.com/business/Economy/article18195483.ece/ALTERNATES/SQUARE_100/th24%20logistics" data-proxy-width="" alt="" title="Growth push: The Centre plans to build 35 multi-modal logistics parks by investing ₹50,000 crore" class="media-object lazy adaptive placeholder" data-original="http://www.thehindu.com/business/Economy/article18195483.ece/alternates/SQUARE_115/th24%20logistics" data-selected-width="115" style="display: block;">
</a>
<div class="story-card-news">
<span class="story-card-heading">
<a class="kicker-text hidden-xs">
</a>
<a href="http://www.thehindu.com/business/Economy/" class="section-name">
Economy
</a>
</span>
<h2>
<a href="http://www.thehindu.com/business/Economy/centre-mulls-nodal-body-for-transport/article18195484.ece?homepage=true" title="Updated: April 23, 2017 20:28 ISTPublished: April 23, 2017 20:26 IST" data-vr-excerpttitle="">
Centre mulls nodal body for transport
</a>
</h2>
<div class="news-comments-area">
<ul>
<li>
<i class="fa fa-clock-o"></i> </li>
<li data-ccount="18195484"></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="50_1x_StoryCard mobile-padding">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="story-card" data-vr-contentbox="">
<a href="http://www.thehindu.com/news/cities/Delhi/54-turnout-in-delhi-civic-polls/article18195962.ece?homepage=true" class="story-card-img focuspoint " data-focus-x="0" data-focus-y="0">
<img src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/23THPRIYAKEJRIWAL.jpeg" data-variant="SQUARE" data-device-variant="SQUARE~SQUARE~SQUARE" data-src-template="http://www.thehindu.com/news/cities/Delhi/article18195961.ece/BINARY/thumbnail/23THPRIYAKEJRIWAL" data-proxy-image="http://www.thehindu.com/news/cities/Delhi/article18195961.ece/ALTERNATES/SQUARE_100/23THPRIYAKEJRIWAL" data-proxy-width="" alt="" title="Crucial elections: Delhi Chief Minister Arvind Kejriwal and his family after casting their vote in the municipal elections in New Delhi on Sunday." class="media-object lazy adaptive placeholder" data-original="http://www.thehindu.com/news/cities/Delhi/article18195961.ece/alternates/SQUARE_115/23THPRIYAKEJRIWAL" data-selected-width="115" style="display: block;">
</a>
<div class="story-card-news">
<span class="story-card-heading">
<a class="kicker-text hidden-xs">
</a>
<a href="http://www.thehindu.com/news/cities/Delhi/" class="section-name">
Delhi
</a>
</span>
<h2>
<a href="http://www.thehindu.com/news/cities/Delhi/54-turnout-in-delhi-civic-polls/article18195962.ece?homepage=true" title="Updated: April 23, 2017 23:26 ISTPublished: April 23, 2017 22:37 IST" data-vr-excerpttitle="">
54% turnout in Delhi civic polls </a>
</h2>
<div class="news-comments-area">
<ul>
<li>
<i class="fa fa-clock-o"></i> <span>6hrs</span>
</li>
<li data-ccount="18195962"></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="50_1x_StoryCard mobile-padding">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="story-card" data-vr-contentbox="">
<a href="http://www.thehindu.com/news/national/tamil-nadu/tn-farmers-put-off-stir-till-may-25/article18195370.ece?homepage=true" class="story-card-img focuspoint " data-focus-x="0" data-focus-y="0">
<img src="The%20Hindu:%20Breaking%20News,%20Elections%20News,%20Sports%20News,%20Live%20Updates_files/TNCMFARMERS_002.jpeg" data-variant="SQUARE" data-device-variant="SQUARE~SQUARE~SQUARE" data-src-template="http://www.thehindu.com/news/national/tamil-nadu/article18195369.ece/BINARY/thumbnail/TNCMFARMERS" data-proxy-image="http://www.thehindu.com/news/national/tamil-nadu/article18195369.ece/ALTERNATES/SQUARE_100/TNCMFARMERS" data-proxy-width="" alt="" title="Farmer leader P. Ayyakannu speaks as Tamil Nadu Chief Minister Edappadi K. Palaniswami looks during the latter’s meeting with the protesting farmers at Jantar Mantar in New Delhi on Sunday." class="media-object lazy adaptive placeholder" data-original="http://www.thehindu.com/news/national/tamil-nadu/article18195369.ece/alternates/SQUARE_115/TNCMFARMERS" data-selected-width="115" style="display: block;">
</a>
<div class="story-card-news">
<span class="story-card-heading">
<a class="kicker-text hidden-xs">
</a>
<a href="http://www.thehindu.com/news/national/tamil-nadu/" class="section-name">
Tamil Nadu
</a>
</span>
<h2>
<a href="http://www.thehindu.com/news/national/tamil-nadu/tn-farmers-put-off-stir-till-may-25/article18195370.ece?homepage=true" title="Updated: April 23, 2017 23:19 ISTPublished: April 23, 2017 19:19 IST" data-vr-excerpttitle="">
T.N. farmers put off stir till May 25
</a>
</h2>
<div class="news-comments-area">
<ul>
<li>
<i class="fa fa-clock-o"></i> </li>
<li data-ccount="18195370"></li>
</ul>