content-extractor-rl 0.1.2

RL-based article extraction from HTML using Deep Q-Networks and heuristic fallback
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage" >

<head>
    <title>
    Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence, Telecom News, ET Telecom</title>

    <meta itemprop="name" content="Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence - ET Telecom" />
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" /><script type="text/javascript">(window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"1619349449",accountID:"2196588",trustKey:"2223361",xpid:"VgcOV1NbABABUlBbBwMPUlQI",licenseKey:"485480a09e",applicationID:"1619028409"};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{s.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(29),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,s){try{l?l-=1:o(s||new UncaughtException(t,e,n),!0)}catch(f){try{i("ierr",[f,c.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:c.now();i("err",[t,n])}var i=t("handle"),a=t(30),s=t("ee"),c=t("loader"),f=t("gos"),u=window.onerror,d=!1,p="nr@seenError";if(!c.disabled){var l=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(13),t(12),"addEventListener"in window&&t(6),c.xhrWrappable&&t(14),d=!0)}s.on("fn-start",function(t,e,n){d&&(l+=1)}),s.on("fn-err",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),s.on("fn-end",function(){d&&!this.thrown&&l>0&&(l-=1)}),s.on("internal-error",function(t){i("ierr",[t,c.now(),!0])})}},{}],3:[function(t,e,n){var r=t("loader");r.disabled||(r.features.ins=!0)},{}],4:[function(t,e,n){function r(){L++,C=g.hash,this[u]=y.now()}function o(){L--,g.hash!==C&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){E.emit("newURL",[""+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var s="-start",c="-end",f="-body",u="fn"+s,d="fn"+c,p="cb"+s,l="cb"+c,h="jsTime",m="fetch",v="addEventListener",w=window,g=w.location,y=t("loader");if(w[v]&&y.xhrWrappable&&!y.disabled){var x=t(10),b=t(11),E=t(8),R=t(6),O=t(13),S=t(7),N=t(14),M=t(9),P=t("ee"),T=P.get("tracer");t(16),y.features.spa=!0;var C,L=0;P.on(u,r),b.on(p,r),M.on(p,r),P.on(d,o),b.on(l,o),M.on(l,o),P.buffer([u,d,"xhr-done","xhr-resolved"]),R.buffer([u]),O.buffer(["setTimeout"+c,"clearTimeout"+s,u]),N.buffer([u,"new-xhr","send-xhr"+s]),S.buffer([m+s,m+"-done",m+f+s,m+f+c]),E.buffer(["newURL"]),x.buffer([u]),b.buffer(["propagate",p,l,"executor-err","resolve"+s]),T.buffer([u,"no-"+u]),M.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"]),a(N,"send-xhr"+s),a(P,"xhr-resolved"),a(P,"xhr-done"),a(S,m+s),a(S,m+"-done"),a(M,"new-jsonp"),a(M,"jsonp-end"),a(M,"cb-start"),E.on("pushState-end",i),E.on("replaceState-end",i),w[v]("hashchange",i,!0),w[v]("load",i,!0),w[v]("popstate",function(){i(0,L>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t("ee"),i=t("handle"),a=t(13),s=t(12),c="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",p="resource",l="-start",h="-end",m="fn"+l,v="fn"+h,w="bstTimer",g="pushState",y=t("loader");if(!y.disabled){y.features.stn=!0,t(8),"addEventListener"in window&&t(6);var x=NREUM.o.EV;o.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bstStart=y.now())}),o.on(v,function(t,e){var n=t[0];n instanceof x&&i("bst",[n,e,this.bstStart,y.now()])}),a.on(m,function(t,e,n){this.bstStart=y.now(),this.bstType=n}),a.on(v,function(t,e){i(w,[e,this.bstStart,y.now(),this.bstType])}),s.on(m,function(){this.bstStart=y.now()}),s.on(v,function(t,e){i(w,[e,this.bstStart,y.now(),"requestAnimationFrame"])}),o.on(g+l,function(t){this.time=y.now(),this.startPath=location.pathname+location.hash}),o.on(g+h,function(t){i("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+c]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance["c"+c]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance["webkitC"+c]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),s=t("wrap-function")(a,!0),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1],r=c(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?s(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+"before-start",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var s=r.apply(this,t);return o.emit(n+"start",[t,a],s),s.then(function(t){return o.emit(n+"end",[null,t],s),t},function(t){throw o.emit(n+"end",[t],s),t})})}var o=t("ee").get("fetch"),i=t(30),a=t(29);e.exports=o;var s=window,c="fetch-",f=c+"body-",u=["arrayBuffer","blob","json","text","formData"],d=s.Request,p=s.Response,l=s.fetch,h="prototype",m="nr@context";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(s,"fetch",c),o.on(c+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxSize=r),o.emit(c+"done",[null,e],n)}else o.emit(c+"done",[t],n)}))},{}],8:[function(t,e,n){var r=t("ee").get("history"),o=t("wrap-function")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushState&&i.replaceState&&(a=i),o.inPlace(a,["pushState","replaceState"],"-")},{}],9:[function(t,e,n){function r(t){function e(){c.emit("jsonp-end",[],p),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}function n(){c.emit("jsonp-error",[],p),c.emit("jsonp-end",[],p),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}var r=t&&"string"==typeof t.nodeName&&"script"===t.nodeName.toLowerCase();if(r){var o="function"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var u=s(a),d="function"==typeof u.parent[u.key];if(d){var p={};f.inPlace(u.parent,[u.key],"cb-",p),t.addEventListener("load",e,!1),t.addEventListener("error",n,!1),c.emit("new-jsonp",[t.src],p)}}}}}function o(){return"addEventListener"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function s(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var c=t("ee").get("jsonp"),f=t("wrap-function")(c);if(e.exports=c,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\.([^.]+)/,p=/^(\w+)(\.| Dollars )(.*) Dollars /,l=["appendChild","insertBefore","replaceChild"];Node&&Node.prototype&&Node.prototype.appendChild?f.inPlace(Node.prototype,l,"dom-"):(f.inPlace(HTMLElement.prototype,l,"dom-"),f.inPlace(HTMLHeadElement.prototype,l,"dom-"),f.inPlace(HTMLBodyElement.prototype,l,"dom-")),c.on("dom-start",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t("ee").get("mutation"),o=t("wrap-function")(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=i.context(),n=s(t,"executor-",e,null,!1),r=new f(n);return i.context(r).getCtx=function(){return e},r}var o=t("wrap-function"),i=t("ee").get("promise"),a=t("ee").getOrSetContext,s=o(i),c=t(29),f=NREUM.o.PR;e.exports=i,f&&(window.Promise=r,["all","race"].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){i.emit("propagate",[null,!o],a,!1,!1),o=o||!t}}var o=!1;c(n,function(e,n){Promise.resolve(n).then(r("all"===t),r(!1))});var a=e.apply(f,arguments),s=f.resolve(a);return s}}),["resolve","reject"].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&i.emit("propagate",[t,!0],n,!1,!1),n}}),f.prototype["catch"]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),c(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),o.wrapInPlace(f.prototype,"then",function(t){return function(){var e=this,n=o.argsToArray.apply(this,arguments),r=a(e);r.promise=e,n[0]=s(n[0],"cb-",r,null,!1),n[1]=s(n[1],"cb-",r,null,!1);var c=t.apply(this,n);return r.nextPromise=c,i.emit("propagate",[e,!0],c,!1,!1),c}}),i.on("executor-start",function(t){t[0]=s(t[0],"resolve-",this,null,!1),t[1]=s(t[1],"resolve-",this,null,!1)}),i.on("executor-err",function(t,e,n){t[1](n)}),i.on("cb-end",function(t,e,n){i.emit("propagate",[n,!0],this.nextPromise,!1,!1)}),i.on("propagate",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=i.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return""+f})},{}],12:[function(t,e,n){var r=t("ee").get("raf"),o=t("wrap-function")(r),i="equestAnimationFrame";e.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t("wrap-function")(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";e.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",s)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,g,"fn-",s)}function i(t){y.push(t),h&&(b?b.then(a):v?v(a):(E=-E,R.data=E))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function s(t,e){return e}function c(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t("ee"),u=f.get("xhr"),d=t("wrap-function")(u),p=NREUM.o,l=p.XHR,h=p.MO,m=p.PR,v=p.SI,w="readystatechange",g=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],y=[];e.exports=u;var x=window.XMLHttpRequest=function(t){var e=new l(t);try{u.emit("new-xhr",[e],e),e.addEventListener(w,o,!1)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(c(l,x),x.prototype=l.prototype,d.inPlace(x.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),h){var b=m&&m.resolve();if(!v&&!m){var E=1,R=document.createTextNode(E);new h(a).observe(R,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){if(!s(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountID||"").toString()||null,r=(e.loader_config.agentID||"").toString()||null,f=(e.loader_config.trustKey||"").toString()||null;if(!n||!r)return null;var h=l.generateSpanId(),m=l.generateTraceId(),v=Date.now(),w={spanId:h,traceId:m,timestamp:v};return(t.sameOrigin||c(t)&&p())&&(w.traceContextParentHeader=o(h,m),w.traceContextStateHeader=i(h,v,n,r,f)),(t.sameOrigin&&!u()||!t.sameOrigin&&c(t)&&d())&&(w.newrelicHeader=a(h,m,v,n,r,f)),w}function o(t,e){return"00-"+e+"-"+t+"-01"}function i(t,e,n,r,o){var i=0,a="",s=1,c="",f="";return o+"@nr="+i+"-"+s+"-"+n+"-"+r+"-"+t+"-"+a+"-"+c+"-"+f+"-"+e}function a(t,e,n,r,o,i){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var s={v:[0,1],d:{ty:"Browser",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(s.d.tk=i),btoa(JSON.stringify(s))}function s(t){return f()&&c(t)}function c(t){var e=!1,n={};if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(n=NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origins instanceof Array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.enabled}function u(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&NREUM.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(26),h=t(17);e.exports={generateTracePayload:r,shouldGenerateTrace:s}},{}],16:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):i(this,t),n.cbTime=this.cbTime,u.emit("xhr-done",[t],t),s("xhr",[e,n,this.startTime]))}}function o(t,e){var n=c(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.parsedOrigin=n,t.sameOrigin=n.sameOrigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var a=t("loader");if(a.xhrWrappable&&!a.disabled){var s=t("handle"),c=t(17),f=t(15).generateTracePayload,u=t("ee"),d=["load","error","abort","timeout"],p=d.length,l=t("id"),h=t(22),m=t(21),v=t(18),w=NREUM.o.REQ,g=window.XMLHttpRequest;a.features.xhr=!0,t(14),t(7),u.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,e.params=this.params||{},e.metrics=this.metrics||{},t.addEventListener("load",function(n){i(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addEventListener("progress",function(t){e.lastSize=t.loaded},!1)}),u.on("open-xhr-start",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var n=f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader("newrelic",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader("tracestate",n.traceContextStateHeader),r=!0),r&&(this.dt=n)}}),u.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{"abort"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}};for(var s=0;s<p;s++)e.addEventListener(d[s],this.listener,!1)}),u.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr-load-added",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on("xhr-load-removed",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on("addEventListener-end",function(t,e){e instanceof g&&"load"===t[0]&&u.emit("xhr-load-added",[t[1],t[2]],e)}),u.on("removeEventListener-end",function(t,e){e instanceof g&&"load"===t[0]&&u.emit("xhr-load-removed",[t[1],t[2]],e)}),u.on("fn-start",function(t,e,n){e instanceof g&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on("fn-end",function(t,e){this.xhrCbStart&&u.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on("fetch-before-start",function(t){function e(t,e){var n=!1;return e.newrelicHeader&&(t.set("newrelic",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set("traceparent",e.traceContextParentHeader),e.traceContextStateHeader&&t.set("tracestate",e.traceContextStateHeader),n=!0),n}var n,r=t[1]||{};"string"==typeof t[0]?n=t[0]:t[0]&&t[0].url?n=t[0].url:window.URL&&t[0]&&t[0]instanceof URL&&(n=t[0].href),n&&(this.parsedOrigin=c(n),this.sameOrigin=this.parsedOrigin.sameOrigin);var o=f(this.parsedOrigin);if(o&&(o.newrelicHeader||o.traceContextParentHeader))if("string"==typeof t[0]||window.URL&&t[0]&&t[0]instanceof URL){var i={};for(var a in r)i[a]=r[a];i.headers=new Headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)}),u.on("fetch-start",function(t,e){this.params={},this.metrics={},this.startTime=a.now(),t.length>=1&&(this.target=t[0]),t.length>=2&&(this.opts=t[1]);var n,r=this.opts||{},i=this.target;"string"==typeof i?n=i:"object"==typeof i&&i instanceof w?n=i.url:window.URL&&"object"==typeof i&&i instanceof URL&&(n=i.href),o(this,n);var s=(""+(i&&i instanceof w&&i.method||r.method||"GET")).toUpperCase();this.params.method=s,this.txSize=m(r.body)||0}),u.on("fetch-done",function(t,e){this.params||(this.params={}),this.params.status=e?e.status:0;var n;"string"==typeof this.rxSize&&this.rxSize.length>0&&(n=+this.rxSize);var r={txSize:this.txSize,rxSize:n,duration:a.now()-this.startTime};s("xhr",[this.params,r,this.startTime])})}},{}],17:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createElement("a"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split("://");!o.port&&i[1]&&(o.port=i[1].split("/")[0].split("@").pop().split(":")[1]),o.port&&"0"!==o.port||(o.port="https"===i[0]?"443":"80"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],"/"!==o.pathname.charAt(0)&&(o.pathname="/"+o.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol,s=e.hostname===document.domain&&e.port===n.port;return o.sameOrigin=a&&(!e.hostname||s),"/"===o.pathname&&(r[t]=o),o}},{}],18:[function(t,e,n){function r(t,e){var n=t.responseType;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?o(t.response):"text"===n||""===n||void 0===n?o(t.responseText):void 0}var o=t(21);e.exports=r},{}],19:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(s(arguments)),e?null:this,n),e?void 0:this}}var i=t("handle"),a=t(29),s=t(30),c=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],p="api-",l=p+"ixn-";a(d,function(t,e){u[e]=o(p+e,!0,"api")}),u.addPageAction=o(p+"addPageAction",!0),u.setCurrentRouteName=o(p+"routeName",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(l+"tracer",[f.now(),t,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw c.emit("fn-err",[arguments,this,t],n),t}finally{c.emit("fn-end",[f.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){h[e]=o(l+e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),i("err",[t,f.now(),!1,e])}},{}],20:[function(t,e,n){function r(t){if(NREUM.init){for(var e=NREUM.init,n=t.split("."),r=0;r<n.length-1;r++)if(e=e[n[r]],"object"!=typeof e)return;return e=e[n[n.length-1]]}}e.exports={getConfiguration:r}},{}],21:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],22:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),e.exports=r},{}],23:[function(t,e,n){function r(){return s.exists&&performance.now?Math.round(performance.now()):(i=Math.max((new Date).getTime(),i))-a}function o(){return i}var i=(new Date).getTime(),a=i,s=t(31);e.exports=r,e.exports.offset=a,e.exports.getLastTimestamp=o},{}],24:[function(t,e,n){function r(t){return!(!t||!t.protocol||"file:"===t.protocol)}e.exports=r},{}],25:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){"first-paint"===t.name?d("timing",["fp",Math.floor(t.startTime)]):"first-contentful-paint"===t.name&&d("timing",["fcp",Math.floor(t.startTime)])})}function o(t,e){var n=t.getEntries();n.length>0&&d("lcp",[n[n.length-1]])}function i(t){t.getEntries().forEach(function(t){t.hadRecentInput||d("cls",[t])})}function a(t){if(t instanceof h&&!v){var e=Math.round(t.timeStamp),n={type:t.type};e<=p.now()?n.fid=p.now()-e:e>p.offset&&e<=Date.now()?(e-=p.offset,n.fid=p.now()-e):e=p.now(),v=!0,d("timing",["fi",e,n])}}function s(t){"hidden"===t&&d("pageHide",[p.now()])}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var c,f,u,d=t("handle"),p=t("loader"),l=t(28),h=NREUM.o.EV;if("PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver){c=new PerformanceObserver(r);try{c.observe({entryTypes:["paint"]})}catch(m){}f=new PerformanceObserver(o);try{f.observe({entryTypes:["largest-contentful-paint"]})}catch(m){}u=new PerformanceObserver(i);try{u.observe({type:"layout-shift",buffered:!0})}catch(m){}}if("addEventListener"in document){var v=!1,w=["click","keydown","mousedown","pointerdown","touchstart"];w.forEach(function(t){document.addEventListener(t,a,!1)})}l(s)}},{}],26:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var o,i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",s=0;s<i.length;s++)o=i[s],"x"===o?a+=t().toString(16):"y"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*Math.random()|0}var n=null,r=0,o=window.crypto||window.msCrypto;o&&o.getRandomValues&&Uint8Array&&(n=o.getRandomValues(new Uint8Array(31)));for(var i=[],a=0;a<t;a++)i.push(e().toString(16));return i.join("")}e.exports={generateUuid:r,generateSpanId:o,generateTraceId:i}},{}],27:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var s=navigator.userAgent,c=s.match(a);c&&s.indexOf("Chrome")===-1&&s.indexOf("Chromium")===-1&&(o="Safari",i=c[1])}e.exports={agent:o,version:i,match:r}},{}],28:[function(t,e,n){function r(t){function e(){t(a&&document[a]?document[a]:document[o]?"hidden":"visible")}"addEventListener"in document&&i&&document.addEventListener(i,e,!1)}e.exports=r;var o,i,a;"undefined"!=typeof document.hidden?(o="hidden",i="visibilitychange",a="visibilityState"):"undefined"!=typeof document.msHidden?(o="msHidden",i="msvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(o="webkitHidden",i="webkitvisibilitychange",a="webkitVisibilityState")},{}],29:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],30:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],31:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?f(t,c,a):a()}function n(n,r,o,i,a){if(a!==!1&&(a=!0),!l.aborted||i){t&&a&&t(n,r,o);for(var s=e(o),c=m(n),f=c.length,u=0;u<f;u++)c[u].apply(s,r);var p=d[y[n]];return p&&p.push([x,n,r,s]),s}}function i(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return p[t]=p[t]||o(n)}function w(t,e){l.aborted||u(t,function(t,n){e=e||"feature",y[n]=e,e in d||(d[e]=[])})}var g={},y={},x={on:i,addEventListener:i,removeEventListener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:s,aborted:!1};return x}function i(t){return f(t,c,a)}function a(){return new r}function s(){(d.api||d.feature)&&(l.aborted=!0,d=l.backlog={})}var c="nr@context",f=t("gos"),u=t(29),d={},p={},l=e.exports=o();e.exports.getOrSetContext=i,l.backlog=d},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!S++){var t=O.info=NREUM.info,e=m.getElementsByTagName("script")[0];if(setTimeout(f.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return f.abort();c(E,function(e,n){t[e]||(t[e]=n)});var n=a();s("mark",["onload",n+O.offset],null,"api"),s("timing",["load",n]);var r=m.createElement("script");0===t.agent.indexOf("http://")||0===t.agent.indexOf("https://")?r.src=t.agent:r.src=l+"://"+t.agent,e.parentNode.insertBefore(r,e)}}function o(){"complete"===m.readyState&&i()}function i(){s("mark",["domContent",a()+O.offset],null,"api")}var a=t(23),s=t("handle"),c=t(29),f=t("ee"),u=t(27),d=t(24),p=t(20),l=p.getConfiguration("ssl")===!1?"http":"https",h=window,m=h.document,v="addEventListener",w="attachEvent",g=h.XMLHttpRequest,y=g&&g.prototype,x=!d(h.location);NREUM.o={ST:setTimeout,SI:h.setImmediate,CT:clearTimeout,XHR:g,REQ:h.Request,EV:h.Event,PR:h.Promise,MO:h.MutationObserver};var b=""+location,E={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-spa-1210.min.js"},R=g&&y&&y[v]&&!/CriOS/.test(navigator.userAgent),O=e.exports={offset:a.getLastTimestamp(),now:a,origin:b,features:{},xhrWrappable:R,userAgent:u,disabled:x};if(!x){t(19),t(25),m[v]?(m[v]("DOMContentLoaded",i,!1),h[v]("load",r,!1)):(m[w]("onreadystatechange",o),h[w]("onload",r)),s("mark",["firstbyte",a.getLastTimestamp()],null,"api");var S=0}},{}],"wrap-function":[function(t,e,n){function r(t,e){function n(e,n,r,c,f){function nrWrapper(){var i,a,u,p;try{a=this,i=d(arguments),u="function"==typeof r?r(i,a):r||{}}catch(l){o([l,"",[i,a,c],u],t)}s(n+"start",[i,a,c],u,f);try{return p=e.apply(a,i)}catch(h){throw s(n+"err",[i,a,h],u,f),h}finally{s(n+"end",[i,a,p],u,f)}}return a(e)?e:(n||(n=""),nrWrapper[p]=e,i(e,nrWrapper,t),nrWrapper)}function r(t,e,r,o,i){r||(r="");var s,c,f,u="-"===r.charAt(0);for(f=0;f<e.length;f++)c=e[f],s=t[c],a(s)||(t[c]=n(s,u?c+r:r,o,c,i))}function s(n,r,i,a){if(!h||e){var s=h;h=!0;try{t.emit(n,r,i,e,a)}catch(c){o([c,n,r,i],t)}h=s}}return t||(t=u),n.inPlace=r,n.flag=p,n}function o(t,e){e||(e=u);try{e.emit("internal-error",t)}catch(n){}}function i(t,e,n){if(Object.defineProperty&&Object.keys)try{var r=Object.keys(t);return r.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(i){o([i],n)}for(var a in t)l.call(t,a)&&(e[a]=t[a]);return e}function a(t){return!(t&&t instanceof Function&&t.apply&&!t[p])}function s(t,e){var n=e(t);return n[p]=t,i(t,n,u),n}function c(t,e,n){var r=t[e];t[e]=s(r,n)}function f(){for(var t=arguments.length,e=new Array(t),n=0;n<t;++n)e[n]=arguments[n];return e}var u=t("ee"),d=t(30),p="nr@original",l=Object.prototype.hasOwnProperty,h=!1;e.exports=r,e.exports.wrapFunction=s,e.exports.wrapInPlace=c,e.exports.argsToArray=f},{}]},{},["loader",2,16,5,3,4]);</script>
    <meta http-equiv="X-UA-Compatible" content="IE=11,chrome=1" />
        <script>
        var hdomain='indiatimes.com';
        if (document.domain != hdomain){
         if ((document.domain.indexOf(hdomain)) != -1){ 
                document. domain = hdomain;
            }
        }
</script>
        <link rel="shortcut icon" type="image/x-icon" href="https://st.etb2bimg.com/Themes/Release/images/site-logos/etfavicon-telecom-2.ico" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5, minimum-scale=1, user-scalable=0"  />
    <meta name="google-site-verification" content="ZgFICIedNvVZl5pV9EfAUeenwta9vBY0Za_GgmV4zuw" />    <meta name="robots" content="index, follow" />        <meta name="author" content="www.ETTelecom.com" />
    <meta property="fb:app_id" content="1424100581140794" />
    <meta name="twitter:card" content="summary_large_image" />
    <meta property="og:site_name" content="ETTelecom.com" />    <meta property="og:type" content="website" />
    <meta property="og:title" content="Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence - ET Telecom" />
    <meta name="twitter:title" content="Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence - ET Telecom" />
    <meta property="og:description" content="Govt has freed a set of spectrum in the 5 Ghz band  for providing Wifi and partially 5G services by telcos." />
    <meta name="twitter:description" content="Govt has freed a set of spectrum in the 5 Ghz band  for providing Wifi and partially 5G services by telcos." />
    <meta property="og:image" content="https://etimg.etb2bimg.com/thumb/msid-66325753,imgsize-506500,width-800,height-434,overlay-ettelecom/government-frees-spectrum-for-wi-fi-5g-services-in-5-ghz-band-from-licence.jpg" />
    <meta name="twitter:site" content="http://twitter.com/Ettelecom" />
    <meta name="twitter:image" content="https://etimg.etb2bimg.com/thumb/msid-66325753,imgsize-506500,width-800,height-434,overlay-ettelecom/government-frees-spectrum-for-wi-fi-5g-services-in-5-ghz-band-from-licence.jpg" />
    <link rel="image_src" href="https://etimg.etb2bimg.com/thumb/msid-66325753,imgsize-506500,width-800,height-434,overlay-ettelecom/government-frees-spectrum-for-wi-fi-5g-services-in-5-ghz-band-from-licence.jpg" />
    <meta itemprop="image" content="https://etimg.etb2bimg.com/thumb/msid-66325753,imgsize-506500,width-800,height-434,overlay-ettelecom/government-frees-spectrum-for-wi-fi-5g-services-in-5-ghz-band-from-licence.jpg" />
        <meta name="news_keywords" content="Shopping centres, International Telecommunication Union, bharat net project, 5GCongress, 5G ecosystem, 5 Ghz band" />
        <meta name="keywords" content="Shopping centres, International Telecommunication Union, bharat net project, 5GCongress, 5G ecosystem, 5 Ghz band" />
    <meta itemprop="description" content="Govt has freed a set of spectrum in the 5 Ghz band  for providing Wifi and partially 5G services by telcos." />
    <meta name="description" content="Govt has freed a set of spectrum in the 5 Ghz band  for providing Wifi and partially 5G services by telcos." />
        <link rel="canonical" href="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" />
    <meta itemprop="url" content="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" />
        <link rel="b2b_canonical" href="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" />
        <meta property="og:url" content="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" />
    <meta name="twitter:url" content="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" />
            <link rel="preconnect" crossorigin href="https://js.etb2bimg.com"><link rel="preconnect" crossorigin href="https://etimg.etb2bimg.com"><link rel="dns-prefetch" href="https://img.etb2bimg.com"><link rel="dns-prefetch" href="https://st.etb2bimg.com"><meta name="publish-date" content="Tue, 23 Oct 2018 08:40:00 +0530" /><meta name="created-date" content="Tue, 23 Oct 2018 08:40:00 +0530" /><meta name="modified-date" content="Tue, 23 Oct 2018 11:38:00 +0530" /><meta name="robots" content="max-image-preview:large" />    <meta itemprop="sourceOrganization" content="ETTelecom" />
    <meta itemprop="isFamilyFriendly" content="true" />
    <link rel="amphtml" href="https://telecom.economictimes.indiatimes.com/amp/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" /><link href="//www.google-analytics.com" ref="preconnect"><link href="//tpc.googlesyndication.com" ref="preconnect"><link href="//apis.google.com" ref="preconnect"><link href="//connect.facebook.net" ref="preconnect"><link href="//cm.g.doubleclick.net" ref="preconnect"><link href="//googleads.g.doubleclick.net" ref="preconnect"><link href="//googleads.g.doubleclick.net" ref="preconnect"><link href="https://etimg.etb2bimg.com" ref="preconnect"><link href="https://img.etb2bimg.com" ref="preconnect"><link href="https://st.etb2bimg.com" ref="preconnect"><link href="https://js.etb2bimg.com" ref="preconnect"><link href="https://telecom.economictimes.indiatimes.com" ref="preconnect"><link href="//b.scorecardresearch.com" rel="preconnect"><link href="//www.google-analytics.com" ref="dns-prefetch"><link href="//tpc.googlesyndication.com" ref="dns-prefetch"><link href="//apis.google.com" ref="dns-prefetch"><link href="//connect.facebook.net" ref="dns-prefetch"><link href="//cm.g.doubleclick.net" ref="dns-prefetch"><link href="//googleads.g.doubleclick.net" ref="dns-prefetch"><link href="https://etimg.etb2bimg.com" ref="dns-prefetch"><link href="https://img.etb2bimg.com" ref="dns-prefetch"><link href="https://st.etb2bimg.com" ref="dns-prefetch"><link href="https://js.etb2bimg.com" ref="dns-prefetch"><link href="https://telecom.economictimes.indiatimes.com" ref="dns-prefetch"><link href="//b.scorecardresearch.com" rel="dns-prefetch">    <!-- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta http-equiv="Content-Security-Policy" content="block-all-mixed-content"> -->



<script type="text/javascript">
var EtB2b = EtB2b || {};
EtB2b.ga_clients = [['UA-5594188-23','default']];

var base_url = "https://telecom.economictimes.indiatimes.com";
var root_url="https://telecom.economictimes.indiatimes.com";
var static_files_url = "https://img.etb2bimg.com/files";
var skin_path = "https://st.etb2bimg.com/Themes/Release";
var THEME_PATH = "https://st.etb2bimg.com/Themes/Release";
var theme_version = "v1";
var canonicalReplaceHistory = "1";
var login_uid = "";
var FACEBOOK_APPID = "1424100581140794";
var  Dollars _GET = {"path":"news\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence\/66325753"};
var ET_PORTAL = "telecom";
var SITE_NAMES = {"retail":"ETRetail.com","auto":"ETAuto.com","health":"ETHealthworld.com","telecom":"ETTelecom.com","energy":"ETEnergyworld.com","cio":"ETCIO.com","realty":"ETRealty.com","tech":"ETtech.com","cfo":"ETCFO.com","ciso":"ETCISO.in","bfsi":"ETBFSI.com","government":"ETGovernment.com","brandequity":"ETBrandEquity.com","masterclass":"ETMasterclass.com","hospitality":"ETHospitalityWorld.com","travel":"ETTravelWorld.com","hr":"ETHRWorld.com","vconfex":"vconfex.com","bu":"conference.bennett.edu.in","legal":"ETLegalWorld.com","infra":"ETInfra.com","b2b":"EconomictimesB2B.com"};
var SITE_CUSTOM_TITLES = {"retail":"Retail","auto":"Auto","health":"Health","telecom":"Telecom","energy":"Energy","cio":"IT","realty":"Real Estate","brandequity":"Marketing & Advertising","tech":"Technology","cfo":"CFO","ciso":"IT Security","bfsi":"BFSI","government":"Government","masterclass":"ETMasterclass","etcampusstars":"ET Campus Stars","textile":"Textile","sports":"Sports","hotelier":"Hotelier","facilities":"Facilities","fashion":"Fashion","electronics":"ElectronicsWorld","salon":"Salon","aviation":"Aviation","wastemanagement":"WasteManagement","light":"Light","construction":"Construction","packaging":"Packaging","safety":"Safety","shipping":"Shipping","hospitality":"Hospitality","travel":"Travel","hr":"HR","pharma":"pharma","legal":"Legal","vconfex":"Virtual Conference","bu":"BU","water":"Water","toi":"Retail","townhall":"Virtual Conference","infra":"Infra","b2b":"B2B"};
var SUBSCRIPTION_TAGLINES = {"retail":"275000+ Industry Leaders read it everyday","auto":"225000+ Industry Leaders read it everyday","health":"125000+ Industry Leaders read it everyday","telecom":"250000+ Industry Leaders read it everyday","energy":"100000+ Industry Leaders read it everyday","cio":"75000+ Industry Leaders read it everyday","realty":"125000+ Industry Leaders read it everyday","brandequity":"210000+ Industry Leaders read it everyday","tech":"125000+ Industry Leaders read it everyday","cfo":"50,000+ Industry Leaders read it everyday","ciso":"10000+ Industry Leaders read it everyday","masterclass":"Join training programmes for executives","textile":"","sports":"","hotelier":"","facilities":"","fashion":"","electronics":"","salon":"","aviation":"","wastemanagement":"","light":"","construction":"","packaging":"","safety":"","bfsi":"50000+ Industry Leaders read it everyday","shipping":"","government":"225000+ Industry Leaders read it everyday","vconfex":"10000+ Industry Leaders read it everyday","bu":"","hospitality":"","hr":"100000+ Industry Leaders have already joined","legal":"5000+ Industry Leaders read it everyday","travel":"1000+ Industry Leaders have already joined","water":"10000+ Industry Leaders read it everyday","pharma":"1000+ Industry Leaders read it everyday","toi":"275000+ Industry Leaders read it everyday","townhall":"10000+ Industry Leaders read it everyday","infra":"10000+ Industry Leaders read it everyday","b2b":"3M+ Industry Leaders read it everyday"};
var SUBSCRIPTION_HEADING = {"retail":"Stay updated with the latest news in the Retail sector with our daily newsletter","auto":"Stay updated with the latest news in the Auto sector with our daily newsletter","health":"Stay updated with the latest news in the Heathcare sector with our daily newsletter","telecom":"Stay updated with the latest news in the Telecom sector with our daily newsletter","energy":"Stay updated with the latest news in the Energy sector with our daily newsletter","cio":"Stay updated with the latest news in the IT sector with our daily newsletter","realty":"Stay updated with the latest news in the Real Estate sector with our daily newsletter","brandequity":"Stay updated with the latest news in the Marketing & Advertising sector with our daily newsletter","tech":"Stay updated with the latest news in the Technology sector with our daily newsletter","cfo":"Stay updated with the latest news in the CFO community with our daily newsletter","ciso":"Stay updated with the latest news in the IT Security sector with our daily newsletter","bfsi":"Stay updated with the latest news in the BFSI sector with our daily newsletter","government":"Stay updated with the latest news & updates about eGovernance with our daily newsletter","masterclass":"","textile":"Stay updated with the latest news in the Textile sector with our daily newsletter","sports":"Stay updated with the latest news in the Sports sector with our daily newsletter","hotelier":"Stay updated with the latest news in the Hotelier sector with our daily newsletter","facilities":"Stay updated with the latest news in the Facilities sector with our daily newsletter","fashion":"","electronics":"Stay updated with the latest news in the ElectronicsWorld sector with our daily newsletter","salon":"Stay updated with the latest news in the Salon sector with our daily newsletter","aviation":"Stay updated with the latest news in the Aviation sector with our daily newsletter","wastemanagement":"Stay updated with the latest news in the Waste Management sector with our daily newsletter","light":"Stay updated with the latest news in the Light sector with our daily newsletter","construction":"Stay updated with the latest news in the Construction sector with our daily newsletter","packaging":"Stay updated with the latest news in the Packaging sector with our daily newsletter","safety":"Stay updated with the latest news in the Safety sector with our daily newsletter","vconfex":"Stay updated with the latest happenings in the Virtual Events Sector","shipping":"Stay updated with the latest news in the Shipping sector with our daily newsletter","hospitality":"Stay updated with the latest news in the Hospitality sector with our daily newsletter","hr":"Stay updated with the latest news in the HR sector with our daily newsletter","legal":"Stay updated with the latest news in the Legal sector with our daily newsletter","travel":"Stay updated with the latest news in the Travel sector with our daily newsletter","water":"Stay updated with the latest news in the WaterWorld sector with our daily newsletter","bu":"","pharma":"Stay updated with the latest news in the Pharma sector with our daily newsletter","toi":"Stay updated with the latest news in the Retail sector with our daily newsletter","townhall":"Stay updated with the latest happenings in the Global Events Industry","infra":"Stay updated with the latest news in the Infrastructure sector with our daily newsletter","b2b":"Stay updated with the latest news in the Business World with our daily newsletter"};
var CONTACTUS_EMAILS = {"retail":"contactus@etretail.com","auto":"contactus@etauto.com","health":"contactus@ethealthworld.com","telecom":"contactus@ettelecom.com","energy":"contactus@etenergyworld.com","cio":"contactus@etcio.com","tech":"editor@ettech.com","realty":"contactus@etrealty.com","brandequity":"contactus@etbrandequity.com","cfo":"contactus@etcfo.com","cso":"contactus@etciso.in","ciso":"contactus@etciso.in","masterclass":"contactus@etmasterclass.com","bfsi":"contactus@etbfsi.com","government":"contactus@etgovernment.com","hospitality":"contactus@ethospitalityworld.com","hotelier":"contactus@ethotelier.com","textile":"contactus@ettextile.com","facilities":"contactus@etfacilities.com","sports":"contactus@etsports.com","electronics":"contactus@etelectronics.com","shipping":"contactus@etshipping.com","safety":"contactus@etsafety.com","packaging":"contactus@etpackaging.com","construction":"contactus@etconstruction.com","light":"contactus@etlight.com","wastemanagement":"contactus@etwastemanagement.com","aviation":"contactus@etaviation.com","salon":"contactus@etsalon.com","hr":"contactus@ethrworld.com","legal":"contactus@etlegalworld.com","travel":"contactus@ettravelworld.com","water":"contactus@etwaterworld.com","bu":"contactus@etretail.com","pharma":"contactus@etpharma.com","toi":"contactus@etretail.com","vconfex":"contactus@vconfex.com","townhall":"contactus@etretail.com","infra":"contactus@etinfra.com","b2b":"contactus@economictimesb2b.com"};
var ET_USER_EMAIL_TRACK_COOKIE = parseInt('90');
var ET_SUB_SOURCE_COOKIE = parseInt('7');
var ET_VIDEO_PLAYERID = "10001";
var ET_PORTAL_CMS_PATH = "https://ettelecom.indiatimes.com";
var CMS_IMG_URL = "https://etimg.etb2bimg.com";
var COOKIE_SET_DOMAIN = "";
var SITE_NAME_TITLE = "ETTelecom";
var SITE_TITLE = "ET Telecom";
var ec_detail_file = "etb2b_newsdetails.php";
var is_subscription_page = "N";
var auto_subscribe_submit = 0;
var analytics_gtm_id = "GTM-W9X5LM7";
var gtmDataStore = {};
var dataLayer = [];
var _oauth_data={};
var prevent_default_layers=false;
var _login_option=true;
var _override_history_url='';
var ET_DEFAULT_IMG_URL = THEME_PATH+'/images/responsive/news-'+ET_PORTAL+'-default-min.jpg';
var login_required=0;
var GOOGLE_APPID='217469183284.apps.googleusercontent.com';
var slike_api_key = {"web":"et125web5afp9ugog9","mweb":"et125mweb5aff9uo999"};
var hdr_menu_type='';
//var forum_url='ask';
var forum_url= 'ask';
var page_reload = 0;
var page_reload_time = 300000;
var chk_sub_status=0;
var deviceType = 'desktop';
/*
var google_captcha = {"status":1,"site_key":"6LeRylAaAAAAANFOYEaxgsuXUAlL_NQ7tW_CKHgb"};
var csrf_check = 1;
*/
var google_captcha = 0;
var csrf_check = 0;
var track_activity=''; 
var track_activity_after_time_sec='0';
var DESKTOP_NOTIFICATION_UNIFIED_FCM_ID = '419038188912';
var ET_DEFAULT_FACE_IMG_URL = 'https://st.etb2bimg.com/Themes/Release/images/responsive/default-face-min.png';


// Set comcore configs
var _comscore = _comscore || [];var COMSCORE={};var comscore_config ={"c1":"2","c2":"6036484"};
// Set currentnavselector 
if(deviceType != 'desktop') {
  currentnavselector = '#m_header';

}else if(0 === 1){
  currentnavselector = '#navbar';

}else if((ET_PORTAL == 'tech')){
  currentnavselector = '#hd-blk';

}else {
  currentnavselector = '#navbar';
} 

var b2bOnReadyFunctions = [];
var b2bOnCompleteFunctions = [];
var twitter_handle = '@Ettelecom';


var is_pip = 0;
var pip = [];
var newsletterList = [{"id":"3","newsletterName":"Daily ET Newsletter","newsletterDisplayName":"Morning Daily"},{"id":"4","newsletterName":"Satcom Newsletter","newsletterDisplayName":"Satcom"},{"id":"221","newsletterName":"Telecom Diary","newsletterDisplayName":"Telecom Diary"}];
var allowMultipleNewsletterSubscription = 0;
var grx_config = {"pageType":"newsDetail","pageGroup":"news-articles","pageId":"66325753","news":{"category":["TelecomNews"],"keywords":["TelecomNews","International Telecommunication Union","Bharat Net Project","Shopping Centres","5G Ecosystem","5GCongress","5 Ghz Band","3G\/4G"],"agency":"PTI"},"pageAccess":"free"};
var JS_PATH = 'https://st.etb2bimg.com/Themes/Release/javascript';
var JS_PATH_V1 = 'https://st.etb2bimg.com/Themes/Release/js';
var CSS_PATH_V1 = 'https://st.etb2bimg.com/Themes/Release/css';

var demosite     = 0;
var file_version = 1407;

var MINIFY_FLAG = "1";
var MINIFY_MERGED_FILE = 1;
var minified_postfix = '';

if (MINIFY_FLAG == 1) {
  minified_postfix = '.min';
}

var resourceURLMap = {};
resourceURLMap.js = {
    "app.flexslider"  : JS_PATH_V1 + '/app.flexslider' + minified_postfix + '.js?mod=' + file_version,
    "app.integrator"  : JS_PATH_V1 + '/app-integrator' + minified_postfix + '.js?mod=' + file_version,
    "app.bundle"      : JS_PATH_V1 + '/bundle.' +theme_version+ minified_postfix + '.js?mod=' + file_version,
    "app.version"     : JS_PATH_V1 + '/app-'+theme_version+minified_postfix+'.js?mod=' + file_version,
    "app.device"      : JS_PATH_V1 + '/app.'+'desktop'+minified_postfix+'.js?mod=' + file_version,
    "app.common"      : JS_PATH_V1 + '/app.common'+minified_postfix+'.js?mod=' + file_version,
    "app.vendor"      : JS_PATH_V1 + '/vendor.core.min.js?mod=' + file_version,
    "app.init"        : JS_PATH_V1 + '/app.init'+minified_postfix+'.js?mod=' + file_version,
    "app.analytics"   : JS_PATH_V1 + '/app.analytics'+minified_postfix+'.js?mod=' + file_version,
    'bundle.device'   : JS_PATH_V1 + '/desktop'+'.bundle.'+theme_version+minified_postfix+'.js?mod=' + file_version,
    "app.featured-section" : JS_PATH_V1 + '/app.featured-section'+minified_postfix+'.js?mod=' + file_version,
    "author.popup"    : JS_PATH_V1 + '/author.popup' + minified_postfix + '.js?mod=' + file_version,
    "home.autolytics" : JS_PATH_V1 + '/home.autolytics' + minified_postfix + '.js?mod=' + file_version,
    "encryption"  : JS_PATH + '/etb2b_encryption' + minified_postfix + '.js?mod=' + file_version,
    "notification": JS_PATH + '/etb2b_notification_pop_up' + minified_postfix + '.js?mod=' + file_version,
    "nicescroll"  : JS_PATH + '/etb2b_jquery.nicescroll' + minified_postfix + '.js?mod=' + file_version,
    "tooltip"     : JS_PATH + '/jquery-tooltip-custom' + minified_postfix + '.js?mod=' + file_version,
    "onetap"      : JS_PATH + '/onetap_signin' + minified_postfix + '.js?mod=' + file_version,
    "flexslider"  : JS_PATH_V1+'/jquery.flexslider' + minified_postfix + '.js?mod=' + file_version,
    "clamp"       : JS_PATH_V1+'/clamp' + minified_postfix + '.js?mod=' + file_version,
    "viewport"    : JS_PATH_V1+'/isInViewport' + minified_postfix + '.js?mod=' + file_version,
    "login"       : JS_PATH_V1+'/login_subscription_layer' + minified_postfix + '.js?mod=' + file_version,
    "twitter"     : JS_PATH_V1+'/custom-twitter-widget' + minified_postfix + '.js?mod=' + file_version,
    "slikeplayer" : JS_PATH_V1+'/slikeplayer' + minified_postfix + '.js?mod=' + file_version,
    "nprogress"   : JS_PATH_V1+'/nprogress' + minified_postfix + '.js?mod=' + file_version,
    "menu"        : JS_PATH_V1+'/menu' + minified_postfix + '.js?mod=' + file_version,
    "stickykit"   : JS_PATH_V1+'/etb2b.stickykit' + minified_postfix + '.js?mod=' + file_version,
    "news_detail" : JS_PATH_V1+'/app.news.detail' + minified_postfix + '.js?mod=' + file_version,
    "news_list"   : JS_PATH_V1+'/app.news.list' + minified_postfix + '.js?mod=' + file_version
}

resourceURLMap.css = {
    "news_detail" : CSS_PATH_V1+'/app.news.'+theme_version+minified_postfix+'.css?mod='+file_version,
    "flexslider"  : CSS_PATH_V1+'/flexslider'+minified_postfix+'.css?mod='+file_version,
    "login"       : CSS_PATH_V1+'/login_subscription_layer'+minified_postfix+'.css?mod='+file_version,
}


function loadScript(src, callback,async,params){
  if(typeof async == 'undefined')
  async = true;
  else 
  async = (async)?true:false;
  var s,
      r,
      t;
  r = false;
  if(MINIFY_FLAG == '1' && typeof EtB2b.minifyMapping != 'undefined')
  {
    if(typeof EtB2b.minifyMapping[src] != 'undefined')
      src = EtB2b.minifyMapping[src].split("?")[0].split("#")[0];
  }
  var src_alphanumeric=src.replace(/[^a-zA-Z0-9]+/g,'-');
  src_alphanumeric=src_alphanumeric.toLowerCase();

  var skip = 1;
  // if (src.includes('bundle.js') === true) {
  //     skip = 0;
  // }

  if(async == false && !(document.readyState == 'interactive' || document. readyState =='complete')){
    document.write('<script type="text/javascript" src="'+src+'"><\/script>');
    callback(params);
    return;
  }

  if(!(document.getElementById(src_alphanumeric)) && skip == 1)
  {
    s = document.createElement('script');
    s.type = 'text/javascript';
    s.src = src;
    s.id = src_alphanumeric;
    if(async == true)
    {
      s.async = true;
      s.defer = true;
    }
    else
    s.async = false;
    s.onload = s.onreadystatechange = function() {
      if ( !r && (!this.readyState || this. readyState == 'complete') )
      {
        r = true;
        if(typeof callback == 'function')
        callback(params);
        document.getElementById(s.id).setAttribute('data-ready',1);
      }
    };
    t = document.getElementsByTagName('head')[0];
    t.appendChild(s, t);
  }
  else if(document.getElementById(src_alphanumeric)){
        if(document.getElementById(src_alphanumeric).getAttribute('data-ready') == 0 || document.getElementById(src_alphanumeric).getAttribute('data-ready') == null)
        {
          setTimeout(function(){loadScript(src, callback,async,params);},100);
        }else
        {
            if(typeof callback == 'function')
            {
              //callback.apply(null, Array.prototype.slice.call(params instanceof Array?params:[]));
              callback(params);
            }
                
        }

    }
}

function loadCss(src, callback,async,params)
{
    if(typeof async == 'undefined')
    async = true;
    else 
    async = (async)?true:false;
    var src_alphanumeric=src.replace(/[^a-zA-Z0-9]+/g,'-');
    src_alphanumeric=src_alphanumeric.toLowerCase();
    if(!(document.getElementById(src_alphanumeric)))
    {
      var oNew = document.createElement('style');
      oNew. rel = 'STYLESHEET';
      oNew. type = 'text/css';
      //document.getElementsByTagName("head")[0].appendChild(oNew);
      var links = document.getElementsByTagName( "link" );
      oNew. id = src_alphanumeric;
      links[links.length-1].appendChild( oNew );
      
      var xhr = new XMLHttpRequest();
      xhr. onload = function () {
      if (xhr.readyState === 4)
        if (xhr.status === 200) {
          oNew. textContent = xhr.responseText;
          document.getElementById(oNew.id).setAttribute('data-ready',1);

          if(typeof callback == 'function')
          callback(params);
        }
      }
      xhr.open("GET", src, async);
      xhr.send(null);
    }
    else if(document.getElementById(src_alphanumeric)){
      if(document.getElementById(src_alphanumeric).getAttribute('data-ready') == 0 || document.getElementById(src_alphanumeric).getAttribute('data-ready') == null)
      {
        setTimeout(function(){loadCss(src, callback,async,params);},100);
      }else
      {
          if(typeof callback == 'function')
          {
            //callback.apply(null, Array.prototype.slice.call(params instanceof Array?params:[]));
            callback(params);
          }
              
      }

    }
}

function executeOnReady(func,params){
  if(typeof  Dollars  == 'function' && typeof func == 'function')
 {
    executeOnReadyFunction();
    func.apply(null, Array.prototype.slice.call(params instanceof Array?params:[params]));
  }
 else
 {
  b2bOnReadyFunctions.push([func,params]);
 }
}

function executeOnCompleteHelper(){
  window. externaljscount = window. externaljscount - 1;
  if(window.externaljscount <= 0)
  executeOnCompleteFunction(); 
}

function executeOnComplete(func,params){
  if(typeof window. externaljscount != 'undefined')
  {
      if(window.externaljscount == 0)
      {
        executeOnReady(func,params)
        return;
      }
      else
      {
        b2bOnCompleteFunctions.push([func,params]);
      }    
  }
  else
  {
    if(document.readyState === "complete")
    {
      executeOnReady(func,params)
      return;
    }
    else
    {
      b2bOnCompleteFunctions.push([func,params]);
    }
  }
}

function executeOnCompleteFunction(){
  executeOnReady(function(){
    if(typeof b2bOnCompleteFunctions != 'undefined')
    {
      while(b2bOnCompleteFunctions.length > 0)
      {
       v = b2bOnCompleteFunctions.shift();
        if(typeof v[0] == 'function')
        {
          v[0].apply(null, Array.prototype.slice.call(v[1] instanceof Array?v[1]:[v[1]]));
        }
      }
    }
  });
}

function executeOnReadyFunction(){
  if(typeof b2bOnReadyFunctions != 'undefined')
  {
    while(b2bOnReadyFunctions.length > 0)
    {
      v = b2bOnReadyFunctions.shift();
      if(typeof v == 'function')
        v = [v];
      if(typeof v[0] == 'function')
      {
        v[0].apply(null, Array.prototype.slice.call(v[1] instanceof Array?v[1]:[v[1]]));
      }
    }
  }
}

document.onreadystatechange = function () {
  if (document.readyState === 'complete') {
    executeOnCompleteFunction();
  }
  if(typeof  Dollars  == 'function') {
    executeOnReadyFunction();
  }
}


function elementInViewport(el) {
  var top = el.offsetTop;
  var left = el.offsetLeft;
  var width = el.offsetWidth;
  var height = el.offsetHeight;

  while(el.offsetParent) {
    el = el.offsetParent;
    top += el.offsetTop;
    left += el.offsetLeft;
  }

  return (
    top < (window.pageYOffset + window.innerHeight) &&
    left < (window.pageXOffset + window.innerWidth) &&
    (top + height) > window. pageYOffset &&
    (left + width) > window.pageXOffset
  );
}

function unvielImg(selector, unveilSelector) {
  var selector = selector || 'body';
   Dollars (selector).find('img.unveil').each(function(i, v) { 
    var escapedWithParents =  '.slide-container,.logos,[class*="wrapper_style"]';
    var isTheImgEscaped =  Dollars (this).parents(escapedWithParents).length;
    var unveilSelect = unveilSelector || elementInViewport(v) || isTheImgEscaped;
    
    if(unveilSelect){
       Dollars this =  Dollars (this);
      try {
           Dollars this.attr('data-init-src',  Dollars this.attr('src'));
          if ( Dollars this.attr('data-src') != '' &&  Dollars this.attr('data-src') != null) {
               Dollars this.attr('src',  Dollars this.attr('data-src'));
               Dollars this.removeClass("unveil");
          } else {
               Dollars this.attr("src",  Dollars this.attr('data-init-src'));
          }
           Dollars this.on("error", function() {
               Dollars (this).unbind("error").attr("src",  Dollars (this).data('init-src'));
          });
      } catch (e) {}
    }
  });
}

//Base^4 functions for IE9 Below
Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(e){var t="";var n,r,i,s,o,u,a;var f=0;e=Base64._utf8_encode(e);while(f<e.length){n=e.charCodeAt(f++);r=e.charCodeAt(f++);i=e.charCodeAt(f++);s=n>>2;o=(n&3)<<4|r>>4;u=(r&15)<<2|i>>6;a=i&63;if(isNaN(r)){u=a=64}else if(isNaN(i)){a=64}t=t+this._keyStr.charAt(s)+this._keyStr.charAt(o)+this._keyStr.charAt(u)+this._keyStr.charAt(a)}return t},decode:function(e){var t="";var n,r,i;var s,o,u,a;var f=0;e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(f<e.length){s=this._keyStr.indexOf(e.charAt(f++));o=this._keyStr.indexOf(e.charAt(f++));u=this._keyStr.indexOf(e.charAt(f++));a=this._keyStr.indexOf(e.charAt(f++));n=s<<2|o>>4;r=(o&15)<<4|u>>2;i=(u&3)<<6|a;t=t+String.fromCharCode(n);if(u!=64){t=t+String.fromCharCode(r)}if(a!=64){t=t+String.fromCharCode(i)}}t=Base64._utf8_decode(t);return t},_utf8_encode:function(e){e=e.replace(/\r\n/g,"\n");var t="";for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<128){t+=String.fromCharCode(r)}else if(r>127&&r<2048){t+=String.fromCharCode(r>>6|192);t+=String.fromCharCode(r&63|128)}else{t+=String.fromCharCode(r>>12|224);t+=String.fromCharCode(r>>6&63|128);t+=String.fromCharCode(r&63|128)}}return t},_utf8_decode:function(e){var t="";var n=0;var r=c1=c2=0;while(n<e.length){r=e.charCodeAt(n);if(r<128){t+=String.fromCharCode(r);n++}else if(r>191&&r<224){c2=e.charCodeAt(n+1);t+=String.fromCharCode((r&31)<<6|c2&63);n+=2}else{c2=e.charCodeAt(n+1);c3=e.charCodeAt(n+2);t+=String.fromCharCode((r&15)<<12|(c2&63)<<6|c3&63);n+=3}}return t}};  
  
if(typeof atob == 'undefined')
{
  function atob(str) {
      return Base64.decode(str);
  }

  function btoa(str) {
      return Base64.encode(str);
  }

}
//IndexOf JS for IE9 Below
Array.prototype.indexOf||(Array.prototype.indexOf=function(r){var t=this.length>>>0,e=Number(arguments[1])||0;for((e=e<0?Math.ceil(e):Math.floor(e))<0&&(e+=t);e<t;e++)if(e in this&&this[e]===r)return e;return-1});

//addEventListener for IE8 below
//window.addEventListener = (typeof window. addEventListener != 'undefined')?window.addEventListener:window.attachEvent;

</script>


<!-- Google Tag Manager -->
<!-- analytics_gtm_id to be passed dynamically per portal-->
<script>
// To handle GA issue on unknown pages 
if(typeof ga != "undefined") {
  function ga(){

  }
}
var hasUserAllowedInEU = function(trackingParam){
  var result = true;

  if(trackingParam) {
    trackingParam = trackingParam.toLowerCase();
    var userPreference = localStorage.getItem('userPreference');
    var configParam = 'config.' + trackingParam;
    
    // IF user Gave the consent to track GA
    if(userPreference){
        userPreference = JSON.parse(userPreference);

        if(typeof userPreference. data != "undefined" && userPreference. data != "" && typeof userPreference.data[configParam] != "undefined" && userPreference.data[configParam] != "1"){
          result = false;
        }
    }
  }
  return result;
};

var isGTMLoadValid = typeof analytics_gtm_id != "undefined" && analytics_gtm_id && hasUserAllowedInEU('ga');
if(isGTMLoadValid && isGTMLoadValid != "") {
  // Load GTM 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=
  'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  })(window,document,'script','dataLayer', analytics_gtm_id);
}
</script>

<!-- End Google Tag Manager -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W9X5LM7" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><style>
.hide{display: none;}
.hideit{display:none !important;}
.in-page-promotions-buckets{display:none;}
.cookie_stng{position:fixed; width:100%; background:#fff; z-index:99999; bottom:0; left:0; padding:20px 0 15px; box-shadow:0 -5px 5px rgba(0,0,0,.1);}
.cookie_stng .wrapper{padding:0; margin:0 auto; max-width:750px;}
.cookie_stng .intro{text-align:center; border-bottom:1px solid #e6e6e6; padding-bottom:15px; margin-bottom:15px;}
.cookie_stng h2{font-size:16px; color:#000;line-height:1.2em; margin-bottom:7px; }
.cookie_stng .intro p{font-size:12px; color:#333; line-height:1.3em; margin:0;}
.cookie_stng .intro p strong{display:block; font-weight:bold;}
.cookie_stng ul.tabs{margin-bottom:10px;}
.cookie_stng ul. tabs li{float:left; font-size:12px; color:#333; padding-right:10px; list-style:none;  }
.cookie_stng ul. tabs li + li{border-left:1px solid #d5d5d5; padding-left:10px;}
.cookie_stng ul. tabs li a{display:inline-block; line-height:16px; text-transform:uppercase; color:#333; text-decoration:none;}
.cookie_stng ul. tabs li a:hover, ul. tabs li a.active{color:#1359a0;}
.cookie_stng ul. tabs li a.active{font-weight:bold;}
.cookie_stng .scroll-content{max-height:164px; overflow:auto; padding-right:20px; margin-bottom:15px; position:static;}
.cookie_stng table{width:100%; border:0; }
.cookie_stng table th, .cookie_stng table td{font-size:12px; line-height:1.2em; color:#333; padding:8px 10px; text-align:left;}
.cookie_stng table th:last-child, .cookie_stng table td:last-child{width:45%;}
.cookie_stng table td:first-child{text-align:center;}
.cookie_stng table th{background:#f9f9f9; font-size:13px; font-weight:bold;}
.cookie_stng table td{border-bottom:1px solid #e6e6e6;}
.cookie_stng span.opt_out{display:inline-block; background:#ed1c24; color:#fff; font-size:8px; border-radius:2px; padding:4px; line-height:1em; text-transform:uppercase;  text-transform:uppercase;}

.cookie_stng footer{text-align:center;}
.cookie_stng footer label{display:inline-block; margin-bottom:10px; font-size:12px; color:#333; line-height:1.1em;}
.cookie_stng footer label input{vertical-align:middle; margin-right:2px; }
.cookie_stng footer input[type="button"]{display:block; margin:0 auto 10px; background:#ed1c24; color:#fff; width:175px; height:40px; border-radius:20px; font-size:16px; font-weight:bold; text-align:center; border:0; cursor:pointer;}
.cookie_stng footer span.err_txt{display:block; font-size:12px; color:#ed1c24;}

.cookie_accpt{position:fixed; width:100%; background:#333333; z-index:99999; bottom:0; left:0; padding:20px 0 15px; box-shadow:0 -5px 5px rgba(0,0,0,.1);}
.cookie_accpt .wrapper{padding:0; margin:0 auto; max-width:750px;}
.cookie_accpt p{color:#eee; font-size:14px; line-height:1.5em; margin:0; float:left; width:calc(100% - 150px)}
.cookie_accpt p a{color:#eee; text-decoration:underline;}
.cookie_accpt p a:hover{color:#eee; text-decoration:none;}
.cookie_accpt p strong{font-weight:bold;}
.cookie_accpt input[type="button"]{display:block; float:right; background:#ed1c24; color:#fff; width:140px; height:40px; border-radius:20px; font-size:16px; font-weight:bold; text-align:center; border:0; cursor:pointer;}
.cookie_accpt a.close{position: absolute;width: 24px;height: 24px;background: url(images/responsive/close-btn4.png) no-repeat right top; right:10px;top: -7px; border-radius:50%;z-index: 99999; cursor:pointer;}


@media screen and (max-width:800px){
.cookie_stng{padding:20px; box-shadow:none; border-radius:6px 6px 0 0; box-sizing:border-box;} 
.cookie_stng h2 {text-transform:uppercase; font-size:14px;}
.cookie_stng .intro p{line-height:1.5em;}
.cookie_stng ul. tabs li + li{border:0; padding-left:0;}
.cookie_stng ul. tabs li a,.cookie_stng ul. tabs li a:hover{line-height:26px; color:#888; border:1px solid #d5d5d5; border-radius:20px; text-align:center; padding:0 15px;}
.cookie_stng ul. tabs li a.active{background:#000; border-color:#000; color:#fff;}
}

@media screen and (max-width:767px){
.cookie_stng .scroll-content{padding-right:10px;}
.cookie_stng table th:nth-child(3), .cookie_stng table th:nth-child(4), .cookie_stng table th:nth-child(5), .cookie_stng table td:nth-child(3), .cookie_stng table td:nth-child(4), .cookie_stng table td:nth-child(5){display:none;}
.cookie_accpt{padding:10px 0; }
.cookie_accpt p{float:none; width:auto; margin-bottom:10px; text-align:center; padding:0 15px;}
.cookie_accpt input[type="button"]{float:none; margin:0 auto;}    
}


</style>
<div class="cookie_accpt hide">
 <div class="wrapper clearfix">
     <p>We have updated our <a href="/terms_conditions.php" target="_blank">terms and conditions</a> and <a href="/privacy_policy.php" target="_blank">privacy policy</a> </strong><br/>
Click "Continue" to accept and continue with ET Telecom</p>
        <input type="button" class="closebtn" value="Continue" />
    </div>
</div>

<div class="cookie_stng hide">
 <div class="wrapper">
     <div class="intro">
         <h2>Accept the updated privacy &amp; cookie policy</h2>
        <p  style="text-align:left">Dear user, <br><br>ET Telecom privacy and cookie policy has been updated to align with the new data regulations in European Union. Please review and accept these changes below to continue using the website.<br><br>You can see our <a target="_blank" style="color:red" href="https://telecom.economictimes.indiatimes.com/eu/privacy_policy.php">privacy policy</a> &amp; our <a target="_blank" style="color:red" href="https://telecom.economictimes.indiatimes.com/cookie_policy.php">cookie policy</a>. We use cookies to ensure the best experience for you on our website.<br><br>If you choose to ignore this message, we'll assume that you are happy to receive all cookies on ET Telecom.</p>
        </div>
 <form>
        <ul class="tabs clearfix">
         <li><a class="active" href="#" data-target="cookietabAnalytics">Analytics</a></li><li><a class="" href="#" data-target="cookietabNecessary">Necessary</a></li><li><a class="hideit" href="#" data-target="cookietabNewsletter">Newsletter</a></li>        </ul>
         <div data-box="cookietabAnalytics" class="scroll-content ">
         <table cellpadding="0" cellspacing="0">
             <thead>
                 <tr>
                     <th></th>
   <th>Name</th><th>Provider</th><th>Expiry</th><th>Type</th><th>Purpose</th>                    </tr>
                </thead>
                <tbody>
   <tr><td><input name="config.ga" id="id-config-ga" type="hidden" value="0"><input name="config.ga" type="checkbox" value="1" /></td><td><label for="id-config-ga">Google Analytics</label></td><td><label for="id-config-ga">Google</label></td><td><label for="id-config-ga">1 Year</label></td><td><label for="id-config-ga">HTTPS</label></td><td><label for="id-config-ga">To track visitors to the site, their origin & behaviour.</label></td></tr><tr><td><input name="config.ibeat" id="id-config-ibeat" type="hidden" value="0"><input name="config.ibeat" type="checkbox" value="1" /></td><td><label for="id-config-ibeat">iBeat Analytics</label></td><td><label for="id-config-ibeat">Ibeat</label></td><td><label for="id-config-ibeat">1 Year</label></td><td><label for="id-config-ibeat">HTTPS</label></td><td><label for="id-config-ibeat">To track article's statistics</label></td></tr><tr><td><input name="config.growthrx" id="id-config-growthrx" type="hidden" value="0"><input name="config.growthrx" type="checkbox" value="1" /></td><td><label for="id-config-growthrx">GrowthRx Analytics</label></td><td><label for="id-config-growthrx">GrowthRx</label></td><td><label for="id-config-growthrx">1 Year</label></td><td><label for="id-config-growthrx">HTTPS</label></td><td><label for="id-config-growthrx">To track visitors to the site and their behaviour</label></td></tr>                </tbody>
            </table>
        </div>
                <div data-box="cookietabNecessary" class="scroll-content hide">
         <table cellpadding="0" cellspacing="0">
             <thead>
                 <tr>
                     <th></th>
   <th>Name</th><th>Provider</th><th>Expiry</th><th>Type</th><th>Purpose</th>                    </tr>
                </thead>
                <tbody>
   <tr><td><input name="config.optout" id="id-config-optout" type="hidden" value="1"><input name="config.optout" type="checkbox" value="1" checked disabled/></td><td><label for="id-config-optout">optout</label></td><td><label for="id-config-optout">Times Internet</label></td><td><label for="id-config-optout">1 Year</label></td><td><label for="id-config-optout">HTTPS</label></td><td><label for="id-config-optout">Stores the user's cookie consent state for the current domain</label></td></tr><tr><td><input name="config.PHPSESSID" id="id-config-PHPSESSID" type="hidden" value="1"><input name="config.PHPSESSID" type="checkbox" value="1" checked disabled/></td><td><label for="id-config-PHPSESSID">PHPSESSID</label></td><td><label for="id-config-PHPSESSID">Times Internet</label></td><td><label for="id-config-PHPSESSID">1 day</label></td><td><label for="id-config-PHPSESSID">HTTPS</label></td><td><label for="id-config-PHPSESSID">Stores user's preferences</label></td></tr><tr><td><input name="config.accessCode" id="id-config-accessCode" type="hidden" value="1"><input name="config.accessCode" type="checkbox" value="1" checked disabled/></td><td><label for="id-config-accessCode">accessCode</label></td><td><label for="id-config-accessCode">Times Internet</label></td><td><label for="id-config-accessCode">2.5 Hours</label></td><td><label for="id-config-accessCode">HTTPS</label></td><td><label for="id-config-accessCode">To serve content relevant to a region</label></td></tr><tr><td><input name="config.pfuuid" id="id-config-pfuuid" type="hidden" value="1"><input name="config.pfuuid" type="checkbox" value="1" checked disabled/></td><td><label for="id-config-pfuuid">pfuuid</label></td><td><label for="id-config-pfuuid">Times Internet</label></td><td><label for="id-config-pfuuid">1 Year</label></td><td><label for="id-config-pfuuid">HTTPS</label></td><td><label for="id-config-pfuuid">Uniquely identify each user</label></td></tr><tr><td><input name="config.fpid" id="id-config-fpid" type="hidden" value="1"><input name="config.fpid" type="checkbox" value="1" checked disabled/></td><td><label for="id-config-fpid">fpid</label></td><td><label for="id-config-fpid">Times Internet</label></td><td><label for="id-config-fpid">1 Year</label></td><td><label for="id-config-fpid">HTTPS</label></td><td><label for="id-config-fpid">Browser Fingerprinting to uniquely identify client browsers</label></td></tr>                </tbody>
            </table>
        </div>
                <div data-box="cookietabNewsletter" class="scroll-content hide">
         <table cellpadding="0" cellspacing="0">
             <thead>
                 <tr>
                     <th></th>
   <th>Name</th><th></th><th></th><th></th><th>Purpose</th>                    </tr>
                </thead>
                <tbody>
   <tr><td><input name="config.newsletter" id="id-config-newsletter" type="hidden" value="0"><input name="config.newsletter" type="checkbox" value="1" /></td><td><label for="id-config-newsletter">Daily Newsletter</label></td><td><label for="id-config-newsletter"></label></td><td><label for="id-config-newsletter"></label></td><td><label for="id-config-newsletter"></label></td><td><label for="id-config-newsletter">Receive daily list of important news</label></td></tr><tr><td><input name="config.promonewsletter" id="id-config-promonewsletter" type="hidden" value="0"><input name="config.promonewsletter" type="checkbox" value="1" /></td><td><label for="id-config-promonewsletter">Promo Mailers</label></td><td><label for="id-config-promonewsletter"></label></td><td><label for="id-config-promonewsletter"></label></td><td><label for="id-config-promonewsletter"></label></td><td><label for="id-config-promonewsletter">Receive information about events, industry, etc.</label></td></tr>                </tbody>
            </table>
        </div>
                <footer>
            <label><input type="hidden" name="useragreement" value="0" /><input type="checkbox" name="useragreement" value="1" /> I've read & accepted the <a style="color:red" href="https://telecom.economictimes.indiatimes.com/terms_conditions.php" target="_blank">terms and conditions</a></label>
            <input type="button" id="submitconsent" value="OK">
            <span class="err_txt hide"></span>
        </footer>
        </form>
    </div>
</div>
<script>
executeOnReady(function(){
  Dollars (".cookie_stng a[data-target*='cookietab']").on('click',function(e){
  e.preventDefault();
   Dollars (".cookie_stng div[data-box]").addClass('hide');
   Dollars (".cookie_stng div[data-box='"+ Dollars (this).attr('data-target')+"']").removeClass('hide');
   Dollars (".cookie_stng a[data-target]").removeClass('active');
   Dollars (this).addClass('active');
 });
  Dollars (".cookie_stng #submitconsent").on('click',function(e){
  e.preventDefault();
   Dollars (".cookie_stng .err_txt").html('').addClass('hide');
   Dollars input =  Dollars (".cookie_stng form").serializeArray();
   Dollars output = {};
   Dollars .each( Dollars input,function(i,v){
    Dollars output[v['name']] = v['value'];
  });
  if( Dollars output['useragreement'] != 1)
  {
    Dollars (".cookie_stng .err_txt").html('Please accept terms and condition to proceed').removeClass('hide');
  }
  else
  {
    Dollars consentObj = {};
    Dollars consentObj['primaryId'] = b2bGdpr.useridentifier;
    Dollars consentObj['secondaryIds'] = {'email':b2bGdpr.useremail};
    Dollars consentObj['consent']  = {};
    Dollars consentObj['consent']['agree'] = true;
    Dollars consentObj['consent']['productCode']= SITE_TITLE;
    Dollars consentObj['consent']['text'] =  Dollars (".cookie_stng .intro").text().trim();
    Dollars consentObj['consent']['consents']= [];
    Dollars index = 0;
    Dollars .each( Dollars output,function(i,v){
     Dollars consent = {};
     Dollars consent['agree'] = (v==1 || v=='1')?true:false;
     Dollars consent['dataPoint'] = {'id': Dollars index++,'text':i};
     Dollars consent['text'] = i+'---'+ Dollars ("input[name='"+i+"']").parents('tr').eq(0).find('td:last').text();
     Dollars consentObj['consent']['consents'].push( Dollars consent);
   })
   b2bGdpr.savePreference( Dollars consentObj, Dollars output);
   
  }
 });
});
</script>
<script>
objGdpr = {
 location: 5,
 init: function () {
  if(b2bGdpr.disabledFor.indexOf(ET_PORTAL) == -1)
   objGdpr.getLocation();
 },
 setLocation:function (data) {
  if(data && data.location) {
   objGdpr. location = data.location;
   b2bGdpr.serviceCallComplete();
  }
 },
 parseLocation : function(data){
  var continentMapping = {
   'AS':1,
   'NA':2,
   'SA':3,
   'AF':4,
   'EU':5,
   'OC':6,
   'OT':7
  };

  objGdpr.setLocation({
   'location':(continentMapping[data.continent])?continentMapping[data.continent]:7
  });
 },
 getLocation: function () {
  b2bGdpr.ajax.get('https://st.etb2bimg.com/locinfo',{},objGdpr.parseLocation);
 }
}
b2bGdpr = {
 pagePath : window.location.pathname,
 disabledFor : ['bfsi'],
 resettrackingcookies: 0,
 isgdprnation : 0,
 blockcookies : 0,
// blockedPaths : '^/(myprofile|logout|jobs|autolytics|company|social-analytics|subscription-widget|invite|enroll|webinars|webcast|forum|converz|ask|payment)+.*',
 //blockedPaths : '^/(myprofile|logout|jobs|autolytics|company|social-analytics|subscription-widget|invite|enroll|forum|converz|ask)+.*', //these pages would redirect to service unavailable page for gdpr nations 
 blockedPaths : '^/(blocked-path)+.*', //these pages would redirect to service unavailable page for gdpr nations 
 blockedExceptionPaths : '/(the-energy-switch|webinars.*309)+.*',
 queryParams : {},
 userPreference : {},
 fingerprint : '',
 gdprregions : [5],
 storage  : (!!window.localStorage?window.localStorage:(!!window.sessionStorage?window.sessionStorage:'')),
 useremail : '',
 useridentifier : '',
 userip  : '',
 ajax : (function(){
  var ajax = {};
  ajax.x = function () {
      if (typeof XMLHttpRequest !== 'undefined') {
          return new XMLHttpRequest();
      }
      var versions = [
          "MSXML2.XmlHttp.6.0",
          "MSXML2.XmlHttp.5.0",
          "MSXML2.XmlHttp.4.0",
          "MSXML2.XmlHttp.3.0",
          "MSXML2.XmlHttp.2.0",
          "Microsoft.XmlHttp"
      ];

      var xhr;
      for (var i = 0; i < versions.length; i++) {
          try {
              xhr = new ActiveXObject(versions[i]);
              break;
          } catch (e) {
          }
      }
      return xhr;
  };

  ajax. send = function (url, callback, method, data, async) {
      if (async === undefined) {
          async = true;
      }
      var x = ajax.x();
      x.open(method, url, async);
      x.onreadystatechange = function () {
          if (x.readyState == 4) {
           var headers = x.getAllResponseHeaders();
           var arr = headers.trim().split(/[\r\n]+/);
        var headerMap = {};
        arr.forEach(function (line) {
          var parts = line.split(': ');
          var header = parts.shift();
          var value = parts.join(': ');
          headerMap[header] = value;
        });
           if(headerMap['content-type'] == 'application/json')
           {
            callback((x.responseText)?JSON.parse(x.responseText):'');
              }
              else
              callback(x.responseText)
          }
      };
      if (method == 'POST') {
          x.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
      }
      x.send(data)
  };

  ajax. get = function (url, data, callback, async) {
      var query = [];
      for (var key in data) {
          query.push(encodeURIComponent(key) + '=' + encodeURIComponent(data[key]));
      }
      ajax.send(url + (query.length ? '?' + query.join('&') : ''), callback, 'GET', null, async)
  };

  ajax. post = function (url, data, callback, async) {
      var query = [];
      for (var key in data) {
          query.push(encodeURIComponent(key) + '=' + encodeURIComponent(data[key]));
      }
      ajax.send(url, callback, 'POST', query.join('&'), async)
  };
  return ajax;
 })(),
 serviceCallComplete : function(){
  b2bGdpr.resettrackingcookies = 1;

  if(b2bGdpr.getStorage('accessCode') != objGdpr.location)
   b2bGdpr.deleteStorage('userPreference');

  b2bGdpr.setStorage('accessCode',objGdpr.location,0.1);
  b2bGdpr.setCookie('accessCode',objGdpr.location,0.1);

  if(b2bGdpr.gdprregions.indexOf(parseInt(objGdpr.location)) > -1 && typeof b2bGdpr.queryParams.redirect == 'undefined' && !(b2bGdpr.useremail))
   location.assign(location.href+((location.href.indexOf('?')>-1)?'&':'?')+'redirect=1');
  
  b2bGdpr.process();
 },
 process : function(){
  
  if(b2bGdpr.gdprregions.indexOf(parseInt(objGdpr.location)) > -1) {
    /************* use storage instead of cookie ***********/
    b2bGdpr.isgdprnation = 1;
    //b2bGdpr.blockcookies  = 1;
    
    /************* start redirect ***********/

    if(b2bGdpr.pagePath == '/privacy_policy.php')
    {
     location.assign('/eu/privacy_policy.php');
    }
    
    
    if(b2bGdpr.blockedPaths.length > 0)
    { 
     pattern = new RegExp(b2bGdpr.blockedPaths);
     patternexception = (b2bGdpr.blockedExceptionPaths.length == 0)?'':new RegExp(b2bGdpr.blockedExceptionPaths);
     if(pattern.test(b2bGdpr.pagePath) && (patternexception && !patternexception.test(b2bGdpr.pagePath)))
     {
      location.assign('/service-unavailable');
     }
    };

    if(typeof blockpageaccess != 'undefined' && blockpageaccess == 1)
     location.assign('/service-unavailable');

    /************ load user preference ***********/
    b2bGdpr.loadPreference();
        
    /************** Set Optout Cookie for dmp + columbia *************/
    if(b2bGdpr.resettrackingcookies){
     b2bGdpr.setCookie('optout',1,1,'.indiatimes.com');
    }
    
    
    /************** optout ga *********************/
    if(b2bGdpr.userPreference['config.ga'] == 1){
     b2bGdpr.ga.optin();
    
    }else{
     b2bGdpr.ga.optout();
    }
    
    /************ hidding form elements **************/ 
    executeOnComplete(function(){
     document.body.className += ' ' + 'vanillaaccess'+ ' ';
      Dollars ("a[href*='/enroll']","a[href*='/invite']").remove();
      Dollars (".user-area").html('<span class="login-btn" id="top-login-btn"><a id="" href="/gdpr-download" style="cursor:pointer;" data-modname="Global_header">Request / Delete Data</a>&nbsp;&nbsp;<a id="" href="/eu/privacy_policy.php" style="cursor:pointer;" data-modname="Global_header">Privacy setting</a></span>').show();
      Dollars (".topRightBX").css('width','auto');
    });
    
   
  }
  else{
   if(b2bGdpr.useremail && !(b2bGdpr.getStorage('cookiethank')))
   {
    executeOnComplete(function(){
     prevent_default_layers = true;
      Dollars (".cookie_accpt").removeClass('hide');
      Dollars (".cookie_accpt .closebtn").on('click',function(){
       Dollars (".cookie_accpt").addClass('hide');
      b2bGdpr.setStorage('cookiethank',1,30);
     });
    });
   }
  }
 },
 init : function(){
  b2bGdpr.queryParams = b2bGdpr.getQueryParams(document.location.search);
  b2bGdpr.useremail = (b2bGdpr.queryParams.em)?(atob(b2bGdpr.queryParams.em)):'';
  b2bGdpr.useridentifier = b2bGdpr.getFingerprint();

  b2bGdpr.getUserIP(function(ip){
   b2bGdpr.userip = ip;
  });

  if(b2bGdpr.getStorage('accessCode') != null){
   objGdpr. location = b2bGdpr.getStorage('accessCode');
   b2bGdpr.process();
  
  }else{
   objGdpr.init();
  }
  
 },
 setStorage : function(key,data,exdays){
  if(!b2bGdpr.storage)
   return b2bGdpr.setCookie(key,data,exdays);

  var  Dollars data = {};
  
   Dollars data['expires'] = Math.floor(Date.now() / 1000) + exdays*24*60*60;
   Dollars data['data'] = data;

  b2bGdpr.storage.setItem(key,JSON.stringify( Dollars data)); 
 },

 getStorage : function(key){
  if(!b2bGdpr.storage)
   return b2bGdpr.getCookie(key);

  var  Dollars data = b2bGdpr.storage.getItem(key);
  
  if( Dollars data !=null){
    Dollars data = JSON.parse( Dollars data);
   var lsexpires =  Dollars data['expires'];
   
   if(Math.floor(Date.now() / 1000) >= lsexpires){
    b2bGdpr.deleteStorage(key);
    return null;
   }

   if('data' in  Dollars data){
    return  Dollars data['data'];
   
   }else{
    b2bGdpr.deleteStorage(key);
    return null;
   }
  
  }else {
   return null;
  } 
 },

 deleteStorage : function(key){
  if(!b2bGdpr.storage)
   return b2bGdpr.setCookie(key,'',-1);

  b2bGdpr.storage.removeItem(key);
 },

 setCookie : function (c_name, value, exdays,domain){
  var exdate = new Date();
  exdate.setDate(exdate.getDate() + exdays);
  var c_value = escape(value) + ((exdays==null) ? "" : "; path=/; domain="+((typeof domain != 'undefined')?domain:(location.hostname))+"; expires="+exdate.toUTCString());      
  document.cookie=c_name + "=" + c_value;
 },

 getCookie : function (c_name){
  var c_value = document.cookie;
  var c_start = c_value.indexOf(" " + c_name + "=");
  if (c_start == -1){
   c_start = c_value.indexOf(c_name + "=");
  }
  if (c_start == -1){
   c_value = null;
  } else {
   c_start = c_value.indexOf("=", c_start) + 1;
   var c_end = c_value.indexOf(";", c_start);
   if (c_end == -1){
    c_end = c_value.length;
   }
   c_value = unescape(c_value.substring(c_start,c_end));
  }
  return c_value;
 },

 ga : {
  disablestr : 'ga-disable-UA-5594188-23',
  optout  :function() {
   if(b2bGdpr.resettrackingcookies)
   b2bGdpr.setCookie(b2bGdpr.ga.disablestr,true,0.1);
   window[b2bGdpr.ga.disablestr] = true;
  },
  optin  :function() {
   b2bGdpr.setCookie(b2bGdpr.ga.disablestr,true,-1);
   window[b2bGdpr.ga.disablestr] = false;
  }
 },

 getQueryParams : function(qs) {
     qs = qs.split("+").join(" ");
     var params = {},
  tokens,
  re = /[?&]?([^=]+)=([^&]*)/g;

     while (tokens = re.exec(qs)) {
  params[decodeURIComponent(tokens[1])]
      = decodeURIComponent(tokens[2]);
     }

     return params;
 },

 savePreference : function( Dollars preference, Dollars output){
  var proceed = true;
  
  if(typeof  Dollars output['config.newsletter'] != 'undefined')
  {
   var newsLetterConfig =  Dollars output['config.newsletter'];
   var promoNewsletterConfig =  Dollars output['config.promonewsletter'];

   if(newsLetterConfig == 0 && promoNewsletterConfig == 0)
   {
    proceed = confirm("Are you sure, You don't want to receive any email from "+SITE_TITLE+"?");
   }
   else if(newsLetterConfig == 0)
   {
    proceed = confirm("Are you sure, You don't want to receive "+SITE_TITLE+" Newsletters?");
   }
   else if(promoNewsletterConfig == 0)
   {
    proceed = confirm("Are you sure, You don't want to receive promotional Emails?");
   }

   if(proceed) {
    b2bGdpr.setStorage('emailPreference',1,30);
   }
   
  }
  else
  {
   b2bGdpr.setStorage('userPreference', Dollars output,100);
  }


  if(proceed == true)
  {
    Dollars ("#submitconsent").val('Saving...');
   b2bGdpr.postConsentToPersonalisationAPI( Dollars preference);
   b2bGdpr.postConsentToB2BAPI( Dollars preference);
    Dollars ("#submitconsent").val('Saved');
   setTimeout(function(){
    location.reload(true);
   },500);
  }
 },

 loadPreference : function(){
  loadScript('https://economictimes.indiatimes.com/js_etidentifierv.cms?v=1',function(){
   etIdentifiers.onLoad(13, 0);
   b2bGdpr.useridentifier = etIdentifiers.getIdentifier();

   if(b2bGdpr.useridentifier == 0) {
    b2bGdpr.useridentifier = b2bGdpr.getFingerprint();
   }
    
   b2bGdpr.userPreference = b2bGdpr.getStorage('userPreference') || {};
   b2bGdpr.processPreference();  
  });
  
 },

 processPreference : function(){
  executeOnComplete(function(){
   if( Dollars .isEmptyObject(b2bGdpr.userPreference))
   {
    b2bGdpr.userPreference = {};
    b2bGdpr.askPreference();
   }
   else if(b2bGdpr.useremail && !(b2bGdpr.getStorage('emailPreference')))
   {
    b2bGdpr.askPreference();
   }
  });
 },

 askPreference : function(){
  executeOnComplete(function(){
   if(!(b2bGdpr.useremail))
   {
     Dollars (".cookie_stng input[name='config.newsletter']").remove();
   }
   else
   {
     Dollars (".cookie_stng [data-target='cookietabNewsletter']").removeClass('hideit');
     Dollars (".cookie_stng [data-target='cookietabNewsletter']").trigger('click');
    setTimeout(function(){
      Dollars (".cookie_stng [data-target='cookietabNewsletter']").trigger('click');
    },500);
   }
    Dollars (".cookie_stng").removeClass('hide');
  });
 },

 postConsentToPersonalisationAPI : function(consent){
  var userIdentifier = b2bGdpr.useridentifier;
   Dollars .ajax({
    url: 'https://etservices2.indiatimes.com/ET_B2B_WEB/consent',
    method:'POST',
    contentType:'application/json',
    processData: false,
    data: JSON.stringify(consent),
    beforeSend: function(xhr) {
      xhr.setRequestHeader("Authorization", userIdentifier);
      xhr.setRequestHeader("X-PRIMARY", userIdentifier);
    },
    success: function(data) {
   console.log('xxxxxxxxxxxxxx');
   console.log(data);
    }
  });
 },

 postConsentToB2BAPI : function(consent){
  var userIdentifier = b2bGdpr.useridentifier;
   Dollars .ajax({
    url: base_url+'/ajax_files/etb2b_gdpr_mailer_consent.php?email='+b2bGdpr.useremail+'&personlisationid='+userIdentifier,
    method:'POST',
    data: {
   'consent':JSON.stringify(consent),
   },
    success: function(data) {
   console.log('xxxxxxxxxxxxxx');
   console.log(data);
    }
  });
 },
 
 getConsentFromPersonalisationAPI : function(){
  var userIdentifier = b2bGdpr.useridentifier;
   Dollars .ajax({
    url: 'https://etservices2.indiatimes.com/ET_B2B_WEB/consent',
    method:'GET',
    contentType:'application/json',
    beforeSend: function(xhr) {
      xhr.setRequestHeader("Authorization", userIdentifier);
      xhr.setRequestHeader("X-PRIMARY", userIdentifier);
    },
    success: function(data) {
   console.log('xxxxxxxxxxxxxx');
   console.log(data);
    }
  });
 },

 getFingerprint : function() {
           function checksum(str) {
               var hash = 5381,i = str.length;

               while (i--) hash = (hash * 33) ^ str.charCodeAt(i);

               return hash >>> 0;
           }

           function map(arr, fn){
               var i = 0, len = arr.length, ret = [];
               while(i < len){
                   ret[i] = fn(arr[i++]);
               }
               return ret;
           }

           return checksum([
               navigator.userAgent,
               [screen.height, screen.width, screen.colorDepth,b2bGdpr.userip].join('x'),
               new Date().getTimezoneOffset(),
               !!window.sessionStorage,
               !!window.localStorage,
               map(navigator.plugins, function (plugin) {
                   return [
                       plugin.name,
                       plugin.description,
                       map(plugin, function (mime) {
                           return [mime.type, mime.suffixes].join('~');
                       }).join(',')
                   ].join("::");
               }).join(';')
           ].join('###'));
    },

    getUserIP : function(onNewIP) { //  onNewIp - your listener function for new IPs
     //compatibility for firefox and chrome
     var myPeerConnection = window. RTCPeerConnection || window. mozRTCPeerConnection || window.webkitRTCPeerConnection;
     var pc = new myPeerConnection({
         iceServers: []
     }),
     noop = function() {},
     localIPs = {},
     ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
     key;

     function iterateIP(ip) {
         if (!localIPs[ip]) onNewIP(ip);
         localIPs[ip] = true;
     }

      //create a bogus data channel
     pc.createDataChannel("");

     // create offer and set local description
     pc.createOffer().then(function(sdp) {
         sdp.sdp.split('\n').forEach(function(line) {
             if (line.indexOf('candidate') < 0) return;
             line.match(ipRegex).forEach(iterateIP);
         });
         
         pc.setLocalDescription(sdp, noop, noop);
     }).catch(function(reason) {
         // An error occurred, so handle the failure to connect
     });

     //listen for candidate events
     pc. onicecandidate = function(ice) {
         if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
         ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
     };
 }
};

// Not removing this function as it has multiple references
function isGDPRNation(){
 return false;
}

b2bGdpr.init();
b2bGdpr.ga.optin();
b2bGdpr.setCookie('optout',1,-1,'.indiatimes.com');

if (document.cookie.indexOf(b2bGdpr.ga.disablestr + '=true') > -1) {
 window[b2bGdpr.ga.disablestr] = true;
}

</script>

<style>
 body. vanillaaccess .l2_outer_bx{d1isplay:none !important;}
 body. vanillaaccess #l2_overlay_bx_1{d1isplay:none !important;}
 body. vanillaaccess .user-area1{display:none !important;}
 body. vanillaaccess .logged_username{display:none !important;}
 body. vanillaaccess div.subscribe{display:none !important;}
 body. vanillaaccess .newsletter.show_subscribe_pop_btn{display:none !important;}
 body. vanillaaccess .invite-frnds_btn{display:none !important;}
 body. vanillaaccess .addthis_button_email{display:none !important;}
</style>
<!-- Code snippet to speed up Google Fonts rendering: googlefonts.3perf.com -->

<!-- <link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
<link rel="preload" href="https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap" as="fetch" crossorigin="anonymous"> -->
<style>
 #container {display:block !important; }
</style>
<script type="text/javascript">
 !function(e,n,t){"use strict";var o="https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap",r="__3perf_googleFonts_45964";function c(e){(n.head||n.body).appendChild(e)}function a(){var e=n.createElement("link");e.href=o,e.rel="stylesheet",c(e)}function f(e){if(!n.getElementById(r)){var t=n.createElement("style");t.id=r,c(t)}n.getElementById(r).innerHTML=e}e.FontFace&&e.FontFace.prototype.hasOwnProperty("display")?(t[r]&&f(t[r]),fetch(o).then(function(e){return e.text()}).then(function(e){return e.replace(/@font-face {/g,"@font-face{font-display:swap;")}).then(function(e){return t[r]=e}).then(f).catch(a)):a()}(window,document,localStorage);

 if (!isGDPRNation() || b2bGdpr.userPreference['config.clmb'] == 1) {
  executeOnComplete(function(){
   loadScript('https://ade.clmbtech.com/cde/ae/2658/var=_ccaud');
  });
 }
</script>
<style>#main-nav>ul>li>a,.breadcrumbs li a:hover,.ticker-content a,a,a:hover,a:link,a:visited{text-decoration:none}.container,.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:20px;padding-left:20px}@media (min-width:576px){.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:768px){.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media (min-width:992px){.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@font-face{font-family:FontAwesome;src:url(/Themes/Release/fonts/fontawesome-webfont.eot?v=4.7.0);src:url(/Themes/Release/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(/Themes/Release/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(/Themes/Release/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(/Themes/Release/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(/Themes/Release/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-display:swap;font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-search:before{content:"\f002"}.fa-home:before{content:"\f015"}.fa-print:before{content:"\f02f"}.fa-font:before{content:"\f031"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-whatsapp:before{content:"\f232"}.fa-user-circle-o:before{content:"\f2be"}.fa-telegram:before{content:"\f2c6"}.fa-youtube:before{content:"\f167"}.fa-link:before{content:"\f0c1"}.fa-angle-left:before{content:"\f104"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-user:before{content:"\f007"}.fa-pencil:before{content:"\f040"}.fa-power-off:before{content:"\f011"}.fa-lock:before{content:"\f023"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-exclamation-circle:before{content:"\f06a"}.fa-clock-o:before{content:"\f017"}.clearfix,.clearfix:after,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{font-size:13px;color:#333;background:#fcfcfc;line-height:1.2em;font-family:Arial,Helvetica,sans-serif}.clearfix:after{content:".";font-size:0;height:0;clear:both;visibility:hidden}.clear{clear:both}#main-nav ul.brand-solutions li:nth-child(odd),ul.nwsltr_lst li:nth-child(odd){clear:left}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0}.no-padding,.p-none{padding:0!important}ol,ul{list-style:none}a:hover{color:#ec2227!important}a:link,a:visited{cursor:pointer;color:#000}img{max-width:100%;vertical-align:bottom}.row{margin-right:-20px;margin-left:-20px}.no-border{border:none!important}.mt-none{margin-top:0!important}.ml-none{margin-left:0!important}.mr-none{margin-right:0!important}.pt-none{padding-top:0!important}.pb-none{padding-bottom:0!important}.pl-none{padding-left:0!important}.pr-none{padding-right:0!important}.hide{display:none!important}.user-name:hover .hvr_bx,.user-name>a{display:block}.circle{border-radius:50%}.hdng-undrln1{font-size:32px!important}h1,h2,h3,h4,h5,h6{line-height:1.2em;margin-bottom:6px}h1{font-size:36px}h2{font-size:22px}h3{font-size:20px}h5{font-size:14px}body.bgImg #container,body.body-wrap #container{max-width:1000px;margin:0 auto;padding:0;background-color:#fcfcfc}body.bgImg #content,body.bgImg #header,body.body-wrap #content,body.body-wrap #header{padding:0 20px;scroll-behavior:smooth}body.bgImg{background-position-x:49.5%}body.body-wrap #sponsors-section{max-width:1000px;margin:40px auto 0}body.bgImg .main-content.col-md-8,body.body-wrap .main-content.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 65.666667%;flex:0 0 65.666667%;max-width:65.666667%}body.bgImg .side-bar.col-md-4,body.body-wrap .side-bar.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 34.333333%;flex:0 0 34.333333%;max-width:34.333333%}.user-name>a{padding-right:20px;box-sizing:border-box;color:#fff;white-space:nowrap;text-overflow:ellipsis;position:relative;overflow:hidden}.user-name img{float:left;margin-right:5px}.user-name>a:after{position:absolute;z-index:10;font:normal normal normal 14px/1 FontAwesome;content:"\f107";display:block;right:6px;top:1px;transition:transform .5s ease;color:#777!important}.user-name .hvr_bx li:hover{background:#f3f3f3;color:#ec2227!important}.user-name .hvr_bx li:hover a{color:#ec2227!important}.event-detail-box .panel-heading{margin:0 auto 25px;max-width:890px}.padr0,.padrl10{padding-right:10px}#header{margin-bottom:20px}.breadcrumbs li{display:inline;padding:0;margin:0}.breadcrumbs li:before{content:"/ ";margin-right:3px;font-size:12px}.breadcrumbs li:first-child:before{content:"";margin-right:0}.breadcrumbs li a{color:#000;font-size:12px}.breadcrumbs li:after{content:" ";margin-right:3px}header .menu-wrapper{border:0;background:#000;padding:0 10px;width:100%}header .middle-wrapper{width:100%;padding:15px 0 10px}header .menuLeftBx{float:left;font-size:17px;padding-top:5px;cursor:pointer;color:#222;font-weight:600}header .menuMiddleBx{float:left;width:95%;margin-left:-10px}header .menuRightBx{float:right;font-size:20px;color:#222;text-align:right;position:relative;font-weight:500;cursor:pointer}header .menuRightBx a i{color:#333}.menuRightBx .menuSearchBx{background:#333;line-height:29px;padding:0 10px}.menuSearchBx .fa{position:relative;z-index:1000;top:-2px;right:0}.menuSearchBx .searchWrap{position:absolute;z-index:999;display:none;padding:0 30px 0 0;background:#fcfcfc;width:264px}.menuSearchBx .searchWrap:focus{outline:0!important}.menuSearchBx .searchFormBx{width:100%;height:28px}.menuSearchBx .searchFormBx input.txt{float:left;border:0;background:0 0;padding:7px 10px;width:100%;font-size:13px;color:#333;margin:0;outline:0}.menuRightBx:focus .searchWrap,.menuRightBx:hover .searchWrap{display:block}#main-nav,#main-nav #menu-button,#main-nav>ul,#main-nav>ul>li,#main-nav>ul>li>a{border:0;list-style:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;z-index:99;display:block}#main-nav #v-nav ul li a,#main-nav .smallDrpdwn ul li a{display:block}#main-nav{width:auto;margin:0}#main-nav>ul>li{float:left;border-right:1px solid #444;margin-bottom:0}#main-nav>ul>li>a{padding:7px 9px;font-size:13px;color:#fff;font-weight:700;text-transform:capitalize}#main-nav>ul>li>a>i,.toggleBtn .fa{font-size:20px}#main-nav>ul>li.bgBlk{background:#000;margin-left:10px}#main-nav>ul>li.bgBlk a{color:#fff}#main-nav li.smallDrpdwn:hover>ul,#main-nav li:hover>.newsDropdownhvr{right:0;top:auto;-webkit-transform:translateY(-1px);-ms-transform:translateY(-1px);transform:translateY(-1px);transition:transform .3s;left:0}#main-nav li.smallDrpdwn:hover>ul{right:auto;top:auto;width:200px;min-height:auto}#main-nav ul li. smallDrpdwn ul li{background:#fff;list-style-type:none;font-size:12px;font-weight:600;cursor:pointer;line-height:1.4em;position:relative;border-bottom:1px solid #ccc;padding:0}#main-nav ul li. smallDrpdwn ul li>a,#v-nav>ul>li>a{padding:8px 10px}#main-nav ul li.smallDrpdwn:not(.brand_solutions) ul li:hover>a,#v-nav>ul>li:hover>a{background:#333;color:#fff!important}#main-nav ul .newsDropdownhvr,#main-nav ul li. smallDrpdwn ul{background:#fff;z-index:105;position:absolute;top:-999999px;-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px);-webkit-transition:all .25s ease;-moz-transition:all .25s ease;-ms-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;border:1px solid #d8d8d8}#main-nav li .fa,#navbarL2 li .fa{font-size:14px!important;padding-left:3px;vertical-align:middle;top:-1px;position:relative}#main-nav li .fa{padding-left:0}ul.tab-cntnt-artcle{margin:0 -10px}ul.tab-cntnt-artcle li{padding:20px 10px;width:25%;float:left}.tab-cntnt-artcle figure{margin-bottom:8px;position:relative;overflow:hidden}.tab-cntnt-artcle article h3{font-size:15px;color:#333;font-weight:700;line-height:1.4em}.tab-cntnt-artcle article p{font-size:14px;color:#333;font-weight:400;line-height:19px}.tab-cntnt-artcle figure img{display:block;width:172px}.tab-cntnt-artcle article h5{-webkit-line-clamp:3;overflow:hidden;text-overflow:ellipsis;max-height:56px;display:-webkit-box;-webkit-box-orient:vertical}#main-nav .sprite-bg.home,.menu-wrapper .menuLeftBx{display:none}#main-nav>ul>li.active>a,#main-nav>ul>li:hover>a{background:#333;color:#fff!important}#main-nav ul li .story-list ul li:hover a{background:#fff;color:#333}#main-nav>ul>li:last-child{border-right:0}#main-nav>ul>li:first-child>a{min-width:30px;text-align:center}#header .logoBx,.more ul li a{text-align:left}#main-nav li:hover>.newsDropdownhvr{right:0}.menuRightBx{top:1px;height:28px;right:-10px}.menuSearchBx .searchWrap{right:0;top:-1px;border:1px solid #d8d8d8}.menuSearchBx .fa{font-size:16px;color:#fff}.menuSearchBx:hover .fa{color:#000}#main-nav #v-nav{width:35%;float:left;padding:20px 2%}#main-nav #v-nav>ul{width:100%;border-right:1px solid #d5d5d5}#main-nav #v-nav>ul>li{float:left;width:45%;margin:0 5% -1px 0;border:1px solid #d5d5d5;border-width:1px 0}#navbarL2{padding:0 20px;background:#f3f3f3}#main-nav .tabbedcontent .news-section{float:left;width:65%;margin-top:20px}#main-nav .news-section .main-stories{float:left;width:48%}#main-nav .news-section .story-list{float:right;width:49%}#main-nav .news-section .story-list ul{width:100%!important}#main-nav .main-stories .section{margin-bottom:20px}#main-nav ul.level1 li a{padding:0;color:#fff;display:block;position:relative}#main-nav .main-stories .section p{padding-left:167px;line-height:18px}#main-nav .main-stories .section p a{display:block;font-size:16px;line-height:1.3em;color:#333;max-height:75px;overflow:hidden;padding:0}#main-nav .main-stories .section span.metadata{font-size:11px;color:#888;display:block;line-height:12px;padding-top:5px}#main-nav .main-stories .section img{float:left;width:157px;height:100px;margin-right:10px}#main-nav .news-section .story-list ul li{list-style:none;float:none;background:url(/Themes/Release/images/responsive/list-style2.jpg) 0 7px no-repeat;padding-left:14px;height:auto;margin-bottom:10px;text-overflow:ellipsis;width:88%;white-space:nowrap;border:0;overflow:hidden}.hide_mob{display:block}.show_mob{display:none}#header .middle-wrapper{padding:5px 0}#header .logoWrapper{float:left;margin:6px 0 4px}.smallDrpdwn{position:relative}#main-nav li:hover #fiberazation+.dropdown-item>ul{width:100%;background:0 0;border:1px solid red;left:0}#main-nav li:hover #fiberazation+.dropdown-item>ul li a{text-align:center;padding:0 10px 2px}#main-nav ul li. smallDrpdwn #fiberazation+.dropdown-item>ul li:hover>a{background:0 0}.featured_header_top_right_wrapper{float:right}.featured_header_top_right_wrapper img{display:block}header .top-wrapper{border-bottom:1px solid #e4e4e4;padding:5px 0;width:100%;position:relative}header .topLeftBX{float:left;width:25%;font-size:12px;color:#666;font-weight:500;text-transform:uppercase}header .topLeftBX .NewSitehvrBx{cursor:pointer}#header .middle-wrapper,header .top-wrapper{padding-left:20px;padding-right:20px}.featured_nws_wdgt figure{max-width:1000px;margin:-20px -15px 20px;padding:0;background:0 0;position:relative}.featured_nws_wdgt figcaption{position:absolute;width:100%;padding:60px 50px 30px;left:0;bottom:0;background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.8) 100%)}.featured_nws_wdgt h1 a,.featured_nws_wdgt h2 a{color:#fff;display:block}.featured_nws_wdgt h3 .cat{font-size:16px;color:#ed1c24;line-height:18px;margin-bottom:10px;font-weight:400;display:inline-block}.prime-widget{cursor:initial;font-family:'Open Sans',sans-serif!important;top:20px!important}header .NewSitehvrBx{position:relative;float:left}header .NewSitehvrBx:after{position:absolute;z-index:10;content:"\f107";display:block;right:-18px;top:-1px;color:#666}header .ETprimehvr,header .NewSitehvr{right:0;width:140px;top:15px;position:absolute;display:none}header .ETprimeBx{margin-left:40px;color:#666}header .NewSitehvr{left:0;z-index:9990;padding-top:15px}header .ETprimehvr{left:-15px;z-index:999;padding-top:20px}header .ETprimehvr ul,header .NewSitehvr ul{box-shadow:0 2px 3px rgba(200,200,200,.3);-moz-box-shadow:0 2px 3px rgba(200,200,200,.3);-webkit-box-shadow:0 2px 3px rgba(200,200,200,.2);border:1px solid #e4e4e4;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}header .ETprimehvr ul li,header .NewSitehvr ul li{list-style:none;background:#fdfdfd}header .ETprimehvr ul li a,header .NewSitehvr ul li a{color:#666;line-height:16px;display:block;font-size:12px;border-bottom:1px solid #e4e4e4;padding:7px 10px;font-weight:500;text-transform:none}header .ETprimehvr ul li:hover,header .NewSitehvr ul li:hover{background:#f3f3f3}header .ETprimehvr li:hover a,header .NewSitehvr li:hover a{color:#ec2227}.ETprimeBx:hover .ETprimehvr,.NewSitehvrBx:hover .NewSitehvr{display:block}header .topCntBX{float:left;width:50%}.user-name .hvr_bx{display:none;position:relative}.user-name .hvr_bx:after,.user-name .hvr_bx:before,header .ETprimehvr:after,header .ETprimehvr:before,header .NewSitehvr:after,header .NewSitehvr:before{position:absolute;z-index:999;width:0;height:0;content:" ";border-left:6px solid transparent;border-right:6px solid transparent;left:50%;top:9px;margin-left:-6px}.user-name .hvr_bx:before,header .ETprimehvr:before,header .NewSitehvr:before{border-bottom:6px solid #ccc}.user-name .hvr_bx:after,header .ETprimehvr:after,header .NewSitehvr:after{border-bottom:6px solid #fdfdfd;margin-top:1px;display:block}.user-name .hvr_bx:after,.user-name .hvr_bx:before{top:5px;left:85%}.user-name .hvr_bx a{display:block;padding:5px 10px;line-height:14px;font-size:13px;color:#fff;font-weight:400}.user-name .hvr_bx a .fa{margin-right:10px;font-size:14px}header .topSocialBX{float:right;margin-right:15px}.topMiddleBX{float:left;width:45%;text-align:center;font-weight:700}.topRightBX,.topSignBX{float:right}.topRightBX{width:35%;font-size:13px;color:#666;text-align:right;font-weight:600}#featured_header_elements .ad-head-ah,.c-menu-slide-top,.logoBx,.toggleBtn,.wdgt.ad,.widget.ad{text-align:center}.topRightBX a{color:#666!important}.topRightBX a:hover{color:#f83d37!important}.topRightBX ul li{display:inline-block;padding-right:7px;font-weight:400}.newsletterTxBx p{font-size:12px;color:#666;font-family:Merriweather,serif;line-height:1.3em;font-weight:600;margin-bottom:3px}.newsletterTxBx p a{color:#666}.newsletterTxBx span{font-size:12px;color:#ec2227;display:block;margin-bottom:4px;font-weight:400}.newsletterTxBx span a{color:#ec2227}.newsletterTxBx span. join a{color:#666;font-size:12px;position:relative;padding-right:10px}.newsletterTxBx span. join a:after{position:absolute;font:normal normal normal 14px/1 FontAwesome;content:"\f105";display:block;right:0;font-size:16px;top:0;color:#666}#navbarL2 ul li+li:before,#social-loign a.btn:before,.hdng-undrln1:after,.hdng1:after,.toggleBtn:before{content:""}.newsletterTxBx span.join{display:none}.newsletterTxBx span. join a:hover,.newsletterTxBx span. join a:hover:after{color:#ec2227}.logoBx{position:relative}.newsletterTxBx{float:right;max-width:350px;height:70px;position:relative;margin-bottom:0}.toggleBtn,.toggleBtn:before{right:0;z-index:99;position:absolute;width:30px;border-left:0 solid transparent;border-right:0 solid transparent;left:0}.newsletterTxBx img{float:left;padding-right:12px;display:none;text-indent:-9999px}.toggleBtn{color:#fff;top:20px;height:30px;border-bottom:2px solid #e4e4e4;border-radius:0 0 100% 100%;-webkit-font-smoothing:antialiased;cursor:pointer;margin:0 auto;transition:all .5s ease}.toggleBtn:before{height:0;border-bottom:4px solid #fcfcfc;top:9px;margin:auto;display:block}.toggleBtn .fa{color:#777;line-height:35px}#navbar #main-nav ul li a#ett-spcl{display:block;height:0;padding:27px 0 0;background:url(/Themes/Release/images/responsive/sprite16.png) 0 -1107px no-repeat no-repeat;width:150px;overflow:hidden}#main-nav>ul>li .nav-carousel h2 a{color:#e32932}#main-nav #v-nav.prev-nav-carousel{width:21%;margin-right:1%;float:unset}#main-nav #v-nav.prev-nav-carousel>ul>li{float:unset;width:unset}.nav-carousel ul.tab-cntnt-artcle li:last-child{border:none;padding-right:0}.nav-carousel .tab-content{margin-top:0}.user-name .hvr_bx li,.user-name .hvr_bx ul{margin:0;padding:0;list-style:none;border:0;display:block}#navbarL2,#navbarL2 ul li ul li{border-bottom:1px solid #d8d8d8}#navbarL2{max-height:31px;overflow:hidden}#navbarL2 li{float:left;padding:0 12px;position:relative}#navbarL2 li:first-child{padding-left:0}#navbarL2 li a{font-size:12px;line-height:1.2em;color:#555;display:inline-block;padding:8px 0;font-weight:700}#navbarL2 ul li+li:before{position:absolute;left:-2px;top:13px;width:4px;height:4px;border-radius:50%;display:block;background:#979797}#navbarL2 ul li ul{right:0;top:-9999px;z-index:99;background:#fff;border-width:0 1px;-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px);-webkit-transition:all .25s ease;width:140px;-moz-transition:all .25s ease;-ms-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease}#main-nav .dropdown_nav,#navbarL2 ul li ul{position:absolute;border:1px solid #d8d8d8}#navbarL2 ul li ul li{float:none;display:block;padding:0}#navbarL2 ul li ul li+li:before{display:none}#navbarL2 ul li ul li a{display:block;padding:8px 10px}#navbarL2 ul li ul li a:hover{background:#f8f8f8}#navbarL2 ul li:hover ul{top:auto;-webkit-transform:translateY(-1px);-ms-transform:translateY(-1px);transform:translateY(-1px);transition:transform .3s}#navbarL2 li a.active{background:0 0;color:#000}#main-nav .dropdown_nav{left:0;background:#fff;z-index:200;padding:20px 2% 1px;top:-9999px;width:100%;-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px);-webkit-transition:all .25s ease;-moz-transition:all .25s ease;-ms-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease}#main-nav li:hover .dropdown_nav{transform:translateY(0);transition:transform .3s;top:auto}.multy-lvl_nav{margin:0 -10px}.multy-lvl_nav section{float:left;box-sizing:border-box;padding:0 10px 10px;width:20%}.multy-lvl_nav ul li{list-style:none}#main-nav .multy-lvl_nav ul li span{font-size:14px;font-weight:700;display:block;line-height:18px;margin-bottom:10px;min-height:36px}#main-nav .multy-lvl_nav ul li ul{margin-bottom:5px}#main-nav .multy-lvl_nav ul li ul li a{font-weight:400;font-size:14px;display:block;line-height:30px;border-top:1px dotted #ccc;font-family:'Source Sans Pro',sans-serif;color:#555}#navbar .toggle-nav-btn,.c-menu,.hr-wrapper,.hr-wrapper+.hr-wrapper,.pge-ovrly,.wdgt:empty{display:none}#main-nav ul li .multy-lvl_nav ul li:hover a{background:#fff;color:#333}#main-nav ul li .multy-lvl_nav ul li a:hover{color:#ec2227!important}.c-menu,.c-menu-close{background-color:transparent}.c-menu{position:fixed;z-index:200;-webkit-transition:-webkit-transform .3s;transition:transform .3s;padding:25px 0}.c-menu-slide-top{vertical-align:middle;width:100%;top:-9999px;-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}.c-mask{position:fixed;z-index:100;top:0;left:0;overflow:hidden;width:0;height:0;background-color:#000;opacity:0;-webkit-transition:opacity .3s,width 0s .3s,height 0s .3s;transition:opacity .3s,width 0s .3s,height 0s .3s}.sticky{position:-webkit-sticky;position:sticky!important;top:0}.sticky-menu{position:fixed!important;width:1000px!important;top:0;padding:0;z-index:10;box-shadow:0 1px 2px rgba(153,153,153,0);-ms-box-shadow:0 1px 2px rgba(153,153,153,0);-webkit-box-shadow:0 1px 2px rgba(153,153,153,0);-moz-box-shadow:0 1px 2px rgba(153,153,153,0)}.bgImg .menu-wrapper,.body-wrap .menu-wrapper{margin:auto;left:auto;right:auto}#v-nav>ul>li,.box-sld-mob ul{background:#fff}#v-nav>ul{float:left;width:210px;position:relative}#v-nav>ul>li{list-style-type:none;font-size:12px;font-weight:600;cursor:pointer;line-height:1.4em;position:relative;border-bottom:1px solid #efefef;border-right:1px solid #efefef;margin:auto;padding:0;white-space:nowrap}.padl10,.padrl10{padding-left:10px}#main-nav ul li. smallDrpdwn ul.brand-solutions.show-rhs{left:-1px}.top-band1 .prime-nav a.prime-tab{padding-left:13px;background:url(/Themes/Release/images/responsive/prime-icon.png) left 2px no-repeat}.hdng-undrln1:after,.hdng1:after{background-color:#333;display:block;height:4px;margin-top:10px}#v-nav>ul>li:hover{color:#ec2227}.hdng1:after{width:40px}.hdng-undrln1{font-weight:800;line-height:1.2em;margin-bottom:20px;display:block}.hdng-undrln1:after{width:55px}.ad:empty,.in_content_ad_wrapper:empty,.page-index .post-banner.post-body .post-meta,.wdgt:empty{display:none}.redClr{color:#e32932}#social-loign a.btn:hover,.btn{color:#fff}.wdgt.ad,.widget.ad{margin-bottom:30px!important}.featured_ads img,.wdgt.ad img,.widget.ad img{display:inline-block}.Normal .flexi-audio,.flexi-video{position:relative;z-index:1;padding-bottom:56.25%;width:100%}.flexi-video iframe{width:100%;height:100%;z-index:1;position:absolute;left:0;top:0}.btn{background:#e32932;min-width:110px;border-radius:0;outline:0;margin:0 auto 6px;display:block;padding:0 15px;cursor:pointer;border:0;min-height:34px;font-size:15px;font-weight:600;position:relative;z-index:1}#social-loign a.btn:before{bottom:0;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0 50% 0 0;transition-duration:.3s;transition-property:transform;transition-timing-function:ease-out;z-index:-1;background:rgba(255,255,255,.1)}#social-loign a.btn:active::before,#social-loign a.btn:hover:before{transform:scaleY(1)}.btn-inverse{border:1px solid #e32932;background:#fff;color:#e32932}.btn-inverse:hover{color:#fff;background:#e32932}.list-type .meta,.pip .meta,.prime-nav .fa.fa-angle-down,ul.list-type li.featured_list:before{display:none}.hdngBx,.hstyl6{padding-bottom:8px;margin-bottom:15px}.hdngBx{border-bottom:1px solid #e32932;line-height:1em;position:relative;margin-top:-3px}.hdngBx h2,.hstyl1 span,.hstyl1 span a,.hstyl6,.hstyl6 a{display:inline-block;position:relative;color:#e32932;margin-bottom:0;font-size:16px;text-transform:none}.hdngBx h2 a{display:inline-block;position:relative;color:#e32932;padding-right:13px;line-height:18px}.hdngBx h2 a:after{position:absolute;border-left:4px solid #c3c3c3;border-top:4px solid transparent;transform:translateY(-50%);top:50%;border-bottom:4px solid transparent;right:0;content:" ";display:block}.hdng1:after{display:none!important}#featured_leaderboard{text-align:center;margin-top:-20px}#featured_header_top_right img{max-width:inherit;max-height:100%}#featured_header_top_right .bnr{overflow:hidden;max-width:640px;max-height:90px}#featured_header_elements .ad-head-ah,#featured_header_elements .featured_section{margin-bottom:20px}#featured_header_elements .featured_section{margin-top:-20px}.container .ticker-wrap.wrapper{padding:0 15px}.prime-story .icon-key{display:inline-block;vertical-align:middle;width:16px;height:7px;background:url(/Themes/Release/images/responsive/key-icon.png) no-repeat;margin-left:2px}.prime-story-box img.prime-logo{max-height:12px}.lst_styl_4 article{border-bottom:1px dotted #bbb;padding:0 0 17px;margin-bottom:17px}.lst_styl_4 li article{padding:0 0 7px;margin-bottom:7px}.lst_styl_4 li:first-child article{padding-bottom:10px}.lst_styl_4 ul.lst-box4 article figure{float:left;width:150px;margin:0 10px 0 0}.lst_styl_4 li:not(:first-child) article{position:relative;padding-left:15px}.lst_styl_4 .lst-box4 .descBx,.top-stories-v3 .prime-v2.prime-story .image{display:block}.lst_styl_4 article .fa-angle-right{position:absolute;font-size:14px;color:#e32932;left:0;top:0}.lst_styl_4 li:not(:first-child) article h4{width:100%;margin:0;overflow:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap;font-weight:400;font-size:13px}.lst_styl_4 ul li:first-child h4{font-size:14px;margin-bottom:8px}.lst_styl_4 ul li:first-child .descBx p{-webkit-line-clamp:6!important;max-height:90px;overflow:hidden;min-height:90px;font-size:12px;color:#555;-webkit-box-orient:vertical;display:-webkit-box}.lst_styl_4 li:last-child article{border-bottom:none;padding-bottom:0;margin-bottom:0}.hstyl1,.industry-speak,.mainslider,.tab-list{margin-bottom:15px}.hstyl1{border-bottom:1px solid #ed1c24;padding-bottom:8px;line-height:1em}.no-item-available,.tabstrips2 .navtabs,ul.lst4 li{margin-bottom:20px}.tabstrips2 .navtabs li{border-right:1px solid #ccc;height:20px;padding-right:10px;float:left;margin-right:10px}.tabstrips2 .navtabs li a{padding:0 0 3px;line-height:20px;height:20px;font-size:13px;font-weight:400;color:#555;border-bottom:2px solid transparent;position:relative}.tabstrips2 .navtabs li. active a,.tabstrips3 li a.active{background:#fff;color:#000;border-color:#ed1c24;font-weight:700;z-index:10}.tabstrips2 .navtabs li:last-child{border:0;margin-right:0}.lst_styl_6.tabcontent li figure{width:100px;height:auto}.lst_styl_6.tabcontent li .descBx{max-height:70px}.lst_styl_6.tabcontent li .descBx h4{font-size:13px}.allschema.wrapper{padding:0!important;margin-bottom:10px!important}.descBx{display:table}.wdgt{margin-bottom:28px}.wdgt .wdgt:last-child{border:0;padding-bottom:0;margin-bottom:0}.widget.ad{margin-bottom:28px!important}.moreTxBx,a.more-link1{text-align:right;position:relative}body.bgImg .widget.ad{padding:0;background:0 0}.wdgt{border:0!important;padding-bottom:0!important}h4{font-size:14px}.flexslidercombined,.slider_artcle1 article figure,ul.list1.news-listing,ul.lst2,ul.news-listing{margin-bottom:10px}ul.lst2 li{width:100%;display:block;border-bottom:1px dotted #bbb;padding-bottom:13px;margin-bottom:13px}ul.lst2 article figure.avtar{float:left;margin-right:20px;margin-left:0;width:110px}ul.lst2 article .descBx h4{font-weight:700;color:#333}a.more-link1{font-size:11px;color:#888;font-weight:400;padding-right:10px}.moreTxBx a:after{position:absolute;content:"\f105";display:block;right:-2px;top:-2px;color:#888}.moreTxBx a:after,header .NewSitehvrBx:after{font:normal normal normal 14px/1 FontAwesome}#featured_header_elements>div{overflow:unset!important}#featured_header_elements .google-ad.ad-block{margin-top:-20px;margin-bottom:20px}.bx-controls{display:none}.article-type-blog ol,.article-type-blog ul,.post-text .Normal ol,.post-text .Normal ul{padding-left:20px;margin-bottom:10px}.article-type-blog ul,.post-text .Normal ul{list-style:disc}.article-type-blog ol,.post-text .Normal ol{list-style:decimal}#main-nav ul li. smallDrpdwn ul.brand-solutions{width:530px;padding:10px 0 1px;left:auto;right:-1px;max-height:400px;overflow:auto;overflow-x:hidden}#main-nav ul li. smallDrpdwn ul.brand-solutions li{float:left;width:50%;padding:0 10px;margin-bottom:15px;border:0}#main-nav ul.brand-solutions li figure{float:left;width:72px;height:57px;margin:0 10px 0 0;border:1px solid #d5d5d5;text-align:center}#main-nav ul.brand-solutions li figure a{display:table-cell;width:70px;height:57px;vertical-align:middle;text-align:center}#main-nav ul.brand-solutions li figure img{max-height:100%;display:block;max-width:70px;margin:auto}#main-nav ul.brand-solutions li p{font-size:12px;color:#666;margin:0;font-weight:300;line-height:1.25em;overflow:hidden}#main-nav ul.brand-solutions li p a{color:#666}#main-nav ul.brand-solutions li h6{font-size:13px;color:#333;line-height:1.3em;margin-bottom:3px;font-weight:700}#main-nav ul.brand-solutions li h6 a{color:#000}#main-nav ul li. smallDrpdwn ul.brand-solutions.single{width:330px}#main-nav ul li. smallDrpdwn ul.brand-solutions.single li{float:none;width:100%;padding-bottom:2px}.footer{background:#f7f7f7;border-top:1px solid #e0e0e0;margin-top:30px}.footer-content,.footer-header{padding:20px 0;margin-bottom:20px;border-bottom:1px solid #e0e0e0}.footer .sponsors{margin-bottom:27px;border-bottom:1px solid #e0e0e0;padding-bottom:27px}.footer-aboutus{margin-bottom:25px}#sponsors-section{text-align:center;padding:20px 0;border-top:1px solid #efefef;margin-top:30px}#sponsors-section span.title{display:block;font-size:13px;font-weight:700;text-transform:uppercase;margin-bottom:15px}#sponsors-section+footer{margin-top:0}#sponsors-section img{margin:0 20px;transition:all .4s ease;-webkit-transition:all .6s ease;max-height:45px}#sponsors-section img:hover{filter:grayscale(0);-webkit-filter:grayscale(0)}.footer-header img{display:block}.footer-lst1 li{display:block;color:#000;margin-bottom:10px;font-size:13px;line-height:1.4em;font-weight:500}.followTx,.footer-lst1 li:first-child{font-weight:700}.footer-lst1 li a{color:#555}ul.socialIcon{float:right;background:#fff;border:1px solid #e0e0e0;border-radius:4px}.socialIcon li{display:inline-block;padding:5px 0;width:30px;text-align:center;color:#333;border-right:1px solid #e0e0e0}.socialIcon li:last-child{border-right:none}.socialIconBx{text-align:right}.copyRight,.footer-aboutus{text-align:center}.copyRight{font-size:13px;padding:0 0 25px}.followTx{font-size:13px;padding:5px 10px 0 0;display:inline-block}ul.inline-list li{display:inline-block;margin:0 12px;position:relative;line-height:18px}ul.inline-list li+li:before{position:absolute;left:-14px;top:7px;width:4px;height:4px;border-radius:50%;content:"";display:block;background:#979797}.footer-aboutus ul.inline-list li{margin-bottom:10px;font-size:13px;line-height:1.4em;font-weight:500}.footer-aboutus ul.inline-list li a{color:#555}.footer-horizontal .footer-lst1{margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #e0e0e0}.footer-horizontal .footer-content .col-md-12:last-child .footer-lst1{border:0;padding-bottom:0;margin-bottom:0}.footer-horizontal .footer-lst1.footer-trends{margin-top:0}.footer-horizontal .footer-lst1 li:first-child{float:none;display:block;color:#000;margin-bottom:5px}.footer-horizontal .footer-lst1 li:not(:first-child),.footer-horizontal .footer-lst1 li:not(:first-child) a{display:inline}.footer-horizontal .footer-lst1 li:not(:first-child):after,.footer-horizontal ul.inline-list li:not(:last-child):after{content:"/";margin:0 5px;color:#ccc;display:inline-block}.footer-horizontal .footer-lst1 li:last-child:after{display:none}.footer-horizontal .footer-aboutus .inline-list li{display:inline;list-style:none;margin:0 0 0 -2px}.footer-horizontal ul.inline-list li+li:before{display:none}.footer-horizontal .footer-aboutus{text-align:left}.horizontal_v2 .footer-content{margin-bottom:0;border-bottom:none;padding:15px 0 0}.horizontal_v2 .annl_events .footer-lst1 li:not(:first-child){border:1px solid #e0e0e0;padding:5px;list-style:none;width:32%;margin-right:1.2%;display:inline-block;float:left}.horizontal_v2 .footer-lst1 li:not(:first-child):after,.horizontal_v2 ul.inline-list li:not(:last-child):after{content:"\2022";font-size:16px;color:#999;vertical-align:bottom;border:none}.horizontal_v2 .annl_events .footer-lst1 li:after{display:none}.horizontal_v2 .annl_events .footer-lst1 li figure{max-width:90px;border-right:1px solid #e0e0e0;padding-right:10px;display:table-cell;vertical-align:middle;width:auto;float:none}.horizontal_v2 .annl_events .footer-lst1 li .descBx{display:table-cell;padding-left:10px}.horizontal_v2 .annl_events .footer-lst1 li .descBx h5,.horizontal_v2 .annl_events .footer-lst1 li .descBx span{font-size:11px;margin-bottom:0}.horizontal_v2 .annl_events .footer-lst1 li .descBx span{font-weight:600;color:#666}.horizontal_v2 .copyRight{text-align:left;font-size:12px;color:#555}.horizontal_v2 .footer-aboutus .inline-list li,.horizontal_v2 .footer-lst1 li{font-size:12px;line-height:20px}.horizontal_v2 .footer-aboutus .inline-list li a,.horizontal_v2 .footer-lst1 li a{color:#555}.horizontal_v2 .footer-lst1 li:first-child{text-transform:uppercase;margin-bottom:10px}.horizontal_v2 .footer-card-lst{margin:-15px 0 15px;border-bottom:1px solid #e0e0e0;display:flex}.horizontal_v2 .footer-card-lst>li{width:33%;float:left;border-right:1px solid #e0e0e0;padding:15px 20px}.horizontal_v2 .footer-card-lst>li:last-child{border:none}.horizontal_v2 .footer-card-lst>li:first-child{padding-left:0}.footer-horizontal ul.inline-list li:not(:last-child):after,.horizontal_v2 .footer-lst1 li:not(:first-child):after,.horizontal_v2 ul.inline-list li:after{margin:0 6px}.footer-horizontal .footer-aboutus ul.inline-list li:not(:last-child):after,.horizontal_v2 .footer-aboutus ul.inline-list li:after{margin:0 8px 0 6px}.horizontal_v2 ul.footer-lst1 li:last-child:after{display:none}.horizontal_v2 .footer-card-lst li h6{font-size:12px}.horizontal_v2 .footer-card-lst h2,.horizontal_v2 .footer-card-lst h5,.horizontal_v2 .footer-card-lst li .descp{color:#000;margin-bottom:10px}.horizontal_v2 .footer-card-lst h2,.horizontal_v2 .footer-card-lst h5{text-transform:uppercase;font-weight:700;line-height:1.4em}.horizontal_v2 .footer-card-lst h2{font-size:18px}.horizontal_v2 .footer-card-lst h5{font-size:11px}.horizontal_v2 .footer-card-lst li form{margin-top:20px}.horizontal_v2 .footer-card-lst li form .textbox{background:#fff;margin-bottom:7px;color:#666;outline-color:#e0e0e0;border-radius:0;padding:8px;font-size:13px;border:1px solid #e3e3e3;font-family:'Open Sans',arial,sans-serif;float:left;width:63%}.horizontal_v2 .footer-card-lst li form .btn{width:auto;min-width:auto;margin:unset;height:35px;font-size:14px;text-transform:uppercase;font-family:'Open Sans',arial,sans-serif;display:inline-block}.horizontal_v2 .footer-card-lst li .descp{font-size:13px;font-weight:400;line-height:1.4em}.horizontal_v2 .footer-card-lst li .descp a{color:#00afdf}.horizontal_v2 ul.socialIcon{float:none;background:0 0;border:none;margin-top:20px}.horizontal_v2 ul. socialIcon li{margin-right:10px;border-right:0;width:35px}.horizontal_v2 ul. socialIcon li a{border:1px solid #333;border-radius:50%;display:block;height:34px;width:34px;line-height:32px}.horizontal_v2 ul. socialIcon li i.fa{width:12px}.horizontal_v2 .subscribe-count{font-size:12px;color:#888;line-height:1.3em}.horizontal_v2 .logo-footer{float:right}.horizontal_v2 .footer-card-lst ul.nwsltr_lst{padding-top:2px}.horizontal_v2 .footer-card-lst .et-rtl-error{margin-top:1px}.horizontal_v2 .footer-card-lst ul.nwsltr_lst li{margin-bottom:5px}.horizontal_v2 .footer-card-lst ul.nwsltr_lst li label h4{font-size:11px}@media only screen and (max-width:1023px){#main-nav{width:91%;overflow:auto;overflow-y:hidden}#main-nav ul{white-space:nowrap;width:auto;display:block}#main-nav>ul>li{float:none;display:inline-block}#main-nav>ul>li>a{padding:5px 6px}.tab-cntnt-artcle ul{white-space:inherit}}@media only screen and (min-width :1000px) and (max-width :1200px){#main-nav{width:92%}}@media only screen and (max-width:1200px){.sticky-menu{left:0;right:0;padding:0 20px;width:100%!important}}@media only screen and (min-width:1200px){.bgImg header .menuMiddleBx{width:97%}.bgImg header #main-nav{width:98%}}@media only screen and (min-width:1000px){.bgImg .container,.body-wrap .container{max-width:1000px!important;padding:0}.bgImg .footer,.body-wrap .footer{max-width:1000px!important;margin:40px auto 0;padding:0 20px}}@media only screen and (min-width:767px){.user-name .hvr_bx{position:absolute;width:140px;right:10px;text-align:left;z-index:9999;padding:11px 0 0;box-shadow:0 2px 3px rgba(200,200,200,.3);-moz-box-shadow:0 2px 3px rgba(200,200,200,.3);-webkit-box-shadow:0 2px 3px rgba(200,200,200,.2)}.user-name .hvr_bx ul{background:#fdfdfd;border:1px solid #e4e4e4}.user-name img{float:left;margin-right:5px}.user-name .hvr_bx a{padding:10px 15px}.user-name .hvr_bx li{border-bottom:1px solid #efefef}.user-name .hvr_bx li:hover{background:#f3f3f3;color:#ec2227!important}.user-name .hvr_bx li:hover a{color:#ec2227!important}header .menu-wrapper{position:relative}.footer-lst1 li:last-child{margin-bottom:0}}@media only screen and (max-width:992px){.hide-mob,.mob-hide{display:none!important}}.form5 .textbox,.form5 textarea{font-family:'Open Sans',sans-serif!important}body{background-color:#e6e6e6}body.bgImg #container,body.body-wrap #container{background:#fff;display:block}body.bgImg #header,body.body-wrap #header,body.body-wrap .post-banner{padding:0!important}.bgImg .menu-wrapper,.body-wrap .menu-wrapper{max-width:inherit!important;z-index:999}.column-1,.column-2{padding-right:0}@media (min-width:768px){.col-md-6.column-1{-webkit-box-flex:0;-ms-flex:0 0 52%;flex:0 0 52%;max-width:52%}.col-md-6.column-2{-webkit-box-flex:0;-ms-flex:0 0 48%;flex:0 0 48%;max-width:48%}}h1.hdng1{font-size:28px}.sprite-bg{background-image:url(images/responsive/sprite16.png);background-repeat:no-repeat}#navbar .more-button,.toggle-nav-btn{float:right;position:relative;width:34px;height:32px;cursor:pointer;background-position:-140px -213px}#navbar .toggle-nav-btn{display:none;float:left;margin-left:-10px}.pge-ovrly{position:fixed;z-index:999;width:100%;height:100%;display:none;background:rgba(0,0,0,.7);left:0;top:0}.pge-ovrly.show{display:block}#main-nav li:hover>.dropdown-item>ul{left:-1px;right:auto;top:31px;width:200px;min-height:auto;-webkit-transform:translateY(-1px);-ms-transform:translateY(-1px);transform:translateY(-1px);transition:transform .3s}#main-nav li:hover>.dropdown-item ul.tab-cntnt-artcle{width:auto;margin-bottom:0}#main-nav li a#portal_home{background:#ed1c24}.subscribe{background:#efefef;padding:20px 20px 15px;margin-bottom:28px}.subscribe h3{font-size:16px;margin-bottom:2px;color:#333}.consent-popup,.subscribe p{font-size:11px;color:#555;margin-bottom:10px;line-height:1.3em}.subscribe .textbox{background:#fff;margin-bottom:0;color:#888;outline-color:#e0e0e0;border-radius:0;padding:10px 15px;font-size:12px;border:1px solid #e3e3e3;float:left;width:62%}.subscribe .submit{color:#fff;text-align:center;text-transform:uppercase;font-size:14px;cursor:pointer;width:38%;float:left;background:#e32932;transition:all .5s;margin-top:1px;min-width:inherit;margin-bottom:0}.subscribe.fw .textbox{margin-bottom:10px}.subscribe.fw .submit,.subscribe.fw .textbox{float:none;width:100%}.old-theme .newsletter_list li. controls a{padding:10px 30px;border-radius:0}.old-theme .et-rtl-error{margin-top:7px}.subscribe .submit:hover{background:#000;color:#fff!important;transition:all .5s}.seeTx{margin-bottom:0!important}.et-rtl-error{font-size:12px;color:#ec2227;line-height:1em;margin-bottom:7px}.et-rtl-error:empty{margin-bottom:0}.consent-popup{margin-top:10px}.consent-popup input{float:left;margin-top:1px}.consent-popup label{display:table;margin-left:18px}.subcribe_consentPopup{line-height:15px;font-size:11px}.consent-popup input[type=checkbox]:checked:before{padding-left:1px;line-height:1.3em;content:"\f00c"}.consent-popup input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:13px;height:13px;border-radius:2px;background-color:#fff;box-shadow:0 0 0 1px #dcdcdc;font-family:FontAwesome;font-size:11px;vertical-align:text-bottom;z-index:2;outline:0}.consent-popup input[type=checkbox]:checked{box-shadow:0 0 0 1px #333;background-color:#333;color:#fff}.top-stories-v3 li{border-bottom:1px dotted #bbb;padding:0 0 8px;margin-bottom:8px}.top-stories-v3 li:first-child{padding-bottom:10px}.top-stories-v3 li .image{float:right;width:150px;margin-left:10px;display:none;position:relative}.top-stories-v3 li:first-of-type .image{float:none;width:100%;margin:0;display:block}.top-stories-v3 li:first-of-type .sectionDef h1{font-size:20px}.top-stories-v3 li .sectionDef p{margin-top:6px;display:none!important;color:#555;font-size:12px;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:4}.top-stories-v3 li .sectionDef h3,.top-stories-v3 li.prime-v2 .sectionDef h2{margin-bottom:0;font-size:14px}.top-stories-v3 ul li:nth-child(2) h3,.top-stories-v3 ul li:nth-child(3) h3{font-size:16px}.top-stories-v3 li.top-img-right:first-child .image,.top-stories-v3 li.top-img-right:first-child .sectionDef p,.top-stories-v3 li:nth-child(3n+4) .image,.top-stories-v3 li:nth-child(3n+4) .sectionDef p{display:-webkit-box!important;line-height:15px;overflow:hidden}.top-stories-v3 li:last-child{margin-bottom:0;padding-bottom:0;border:none}.top-stories-v3 li.top-img-right:first-child .image,.top-stories-v3 li:nth-child(3n+4) .image{margin-top:2px}.top-stories-v3 li.top-img-right:first-child .sectionDef p,.top-stories-v3 li:nth-child(3n+4) .sectionDef p{max-height:60px}.top-stories-v3 li .authorInfo{margin-top:10px}.top-stories-v3 li .authorInfo .image.blog-image{float:left;width:41px;height:41px;margin:0 10px 0 0;display:block;border:3px solid #ddd}.top-stories-v3 li.top-img-right:first-child .image{float:right;width:150px}.top-stories-v3 ul.listing-skip-large-img li:nth-child(2) h3,.top-stories-v3 ul.listing-skip-large-img li:nth-child(3) h3{font-size:14px}.tabbedlatestnewsmostread .row{margin:0 -10px!important}.tabbedlatestnewsmostread .story-box{margin-bottom:18px;padding:0 10px}.story-box span.story-number{color:#ff5151;width:24px;height:24px;position:absolute;left:0;top:0;line-height:22px;font-size:11px;border:1px solid #ff5151;border-radius:50%;text-align:center}.morstyl_1,ul.lst1 li span{text-align:right}.story-details{position:relative;padding-left:32px}.brandName{font-weight:600;font-size:11px;text-transform:uppercase;display:block;margin-bottom:7px;color:#777;line-height:1em}.story-title{font-weight:700;font-size:13px;margin-bottom:0;max-height:72px;overflow:hidden}.story-time{font-size:12px;color:#666;line-height:1.1em;font-weight:400;display:block}.list-type .meta,.pip .meta,ul.list-type li.featured_list:before{display:none}.descBx h2 a{color:#333}.tabbedlatestnewsmostread .metaTx{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;line-height:14px}.nav-tabs{border:1px solid #e0e0e0;border-width:0 0 1px;margin-bottom:5px;padding:0 5px}.nav-tabs li{float:left;position:relative;margin-bottom:-1px}.tabbedlatestnewsmostread .nav-tabs ul li a{float:left;border:1px solid #e0e0e0;font-weight:700;font-size:13px;color:#555;padding:0 10px;background:#f5f5f5;line-height:32px;cursor:pointer}.tabbedlatestnewsmostread .nav-tabs ul li. active a{background:#fff;color:#ed1c24;font-weight:700;border-bottom-color:#fff}.tabbedlatestnewsmostread .nav-tabs ul li+li a{border-left:0}.tab-content{margin:10px 0}.tab-section .tab-content{margin-bottom:0}ul.lst1 li{position:relative;font-size:12px;padding:7px 0 7px 31px;height:auto;border-bottom:1px dotted #bbb;color:#000}ul.lst1 li span{position:absolute;font-size:12px;top:7px;color:#888;left:0;width:20px}ul.lst1 li span span{margin-top:-8px}.font-merriweather ul.lst1 li a{font-family:Merriweather,serif}ul.lst1 li:last-child{border-bottom:0;padding-bottom:0}.formatted-section ul.lst1 li:first-child span{top:0}.formatted-section ul.lst1 li:first-child{padding-top:0}ul.pip{margin-left:5px}ul.list-type{margin-left:10px}ul.list-type li,ul.pip li{padding-left:20px}.formatted-section ul.lst1.list-type li:first-child{padding-top:7px}ul.list-type li:before,ul.pip li:before{position:absolute;content:"";width:5px;height:5px;background:#888;border-radius:50%;left:0;z-index:1;top:12px}ul.pip li:first-child:before{top:4px}ul.list-type li.featured_list .meta{display:block!important;left:-8px}.line-pattern,.lst_styl_2 .news-listing{margin-bottom:15px}.line-pattern{background:url(/Themes/Release/images/responsive/line-pattern-min.png);border:1px solid #dcdcdc;border-width:1px 0;padding:3px 10px 0;border-bottom-color:#ccc}.line-pattern .mostread{display:block;margin-right:10px;font-size:16px;font-weight:700;color:#000;float:left;margin-top:6px}.line-pattern ul li{float:left;margin-bottom:-1px}.line-pattern ul li a{font-size:13px;background:0 0;border:none;line-height:28px;padding:6px 10px;cursor:pointer}.line-pattern ul li. active a{border:1px solid #bbb;background:#fff;border-bottom-color:#fff;font-weight:700;color:#ed1c24}.lst_styl_6 li .cat a,.sub_hd{color:#888}.lst_styl_6 li{border-bottom:1px dotted #bbb;padding-bottom:10px;margin-bottom:10px}.lst_styl_6 li figure,ul.lst8 li img{float:left;width:60px;height:75px;margin-right:10px}.lst_styl_6 li .cat{display:block;font-size:11px;color:#888;line-height:10px;text-transform:capitalize;margin-bottom:7px}.lst_styl_6 li .descBx{overflow:hidden}.lst_styl_6 li .descBx h4{margin-bottom:0}.lst_styl_6 li .descBx h5{font-size:15px;line-height:18px;font-weight:300}.lst_styl_6 li .descBx .category{margin-bottom:5px;display:block}.lst_styl_6 li .descBx span[data-date]{font-size:11px;text-transform:capitalize}.tabcontent.lst_styl_6 li:last-child{border:none;padding-bottom:0;margin-bottom:0}.sub_hd{display:block;line-height:16px;font-size:14px;margin-bottom:14px}.lst4 .metaTx span,.lst_styl_6 .metaTx span{vertical-align:baseline}.design-podcasts-widget-1 .hdngBx,.design-podcasts-widget-5 .hdngBx{display:none!important}.flexi-audio audio{outline:0}.morstyl_1 h2{font-size:12px;font-weight:400;margin:1px 0 0}.design-podcasts-widget-1 .hdngBx:first-child,.design-podcasts-widget-1 .hdngBx:first-child .hdng1{display:block!important}.podcast-widget h3{overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:3;display:-webkit-box;-webkit-box-orient:vertical;max-height:60px}.podcast-small{padding:0}.podcast-small .podcast-audio{background:#f1f3f4;padding:0 0 0 15px}.podcast-small .hdngBx,.podcast-small .pdst-cntnd{position:relative;width:100%;min-height:1px;padding:0;margin:0;display:inline-block;vertical-align:middle}.podcast-small .hdngBx{border:0;-webkit-box-flex:0;-ms-flex:0 0 32%;flex:0 0 32%;max-width:32%}.podcast-small .pdst-cntnd{-webkit-box-flex:0;-ms-flex:0 0 65%;flex:0 0 65%;max-width:65%}.podcast-small .pdst-cntnd.slike-html{-webkit-box-flex:0;-ms-flex:0 0 62%;flex:0 0 62%;max-width:62%}.podcast-small .flexi-audio{margin:0 -10px;position:relative;height:30px}.podcast-small .flexi-audio audio{border:0;border-radius:0;margin-bottom:0}.podcast-small h3{padding:10px 15px}.podcast-audio .spl_black{background:#f1f3f4}.podcast-small .pdst-cntnd.audio-html{margin-left:0}.podcast-audio .audio-html .flexi-audio{height:auto;visibility:visible}#playerContainer{position:absolute;height:100%;width:100%}.article-body .Normal .slikeVideo-container,.slikeVideo-container{padding-bottom:10px}#outerPlayer,#slikeAudioPlayer:not(.slike-audio-plaer),.article-type-video #outerPlayer{height:330px}.pdst-cntnd.slike-html{height:30px;overflow:hidden}#slikeAudioPlayer .spl_audio_action,#slikeAudioPlayer .spl_cream,#slikeAudioPlayer .spl_play{background:#f1f3f4!important}.podcast-audio .spl_play[data-title=Loader]:after,.podcast-audio .spl_play[data-title=Play]:after{background:url(/Themes/Release/images/responsive/play-button.png) no-repeat;background-size:100%;width:18px;height:18px}.podcast-audio .spl_play[data-title=Pause]:after{background:url(/Themes/Release/images/responsive/pause-button.png) no-repeat;background-size:100%}.podcast-audio .spl_play[data-title=ReplayB]:after{background:url(/Themes/Release/images/responsive/replay.png) no-repeat;background-size:100%}.spl_audio_outer .spl_play[data-title=Pause]:after,.spl_audio_outer .spl_play[data-title=Play]:after,.spl_audio_outer .spl_play[data-title=ReplayB]:after{background-position:center!important;width:18px;height:18px}.flexi-audio #slikeAudioPlayer{min-height:32px;max-height:32px}.spl_audio_1Line .spl_bt{padding:0 10px 6px 0}.podcast_energy .spl_audio_1Line .spl_bt{padding:0 0 6px}.podcast-audio .flexi-audio .spl_audio_1Line{height:32px}.podcast-audio .spl_audio_outer .spl_play{width:32px!important}.podcast-audio .spl_color_white{background-color:#333}.podcast-audio .spl_seek .spl_nob{width:14px;height:14px;transform:none}.podcast-audio .spl_seek .spl_pcsbs{transform:none}.tip .inner{display:none}.tip .form1 ul li input.textbox,.tip .form1 ul li textarea{padding:6px 10px;font-size:12px;color:#333}.tip .form1 ul li input.textbox.error,.tip .form1 ul li textarea.error{border-color:red}.tip #pitch_success p{font-size:18px;font-weight:700;line-height:24px;color:#3b8a23}#content .sidebar .tip .logo_box,.tip .logo_box{z-index:2}.tip .event-submit .hdr .logo_box{top:5px;font-size:30px}.tip .pitch_box .form1 ul li input.textbox,.tip .pitch_box .form1 ul li textarea{background:#fff;width:100%}.tip .pitch_box .inner{padding:10px 10px 8px}.tip .form1 ul li{margin-bottom:5px}.tip .form1 ul li input.submit{margin:0}.tip .pitch_box textarea{resize:vertical;max-height:300px}.top-strip2{background:#fff;padding:0 5px;margin:0 auto 20px;position:relative;border:0;border-bottom:1px dotted #d5d5d5;max-width:960px}.top-strip2.dspStyl_1{margin:-19px -15px 20px;background:#fafafa;max-width:inherit;padding:20px}.slider .slider_artcle1 .custom-navigation{text-align:right;position:absolute;z-index:10;right:-1px;top:50%;transform:translateY(-82%)}.slider_artcle1 .custom-navigation a{z-index:10;font-size:42px;line-height:16px;color:#666;font-weight:400;padding-left:5px;outline:0;display:block}.slider .slider_artcle1 ul. slides li{max-width:200px}.slider .slider_artcle1 ul.list22 li{margin-right:10px!important}.slider .slider_artcle1 .flex-viewport{width:100%}.slider .flexslider.slider_artcle1:after{position:absolute;z-index:8;height:100%;width:200px;display:block;content:"";right:0;top:0;background:-moz-linear-gradient(left,rgba(255,255,255,0) 0,#fff 96%,#fff 100%);background:-webkit-linear-gradient(left,rgba(255,255,255,0) 0,#fff 96%,#fff 100%);background:linear-gradient(to right,rgba(255,255,255,0) 0,#fff 96%,#fff 100%)}.ticker-controls li.jnt-play-pause,.ticker-controls li.jnt-play-pause.down,.ticker-controls li.jnt-play-pause.over,.ticker-controls li.jnt-play-pause.paused.down,.ticker-controls li.jnt-play-pause.paused.over{background-position:-269px -83px}.top-strip2 .column1{width:45%;margin-right:1%;padding-right:1%;border-right:1px dotted #bfbfbf;float:left}.top-strip2 .column1 .news-item span{padding-left:163px;font-size:16px;line-height:16px}.top-strip2 .column2{float:left;width:52.5%}.top-strip2 .column2 .column3{width:47%;margin-right:2%;padding-right:2%;float:left;border-right:1px dotted #bfbfbf}.top-strip2 .column2 .column4{width:48.5%;float:right}.news-item{border-bottom:1px dotted #bfbfbf;padding-bottom:9px;margin-bottom:9px}.news-item.last,.top-strip2 .column1 .news-item{border:0;padding-bottom:0}.news-item img{float:left;width:59px;height:38px}.news-item span{font-size:12px;line-height:13px;display:block;padding-left:69px}.top-strip2 .column1 .news-item img{width:153px;height:97px}.news-item.last{margin-bottom:0}.top-strip2 ul.list21{margin:0 -5px 17px}.top-strip2 ul.list21 li{float:left;width:16.6%;padding:0 5px}.top-strip2.dspStyl_1 li{margin-right:0}.top-strip2.dspStyl_1 li+li{margin-left:1.2%}.top-strip2 .moreTxBx{float:right;display:block;width:100px;cursor:pointer}.top-strip2 .moreTxBx.fetured-partner{width:150px;cursor:default}.top-strip2 .moreTxBx.cio-featured{width:270px;margin-top:-4px}.top-strip2 .moreTxBx.cio-featured img{width:100px;cursor:default;margin-right:10px;margin-left:5px}.top-strip2 .moreTxBx.cio-featured .leadtxt{font-weight:600;vertical-align:super;cursor:default}.top-strip2 article .metaTx a{font-size:12px;max-height:58px;overflow:hidden;display:-webkit-box;font-weight:600;margin-top:5px;line-height:1.2em;color:#000;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:4}.top-strip2 .headnav .hdngBx{border:0;display:flex;margin-bottom:0}.top-strip2 .headnav{border-bottom:1px solid #e32932;margin-bottom:20px}.top-strip2 article .metaTx,.top-strip2 article h5{margin-bottom:0}.ticker-wrapper.has-js{margin:0;padding:0;width:auto;height:34px;display:block;background-color:#fff;font-size:16px;border:2px solid #d80123}.ticker,.ticker-swipe{display:block;height:30px}.ticker{position:relative;overflow:hidden;background-color:#fff}.ticker-content,.ticker-swipe{background-color:#fff;position:absolute}.ticker-title{padding:0 8px;color:#fff;font-weight:400;background-color:#d80123;text-transform:uppercase;font-size:18px;line-height:30px;width:192px;text-align:center}.ticker-content{margin:0 0 0 15px;padding-top:5px;color:#000;font-weight:700;overflow:hidden;white-space:nowrap;line-height:1.2em;left:215px}.ticker-content a{color:#000}.ticker-content a:hover{text-decoration:underline;color:#0d3059}.ticker-swipe{padding-top:9px;top:0;width:800px}.ticker-swipe span{margin-left:1px;background-color:#fff;border-bottom:1px solid #1f527b;height:16px;width:7px;display:block}.ticker-controls{padding:8px 0 0;list-style-type:none;float:left}.ticker-controls li{padding:0;margin-left:8px;float:left;cursor:pointer;height:12px;width:12px;display:block}.js-hidden,.play_popup,.ticker-controls{display:none}.ticker-controls li.jnt-next,.ticker-controls li.jnt-prev{background-image:url(../images/controls.png);width:6px;height:12px}.ticker-controls li.jnt-play-pause{background-image:url(../images/controls.png)}.ticker-controls li.jnt-play-pause.paused{background-image:url(../images/controls.png);background-position:-269px -83px}.ticker-controls li.jnt-prev,.ticker-controls li.jnt-prev.down,.ticker-controls li.jnt-prev.over{background-position:-255px 83px}.ticker-controls li.jnt-next,.ticker-controls li.jnt-next.down,.ticker-controls li.jnt-next.over{background-position:-287px 83px}.no-js-news{padding:10px 0 0 45px;color:#f8f0db}.left .ticker,.left .ticker-content,.left .ticker-controls,.left .ticker-title{float:left}.left .ticker-controls{padding-left:6px}.right .ticker,.right .ticker-content,.right .ticker-controls,.right .ticker-title{float:right}.right .ticker-controls{padding-right:6px}.ticker{width:950px}.ticker-wrap{margin:30px auto 10px}.play_popup{position:absolute;top:10px;left:30px;height:26px;z-index:99;background:#ab3535;color:#fff;cursor:pointer;line-height:22px;padding:0 10px}.play_popup a{color:#fff!important}.full_popup_content{position:fixed;top:0;left:0;width:100%;height:100%;right:0;bottom:0;background-color:#111;z-index:99999;box-shadow:2px 1px 4px #111;-moz-box-shadow:2px 1px 4px #111;-webkit-box-shadow:2px 1px 4px #111}.full_popup_content .play_popup{display:none!important}#content .full_popup_content .flexsliderfull figure{width:500px;margin:0 auto;background:#333!important;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}#content .full_popup_content .flexsliderfull{margin-left:100px}#content .full_popup_content .post-social-lst1{position:absolute;top:100px;left:15px;z-index:99}.full_popup_content .post-social-lst1.horizontal li{float:none}.full_popup_content .post-social-lst1 a{color:#fff;border-color:#fff}.full_popup_content .hdngBx{border:none;text-align:center;margin:20px 0}.full_popup_content .hdngBx h2{color:#fff}.close_slidepopup{display:none;-moz-transition:background-color .2s ease-in;-webkit-transition:background-color .2s ease-in;-ms-transition:background-color .2s ease-in;transition:background-color .2s ease-in;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;font-family:arial,helvetica,sans-serif;padding:0;border:none;background-color:#666;width:26px;height:26px;position:absolute;top:0;right:0;margin:20px;z-index:1}.full_popup_content .close_slidepopup{cursor:pointer;outline:0;display:block}.close_slidepopup .icon:after,.close_slidepopup .icon:before{content:"";position:absolute;display:block;top:12px;left:6px;width:14px;height:2px;background-color:#121212}.close_slidepopup .icon:before{-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.close_slidepopup .icon:after{-moz-transform:rotate(135deg);-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.full_popup_content .description-box{background:#111;max-height:100%}.flex-slide-count{display:inline-block;margin-bottom:12px}.flex-pauseplay{display:none}.full_popup_content .flex-pauseplay{display:block}.full_popup_content .show_subscribe_pop_btn,.news_slider_artcle .flex-direction-nav{display:none!important}#content .flexsliderfull{background-color:#333;color:#fff}#content .flexsliderfull a,#content .flexsliderfull p{color:#ccc}#content .flexsliderfull figure{width:100%;text-align:center;vertical-align:middle;height:500px}#content .flexsliderfull img{height:100%;width:100%;object-fit:contain;vertical-align:middle}#content .flexsliderfull .description{padding:20px 10px;overflow-y:auto;max-height:100%;margin-bottom:8px}.slideshow-section{visibility:hidden;height:0}#content .flexsliderfull p{max-height:100%}.slideshow-section .flex-next,.slideshow-section .flex-prev{position:absolute;top:42%;font-size:62px;z-index:99;opacity:.9;color:#fff;outline:0;display:none}.slideshow-section .flexslider:hover .flex-next,.slideshow-section .flexslider:hover .flex-prev,.slideshow-section .flexsliderfull .flex-next,.slideshow-section .flexsliderfull .flex-prev{display:block}.slideshow-section .flex-next{right:10px}.slideshow-section .flex-prev{left:10px}.slideshowContainer .flex-viewport{z-index:9}.slide-holder .slide-details{display:none}.description-container{width:250px;position:absolute;background-color:#222;z-index:0;transition:all .3s ease-in-out;right:0;top:0;height:100%;padding:20px 5px 10px;overflow-y:auto;visibility:hidden}.flexsliderfull .scroll-right{right:-250px;display:block;z-index:9;visibility:visible}.slideshow-section .flex-pauseplay{position:absolute;top:43px;left:0;width:130px}.slideshow-section .flex-pauseplay a.flex-play:before,.slideshow-section .flex-pauseplay a:before{content:''}.slideshow-section .flex-pauseplay a{background:url(/Themes/Release/v1/images/start-pose.png) no-repeat;height:28px;width:129px;opacity:1;z-index:9}.slideshow-section .flex-pauseplay a.flex-pause{background-position:0 -28px}.slideshow-section .flex-pauseplay a.flex-play{background-position:0 0}.slide-details .flex-slide-count{position:absolute;left:15px;top:12px;z-index:999;background:#C00;color:#fff;padding:3px 5px;font-size:12px;line-height:13px}.flex-slide-close{position:absolute;top:12px;right:15px;z-index:999}.flex-slide-close .expend-block-closeBtn{height:18px;width:18px;background:url(/Themes/Release/v1/images/slideshow-close.png) 0 -20px no-repeat;display:block;cursor:pointer}.flex-slide-close .expend-block-closeBtn:hover{background-position:0 0}.slideshow-section .slideshowContainer{margin-bottom:0}.description-container,.description-container .slide-details{overflow:hidden}.description-container .slide-details::-webkit-scrollbar{width:3px}.description-container .slide-details::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.description-container .slide-details::-webkit-scrollbar-thumb{background-color:#444;outline:#708090 solid 1px}.news-listing.tiles .slideshow-thumb,.news-listing.tiles .vdo-thumb{margin-bottom:10px;overflow:hidden}.vdo-thumb{position:relative}.article-type-video figure a:after,.vdo-thumb a:after{transform:translate(-50%,-50%);top:50%;border-style:solid;left:51%;z-index:5}.article-type-video figure a:after,.article-type-video figure a:before{content:"";position:absolute;transition:all .3s ease}.article-type-video figure a:before{background:rgba(0,0,0,.6);width:30px;height:20px;border-radius:5px;top:50%;left:50%;transform:translate(-50%,-50%);z-index:4}.article-type-video figure a:after{width:0;height:0;border-width:6px 0 6px 10px;border-color:transparent transparent transparent #fff}.article-type-video .vdo-thumb a:after,.top-stories .clm2 .article-type-video figure a:after,.top-stories-v2 .article-type-video figure a:after,.vdo-thumb a:after{border-width:10px 0 10px 20px}.article-type-video .vdo-thumb a:before,.vdo-thumb a:before{width:75px;height:50px;border-radius:18px}#main_vlist_bx{margin-left:-15px;margin-right:-15px}#main_vlist_bx .col-md-3{padding:0 15px}.data-source-videos span.caption{display:block;overflow:hidden;height:32px;color:#333;margin-bottom:28px;-webkit-line-clamp:2;text-overflow:ellipsis}.news_slider_artcle{background:#f1f1f1}.news_slider_artcle.slider_artcle1 ul.slides{margin-left:0}.news_slider_artcle.slider_artcle1 ul. slides li{padding:0;border:none}.news_slider_artcle.slider_artcle1 ul. slides li article h4{padding:0 15px}.news_slider_artcle.slider_artcle1 ul. slides li article p{display:none!important}.news_slider_artcle .flex-control-nav{bottom:unset;top:58%}.news_slider_artcle .flex-control-paging li a{background:rgba(255,255,255,.6)}.news_slider_artcle .flex-control-paging li a.flex-active{background:rgba(226,26,26,.9)}.lst_styl_3 ul.news-listing li{border-bottom:1px solid #c7c7c7;background:#dfdfdf;padding:10px}.lst_styl_3 .news-listing li figure{width:72px;height:45px;float:left;margin:0 10px 0 0}.lst_styl_3 .news-listing li .descBx{overflow:hidden}.lst_styl_3 .news-listing li .descBx span{font-size:11px;line-height:11px}ul.lst4 li{border-bottom:1px solid #e0e0e0;padding-bottom:20px}ul.lst4 article figure.avtar{width:215px;float:left;margin-right:20px;margin-left:0}.metaTx{font-size:12px;color:#666;line-height:13px;font-weight:400;display:block;margin-bottom:7px}.artcle_lst1 article p,.artcle_style1.main p,.flexslider .slides>li p,.video-wdgt p,ul.lst-box1 li p,ul.lst4 li p{font-size:14px;color:#333;font-weight:300;line-height:1.4em;max-height:56px;overflow:hidden}.blog-list ul.lst4 article figure.avtar{width:110px}.data-source-slideshows figure{position:relative;margin-bottom:10px}.data-source-slideshows li figure figcaption{position:absolute;background:rgba(0,0,0,.7);box-sizing:border-box;width:100%;padding:10px;left:0;bottom:0}.data-source-slideshows figure figcaption a{font-size:14px;font-weight:700;line-height:18px;display:block;color:#fff;max-height:36px;overflow:hidden}.data-source-slideshows figure .fa{position:absolute;top:50%;left:50%;font-size:40px;text-align:center;width:44px;height:44px;margin:-22px 0 0 -22px;z-index:99;color:#fff;opacity:.7}.fa-youtube-play:before{content:"\f16a"}.data-source-slideshows figure span.time,.video_wdgt ul.lst7 li span.time{position:absolute;background:rgba(0,0,0,.7);color:#fff;height:23px;line-height:24px;padding:0 7px 0 20px;display:block;z-index:10;right:0;bottom:0;font-size:12px;font-weight:700}.data-source-slideshows figure span.time:before,.video_wdgt ul.lst7 li span.time:before{display:block;content:" ";border-left:6px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent;position:absolute;z-index:11;left:10px;top:7px}.data-source-slideshows ul{margin-left:-5px;margin-right:-5px;margin-bottom:10px;border-bottom:1px dotted #bbb;padding-bottom:13px}.data-source-slideshows ul li{float:left;box-sizing:border-box;padding:0 5px;width:33.3%}.data-source-slideshows ul li:first-child{width:100%}.data-source-slideshows li figcaption{padding:0;position:static;background:0 0;max-height:56px;overflow:hidden}.auto_tv.data-source-slideshows ul{margin-bottom:10px}.data-source-slideshows .lst_styl_2 li .descBx h5{line-height:1.2em;max-height:68px;-webkit-line-clamp:4;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical;display:-webkit-box}.data-source-slideshows .lst_styl_2 li .descBx a{font-size:12px;font-weight:400}.spcl_story_wdgt .hdng1 a{text-transform:capitalize}.nwsltr_stories{position:fixed;z-index:9990;right:0;bottom:0;width:350px;transition:all 1s ease;-moz-transition:all 1s ease;-webkit-transition:all 1s ease;box-shadow:0 0 8px rgba(0,0,0,.5);-moz-box-shadow:0 0 8px rgba(0,0,0,.5);-webkit-box-shadow:0 0 8px rgba(0,0,0,.5)}.nwsltr_stories.closed,.nwsltr_stories.closed:hover{bottom:-300px}.nwsltr_stories h4{background:#de2d2d;line-height:37px;padding:0 10px;color:#fff;font-size:16px;cursor:pointer;margin-bottom:0}.nwsltr_stories .scroll-cntent{background:#e9e9e9;height:330px;overflow:auto}.nwsltr_stories ul li{list-style:none;height:36px;line-height:36px;border-bottom:1px solid #d2d2d2}.nwsltr_stories ul li a{display:block;width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;font-size:12px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0 5px 0 10px;transition:background .25s ease;-moz-transition:background .25s ease;-webkit-transition:background .25s ease;cursor:pointer}.nwsltr_stories ul li. active a,.nwsltr_stories ul li. active a:hover{background:#fff;color:#888;font-weight:400}.nwsltr_stories h4 .fa{font-size:20px;float:right;font-weight:700;position:relative;top:8px}.nwsltr_stories ul li a .fa{color:#929292;margin-right:5px}.nwsltr_stories ul li. active a .fa{color:#de2d2d}.nwsltr_stories.closed .fa-angle-down:before{content:"\f106"}.nwsltr_stories ul li a:hover{background:#fffedf;text-decoration:none;color:#333!important}.post-text .table-wrapper{overflow-x:auto}.post-text table{background:#eee;border:1px solid #d5d5d5;width:100%!important;margin-bottom:25px;border-collapse:collapse;border-spacing:0}.post-text table tr td,.post-text table tr th{padding:5px 10px;text-align:left;vertical-align:top;border:1px solid #d5d5d5;line-height:1.4em;font-size:90%}.tab-list{border-bottom:1px solid #dcdcdc;padding:3px 10px 0;border-bottom-color:#ccc;margin-bottom:15px}.tab-list ul li{float:left;position:relative;margin-bottom:-1px}.tab-list ul li a{font-size:13px;color:#555;padding:0 10px;line-height:32px}.tab-list ul li. active a{background:#fff;border:1px solid #ccc;color:#ed1c24;font-weight:700;border-bottom-color:#fff;float:left}.blog-lists h1.hdng1,.blog-lists h2.hdng1{border-bottom:1px solid #ccc;margin-bottom:25px;padding-bottom:10px;padding-top:17px;background:url(../images/responsive/blog-bg3-min.png) right 0 no-repeat}.blog-lists h1.hdng1 small,.blog-lists h2.hdng1 small{display:block;overflow:hidden;line-height:18px;font-size:15px;font-style:italic;color:#555;height:45px;border-left:1px dotted #666;padding-left:15px;font-weight:400;padding-top:10px;text-transform:none}.blog-lists .hdngBx{padding:0;margin:0;border:none}.post-body h1{font-size:40px;margin-bottom:8px;display:block;color:#000}.post-body p.summary{font-size:17px;color:#333;font-weight:700;margin-bottom:15px;display:block;font-style:italic;line-height:1.3em}.main-content .post-meta{text-align:left;margin-bottom:20px}.author-bio figure{width:60px;float:left;margin:0 10px 0 0}.author-bio figure img{width:60px;border:1px solid #d8d8d8;padding:2px}.author-bio .author-details{max-width:inherit;overflow:hidden}.main-content .post-social-wdgt{border-bottom:1px solid #d8d8d8;padding-bottom:25px;margin-bottom:25px;position:static;width:100%}.post-social-lst1.horizontal li{float:left;margin-right:10px}.post-social-lst1 li a{cursor:pointer;display:block;width:34px;height:34px;line-height:32px;text-align:center;border:1px solid #393939;border-radius:50%;margin-bottom:12px;color:#333}.author-bio{margin-bottom:30px}.author-bio .name{font-weight:600}.author-bio .designation,a.bio{font-size:13px;line-height:1.5em}.author-bio .designation{color:#666;display:block;margin-bottom:7px}.main-content .post-social-lst1 a,.main-content .post-social-lst1.horizontal li{margin-bottom:0}.main-content .post-social-lst1 li:last-child,.main-content .post-social-lst1 li:nth-last-child(2),.main-content .post-social-lst1 li:nth-last-child(2) a{float:right}.main-content .post-social-lst1.horizontal .changeFontSize a,.page-blogdetail .main-content .post-social-lst1 .changeFontSize a,.page-newsdetail .main-content .post-social-lst1 .changeFontSize a{float:left}.blog-lists h1.hdng1 span,.blog-lists h2.hdng1 span{position:relative;overflow:hidden;float:left;margin-right:15px;height:0;width:224px;padding-top:51px;text-indent:-99999px}.post-meta li{display:inline-block;font-size:14px;color:#888;margin:0 8px;position:relative;line-height:20px}.post-text{font-size:17px;font-weight:400;line-height:23px;margin-bottom:30px;padding-bottom:1px;font-family:Arial,Helvetica,sans-serif!important}.blog_wdgt ul.lst2 article figure.avtar{width:55px;height:55px;float:left;margin-right:10px;margin-left:0;border:3px solid #ddd}.blogAuthorsDetails ul li{float:left;width:43px;height:43px;margin:0 5px 5px 0;position:relative}ul.nwsltr_lst{padding-top:7px}ul.nwsltr_lst li{list-style:none;margin-bottom:7px;float:left;width:50%;line-height:1.2em}ul.nwsltr_lst li label input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:13px;height:13px;border-radius:2px;background-color:#fff;box-shadow:0 0 0 1px #dcdcdc;font-family:FontAwesome;font-size:11px;vertical-align:text-bottom;position:absolute;z-index:2;left:0;top:-1px;outline:0}ul.nwsltr_lst li label{display:block;padding-left:20px;padding-right:8px;font-size:14px;color:#555;position:relative;line-height:1.3em}ul.nwsltr_lst li label input[type=checkbox]:checked{box-shadow:0 0 0 1px #333;background-color:#333;color:#fff}ul.nwsltr_lst li label h4{display:block;margin-bottom:3px;font-size:10px;font-weight:400;color:#333;float:left}ul.nwsltr_lst li label input[type=checkbox]:checked:before{padding-left:1px;line-height:1.3em;content:"\f00c"}.tabcontent ul.lst4 li{padding-bottom:10px;margin-bottom:10px}.page-newsdetail .post-wrapper figure figcaption{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:10px 0;width:100%;color:#999;font-size:12px;line-height:1.5em;z-index:2;left:0;bottom:0;border-bottom:4px solid #e5e5e5;font-style:italic}.post-wrapper .post-text figure img{margin-bottom:0}.post-text .Normal .img_container{margin-bottom:20px!important}.no-result-hdr{position:relative;padding-left:40px;padding-top:20px}.no-result-hdr .fa-exclamation-circle{color:#ed1c24;position:absolute;left:0;top:15px;font-size:32px}.no-result-hdr .main-heading{margin-bottom:40px}#content .embedded-carousel{margin-top:10px;position:relative}#content .embedded-carousel .flexsliderfull{background:0 0;visibility:hidden;height:0}#content .embedded-carousel .flexsliderfull .slide-img figcaption,.flexi-video .video-title{bottom:0;background:-moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.2) 20%,rgba(0,0,0,.8) 100%);background:-webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.2) 20%,rgba(0,0,0,.8) 100%);background:-o-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.2) 20%,rgba(0,0,0,.8) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.2) 20%,rgba(0,0,0,.8) 100%)}.embedded-carousel .slideshow-section{visibility:visible;height:auto}.embedded-carousel .slide-holder{max-height:250px;overflow:auto}#content .embedded-carousel .slide-holder .avtar-right{float:right;width:150px;margin-left:20px;height:auto}#content .embedded-carousel .flexsliderfull img{height:240px;object-fit:cover}#content .embedded-carousel .flexsliderfull .avtar-right img{object-fit:contain;height:auto}#content .embedded-carousel .flexsliderfull .slide-img{max-height:240px;position:relative}#content .embedded-carousel .flexsliderfull .slide-img figcaption{text-align:left;position:absolute;width:100%;padding:100px 20px 22px;color:#fff;left:0;background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.2) 20%,rgba(0,0,0,.8) 100%)}#content .embedded-carousel .descBx a,#content .embedded-carousel .flexsliderfull p{color:#333}#content .embedded-carousel .flexsliderfull .slide-img figcaption .article-type{font-size:20px;font-style:normal;line-height:24px}#content .embedded-carousel .flexsliderfull .slideshows-section figcaption .article-type{font-size:20px;line-height:24px;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:2;max-height:50px;overflow:hidden;display:-webkit-box}#content .embedded-carousel .flexsliderfull .slideshows-section figcaption .article-type a{color:#fff}#content .embedded-carousel .flexslider .slides>li{padding:0 35px}.embedded-carousel .slideshow-section .flex-next,.embedded-carousel .slideshow-section .flex-prev{font-size:52px;top:32%}.embedded-carousel .slideshow-section .flex-next{right:2px}.embedded-carousel .slideshow-section .flex-prev{left:2px}.embedded-carousel .descBx .metaTx span{color:#ec2227}.embedded-carousel .hdngBx{margin-bottom:25px;border-bottom:none}.embedded-carousel .hdngBx .hdng1:after{display:none!important}.embedded-carousel .hdngBx .hdng1{border-bottom:1px solid #e0e0e0;padding-bottom:4px;display:block;color:#333;font-size:22px;font-weight:700}#content .embedded-carousel .flexsliderfull p,.article-embeds .descBx p{text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:4;max-height:79px;overflow:hidden;display:-webkit-box;line-height:20px}.embedded-carousel .moreTxBx,.embeds-section .moreTxBx{text-align:left;margin-top:15px}#content .embedded-carousel .moreTxBx a.more-link1,.embeds-section .moreTxBx a.more-link1{color:#888;font-family:'Open Sans',sans-serif;font-size:12px}.embedded-carousel .moreTxBx a:after{top:0;font-size:16px}.embedded-carousel blockquote,.embedded-carousel blockquote p,.embedded-carousel p blockquote,.post-text .embedded-carousel blockquote,.post-text .embedded-carousel blockquote p,.post-text .embedded-carousel p blockquote{font-family:Merriweather,serif!important;color:#000;font-size:22px}.article-embeds .moreTxBx a.more-link1,.embeds-section .polls_wdgt button,.wikiembed .readmore{font-family:'Open Sans',sans-serif}.embedded-carousel blockquote,.embedded-carousel p blockquote,.post-text .embedded-carousel blockquote,.post-text .embedded-carousel p blockquote{margin:50px 20px 45px 0;font-weight:700;max-width:100%;position:relative;padding-left:12px;line-height:30px;text-align:center}.embedded-carousel blockquote:before{content:open-quote;visibility:hidden}.embedded-carousel blockquote:after{content:close-quote;vertical-align:-27px}.embedded-carousel blockquote:after,.embedded-carousel blockquote:before{font-size:50px;position:absolute;top:-20px;left:50%}.post-text .embedded-carousel .quoteembed .quoteby{font-size:14px;text-align:center;display:block;margin-top:20px;position:static;color:#ed1c24}.post-text .embedded-carousel .quoteembed .quoteby:before{display:none}.embedded-carousel .flexi-audio,.embedded-carousel .flexi-video{max-height:230px;padding-bottom:42.25%;margin-bottom:0}.embedded-carousel .article-type{margin-bottom:6px;font-size:14px}#content .embedded-carousel .wikiembed h2 a,.article-embeds h2 a{color:#333}.embedded-carousel .wikiembed .source,.embeds-section .wikiembed .source{margin-bottom:9px;color:#333;font-size:14px}#content .embedded-carousel .wikiembed .source img{height:30px;width:auto;vertical-align:bottom;display:none}#content .embedded-carousel .wikiembed .description{padding:0}#content .embedded-carousel .wikiembed .description p{max-height:100px}#content .embedded-carousel .flexi-video iframe{max-height:240px}#content .embedded-carousel .article-embeds{padding:unset;border:none;margin:unset}.post-text .Normal .embedded-carousel ul{padding-left:0;margin-bottom:0}.main-body .post-text blockquote .inner-quote{display:inline}.flexi-video .video-title{position:absolute;font-size:20px;z-index:9;text-align:left;width:100%;padding:20px 20px 15px;color:#fff;left:0;background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.2) 20%,rgba(0,0,0,.9) 100%);line-height:24px}.flexi-video .video-title a{text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:2;max-height:50px;overflow:hidden;display:-webkit-box;line-height:24px}.embeds-section:empty,.flexi-video .video-title:empty{display:none}#content .flexsliderfull .flexi-video .video-title a{color:#fff}.embeds-section{background:#f5f5f5;padding:20px!important;margin:10px 0}.embedded-carousel .embeds-section{background:0 0;margin:unset;padding:0!important}.article-embeds .avtar-right{float:right;width:150px;margin-left:20px;height:auto}.post-wrapper .post-text .article-embeds .avtar-right img{margin-right:0;float:right}.article-embeds .descBx .metaTx a{color:#ec2227}.article-embeds .moreTxBx{text-align:left;margin-top:12px}.article-embeds .moreTxBx a.more-link1{color:#888;font-size:12px}.article-embeds .descBx p{font-size:14px;line-height:21px;max-height:102px}.article-embeds .moreTxBx a:after,.embeds-section .moreTxBx a:after{top:2px}.embedded-carousel .article-embeds .moreTxBx a:after,.embedded-carousel .embeds-section .moreTxBx a:after{top:0}.embeds-section .poll-div-wrapper.poll_list{padding-top:0}.embeds-section .polls_wdgt .options label{padding-left:5px}.embeds-section .polls_wdgt .options .custom-control{margin-bottom:4px}.embeds-section .polls_wdgt #poll_change{margin-top:15px}.embeds-section .polls_wdgt button{background:#fe3326;padding:10px 20px;color:#fff;font-size:13px;border:0;font-weight:500;margin-top:20px;width:auto;border-radius:4px;cursor:pointer}.rndr_ajx .polls_wdgt .custom-control-label::after{top:0;left:-20px}.poll-div-wrapper .result-title{color:#5ab240}.poll-div-wrapper ul,.post-text .Normal .poll-div-wrapper ul,.post-text .Normal ul.poll-div-wrapper{padding-left:unset}.poll-div-wrapper .polls_wdgt .legends li{list-style:none;font-size:12px;font-weight:700;line-height:12px;margin-bottom:10px}.wikiembed .readmore{display:block;font-size:12px}.post-wrapper .post-text .wikiembed .readmore a{color:#888;position:relative}.post-wrapper .post-text .wikiembed .readmore a:after{position:absolute;content:"\f105";display:block;right:-8px;top:2px;color:#888;font:normal normal normal 14px/1 FontAwesome}.post-wrapper .post-text .wikiembed a h4{font-size:22px;margin:10px 0;line-height:20px}.post-wrapper .post-text .wikiembed .source img{margin-bottom:0;margin-right:0}.post-text .embeds-section .wikiembed .source img{margin-bottom:0;margin-right:0;height:34px;width:auto;vertical-align:bottom;display:none}.embedded-carousel .wikiembed .source>span,.post-text .embeds-section .wikiembed .source>span{background:url(/Themes/Release/images/wiki-img.png) no-repeat;height:41px;padding-left:50px;display:inline-block;padding-top:8px;color:#ed1c24;font-family:'Open Sans',sans-serif}.embeds-section .wikiembed h2 a{color:#333}.slide-img .slideshow-icon{position:absolute;background:url(/Themes/Release/images/slideshow-img.png) no-repeat;left:50%;top:50%;height:44px;width:54px;transform:translate(-50%,-50%)}#content .embedded-carousel .flexsliderfull .slide-img figcaption .article-type span{position:relative;max-height:50px;overflow:hidden;display:block}#content .embedded-carousel .flexsliderfull .slide-img figcaption .article-type:after{content:"Read More";color:#fff;position:absolute;bottom:4px;cursor:pointer;width:120px;text-decoration:underline}#content .embedded-carousel .flexsliderfull .slide-img figcaption .article-type.full-detail span{max-height:100%;overflow:unset}#content .embedded-carousel .flexsliderfull .slide-img figcaption .article-type.full-detail:after{display:none}.embeds-section .poll-div-wrapper .custom-radio .custom-control-label::before{background:#eee;width:10px;height:10px;border:0;left:-16px;top:4px}.embeds-section .poll-div-wrapper .polls_wdgt .custom-control-label::after{top:0;left:-20px;width:18px;border-radius:50%;border:1px solid #ccc;height:18px}.embeds-section .poll-div-wrapper .custom-radio .custom-control-input:checked~.custom-control-label::after{background:0 0}#content .embedded-carousel .poll-div-wrapper{color:#000}#content .embedded-carousel .polls_wdgt.first h3{font-size:22px;line-height:1.3em}.embeds-section #poll_change img{height:24px!important;width:160px}.pdf-embeds embed,.pdf-embeds iframe{width:100%;height:400px!important;border:2px solid #e0e0e0}.embedded-carousel .pdf-embeds embed,.embedded-carousel .pdf-embeds iframe{max-height:240px}.embedded-carousel .loader{border:6px solid #f3f3f3;border-radius:50%;border-top:6px solid #3498db;width:80px;height:80px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;margin:0 auto;position:relative;top:0}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.no-article{padding-left:0}.no-article .img-wrapper{text-align:center;margin-bottom:20px}.no-article .img-wrapper img{width:200px}.no-article .main-heading{text-align:center}.no-article .main-heading h1{font-size:30px;font-weight:700;margin-bottom:25px}.no-article .main-heading .subtitle{font-size:18px;line-height:1.5}.show-subcat{position:relative;float:right;margin-top:15px}.show-subcat .hvr_bx{position:absolute;width:140px;right:-12px;text-align:left;z-index:9999;padding:11px 0 0;box-shadow:0 2px 3px rgb(200 200 200 / 30%);-moz-box-shadow:0 2px 3px rgba(200,200,200,.3);-webkit-box-shadow:0 2px 3px rgb(200 200 200 / 20%);top:15px;display:none}.show-subcat:hover .hvr_bx{display:block}.page-newsListing .hdng1{display:inline-block}.show-subcat .hvr_bx:after,.show-subcat .hvr_bx:before{position:absolute;z-index:999;width:0;height:0;content:" ";border-left:6px solid transparent;border-right:6px solid transparent;margin-left:-6px;top:5px;left:85%}.show-subcat .hvr_bx:before{border-bottom:6px solid #ccc}.show-subcat .hvr_bx ul{background:#fdfdfd;border:1px solid #e4e4e4}.show-subcat .hvr_bx li{border-bottom:1px solid #efefef}.show-subcat .hvr_bx a{display:block;padding:10px;line-height:14px;font-size:13px;color:#000;font-weight:400}.show-subcat>a{font-size:18px;font-weight:700;margin-right:20px}.show-subcat>a:after{position:absolute;z-index:10;font:normal normal normal 14px/1 FontAwesome;content:"\f107";display:block;right:6px;top:1px;transition:transform .5s ease;color:#777!important}.show-subcat .hvr_bx:after{border-bottom:6px solid #fdfdfd;margin-top:1px;display:block}.large-timeunit .tshort,.short-timeunit .tlarge{display:none!important}.large-timeunit .tlarge,.short-timeunit .tshort{display:inline!important;position:static!important}.time-elapsed .tlarge{text-transform:lowercase!important}@media screen and (min-width:1000px){.nwsltr_stories{bottom:-182px;display:none}.nwsltr_stories:hover{bottom:0}}.post-social-lst1 li{font-size:14px}.post-social-lst1 li a{cursor:pointer;display:block;width:34px;height:34px;line-height:32px;text-align:center;border:1px solid #393939;border-radius:50%;margin-bottom:12px;color:#333}.post-social-lst1 a:hover{border-color:#ec2227}.article-body{position:relative}body.body-wrap .post-banner{margin-top:-20px}.post-banner{margin-bottom:30px}.post-banner img{width:100%;display:block}.post-body a.category,.post-body span.category{color:#e32932!important;font-size:14px;font-weight:700;line-height:1em;margin-bottom:15px!important;display:block;text-transform:uppercase}.post-header .tags a,.post-text{font-weight:400;font-family:Arial,Helvetica,sans-serif!important}.post-banner figure{position:relative;margin-left:-20px;margin-right:-20px}.post-banner figcaption{text-align:center;position:absolute;width:100%;padding:70px 35px 20px;color:#fff;left:0;bottom:0;background:-moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.8) 100%);background:-webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.8) 100%);background:-o-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.8) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.8) 100%);background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.8) 100%)}.post-header .tags{padding:0;margin:0 0 15px}.post-header .tags ul{float:left;margin-left:0!important;margin-bottom:0}.post-header .tags ul li{list-style:none;float:left;margin:0 4px 4px 0}.post-header .featured_nws_bnr .tags li{margin-right:1px}.post-header .tags a{font-size:12px;color:#555;display:inline-block;line-height:15px;position:relative;background:#ccc;padding:4px 5px}.post-header .tags a.active,.post-header .tags a:hover{color:#fff!important;text-decoration:none;background:#ed1c24}.post-header .featured_nws_bnr .tags a{background:rgba(0,0,0,.7);font-size:11px;color:#888;margin:0;height:24px}.post-banner.post-body a.category,.post-banner.post-body span.category{color:#fff!important}.page-index .post-banner.post-body h1{color:#fff;font-size:30px}.post-banner figcaption h1{color:#fff;text-align:left}.post-banner.post-body p.summary{padding:28px 35px;background:#f3f3f3;border-bottom:1px solid #d8d8d8;margin:0 -20px}.page-index .post-banner.post-body h1,.page-index .post-banner.post-body p{max-width:80%;margin-right:auto;margin-left:auto}.post-banner.post-body .post-meta{margin-bottom:0}.post-banner.post-body .post-meta li{color:#999}.main-content .article-layout4 .post-social-wdgt{float:left;width:130px;margin-right:30px;min-height:1px;position:absolute;border-bottom:none}.article-layout4 .author-bio,.article-layout4 .author-bio div{float:left}.author-bio{margin-bottom:30px}.author-bio .name{font-weight:600}.author-bio .designation,a.bio{font-size:13px;line-height:1.5em}.author-bio .designation{color:#666;display:block;margin-bottom:7px}.article-layout4 .author-bio .designation{margin-bottom:0}.article-layout4 .post-social-wdgt ul li,.article-layout4 .post-social-wdgt ul li a{float:none!important;margin:0 0 15px 11px!important}.article-layout4 .post-wrapper .post-text{max-width:720px;margin:0 30px 0 auto}.social-share-wdgt a{display:block;float:left;width:28px;height:28px;line-height:26px;text-align:center;border:1px solid #393939;border-radius:50%;margin-left:10px;font-size:12px;color:#393939}.social-share-wdgt a:hover{border-color:#ed1c24;color:#ed1c24}.social_share_bx{display:flex}.social_share_bx .post-social-lst1{margin:0 auto}@media screen and (min-width:1100px){html{min-height:800px}body.bgImg #container,body.body-wrap #container{min-width:1000px}}ul.breadcrumbs{margin-bottom:20px}.breadcrumbs.style2{list-style:none;margin:-10px 0 9px;border-bottom:1px solid #f5f5f5;padding:0 20px 9px}.breadcrumbs li a{color:#000;font-size:12px}.breadcrumbs li a:hover{text-decoration:none;color:#de2d2d}.breadcrumbs li{display:inline;padding:0;margin:0}.breadcrumbs li:before{content:"/ ";margin-right:3px;font-size:12px}.breadcrumbs li:after{content:" ";margin-right:3px}.breadcrumbs li:first-child:before{content:"";margin-right:0}.sidebar_outer #featured_multi_promotional_banner{margin-bottom:30px}.sidebar_outer #featured_multi_promotional_banner:empty,.sidebar_outer:not(.sidebar) .subscribe.mt-none{display:none!important}.post-wrapper .post-text img{margin-bottom:20px;margin-right:15px}.post-text{font-size:17px;line-height:23px;margin-bottom:30px;padding-bottom:1px}.container .read-more a,.container .read-story a{background:#999;font-size:14px;color:#333;line-height:32px;display:inline-block;padding:0 12px;box-shadow:0 0 1px transparent}.main-body .articlePage{border-top:1px solid #e0e0e0}.articlePage.main-story{padding-top:50px}.articlePage.main-story.singlePost{padding-top:20px}.articlePage.main-story.container{padding-top:0}.main-body .singlePost{margin:0 -20px;padding:20px 20px 1px}.main-body .articlePage.container{border:0}.main-body .singlePost:nth-child(2n+1){background:#f7f7f7}.articlePage .hover_box{cursor:pointer;z-index:99;margin-bottom:20px}.articlePage:hover .read-story a{background:#ed1c24;color:#fff!important}.articlePage .read-story a .fa{display:inline-block;margin:0 8px 0 auto;font-size:14px;color:#fff}.articlePage .hover_box .post-wrapper{max-width:100%}.articlePage .sticky-element.is_stuck{top:40px!important}.main-body .articlePage:last-child .hover_box{border:none}.main-body .main-story:nth-child(2){margin-bottom:20px}.post-text .site-follow-article-detail{margin-bottom:15px}.post-text .article-disclaimer{margin:15px 0}.comment-wrapper,.post-tags,.post-wrapper .post-text,.related-articles{max-width:620px;margin:0 auto 30px}.main-content .post-meta{text-align:left;margin-bottom:20px}.post-text a{color:#00AFDF;word-wrap:break-word}.post-text .Normal>img{margin:0 20px 20px 0!important}.post-body h1{font-size:40px;margin-bottom:8px;display:block;color:#000}.post-body p.summary{font-size:17px;color:#333;font-weight:700;margin-bottom:15px;display:block;font-style:italic;line-height:1.3em}.page-vediodetail .main-content .post-social-wdgt,.post-social-wdgt{position:absolute;width:40px;min-width:40px;border:none}.post-meta li{display:inline-block;font-size:14px;color:#888;margin:0 8px;position:relative;line-height:20px}.post-meta li a{color:#555}.post-meta .name-separator,.post-meta li+li:before{position:absolute;left:-13px;top:8px;width:4px;height:4px;border-radius:50%;content:"";display:block;background:#979797}.post-meta li+li{margin-left:14px}.main-content .post-social-wdgt{border-bottom:1px solid #d8d8d8;padding-bottom:25px;margin-bottom:25px;position:static;width:100%}.main-content .post-meta li:first-child{margin-left:0;margin-right:5px}.main-content .blog-detail .post-meta li:first-child,.main-content .post-meta li.name-author{margin-right:8px}.changeFontSize,.printnews{display:none}.main-content .changeFontSize,.main-content .printnews{display:block}.main-content .post-social-lst1 li:last-child,.main-content .post-social-lst1 li:nth-last-child(2),.main-content .post-social-lst1 li:nth-last-child(2) a{float:right}.main-content .post-social-lst1 li:last-child a{margin:0 0 0 15px}.post-social-lst1.horizontal li{float:left;margin-right:10px}.main-content .post-social-lst1 a,.main-content .post-social-lst1.horizontal li{margin-bottom:0}.post-tags{font-size:14px;color:#666;font-family:'Open Sans',sans-serif;margin-bottom:25px;padding-top:20px}.post-tags div{display:inline-block;margin-right:4px;margin-bottom:8px}.post-tags a{color:#666;display:inline-block;padding:5px 10px 6px;border:1px solid #e0e0e0;border-radius:5px;font-size:13px}.main-content .post-social-lst1.horizontal .changeFontSize a,.page-blogdetail .main-content .post-social-lst1 .changeFontSize a,.page-newsdetail .main-content .post-social-lst1 .changeFontSize a{float:left}.changeFontSize a.decreaseFont{font-size:11px;position:relative;margin-left:10px}.page-blogdetail .sticky-element,.page-newsdetail .sticky-element{position:static!important}.changeFontSize a.increaseFont .fa.fa-plus{font-size:11px}.article-body .embedgroup{border-left:5px solid #e10000;padding:13px 0 0 1px;margin:25px 0 20px;overflow:auto;position:relative;background:#f5f5f5;clear:both}.article-body .embedgroup h3{font:700 16px/16px arial,sans-serif;color:#000;margin-bottom:10px;padding-left:10px}.article-body .embedarticle{margin:0 0 15px;float:left;width:50%;padding:0 10px;overflow:hidden;height:47px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.article-body .embedarticle .imgwrapper{width:68px;height:45px;margin:0 10px 0 0;float:left}.article-body .embedarticle a{color:#00afdf!important}.article-body .embedarticle a h4,.article-body .wikiembed a h4{color:#000;font-size:13px;line-height:16px;margin-bottom:0}.article-body .embedarticle .synopsis{width:82%;float:left;display:none}.bottom-strip_2{margin-top:12px}.bottom-strip_2 ul.list27 li{width:23%;margin-right:2%;height:auto;color:#333;float:left;font-size:14px;line-height:18px;margin-bottom:20px;overflow:hidden;max-height:154px}ul.list27 li span{max-height:54px;overflow:hidden;display:block;margin-top:6px}.liveblog_wdgt2 small{font-size:12px}.group .colombiaonesuccess,.group .xorkovy{height:180px!important}.group .colombiaonesuccess div>div>a>div>h3{max-height:58px}.bottom-strip_3{background:#363636;border-color:#444;clear:both;padding:45px 50px;margin:0 -20px -42px;border-bottom:1px solid #d9d9d9}.bottom-strip_3 h2{font-size:36px;line-height:35px;margin-bottom:40px;text-align:center}.bottom-strip_3 .news-item{border-bottom:0;margin-bottom:0;padding-bottom:0}.bottom-strip_3 .news-item figure{position:relative}.bottom-strip_3 .news-item a.cat,.bottom-strip_3 .news-item figcaption a,.bottom-strip_3 h2,.post-header .featured_nws_bnr .tags a.active,.post-header .featured_nws_bnr .tags a:hover{color:#fff}.bottom-strip_3 .news-item a.cat{height:29px;line-height:29px;background:#ed1c24;padding:0 10px;font-size:12px;font-weight:700;position:absolute;left:0;top:0;z-index:20}.bottom-strip_3 .news-item a.cat:hover{color:#fff!important}.bottom-strip_3 .news-item figcaption{display:block;font-weight:700;font-size:16px;line-height:20px;margin-top:8px}.bottom-strip_3 .news-item figure img{width:100%;height:auto;margin-bottom:15px;float:left}.post-text blockquote,.post-text p blockquote{margin:25px 20px 45px 0;font-weight:700;max-width:100%;position:relative;padding-left:32px;line-height:30px}.post-text blockquote,.post-text blockquote p,.post-text p blockquote{font-family:Constantia,"Lucida Bright","DejaVu Serif",Georgia,serif!important;color:#000;font-size:24px}.post-text blockquote:before{content:open-quote;vertical-align:-28px;position:absolute;top:27px;left:0}.post-text .quoteembed .quoteby{position:absolute;bottom:-30px;right:0;font-size:13px;color:#ed1c24;font-family:sans-serif;line-height:1.2em;text-align:right}.post-text blockquote:after{content:close-quote;vertical-align:-27px}blockquote::after,blockquote::before{font-size:65px;color:#ed1c24;line-height:0}.post-text .quoteembed .quoteby:before{content:" ~ "}p.article-disclaimer{font-size:90%;opacity:.9;margin-top:20px}.fb_iframe_widget span{margin-bottom:15px}.post-text .highlight{background:#f6f6f6;margin:0 0 20px 20px;padding:15px;float:right;width:280px}.post-text .highlight h4{font-size:12px;text-transform:uppercase;color:#333;padding-bottom:6px;margin-bottom:5px;border-bottom:2px solid #bbb}.post-text .highlight ul{margin-bottom:0;margin-left:15px}.post-text .highlight ul li{font-size:13px;line-height:20px;margin-bottom:8px;list-style:disc}</style><script type="text/javascript">
      executeOnReady(function(){
      loadScript('https://st.etb2bimg.com/Themes/Release/js/gaf.min.js?mod=1407');
     });
     </script>
<script type="text/javascript">
 
 function unveilAllImg(){
   Dollars imgSelector = '';
  if(deviceType == 'mobile'){
    Dollars imgSelector = 'wrapper_style3';
  }else{
    Dollars imgSelector = 'flexslider';
  }
   Dollars ('.flex-viewport, .'+ Dollars imgSelector).find('img.unveil').each(function(i, v) {      
             Dollars this =  Dollars (this);
            try {
                 Dollars this.attr('data-init-src',  Dollars this.attr('src'));
                if ( Dollars this.attr('data-src') != '' &&  Dollars this.attr('data-src') != null) {
                     Dollars this.attr('src',  Dollars this.attr('data-src'));
                     Dollars this.removeClass("unveil");
                } else {
                     Dollars this.attr("src",  Dollars this.attr('data-init-src'));
                }
                 Dollars this.on("error", function() {
                     Dollars (this).unbind("error").attr("src",  Dollars (this).data('init-src'));
                });
            } catch (e) {}
        });
 }
 
 function initUnveilImg() {
      Dollars (window).trigger('scroll');
 }
</script>
<script type="text/javascript" language="javascript" src="https://js.etb2bimg.com/Themes/Release/js/jquery-3.3.0.min.js?mod=1407"></script></head>

<body id="telecom" class="old-theme body-wrap page-newsdetail page-newsDetail device-desktop  body-wrap  "><noscript id="deferred-styles"><link rel='stylesheet' type='text/css' href='https://st.etb2bimg.com/Themes/Release/css/login.layer.min.css?mod=1407'/></noscript><script>
    var loadDeferredStyles = function() {
        var addStylesNode = document.getElementById("deferred-styles");
        var replacement = document.createElement("div");
        replacement. innerHTML = addStylesNode.textContent;
        document.body.appendChild(replacement)
        addStylesNode.parentElement.removeChild(addStylesNode);
    };
    var raf = window. requestAnimationFrame || window. mozRequestAnimationFrame ||
    window. webkitRequestAnimationFrame || window.msRequestAnimationFrame;
    if (raf) raf(function() { window.setTimeout(loadDeferredStyles, 0); });
    else window.addEventListener('load', loadDeferredStyles);
</script>

<div id="container" ><div id="gbl_message_area" class="message-area"></div><div class='pge-ovrly'></div>
<header id='header' class='clearfix '>
 <div class="container">
      <div class="top-wrapper clearfix top-band1">
     <div class="topLeftBX">
            <div class="NewSitehvrBx">NEWS SITES
       <div class="NewSitehvr">
        <ul>
         <li><a rel='noreferrer nofollow' target='_blank' href='https://retail.economictimes.indiatimes.com' data-modname="Header" > Retail News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://auto.economictimes.indiatimes.com' data-modname="Header" > Auto News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://health.economictimes.indiatimes.com' data-modname="Header" > Health News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://energy.economictimes.indiatimes.com' data-modname="Header" > Energy News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://cio.economictimes.indiatimes.com' data-modname="Header" > IT News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://realty.economictimes.indiatimes.com' data-modname="Header" > Real Estate News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://tech.economictimes.indiatimes.com' data-modname="Header" > Technology News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://cfo.economictimes.indiatimes.com' data-modname="Header" > CFO News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://ciso.economictimes.indiatimes.com' data-modname="Header" > IT Security News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://bfsi.economictimes.indiatimes.com' data-modname="Header" > BFSI News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://government.economictimes.indiatimes.com' data-modname="Header" > Government News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://brandequity.economictimes.indiatimes.com' data-modname="Header" > Brand Equity </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://hospitality.economictimes.indiatimes.com' data-modname="Header" > Hospitality News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://travel.economictimes.indiatimes.com' data-modname="Header" > Travel News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://hr.economictimes.indiatimes.com' data-modname="Header" > HR News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://legal.economictimes.indiatimes.com' data-modname="Header" > Legal News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://infra.economictimes.indiatimes.com' data-modname="Header" > Infra News </a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://b2b.economictimes.indiatimes.com' data-modname="Header" > B2B News </a></li>        </ul>
       </div>
      </div>
      <div class="featured_section" data-type="prime-distribution" id="featured_header_prime_widget" data-ftd-type="prime-top-widget"></div>
                        
     </div>
     
     <div class="topMiddleBX" style="display:none">
      <a href="#" alt=""> <span class="redClr"> Upcoming Event:</span> CFO Meet &amp; discussion on Revised Companies Act</a>
     </div>

     <div class="topRightBX">
      <div class="topSignBX user-area">
       <span class="login-btn" id="top-login-btn">
        <a id="_tb_login_btn"  style="cursor:pointer;"><i class="fa fa-user-circle-o" aria-hidden="true"></i> Sign in/Sign up </a>
       </span>
       <span id="logged_username" class="user-name" style="display:none"></span>
      </div>
              <div class="topSocialBX">
         <ul>
          <li>Follow us:</li>
          <li><a href="http://twitter.com/Ettelecom" class=" twitter" target="_blank" data-modname="Header" rel="noreferrer nofollow" aria-label="Follow On Twitter"><i class="fa fa-twitter"></i></a></li><li><a href="http://facebook.com/ettelecom" class=" fb" target="_blank" data-modname="Header" rel="noreferrer nofollow" aria-label="Follow On Facebook"><i class="fa fa-facebook"></i></a></li><li><a href="https://www.linkedin.com/showcase/et-telecom/" class="linkedin" target="_blank" data-modname="Header" rel="noreferrer nofollow"><i class="fa fa-linkedin" aria-label="Follow On Linkedin"></i></a></li>         </ul>
        </div>
             </div>
    </div>

    <div class="middle-wrapper clearfix">
     <div class="logoBx">
      <div class="logoWrapper" style="display:inline-block;">
       <a href="/" alt="ETTelecom.com"  aria-label="ETTelecom.com">
        <img src="https://img.etb2bimg.com/files/cp/upload-1593503483-ettelecom-sm.png" alt="ETTelecom.com"  aria-label="ETTelecom.com">
       </a>
      </div>

      <div class="featured_header_top_right_wrapper">
       <div style='display:inline-block;float:right;overflow:hidden'><div class="google-ad ad-block ad-head-ah" id="div-gpt-ad-1527493701403-10" data-ad-fallback-element="featured_header_top_right" style="display:none;"></div></div><div class="featured_section_disabled hide" data-type="header" id="featured_header_top_right" data-ftd-type="featured_header_3"></div>      </div>
     </div>
    </div>
      <div class="navbar-only">
  <div id="navbar" class="menu-wrapper clearfix">
   <span class="sprite-bg toggle-nav-btn"></span>
   <div class="menuLeftBx">
    <div class="menuBarBx">
     <i id="c-button-slide-top" class="fa fa-bars" aria-hidden="true"></i>
     <i id="btn-sld-mob" class="fa fa-bars" aria-hidden="true"></i>
    </div>
   </div>

   <div class="menuMiddleBx">
    <nav id="main-nav">
     <ul class="nav-level1">
      <li class='parent  '><a id='home' aria-label='Home' href='https://telecom.economictimes.indiatimes.com' data-modname="Header" aria-label='&lt;i class='fa fa-home'&gt;&lt;/i&gt;'><i class='fa fa-home'></i></a></li><li class='dropdown  active'><a id="news" href="javascript:void(0);"  data-modname="Header" aria-label="News" >News <i class="fa fa-angle-down mob-hide"></i></a><div class="dropdown-item newsDropdownhvr mob-hide"><div class="tabbedcontent v-nav-wrapper"><div id="v-nav" class="prev-nav-list"><ul><li><a href="https://telecom.economictimes.indiatimes.com/news/3g-4g" data-modname="Header"  aria-label="3G/4G" >3G/4G</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/devices" data-modname="Header"  aria-label="Devices" >Devices</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/enterprise" data-modname="Header"  aria-label="Enterprise" >Enterprise</a></li><li><a href="https://telecom.economictimes.indiatimes.com/tag/financial+results" data-modname="Header"  aria-label="Financial Results" >Financial Results</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/industry" data-modname="Header"  aria-label="Industry" >Industry</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/infrastructure" data-modname="Header"  aria-label="Infrastructure" >Infrastructure</a></li><li><a href="https://telecom.economictimes.indiatimes.com/tag/international" data-modname="Header"  aria-label="International" >International</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/internet" data-modname="Header"  aria-label="Internet" >Internet</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/mvas-apps" data-modname="Header"  aria-label="MVAS/Apps" >MVAS/Apps</a></li><li><a href="https://telecom.economictimes.indiatimes.com/tag/people+movement" data-modname="Header"  aria-label="People Movement" >People Movement</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/policy" data-modname="Header"  aria-label="Policy" >Policy</a></li><li><a href="https://telecom.economictimes.indiatimes.com/tag/reviews" data-modname="Header"  aria-label="Reviews" >Reviews</a></li><li><a href="https://telecom.economictimes.indiatimes.com/tag/smartphone" data-modname="Header"  aria-label="Smartphone" >Smartphone</a></li></ul></div><div class="news-section clearfix"><div class="main-stories"><div class="section clearfix"><a href="https://telecom.economictimes.indiatimes.com/news/jiophone-next-launch-delayed-due-to-chip-shortage-wider-availability-around-diwali-says-jio/86080607" data-modname="Header_Stories" aria-label="JioPhone Next launch delayed due to chip shortage; wider availability around Diwali, says Jio" title="JioPhone Next launch delayed due to chip shortage; wider availability around Diwali, says Jio"><img class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/ettelecom-default.jpg" data-src="https://etimg.etb2bimg.com/thumb/jiophone-next-launch-delayed-due-to-chip-shortage-wider-availability-around-diwali-says-jio-size-30308-upd-2021-09-10-01-00-12/86080607.cms?width=195&height=124" alt="JioPhone Next launch delayed due to chip shortage; wider availability around Diwali, says Jio" /></a><p><a href="https://telecom.economictimes.indiatimes.com/news/jiophone-next-launch-delayed-due-to-chip-shortage-wider-availability-around-diwali-says-jio/86080607"  data-modname="Header_Stories" aria-label="JioPhone Next launch delayed due to chip shortage; wider availability around Diwali, says Jio" title="JioPhone Next launch delayed due to chip shortage; wider availability around Diwali, says Jio">JioPhone Next launch delayed due to chip shortage; wider availability around Diwali, says Jio</a><span class="metadata">5 hrs ago</span></p></div><div class="section clearfix"><a href="https://telecom.economictimes.indiatimes.com/news/sp-global-revises-airtel-outlook-to-stable-on-improved-operations-leverage-management/86072762" data-modname="Header_Stories" aria-label="S&P Global revises Airtel outlook to `stable' on improved operations, leverage management" title="S&P Global revises Airtel outlook to `stable' on improved operations, leverage management"><img class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/ettelecom-default.jpg" data-src="https://etimg.etb2bimg.com/thumb/s-p-global-revises-airtel-outlook-to-stable-on-improved-operations-leverage-management-size-23822-upd-2021-09-09-21-41-34/86072762.cms?width=195&height=124" alt="S&P Global revises Airtel outlook to `stable' on improved operations, leverage management" /></a><p><a href="https://telecom.economictimes.indiatimes.com/news/sp-global-revises-airtel-outlook-to-stable-on-improved-operations-leverage-management/86072762"  data-modname="Header_Stories" aria-label="S&P Global revises Airtel outlook to `stable' on improved operations, leverage management" title="S&P Global revises Airtel outlook to `stable' on improved operations, leverage management">S&P Global revises Airtel outlook to `stable' on improved operations, leverage management</a><span class="metadata">8 hrs ago</span></p></div></div><div class="story-list"><ul><li><a href="https://telecom.economictimes.indiatimes.com/news/govt-to-release-rs-56027-crore-to-exporters-for-pending-tax-refunds/86068176" title="Govt to release Rs 56,027 crore to exporters for pending tax refunds" data-modname="Header_Stories">Govt to release Rs 56,027 crore to exporters for pending tax refunds</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/retailers-set-to-aggressively-invest-in-user-engagement-cloud-iot-for-efficiency-airtel-report/86067940" title="Retailers set to aggressively invest in user engagement, cloud, IoT for efficiency: Airtel report" data-modname="Header_Stories">Retailers set to aggressively invest in user engagement, cloud, IoT for efficiency: Airtel report</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/oneweb-wont-compete-with-telcos-but-collaborate-with-them-sunil-mittal/86040312" title="OneWeb won't compete with telcos but collaborate with them: Sunil Mittal" data-modname="Header_Stories">OneWeb won't compete with telcos but collaborate with them: Sunil Mittal</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/handset-offline-retailers-desperately-try-to-woo-customers-away-from-ecommerce-using-offers/86055584" title="Handset offline retailers desperately try to woo customers away from ecommerce using offers" data-modname="Header_Stories">Handset offline retailers desperately try to woo customers away from ecommerce using offers</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/leading-global-chip-foundry-tower-semiconductor-wants-govt-to-finalise-project-sops/86055853" title="Leading global chip foundry Tower Semiconductor wants govt to finalise project, sops" data-modname="Header_Stories">Leading global chip foundry Tower Semiconductor wants govt to finalise project, sops</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/qualcomm-ceo-open-to-working-with-foundry-partners-in-europe/86035921" title="Qualcomm CEO open to working with foundry partners in Europe" data-modname="Header_Stories">Qualcomm CEO open to working with foundry partners in Europe</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/tcil-eyes-rs-4000-crore-orderbook-by-2022-23/86031823" title="TCIL eyes Rs 4,000-crore orderbook by 2022-23" data-modname="Header_Stories">TCIL eyes Rs 4,000-crore orderbook by 2022-23</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/india-cabinet-did-not-take-up-proposal-for-telecoms-relief-measures-source/86031933" title="India cabinet did not take up proposal for telecoms relief measures: Source" data-modname="Header_Stories">India cabinet did not take up proposal for telecoms relief measures: Source</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/dot-moots-4-year-moratorium-on-agr-spectrum-payments/86026773" title="A 4-year moratorium on AGR, spectrum payments in India's plan to prevent a Jio-led duopoly" data-modname="Header_Stories">A 4-year moratorium on AGR, spectrum payments in India's plan to prevent a Jio-led duopoly</a></li></ul></div></div></div></div></li><li class="smallDrpdwn hide-rhs hide-mob  " ><a id="features" href="javascript:void(0);"  data-modname="Header">Features  <i class="fa fa-angle-down mob-hide"></i> </a><div class="dropdown-item"><ul class="clearfix"><li class=""><a class="" href="https://telecom.economictimes.indiatimes.com/tag/insights" data-modname="Header"  aria-label="Insights">Insights</a></li><li class=""><a class="" href="https://telecom.economictimes.indiatimes.com/tag/trends" data-modname="Header"  aria-label="Trends">Trends</a></li></ul></div></li>        <li class="parent  ">
         <a id="ett-spcl"  href="https://telecom.economictimes.indiatimes.com/tag/ettspecial" data-modname="Header"  aria-label="ETT Special">ETT Special</a>
        </li>
                <li class="parent  ">
         <a id="slideshows"  href="https://telecom.economictimes.indiatimes.com/slide-shows" data-modname="Header"  aria-label="Slideshows">Slideshows</a>
        </li>
                <li class="parent  ">
         <a id="telecomtv"  href="https://telecom.economictimes.indiatimes.com/tele-bytes/55578279" data-modname="Header"  aria-label="Tele-Bytes">Tele-Bytes</a>
        </li>
                <li class="parent  ">
         <a id="tele-tsdy"  href="https://telecom.economictimes.indiatimes.com/webinars" data-modname="Header"  aria-label="Live Sessions">Live Sessions</a>
        </li>
        <li class="smallDrpdwn hide-rhs hide-mob  " ><a id="fiberazation" href="https://telecom.economictimes.indiatimes.com/tag/Fiberisation"  data-modname="Header">Fiberised India  <i class="fa fa-angle-down mob-hide"></i> </a><div class="dropdown-item"><ul class="clearfix"><li class=""><a class="" href="https://telecom.economictimes.indiatimes.com/tag/Fiberisation" data-modname="Header"  aria-label="&lt;img src=&quot;https://img.etb2bimg.com/files/cp/5f0bc87807ff9979719f.jpg&quot;&gt;"><img src="https://img.etb2bimg.com/files/cp/5f0bc87807ff9979719f.jpg"></a></li></ul></div></li><li class="parent_ smallDrpdwn brand_solutions hide-rhs  " ><a id="brandsolution" href="javascript:void(0);"  data-modname="Header" aria-label="Brand Solutions">Brand Solutions <i class="fa fa-angle-down mob-hide"></i> </a><div class="dropdown-item"><ul class='clearfix brand-solutions double'><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/india-mobile-conclave?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom India Mobile Conclave 2021'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cplogo1-1623846083.jpg' class='unveil' aria-label='ETTelecom India Mobile Conclave 2021'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/india-mobile-conclave?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom India Mobile Conclave 2021'>ETTelecom India Mobile Conclave 2021</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/india-mobile-conclave?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom India Mobile Conclave 2021'>Network Transformation: Empowering Telcos for the ..</a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/built-in-india?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Built in India Virtual Summit'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cpsbranding_logo-1623138411.jpg' class='unveil' aria-label='Built in India Virtual Summit'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/built-in-india?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Built in India Virtual Summit'>Built in India Virtual Summit</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/built-in-india?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Built in India Virtual Summit'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/dtvs?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom.com Digital Telco Virtual Summit 2021'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cpsbranding_logo-1616148626.png' class='unveil' aria-label='ETTelecom.com Digital Telco Virtual Summit 2021'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/dtvs?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom.com Digital Telco Virtual Summit 2021'>ETTelecom.com Digital Telco Virtual Summit 2021</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/dtvs?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom.com Digital Telco Virtual Summit 2021'>Telecom Transformation and The Digital Vision</a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/ettelecom-awards?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom.com Awards 2021'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cplogo1-1615881502.png' class='unveil' aria-label='ETTelecom.com Awards 2021'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/ettelecom-awards?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom.com Awards 2021'>ETTelecom.com Awards 2021</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/ettelecom-awards?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom.com Awards 2021'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/5g-congress?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom The 5G Congress 2022'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cplogo1-1615553193.png' class='unveil' aria-label='ETTelecom The 5G Congress 2022'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/5g-congress?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom The 5G Congress 2022'>ETTelecom The 5G Congress 2022</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/5g-congress?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='ETTelecom The 5G Congress 2022'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/world-telecom-day?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='World Telecom Day'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cpsbranding_logo-1589460657.19.12.png' class='unveil' aria-label='World Telecom Day'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/world-telecom-day?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='World Telecom Day'>World Telecom Day</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/world-telecom-day?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='World Telecom Day'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/unsung-heros?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Unsung Heroes'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cpsbranding_logo-1587476304.jpg' class='unveil' aria-label='Unsung Heroes'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/unsung-heros?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Unsung Heroes'>Unsung Heroes</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/unsung-heros?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Unsung Heroes'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/maketechhuman?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Nokia'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cpsbranding_logo-1582281530.PNG' class='unveil' aria-label='Nokia'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/maketechhuman?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Nokia'>Nokia</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/maketechhuman?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Nokia'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/spectrum-auction-2016?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Spectrum Auction 2016'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cpsbranding_logo-1582281435.34.39[1].png' class='unveil' aria-label='Spectrum Auction 2016'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/spectrum-auction-2016?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Spectrum Auction 2016'>Spectrum Auction 2016</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/spectrum-auction-2016?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Spectrum Auction 2016'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/accelerating-network-transformation?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Transform Your Network'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cpsbranding_logo-1582281275.JPG' class='unveil' aria-label='Transform Your Network'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/accelerating-network-transformation?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Transform Your Network'>Transform Your Network</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/accelerating-network-transformation?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='Transform Your Network'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/imc2019?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='India Mobile Congress'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cpsbranding_logo-1582281148.png' class='unveil' aria-label='India Mobile Congress'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/imc2019?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='India Mobile Congress'>India Mobile Congress</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/imc2019?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='India Mobile Congress'></a></p></li><li class="clearfix"><figure><a href='https://telecom.economictimes.indiatimes.com/microsite/eci?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='The Elastic Network'><img src='https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg' data-src='https://img.etb2bimg.com/imgv2/width-100,height-100,resize_mode-3/cp/portal-menu-telecom-1571023468.jpg' class='unveil' aria-label='The Elastic Network'></a></figure><h6><a href='https://telecom.economictimes.indiatimes.com/microsite/eci?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='The Elastic Network'>The Elastic Network</a></h6><p><a href='https://telecom.economictimes.indiatimes.com/microsite/eci?ag=brandsolution_nav' target='_blank' data-modname="Header" aria-label='The Elastic Network'></a></p></li></ul></div></li>     </ul>
    </nav>
   </div>
   <div class="menuRightBx">
    <div class="menuSearchBx">
     <i class="fa fa-search" aria-label="Search" aria-hidden="true" alt="Search"></i>
     <div class="searchWrap">
      <div class="searchFormBx">
       <form method="get" id="search_form" action="https://telecom.economictimes.indiatimes.com/search">
        <input name="q"  aria-label="Query" type="text" class="txt" autocomplete="off" placeholder="Search" value="">
       </form>
      </div>
     </div>
    </div>
   </div>
  </div>
      <div id="navbarL2" class="clearfix">
     <ul class="clearfix">
             <li class=''>
        <a class='' href=" https://telecom.economictimes.indiatimes.com/microsite/unsung-heros"  style="color:red"  data-modname="Header"> Unsung HEROES</a>
       </li>
             <li class=''>
        <a class=' active' href="https://telecom.economictimes.indiatimes.com/news/3g-4g"   data-modname="Header">3G/4G</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/microsite/world-telecom-day"  style="color:red"  data-modname="Header">World Telecom Day</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/tag/DigitalIndia"   data-modname="Header">Digital India</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/news/infrastructure"   data-modname="Header">Infrastructure</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/news/devices"   data-modname="Header">Devices</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/tag/jobs"   data-modname="Header">Jobs</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/e/accelerating-network-transformation" target="_blank"   data-modname="Header">Transform Your Network with Intel</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/news/mvas-apps"   data-modname="Header">MVAS/Apps</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/tag/IndiaTelecomData"   data-modname="Header">Tele-Stats</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/news/policy"   data-modname="Header">Policy</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/news/industry"   data-modname="Header">Industry</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/tag/Smartphone"   data-modname="Header">Smartphone</a>
       </li>
             <li class=''>
        <a class='' href="https://telecom.economictimes.indiatimes.com/cxo-corner"   data-modname="Header">CXO Corner</a>
       </li>
            <li class="more hide"><a href="javascript:void(0);">More<i class="fa fa-angle-down mob-hide"></i></a><ul></ul></li>
     </ul>
    </div>
     </div>
  <nav id="c-menu-slide-top" class="c-menu c-menu-slide-top container">
   <button class="c-menu-close" aria-label="Close">x</button>
   <div class="row">
    <div class="col-md-3">
     <ul class="c-menu-lst1"></ul>
    </div>
    <div class="col-md-6">
     <ul class="c-menu-lst1"></ul>
    </div>
    <div class="col-md-3">
     <ul class="c-menu-lst2"></ul>
    </div>
   </div>
  </nav>
  <div id="c-mask" class="c-mask">&nbsp;</div>
 </div>
 <div class="featured_section " id="in-page-promotions_top_1" data-type="in-page-promotions" data-ftd-type="in-page-promotions" data-ftd-callback="inPagePromoCallback" data-ftd-params=""></div><div data-bucket-limit=1 data-bucket-id=1 data-bucket-design=1 data-bucket-position=top class="in-page-promotions-buckets-featured featured_section_disabled  bucket-position-top" data-type="in-page-promotions" id="in-page-promotions_top_1" data-ftd-params="design=1&limit=1&entity_type=all&position=top&bucket_id=1&rendered_items=0&" data-ftd-type="in-page-promotions" data-ftd-callback="inPagePromoCallback"><div class="in-page-promotions-buckets  hide"></div></div></header>

<div class="container">
 <div id="featured_header_elements">
  <div style='overflow:hidden'><div class="google-ad ad-block ad-head-ah" id="div-gpt-ad-1527493701403-30" data-ad-fallback-element="featured_leaderboard" style="display:none;"></div></div><div class="wrapper pd0 no_bg featured_section_disabled hide featured_ads" data-type="ads" id="featured_leaderboard" data-ftd-type="featured_leaderboard" data-ftd-callback="addLeaderBoardClass"></div><div class="featured_section hide" data-type="stockticker" id="featured_data_ticker" data-ftd-type="featured_header_20"></div><div class="featured_section hide" data-type="header" id="featured_header_marquee" data-ftd-type="featured_header_2"></div><div class="featured_section hide" data-type="header" id="featured_text_ad" data-ftd-type="featured_header_14"></div> </div>
</div>
<div id="content" class="layout2"><div class="main-body main-content"><div class="wrapper pd0 breadcrumb schemas"><script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"https:\/\/telecom.economictimes.indiatimes.com","name":"Telecom News"}},{"@type":"ListItem","position":2,"item":{"@id":"https:\/\/telecom.economictimes.indiatimes.com\/latest-news","name":"Latest Telecom News"}},{"@type":"ListItem","position":3,"item":{"@id":"https:\/\/telecom.economictimes.indiatimes.com\/news\/3g-4g","name":"3G\/4G"}},{"@type":"ListItem","position":4,"item":{"@id":"https:\/\/telecom.economictimes.indiatimes.com\/news\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence\/66325753","name":"Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence"}}]}</script><script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"NewsArticle","mainEntityOfPage":{"@type":"WebPage","@id":"https:\/\/telecom.economictimes.indiatimes.com\/news\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence\/66325753"},"headline":"Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence","datePublished":"2018-10-23T08:40:00+05:30","dateModified":"2018-10-23T11:38:00+05:30","articleBody":" NEW DELHI: The government has freed a set of spectrum in the 5 Ghz band from licensing for providing Wifi and partially 5G services by telecom companies. No permits would be required for the spectrum in the range of 5150-5250 megahertz band, 5250-5350 Mhz and 5725-5875 Mhz, according to an official notification. \u0022No licence shall be required under indoor and outdoor environment to establish, maintain, work, possess or deal in any wireless equipment for the purpose of low power wireless access systems, including radio local area networks operating in the frequency band 5150-5250 MHz; 5250-5350 MHz; 5470-5725 MHz; and 5725-5875 MHz,\u0022 the government notification said. The move is seen to push setting up of Wifi services in the country and facilitate development of 5G ecosystem. \u0022The frequency range 5.1-5.3 Gigahertz and 5.7-5.8 Ghz is used for wifi services all over the world. It is a highly appreciable move from government to de-licence these bands. The frequency range between 5.3-5.7 Ghz can be used for 5G services,\u0022 SN Gupta, secretary general, APT foundation of India under International Telecommunication Union told . The 5 Ghz spectrum frequency can be used for short range communications like for coverage within an apartment or shopping centres. The government under Bharat Net project is planning to roll out 1 crore wifi hotspots in the country in rural area. Besides, it is in discussion with telecom operators to roll out wifi in urban centres too. Freeing of spectrum 5 Ghz range will also facilitate indoor communications services and reduce load on telecom networks. Besides, the government is also planning to start field trials of 5G services to develop its ecosystem in the country. In the notification, the government has clarified the power of device or equipment that should be used for accessing the free spectrum. According to the notification devices that use wideband digital modulation techniques and provide a wide array of high data rate in mobile and fixed communications for individuals, businesses and institutions can be used in the de-licensed spectrum range. Gupta said that telecom companies can use the de-licensed spectrum range for free. Follow and connect with us on Twitter, Facebook, Linkedin","keywords":["TelecomNews","International Telecommunication Union","Bharat Net Project","Shopping Centres","5G Ecosystem","5GCongress","5 Ghz Band","3G\/4G"],"articleSection":"TelecomNews","url":"https:\/\/telecom.economictimes.indiatimes.com\/news\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence\/66325753","description":"Govt has freed a set of spectrum in the 5 Ghz band  for providing Wifi and partially 5G services by telcos.","author":[{"@type":"Thing","name":"ET Telecom","url":"https:\/\/telecom.economictimes.indiatimes.com"}],"publisher":{"@type":"NewsMediaOrganization","name":"PTI","logo":{"@type":"ImageObject","url":"https:\/\/st.etb2bimg.com\/Themes\/Release\/images\/responsive\/ettelecom-logo-amp.png","width":600,"height":60}},"image":[{"@type":"ImageObject","url":"https:\/\/etimg.etb2bimg.com\/thumb\/msid-66325753,width-1200,resizemode-4\/.jpg","width":1200,"height":900},{"@type":"ImageObject","url":"https:\/\/etimg.etb2bimg.com\/thumb\/msid-66325769,width-700,resizemode-4\/.jpg","width":700,"height":525}]}</script><div class="allschema wrapper" style=""><ul class="breadcrumbs" style="margin:0px;padding:0px"><li><a href="https://telecom.economictimes.indiatimes.com">Telecom News</a></li><li><a href="https://telecom.economictimes.indiatimes.com/latest-news">Latest Telecom News</a></li><li><a href="https://telecom.economictimes.indiatimes.com/news/3g-4g">3G/4G</a></li></ul></div></div><div class='group' id='group_0'><div class="container"><div class="row content-box" ><div class="col-md-8 col-sm-12 main-inner-content"><div id="news_hd_66325753" class=" clearfix " ><div class="post-body"><div class="post-wrapper post-header"><section><header class="page_hdr"><div><h1>Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence</h1><p class="summary">Govt has freed a set of spectrum in the 5 Ghz band  for providing Wifi and partially 5G services by telcos.</p><ul class="post-meta"><li><a href="https://telecom.economictimes.indiatimes.com/agency/87654375/PTI" target="_blank">PTI</a></li> <li class="date">Updated: October 23, 2018, 11:38 IST</li></ul></div></div></header></section></div></div><span class='jsinvoker' data-jsinvoker='var hideNDPHFollowPopup=getLocalStorage("hidendphfollowpopup");isUserAgentMobile()&&(hideNDPHFollowPopup&&1==hideNDPHFollowPopup||jQuery("#etb2b-module-ETB2BNewsDetailPageHead-follow.follow_popup").show());var hasPopupClass=jQuery("#etb2b-module-ETB2BNewsDetailPageHead-follow").hasClass("follow_popup");hasPopupClass===!0&&jQuery(".follow_popup .close").click(function(){jQuery(".follow_popup").hide(),setLocalStorage("hidendphfollowpopup",1,1)});'></span>
<div id="news_dtl_66325753" class="content-wrapper post-body clearfix article-body-full" page-title="Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence" data-href="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" data-msid="66325753" data-authors='[""]' data-category-name="3G/4G" data-category_id="13" data-date="2018-10-23"><div class="article-body"  itemprop="mainContentOfPage">        <div class="post-social-wdgt">
        <ul class="post-social-lst1 clearfix horizontal" style="clear:both;" ><li><a data-type="tw" data-shareurl='https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753'  data-title='Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence' data-description='' title="Twitter" aria-label="Share on Twitter" class="icon customshare"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
            <li><a data-type="fb" data-shareurl='https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753'  data-title='Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence' data-description='' title="Facebook" aria-label="Share on Facebook" class="icon customshare"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>

            <li><a data-type="lnkin" data-shareurl='https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753'  data-title='Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence' data-description='' title="Linkedin" aria-label="Share on Linkedin" class="icon customshare"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
            <li><a data-type="telegram" data-shareurl='https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753'  data-title='Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence' data-description='' title="Telegram" aria-label="Share on Telegram" class="icon customshare telegram"><i class="fa fa-telegram" aria-hidden="true"></i></a></li><li><a data-type="Whatsapp" data-shareurl='https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753'  data-title='Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence' data-description='' title="WhatsApp" aria-label="Share on Whatsapp" class="icon customshare watsapp"><i class="fa fa-whatsapp" aria-hidden="true"></i></a></li><li class="maito"><a href="mailto:?subject=Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&body=https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" target="_blank" aria-label="Share on Email" title="Share on Email"><i class="fa fa-envelope" aria-hidden="true"></i></a></li>
         <li class="changeFontSize"><a onclick="javascript:void(0); return false;" href="" class="increaseFont" title="Increase Font Size" aria-label="Change Font Size"><i class="fa fa-font" aria-hidden="true"></i><i class="fa fa-plus" aria-hidden="true"></i></a>
                <a href="" onclick="javascript:void(0); return false;" title="Decrease Font Size" class="decreaseFont" aria-label="Change Font Size"><i class="fa fa-font" aria-hidden="true"></i><i class="fa fa-minus" aria-hidden="true"></i></a>
            </li>  
            
            <li class="printnews"><a href="javascript:void(0);" onclick="javascript:window.print();" title="Print Article" aria-label="Print Article"><i class="fa fa-print" aria-hidden="true"></i></a></li></ul>        </div>    
        
    <section class="post-lhs"><div class="post-wrapper"><div class="post-text artcle-txt article-type-news"><div class="section1"><div class="Normal"><img class="unveil" style="float:left;margin-right:10px;width:350px;;margin-bottom:5px;" src="https://st.etb2bimg.com/Themes/Release/images/responsive/ettelecom-default.jpg" data-src="https://etimg.etb2bimg.com/photo/66325769.cms" captionrendered="1"  alt="Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence" /> NEW DELHI: The government has freed a set of spectrum in the <a href='https://telecom.economictimes.indiatimes.com/tag/5+ghz+band'>5 Ghz band</a> from licensing for providing Wifi and partially 5G services by telecom companies. No permits would be required for the spectrum in the range of 5150-5250 megahertz band, 5250-5350 Mhz and 5725-5875 Mhz, according to an official notification. <br /><br />"No licence shall be required under indoor and outdoor environment to establish, maintain, work, possess or deal in any wireless equipment for the purpose of low power wireless access systems, including radio local area networks operating in the frequency band 5150-5250 MHz; 5250-5350 MHz; 5470-5725 MHz; and 5725-5875 MHz," the government notification said. <br /><br />The move is seen to push setting up of Wifi services in the country and facilitate development of <a href='https://telecom.economictimes.indiatimes.com/tag/5g+ecosystem'>5G ecosystem</a>. <br /><br /><div data-bucket-limit=1 data-bucket-id=2 data-bucket-design=3 data-bucket-position=in_page class="in-page-promotions-buckets-featured featured_section_disabled  bucket-position-in_page" data-type="in-page-promotions" id="in-page-promotions_in_page_1_66325753" data-ftd-params="design=3&limit=1&entity_type=all&position=in_page&bucket_id=2&rendered_items=0&" data-ftd-type="in-page-promotions" data-ftd-callback="inPagePromoCallback"><div class="in-page-promotions-buckets  hide"></div></div>"The frequency range 5.1-5.3 Gigahertz and 5.7-5.8 Ghz is used for wifi services all over the world. It is a highly appreciable move from government to de-licence these bands. The frequency range between 5.3-5.7 Ghz can be used for 5G services," SN Gupta, secretary general, APT foundation of India under <a href='https://telecom.economictimes.indiatimes.com/tag/international+telecommunication+union'>International Telecommunication Union</a> told . <br /><br />The 5 Ghz spectrum frequency can be used for short range communications like for coverage within an apartment or <a href='https://telecom.economictimes.indiatimes.com/tag/shopping+centres'>shopping centres</a>. <br /><br />The government under <a href='https://telecom.economictimes.indiatimes.com/tag/bharat+net+project'>Bharat Net project</a> is planning to roll out 1 crore wifi hotspots in the country in rural area. <br /><br />Besides, it is in discussion with telecom operators to roll out wifi in urban centres too. <br /><br />Freeing of spectrum 5 Ghz range will also facilitate indoor communications services and reduce load on telecom networks. <br /><br />Besides, the government is also planning to start field trials of 5G services to develop its ecosystem in the country. <br /><br />In the notification, the government has clarified the power of device or equipment that should be used for accessing the free spectrum. <br /><br />According to the notification devices that use wideband digital modulation techniques and provide a wide array of high data rate in mobile and fixed communications for individuals, businesses and institutions can be used in the de-licensed spectrum range. <br /><br /><div data-bucket-limit=2 data-bucket-id=3 data-bucket-design=3 data-bucket-position=in_page class="in-page-promotions-buckets-featured featured_section_disabled  bucket-position-in_page" data-type="in-page-promotions" id="in-page-promotions_in_page_2_66325753" data-ftd-params="design=3&limit=2&entity_type=all&position=in_page&bucket_id=3&rendered_items=0&" data-ftd-type="in-page-promotions" data-ftd-callback="inPagePromoCallback"><div class="in-page-promotions-buckets  hide"></div></div>Gupta said that telecom companies can use the de-licensed spectrum range for free.<br /></div></div><br /><div style="font-weight:bold" class="site-follow-article-detail">Follow and connect with us on <a href="http://twitter.com/Ettelecom" class=" twitter" target="_blank"  rel="noreferrer nofollow" aria-label="Follow On Twitter">Twitter</a>, <a href="http://facebook.com/ettelecom" class=" fb" target="_blank"  rel="noreferrer nofollow" aria-label="Follow On Facebook">Facebook</a>, <a href="https://www.linkedin.com/showcase/et-telecom/" class="linkedin" target="_blank"  rel="noreferrer nofollow">Linkedin</a></div></div></div></section>
        <div class="design-slideshow-1">
            <div class="hdngBx">
                <h2 class="hdng1">Key takeaways from ETTelecom's 2nd edition of 5GCongress </h2>
            </div>
            <div class="section wrapper_style3 slideshow-section clearfix">
                <div class="flexslider flexsliderfull slideshowContainer" data-carousel='{"slideshow":"true","pausePlay": "false","pauseText":"","playText":"","startAt": "0","maxItems":"1"}'>
                    
                    <div class="custom-navigation">
                        <a href="#" aria-label="Previous" class="flex-prev"><i class="fa fa-angle-left" aria-hidden="true" alt="Previous"></i></a>
                        <a href="#" aria-label="Next" class="flex-next"><i class="fa fa-angle-right" aria-hidden="true"  alt="Next"></i></a>
                    </div>

                    <ul class="slides">
                                                    <li>
                                <div class="slide-holder" style="margin:0px;">
                                    <div class="slide-names" style="padding:0px;">
                                        <figure style="background-color:#000;">
                                        <img src="https://etimg.etb2bimg.com/photo/65993902.cms" data-src="https://etimg.etb2bimg.com/photo/65993902.cms">
                                        </figure>
                                    </div>
                                    <div class="slide-details"> 
                                        <span class="flex-slide-count">1 of 8</span>
                                        <div class="flex-slide-close">
                                            <span title="close" class="expend-block-closeBtn"></span>
                                        </div>                               
                                        <div class="description">
                                            <h5>The 5G Congress</h5>
                                            <p><p>The 5G Congress event organised by ET Telecom on September 19, 2018 was focused on the upcoming 5G technology; which is based on a high-speed and low latency data network. The event saw a few distinguished personalities of the telecom and IT sectors from across the globe. Some of the speakers were Aruna Sundararajan, RS Sharma, Emanuella Lecchi, Gopal Vittal, Balesh Sharma and Jim Cathey.</p></p>
                                        </div>
                                    </div>
                                </div>
                            </li>
                                                    <li>
                                <div class="slide-holder" style="margin:0px;">
                                    <div class="slide-names" style="padding:0px;">
                                        <figure style="background-color:#000;">
                                        <img src="https://etimg.etb2bimg.com/photo/66055608.cms" data-src="https://etimg.etb2bimg.com/photo/66055608.cms">
                                        </figure>
                                    </div>
                                    <div class="slide-details"> 
                                        <span class="flex-slide-count">2 of 8</span>
                                        <div class="flex-slide-close">
                                            <span title="close" class="expend-block-closeBtn"></span>
                                        </div>                               
                                        <div class="description">
                                            <h5>The 5G timeline</h5>
                                            <p><p>Head of India Market at Nokia Networks, Sanjay Malik said "India should see 5G rollouts by 2020 when the devices ecosystem for this ultra-fast wireless broadband technology is slated to mature". Aayush Bhatnagar, senior Vice President at Reliance Jio, said the company is waiting for 5G spectrum and would be coming up with a unique proposition' once airwaves are allocated.</p><p>Sector hotshots at the ET event said as many as 3.5-billion IoT devices are likely to be connected globally by 2023, which would ring in a huge opportunity for the 5G ecosystem to flourish.</p></p>
                                        </div>
                                    </div>
                                </div>
                            </li>
                                                    <li>
                                <div class="slide-holder" style="margin:0px;">
                                    <div class="slide-names" style="padding:0px;">
                                        <figure style="background-color:#000;">
                                        <img src="https://etimg.etb2bimg.com/photo/65994025.cms" data-src="https://etimg.etb2bimg.com/photo/65994025.cms">
                                        </figure>
                                    </div>
                                    <div class="slide-details"> 
                                        <span class="flex-slide-count">3 of 8</span>
                                        <div class="flex-slide-close">
                                            <span title="close" class="expend-block-closeBtn"></span>
                                        </div>                               
                                        <div class="description">
                                            <h5>Investment for 5G</h5>
                                            <p><p>In the panel discussion moderated by Rohan Dhamija, head (India & SA), Analysys Mason, the key point that emerged was tech stakeholders need to invest in the right technology at the right time to ensure economies of scale and greater return on investment.</p><p>Participating in the panel discussion on 'India's 5G Roadmap - A Reality' - moderated by Prashant Singhal, global telecom leader, EY - P Balaji also stressed on the need for sufficient right of way (RoW) and fiberisation so that the 5G bus is not missed.</p><p>The panel agreed on the need to develop a robust telecom infrastructure that provides higher bandwidth.</p></p>
                                        </div>
                                    </div>
                                </div>
                            </li>
                                                    <li>
                                <div class="slide-holder" style="margin:0px;">
                                    <div class="slide-names" style="padding:0px;">
                                        <figure style="background-color:#000;">
                                        <img src="https://etimg.etb2bimg.com/photo/65994090.cms" data-src="https://etimg.etb2bimg.com/photo/65994090.cms">
                                        </figure>
                                    </div>
                                    <div class="slide-details"> 
                                        <span class="flex-slide-count">4 of 8</span>
                                        <div class="flex-slide-close">
                                            <span title="close" class="expend-block-closeBtn"></span>
                                        </div>                               
                                        <div class="description">
                                            <h5>Telecom minister Manoj Sinha on 5G</h5>
                                            <p><p>The telecom minister Manoj Sinha pointed out the key challenges to resolve while heading to the much awaited 5G technology i.e. framing a relevant spectrum allocation policy, creating the right infrastructure and formulating rules around its sharing coupled with related issues around data privacy. He outlined "India cannot afford to miss the 5G bus and the government will shortly take a call on suggestions of a high-level forum, headed by Professor AJ Paulraj, to rapidly deploy 5G.' The telecom minister added, the 'economic impact' of 5G alone is expected to 'be over  Dollars 1 trillion by 2035'.</p></p>
                                        </div>
                                    </div>
                                </div>
                            </li>
                                                    <li>
                                <div class="slide-holder" style="margin:0px;">
                                    <div class="slide-names" style="padding:0px;">
                                        <figure style="background-color:#000;">
                                        <img src="https://etimg.etb2bimg.com/photo/65994057.cms" data-src="https://etimg.etb2bimg.com/photo/65994057.cms">
                                        </figure>
                                    </div>
                                    <div class="slide-details"> 
                                        <span class="flex-slide-count">5 of 8</span>
                                        <div class="flex-slide-close">
                                            <span title="close" class="expend-block-closeBtn"></span>
                                        </div>                               
                                        <div class="description">
                                            <h5>Trai chairman RS Sharma on 5G</h5>
                                            <p><p>Telecom regulator chairman RS Sharma focused on India's Regulatory Regime & 5G Technology in the event.'TRAI is evolving with technology. It would have been inconceivable to have consultation paper recommendations on ownership, privacy and security of data earlier," he said.</p><p>He emphasized that with the advent of 5G, domains which till now did not use ICT in a big way, will also be exposed to it. The chairman compared devices to faucets, "without these you cannot approach these pipes. These are necessary gatekeepers, therefore the behaviour of these elements are extremely important." </p></p>
                                        </div>
                                    </div>
                                </div>
                            </li>
                                                    <li>
                                <div class="slide-holder" style="margin:0px;">
                                    <div class="slide-names" style="padding:0px;">
                                        <figure style="background-color:#000;">
                                        <img src="https://etimg.etb2bimg.com/photo/65993963.cms" data-src="https://etimg.etb2bimg.com/photo/65993963.cms">
                                        </figure>
                                    </div>
                                    <div class="slide-details"> 
                                        <span class="flex-slide-count">6 of 8</span>
                                        <div class="flex-slide-close">
                                            <span title="close" class="expend-block-closeBtn"></span>
                                        </div>                               
                                        <div class="description">
                                            <h5>Telecom secretary Aruna Sundararajan on 5G</h5>
                                            <p><p>Aruna Sundararajan spoke on government efforts to drive 5G, when she says the government wants to bring 5G in the hands of ordinary people which can be used meaningfully and is leaving no stone unturned to reach the goal.</p><p>The telecom secretary remarked that "5G is not just another G but is a paradigm shift. The promise that it holds is the fabric of connectivity we have today to expand ten times."</p><p>She added that DoT had also started working with some very interesting start-ups in regard to having access to certain capabilities in 5G spectrum.</p></p>
                                        </div>
                                    </div>
                                </div>
                            </li>
                                                    <li>
                                <div class="slide-holder" style="margin:0px;">
                                    <div class="slide-names" style="padding:0px;">
                                        <figure style="background-color:#000;">
                                        <img src="https://etimg.etb2bimg.com/photo/65994132.cms" data-src="https://etimg.etb2bimg.com/photo/65994132.cms">
                                        </figure>
                                    </div>
                                    <div class="slide-details"> 
                                        <span class="flex-slide-count">7 of 8</span>
                                        <div class="flex-slide-close">
                                            <span title="close" class="expend-block-closeBtn"></span>
                                        </div>                               
                                        <div class="description">
                                            <h5>Balesh Sharma's thoughts on 5G strategy for Vodafone-Idea</h5>
                                            <p><p>Balesh Sharma, Vodafone Idea's chief executive officer emphasised on restoring the financial health of the sector. Balesh Sharma further adds "The government should further empower 5G high-level forum, and allocate E and V bands plus the fifth-generation or 5G technology will fulfill India's larger socio-economic aspirations and new job opportunities. The technology will create new-age employment".  India, according to him, would have a proportionate share which would be massive, and the newer technology would create enormous speeds and huge amount of capacity.</p></p>
                                        </div>
                                    </div>
                                </div>
                            </li>
                                                    <li>
                                <div class="slide-holder" style="margin:0px;">
                                    <div class="slide-names" style="padding:0px;">
                                        <figure style="background-color:#000;">
                                        <img src="https://etimg.etb2bimg.com/photo/65994116.cms" data-src="https://etimg.etb2bimg.com/photo/65994116.cms">
                                        </figure>
                                    </div>
                                    <div class="slide-details"> 
                                        <span class="flex-slide-count">8 of 8</span>
                                        <div class="flex-slide-close">
                                            <span title="close" class="expend-block-closeBtn"></span>
                                        </div>                               
                                        <div class="description">
                                            <h5>Gopal Vittal's take on telcos' roadmap for 5G</h5>
                                            <p><p>Gopal Vittal, Bharti Airtel's CEO suggested it was time for the government, the regulator and all stakeholders to look at bold leadership, set aside differences and work together. Vittal said that like roads, the government must declare optical fibre as a 'national asset' and make it mandatory for all to share the resource, since it would avoid wastage of resources, duplication of work and constant digging up of roads.</p><p>Vittal added 'A visionary public private partnership between the industry and the government and creation of an innovation ecosystem across industry' are two crucial components to make 5G technology adoption easy and accessible for the masses.</p></p>
                                        </div>
                                    </div>
                                </div>
                            </li>
                                            </ul>
                    <div class="description-container"></div>
                </div>
            </div>
        </div>
    <!-- slideshow expandable end -->
    <div class="post-tags clearfix styl2 "><div><a class="active" href="https://telecom.economictimes.indiatimes.com/news/3g-4g">3G/4G</a></div><div><a href="https://telecom.economictimes.indiatimes.com/tag/shopping+centres">Shopping centres</a></div><div><a href="https://telecom.economictimes.indiatimes.com/tag/international+telecommunication+union">International Telecommunication Union</a></div><div><a href="https://telecom.economictimes.indiatimes.com/tag/bharat+net+project">bharat net project</a></div><div><a href="https://telecom.economictimes.indiatimes.com/tag/5gcongress">5GCongress</a></div><div><a href="https://telecom.economictimes.indiatimes.com/tag/5g+ecosystem">5G ecosystem</a></div><div><a href="https://telecom.economictimes.indiatimes.com/tag/5+ghz+band">5 Ghz band</a></div></div>    </div>
    
<!-- ................ Set request data................... -->

<span 
    id="etb2b-news-detail-page" 
    class="etb2b-module-ETB2BNewsDetailPage"
    data-news-id="66325753" 
    data-news_link="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" 
    data-display_single_fullwidth=""
    data-render-ajax="N"
    data-breadcrum-available="Yes"
    data-breadcrum-category='13'
    data-breadcrum-sub-category='0'
    data-article-date='2018-10-23'
    data-user-agent='49.36.111.212Mozilla/5.0 (Windows NT 10.0; WOW64; rv:77.0) Gecko/20100101 Firefox/77.0'
    data-portal-user-available='No'
    data-news-title='Government+frees+spectrum+for+Wi-Fi%2C+5G+services+in+5+Ghz+band+from+licence'
    data-disqus-url=''
    data-disqus-fb-url=''
    data-share-message='Government+frees+spectrum+for+Wi-Fi%2C+5G+services+in+5+Ghz+band+from+licence'
    data-share-pic='https://etimg.etb2bimg.com/thumb/msid-66325753,imgsize-506500,width-800,height-434,overlay-ettelecom/government-frees-spectrum-for-wi-fi-5g-services-in-5-ghz-band-from-licence.jpg'
    data-share-description='Govt+has+freed+a+set+of+spectrum+in+the+5+Ghz+band++for+providing+Wifi+and+partially+5G+services+by+telcos.'
    data-slide-photo-id=''
    data-slide-detail='{&quot;slidename&quot;:&quot;Key takeaways from ETTelecom&#039;s 2nd edition of 5GCongress&quot;,&quot;caption&quot;:&quot;&quot;,&quot;msid&quot;:&quot;65993902&quot;}'
    data-slideshow-detail='{&quot;_65993902&quot;:{&quot;msid&quot;:&quot;65993902&quot;,&quot;secsname&quot;:&quot;The 5G Congress&quot;,&quot;ssname&quot;:&quot;The 5G Congress&quot;,&quot;artdate&quot;:1538379175,&quot;artag&quot;:&quot;&quot;,&quot;overridelink&quot;:&quot;&quot;,&quot;windowtype&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&lt;p&gt;The 5G Congress event organised by ET Telecom on September 19, 2018 was focused on the upcoming 5G technology; which is based on a high-speed and low latency data network. The event saw a few distinguished personalities of the telecom and IT sectors from across the globe. Some of the speakers were Aruna Sundararajan, RS Sharma, Emanuella Lecchi, Gopal Vittal, Balesh Sharma and Jim Cathey.&lt;\/p&gt;&quot;,&quot;seolocation&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/the-5g-congress&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/the-5g-congress&quot;,&quot;mediaType&quot;:&quot;1&quot;},&quot;_66055608&quot;:{&quot;msid&quot;:&quot;66055608&quot;,&quot;secsname&quot;:&quot;The 5G timeline&quot;,&quot;ssname&quot;:&quot;The 5G timeline&quot;,&quot;artdate&quot;:1538379175,&quot;artag&quot;:&quot;&quot;,&quot;overridelink&quot;:&quot;&quot;,&quot;windowtype&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&lt;p&gt;Head of India Market at Nokia Networks, Sanjay Malik said \&quot;India should see 5G rollouts by 2020 when the devices ecosystem for this ultra-fast wireless broadband technology is slated to mature\&quot;. Aayush Bhatnagar, senior Vice President at Reliance Jio, said the company is waiting for 5G spectrum and would be coming up with a unique proposition\u201d once airwaves are allocated.&lt;\/p&gt;&lt;p&gt;Sector hotshots at the ET event said as many as 3.5-billion IoT devices are likely to be connected globally by 2023, which would ring in a huge opportunity for the 5G ecosystem to flourish.&lt;\/p&gt;&quot;,&quot;seolocation&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/the-5g-timeline&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/the-5g-timeline&quot;,&quot;mediaType&quot;:&quot;1&quot;},&quot;_65994025&quot;:{&quot;msid&quot;:&quot;65994025&quot;,&quot;secsname&quot;:&quot;Investment for 5G&quot;,&quot;ssname&quot;:&quot;Investment for 5G&quot;,&quot;artdate&quot;:1538379175,&quot;artag&quot;:&quot;&quot;,&quot;overridelink&quot;:&quot;&quot;,&quot;windowtype&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&lt;p&gt;In the panel discussion moderated by Rohan Dhamija, head (India &amp; SA), Analysys Mason, the key point that emerged was tech stakeholders need to invest in the right technology at the right time to ensure economies of scale and greater return on investment.&lt;\/p&gt;&lt;p&gt;Participating in the panel discussion on \u2018India\u2019s 5G Roadmap - A Reality\u2019 \u2013 moderated by Prashant Singhal, global telecom leader, EY \u2013 P Balaji also stressed on the need for sufficient right of way (RoW) and fiberisation so that the 5G bus is not missed.&lt;\/p&gt;&lt;p&gt;The panel agreed on the need to develop a robust telecom infrastructure that provides higher bandwidth.&lt;\/p&gt;&quot;,&quot;seolocation&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/investment-for-5g&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/investment-for-5g&quot;,&quot;mediaType&quot;:&quot;1&quot;},&quot;_65994090&quot;:{&quot;msid&quot;:&quot;65994090&quot;,&quot;secsname&quot;:&quot;Telecom minister Manoj Sinha on 5G&quot;,&quot;ssname&quot;:&quot;Telecom minister Manoj Sinha on 5G&quot;,&quot;artdate&quot;:1538379175,&quot;artag&quot;:&quot;&quot;,&quot;overridelink&quot;:&quot;&quot;,&quot;windowtype&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&lt;p&gt;The telecom minister Manoj Sinha pointed out the key challenges to resolve while heading to the much awaited 5G technology i.e. framing a relevant spectrum allocation policy, creating the right infrastructure and formulating rules around its sharing coupled with related issues around data privacy. He outlined \&quot;India cannot afford to miss the 5G bus and the government will shortly take a call on suggestions of a high-level forum, headed by Professor AJ Paulraj, to rapidly deploy 5G.\u201d The telecom minister added, the \u201ceconomic impact\u201d of 5G alone is expected to \u201cbe over  Dollars 1 trillion by 2035\u201d.&lt;\/p&gt;&quot;,&quot;seolocation&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/manoj-sinha&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/manoj-sinha&quot;,&quot;mediaType&quot;:&quot;1&quot;},&quot;_65994057&quot;:{&quot;msid&quot;:&quot;65994057&quot;,&quot;secsname&quot;:&quot;Trai chairman RS Sharma on 5G&quot;,&quot;ssname&quot;:&quot;Trai chairman RS Sharma on 5G&quot;,&quot;artdate&quot;:1538379175,&quot;artag&quot;:&quot;&quot;,&quot;overridelink&quot;:&quot;&quot;,&quot;windowtype&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&lt;p&gt;Telecom regulator chairman RS Sharma focused on India\u2019s Regulatory Regime &amp; 5G Technology in the event.\u201cTRAI is evolving with technology. It would have been inconceivable to have consultation paper recommendations on ownership, privacy and security of data earlier,\&quot; he said.&lt;\/p&gt;&lt;p&gt;He emphasized that with the advent of 5G, domains which till now did not use ICT in a big way, will also be exposed to it. The chairman compared devices to faucets, \&quot;without these you cannot approach these pipes. These are necessary gatekeepers, therefore the behaviour of these elements are extremely important.\&quot; &lt;\/p&gt;&quot;,&quot;seolocation&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/rs-sharma-speech&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/rs-sharma-speech&quot;,&quot;mediaType&quot;:&quot;1&quot;},&quot;_65993963&quot;:{&quot;msid&quot;:&quot;65993963&quot;,&quot;secsname&quot;:&quot;Telecom secretary Aruna Sundararajan on 5G&quot;,&quot;ssname&quot;:&quot;Telecom secretary Aruna Sundararajan on 5G&quot;,&quot;artdate&quot;:1538379175,&quot;artag&quot;:&quot;&quot;,&quot;overridelink&quot;:&quot;&quot;,&quot;windowtype&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&lt;p&gt;Aruna Sundararajan spoke on government efforts to drive 5G, when she says the government wants to bring 5G in the hands of ordinary people which can be used meaningfully and is leaving no stone unturned to reach the goal.&lt;\/p&gt;&lt;p&gt;The telecom secretary remarked that \&quot;5G is not just another G but is a paradigm shift. The promise that it holds is the fabric of connectivity we have today to expand ten times.\&quot;&lt;\/p&gt;&lt;p&gt;She added that DoT had also started working with some very interesting start-ups in regard to having access to certain capabilities in 5G spectrum.&lt;\/p&gt;&quot;,&quot;seolocation&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/aruna-sundararajans-speech&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/aruna-sundararajans-speech&quot;,&quot;mediaType&quot;:&quot;1&quot;},&quot;_65994132&quot;:{&quot;msid&quot;:&quot;65994132&quot;,&quot;secsname&quot;:&quot;Balesh Sharma&#039;s thoughts on 5G strategy for Vodafone-Idea&quot;,&quot;ssname&quot;:&quot;Balesh Sharma&#039;s thoughts on 5G strategy for Vodafone-Idea&quot;,&quot;artdate&quot;:1538379175,&quot;artag&quot;:&quot;&quot;,&quot;overridelink&quot;:&quot;&quot;,&quot;windowtype&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&lt;p&gt;Balesh Sharma, Vodafone Idea&#039;s chief executive officer emphasised on restoring the financial health of the sector. Balesh Sharma further adds \&quot;The government should further empower 5G high-level forum, and allocate E and V bands plus the fifth-generation or 5G technology will fulfill India&#039;s larger socio-economic aspirations and new job opportunities. The technology will create new-age employment\&quot;.  India, according to him, would have a proportionate share which would be massive, and the newer technology would create enormous speeds and huge amount of capacity.&lt;\/p&gt;&quot;,&quot;seolocation&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/balesh-sharmas-thoughts-on-5g-strategy-for-vodafone-idea&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/balesh-sharmas-thoughts-on-5g-strategy-for-vodafone-idea&quot;,&quot;mediaType&quot;:&quot;1&quot;},&quot;_65994116&quot;:{&quot;msid&quot;:&quot;65994116&quot;,&quot;secsname&quot;:&quot;Gopal Vittal&#039;s take on telcos&#039; roadmap for 5G&quot;,&quot;ssname&quot;:&quot;Gopal Vittal&#039;s take on telcos&#039; roadmap for 5G&quot;,&quot;artdate&quot;:1538379175,&quot;artag&quot;:&quot;&quot;,&quot;overridelink&quot;:&quot;&quot;,&quot;windowtype&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&lt;p&gt;Gopal Vittal, Bharti Airtel&#039;s CEO suggested it was time for the government, the regulator and all stakeholders to look at bold leadership, set aside differences and work together. Vittal said that like roads, the government must declare optical fibre as a \u201cnational asset\u201d and make it mandatory for all to share the resource, since it would avoid wastage of resources, duplication of work and constant digging up of roads.&lt;\/p&gt;&lt;p&gt;Vittal added \u201cA visionary public private partnership between the industry and the government and creation of an innovation ecosystem across industry\u201d are two crucial components to make 5G technology adoption easy and accessible for the masses.&lt;\/p&gt;&quot;,&quot;seolocation&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/gopal-vittals-take-on-telcos-roadmap-for-5g&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/gopal-vittals-take-on-telcos-roadmap-for-5g&quot;,&quot;mediaType&quot;:&quot;1&quot;}}'
    data-slide-image-dir='https://etimg.etb2bimg.com/photo/'    
    data-slide-paginate-news='null'
    data-has-slideshow="Y"
    data-device-type='desktop'
    data-display-full-width=''
    data-rel-section-id='49830939'
    data-category-name='TelecomNews'
    data-news='{&quot;msid&quot;:&quot;66325753&quot;,&quot;article_status&quot;:&quot;ACTIVE&quot;,&quot;article_code&quot;:0,&quot;hover_link&quot;:&quot;&quot;,&quot;title&quot;:&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&quot;,&quot;titleseo&quot;:&quot;government-frees-spectrum-for-wi-fi-5g-services-in-5-ghz-band-from-licence&quot;,&quot;seolocation&quot;:&quot;telecomnews\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence&quot;,&quot;seolocationalt&quot;:&quot;telecomnews\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence&quot;,&quot;seometatitle&quot;:&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&quot;,&quot;trueseo&quot;:&quot;&quot;,&quot;artag&quot;:&quot;PTI&quot;,&quot;artagid&quot;:&quot;87654375&quot;,&quot;artau&quot;:&quot;&quot;,&quot;artauid&quot;:&quot;&quot;,&quot;authors&quot;:[],&quot;striptease&quot;:&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&quot;,&quot;stripteaseseo&quot;:&quot;government-frees-spectrum-for-wi-fi-5g-services-in-5-ghz-band-from-licence&quot;,&quot;artdate&quot;:&quot;2018-10-23 08:40:00&quot;,&quot;lastupd&quot;:&quot;2018-10-23 11:38:00&quot;,&quot;artsyn&quot;:&quot;Govt has freed a set of spectrum in the 5 Ghz band  for providing Wifi and partially 5G services by telcos.&quot;,&quot;url_seo&quot;:&quot;government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence&quot;,&quot;images&quot;:[{&quot;msid&quot;:&quot;66325769&quot;,&quot;msname&quot;:&quot;phone-mobile-online-dating_thinkstock&quot;,&quot;msnameseo&quot;:&quot;phone-mobile-online-dating_thinkstock&quot;,&quot;mediatype&quot;:&quot;1&quot;,&quot;artdate&quot;:&quot;2018-05-01 15:32:00.0&quot;,&quot;caption&quot;:&quot;&quot;}],&quot;embed&quot;:{&quot;images&quot;:{&quot;66325769&quot;:{&quot;msid&quot;:&quot;66325769&quot;,&quot;msname&quot;:&quot;phone-mobile-online-dating_thinkstock&quot;,&quot;msnameseo&quot;:&quot;phone-mobile-online-dating_thinkstock&quot;,&quot;mediatype&quot;:&quot;1&quot;,&quot;artdate&quot;:&quot;2018-05-01 15:32:00.0&quot;,&quot;caption&quot;:&quot;&quot;}},&quot;articlemeta&quot;:{&quot;title&quot;:&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&quot;,&quot;url_seo&quot;:&quot;government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence&quot;,&quot;msid&quot;:&quot;66325753&quot;}},&quot;thumb&quot;:&quot;66325753&quot;,&quot;thumbsize&quot;:&quot;506500&quot;,&quot;secinfo&quot;:{&quot;sectionid&quot;:&quot;49830939&quot;,&quot;sectionname&quot;:&quot;TelecomNews&quot;,&quot;seolocation&quot;:&quot;telecomnews&quot;,&quot;seolocationalt&quot;:&quot;telecomnews&quot;},&quot;relslideshow&quot;:{&quot;slideid&quot;:&quot;66322223&quot;,&quot;slidename&quot;:&quot;hi&quot;,&quot;seolocation&quot;:&quot;hi&quot;,&quot;imgid&quot;:&quot;66322223&quot;,&quot;caption&quot;:&quot;&quot;,&quot;title&quot;:&quot;hi&quot;,&quot;titleseo&quot;:&quot;hi&quot;,&quot;slideseolocationalt&quot;:&quot;hi&quot;},&quot;slideshows&quot;:[{&quot;msid&quot;:&quot;65993901&quot;,&quot;mstype&quot;:0,&quot;denmarkslideshow&quot;:1,&quot;strimg&quot;:&quot;&quot;,&quot;thumbid&quot;:&quot;65993902&quot;,&quot;secname&quot;:&quot;Key takeaways from ETTelecom&#039;s 2nd edition of 5GCongress&quot;,&quot;secnameseo&quot;:&quot;key-takeaways-from-ettelecom-s-2nd-edition-of-5gcongress&quot;,&quot;msname&quot;:&quot;The 5G Congress&quot;,&quot;artdate&quot;:1538130311,&quot;caption&quot;:&quot;&quot;,&quot;msnameseo&quot;:&quot;the-5g-congress&quot;,&quot;secmsname&quot;:&quot;Key takeaways from ETTelecom&#039;s 2nd edition of 5GCongress&quot;,&quot;secmsnameseo&quot;:&quot;key-takeaways-from-ettelecom-s-2nd-edition-of-5gcongress&quot;,&quot;seolocationalt&quot;:&quot;key-takeaways-from-ettelecoms-2nd-edition-of-5gcongress\/the-5g-congress&quot;}],&quot;associated&quot;:{&quot;image&quot;:{&quot;66322223&quot;:{&quot;msid&quot;:&quot;66322223&quot;,&quot;imgname&quot;:&quot;hi&quot;,&quot;msnameseo&quot;:&quot;hi&quot;,&quot;caption&quot;:&quot;&quot;}},&quot;articles&quot;:{&quot;66325753&quot;:{&quot;msid&quot;:&quot;66325753&quot;,&quot;stname&quot;:&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&quot;,&quot;artsyn&quot;:&quot;Govt has freed a set of spectrum in the 5 Ghz band for providing Wifi and partially 5G services by telcos.&quot;,&quot;seolocation&quot;:&quot;telecomnews\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence&quot;,&quot;seolocationalt&quot;:&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&quot;,&quot;url_seo&quot;:&quot;government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence&quot;}}},&quot;filters&quot;:[],&quot;url&quot;:&quot;https:\/\/telecom.economictimes.indiatimes.com\/news\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence\/66325753&quot;,&quot;content&quot;:&quot;&lt;div class=\&quot;section1\&quot;&gt;&lt;div class=\&quot;Normal\&quot;&gt;&lt;img class=\&quot;unveil\&quot; style=\&quot;float:left;margin-right:10px;width:350px;;margin-bottom:5px;\&quot; src=\&quot;https:\/\/st.etb2bimg.com\/Themes\/Release\/images\/responsive\/ettelecom-default.jpg\&quot; data-src=\&quot;https:\/\/etimg.etb2bimg.com\/photo\/66325769.cms\&quot; captionrendered=\&quot;1\&quot;  alt=\&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence\&quot; \/&gt; NEW DELHI: The government has freed a set of spectrum in the &lt;a href=&#039;https:\/\/telecom.economictimes.indiatimes.com\/tag\/5+ghz+band&#039;&gt;5 Ghz band&lt;\/a&gt; from licensing for providing Wifi and partially 5G services by telecom companies. No permits would be required for the spectrum in the range of 5150-5250 megahertz band, 5250-5350 Mhz and 5725-5875 Mhz, according to an official notification. &lt;br \/&gt;&lt;br \/&gt;\&quot;No licence shall be required under indoor and outdoor environment to establish, maintain, work, possess or deal in any wireless equipment for the purpose of low power wireless access systems, including radio local area networks operating in the frequency band 5150-5250 MHz; 5250-5350 MHz; 5470-5725 MHz; and 5725-5875 MHz,\&quot; the government notification said. &lt;br \/&gt;&lt;br \/&gt;The move is seen to push setting up of Wifi services in the country and facilitate development of &lt;a href=&#039;https:\/\/telecom.economictimes.indiatimes.com\/tag\/5g+ecosystem&#039;&gt;5G ecosystem&lt;\/a&gt;. &lt;br \/&gt;&lt;br \/&gt;&lt;div data-bucket-limit=1 data-bucket-id=2 data-bucket-design=3 data-bucket-position=in_page class=\&quot;in-page-promotions-buckets-featured featured_section_disabled  bucket-position-in_page\&quot; data-type=\&quot;in-page-promotions\&quot; id=\&quot;in-page-promotions_in_page_1_66325753\&quot; data-ftd-params=\&quot;design=3&amp;limit=1&amp;entity_type=all&amp;position=in_page&amp;bucket_id=2&amp;rendered_items=0&amp;\&quot; data-ftd-type=\&quot;in-page-promotions\&quot; data-ftd-callback=\&quot;inPagePromoCallback\&quot;&gt;&lt;div class=\&quot;in-page-promotions-buckets  hide\&quot;&gt;&lt;\/div&gt;&lt;\/div&gt;\&quot;The frequency range 5.1-5.3 Gigahertz and 5.7-5.8 Ghz is used for wifi services all over the world. It is a highly appreciable move from government to de-licence these bands. The frequency range between 5.3-5.7 Ghz can be used for 5G services,\&quot; SN Gupta, secretary general, APT foundation of India under &lt;a href=&#039;https:\/\/telecom.economictimes.indiatimes.com\/tag\/international+telecommunication+union&#039;&gt;International Telecommunication Union&lt;\/a&gt; told . &lt;br \/&gt;&lt;br \/&gt;The 5 Ghz spectrum frequency can be used for short range communications like for coverage within an apartment or &lt;a href=&#039;https:\/\/telecom.economictimes.indiatimes.com\/tag\/shopping+centres&#039;&gt;shopping centres&lt;\/a&gt;. &lt;br \/&gt;&lt;br \/&gt;The government under &lt;a href=&#039;https:\/\/telecom.economictimes.indiatimes.com\/tag\/bharat+net+project&#039;&gt;Bharat Net project&lt;\/a&gt; is planning to roll out 1 crore wifi hotspots in the country in rural area. &lt;br \/&gt;&lt;br \/&gt;Besides, it is in discussion with telecom operators to roll out wifi in urban centres too. &lt;br \/&gt;&lt;br \/&gt;Freeing of spectrum 5 Ghz range will also facilitate indoor communications services and reduce load on telecom networks. &lt;br \/&gt;&lt;br \/&gt;Besides, the government is also planning to start field trials of 5G services to develop its ecosystem in the country. &lt;br \/&gt;&lt;br \/&gt;In the notification, the government has clarified the power of device or equipment that should be used for accessing the free spectrum. &lt;br \/&gt;&lt;br \/&gt;According to the notification devices that use wideband digital modulation techniques and provide a wide array of high data rate in mobile and fixed communications for individuals, businesses and institutions can be used in the de-licensed spectrum range. &lt;br \/&gt;&lt;br \/&gt;&lt;div data-bucket-limit=2 data-bucket-id=3 data-bucket-design=3 data-bucket-position=in_page class=\&quot;in-page-promotions-buckets-featured featured_section_disabled  bucket-position-in_page\&quot; data-type=\&quot;in-page-promotions\&quot; id=\&quot;in-page-promotions_in_page_2_66325753\&quot; data-ftd-params=\&quot;design=3&amp;limit=2&amp;entity_type=all&amp;position=in_page&amp;bucket_id=3&amp;rendered_items=0&amp;\&quot; data-ftd-type=\&quot;in-page-promotions\&quot; data-ftd-callback=\&quot;inPagePromoCallback\&quot;&gt;&lt;div class=\&quot;in-page-promotions-buckets  hide\&quot;&gt;&lt;\/div&gt;&lt;\/div&gt;Gupta said that telecom companies can use the de-licensed spectrum range for free.&lt;br \/&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;br \/&gt;&lt;div style=\&quot;font-weight:bold\&quot; class=\&quot;site-follow-article-detail\&quot;&gt;Follow and connect with us on &lt;a href=\&quot;http:\/\/twitter.com\/Ettelecom\&quot; class=\&quot; twitter\&quot; target=\&quot;_blank\&quot;  rel=\&quot;noreferrer nofollow\&quot; aria-label=\&quot;Follow On Twitter\&quot;&gt;Twitter&lt;\/a&gt;, &lt;a href=\&quot;http:\/\/facebook.com\/ettelecom\&quot; class=\&quot; fb\&quot; target=\&quot;_blank\&quot;  rel=\&quot;noreferrer nofollow\&quot; aria-label=\&quot;Follow On Facebook\&quot;&gt;Facebook&lt;\/a&gt;, &lt;a href=\&quot;https:\/\/www.linkedin.com\/showcase\/et-telecom\/\&quot; class=\&quot;linkedin\&quot; target=\&quot;_blank\&quot;  rel=\&quot;noreferrer nofollow\&quot;&gt;Linkedin&lt;\/a&gt;&lt;\/div&gt;&quot;,&quot;NumberOfSentences&quot;:{&quot;minfo&quot;:&quot;15.0&quot;,&quot;minfoseo&quot;:&quot;15-0&quot;},&quot;AutomatedReadabilityIndex&quot;:{&quot;minfo&quot;:&quot;14.0&quot;,&quot;minfoseo&quot;:&quot;14-0&quot;},&quot;LastPublishMilliTime&quot;:{&quot;minfo&quot;:&quot;1540274928017&quot;,&quot;minfoseo&quot;:&quot;1540274928017&quot;},&quot;ReadabilityGradeLevel&quot;:{&quot;minfo&quot;:&quot;College&quot;,&quot;minfoseo&quot;:&quot;college&quot;},&quot;HashCode&quot;:{&quot;minfo&quot;:&quot;-840454489&quot;,&quot;minfoseo&quot;:&quot;-840454489&quot;},&quot;latestnewsflag&quot;:{&quot;minfo&quot;:&quot;1.0&quot;,&quot;minfoseo&quot;:&quot;1-0&quot;},&quot;OriginalImageHeightPx&quot;:{&quot;minfo&quot;:&quot;900.0&quot;,&quot;minfoseo&quot;:&quot;900-0&quot;},&quot;OriginalImageWidthPx&quot;:{&quot;minfo&quot;:&quot;1200.0&quot;,&quot;minfoseo&quot;:&quot;1200-0&quot;},&quot;NumberOfCharacters&quot;:{&quot;minfo&quot;:&quot;2211.0&quot;,&quot;minfoseo&quot;:&quot;2211-0&quot;},&quot;NumberOfWords&quot;:{&quot;minfo&quot;:&quot;349.0&quot;,&quot;minfoseo&quot;:&quot;349-0&quot;},&quot;key&quot;:[{&quot;keyid&quot;:&quot;1245756&quot;,&quot;value&quot;:&quot;Shopping centres&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;Shopping-centres&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;112578&quot;,&quot;value&quot;:&quot;International Telecommunication Union&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;International-Telecommunication-Union&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;3732643&quot;,&quot;value&quot;:&quot;bharat net project&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;bharat-net-project&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;5902789&quot;,&quot;value&quot;:&quot;5GCongress&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;5GCongress&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;6978662&quot;,&quot;value&quot;:&quot;5G ecosystem&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;5G-ecosystem&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;6978661&quot;,&quot;value&quot;:&quot;5 Ghz band&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;5-Ghz-band&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;}],&quot;similarlytagged&quot;:[{&quot;msid&quot;:&quot;66325753&quot;,&quot;stname&quot;:&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&quot;,&quot;artsyn&quot;:&quot;Govt has freed a set of spectrum in the 5 Ghz band for providing Wifi and partially 5G services by telcos.&quot;,&quot;seolocation&quot;:&quot;telecomnews\/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence&quot;,&quot;seolocationalt&quot;:&quot;Government frees spectrum for Wi-Fi, 5G services in 5 Ghz band from licence&quot;,&quot;url_seo&quot;:&quot;government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence&quot;}],&quot;storytags&quot;:{&quot;categoryTag&quot;:{&quot;sectionid&quot;:&quot;49830939&quot;,&quot;sectionname&quot;:&quot;TelecomNews&quot;,&quot;seolocation&quot;:&quot;telecomnews&quot;,&quot;seolocationalt&quot;:&quot;telecomnews&quot;},&quot;otherTags&quot;:[{&quot;keyid&quot;:&quot;1245756&quot;,&quot;value&quot;:&quot;Shopping centres&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;Shopping-centres&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;112578&quot;,&quot;value&quot;:&quot;International Telecommunication Union&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;International-Telecommunication-Union&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;3732643&quot;,&quot;value&quot;:&quot;bharat net project&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;bharat-net-project&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;5902789&quot;,&quot;value&quot;:&quot;5GCongress&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;5GCongress&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;6978662&quot;,&quot;value&quot;:&quot;5G ecosystem&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;5G-ecosystem&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;6978661&quot;,&quot;value&quot;:&quot;5 Ghz band&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;5-Ghz-band&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;},{&quot;keyid&quot;:&quot;3140802&quot;,&quot;value&quot;:&quot;3G\/4G&quot;,&quot;smid&quot;:&quot;0&quot;,&quot;keynameseo&quot;:&quot;(3G\/4G)&quot;,&quot;keytype&quot;:&quot;&quot;,&quot;keycount&quot;:&quot;totalcount&quot;,&quot;weightage&quot;:&quot;20&quot;}],&quot;filterTags&quot;:[]},&quot;formattedTags&quot;:{&quot;companyTags&quot;:[],&quot;otherTags&quot;:[{&quot;name&quot;:&quot;International Telecommunication Union&quot;},{&quot;name&quot;:&quot;bharat net project&quot;},{&quot;name&quot;:&quot;Shopping centres&quot;},{&quot;name&quot;:&quot;5G ecosystem&quot;},{&quot;name&quot;:&quot;5GCongress&quot;},{&quot;name&quot;:&quot;5 Ghz band&quot;},{&quot;name&quot;:&quot;3G\/4G&quot;}],&quot;newsCategoryTags&quot;:[{&quot;name&quot;:&quot;TelecomNews&quot;,&quot;seolocation&quot;:&quot;telecomnews&quot;}],&quot;breadcrumbTags&quot;:[&quot;Shopping centres&quot;,&quot;International Telecommunication Union&quot;,&quot;bharat net project&quot;,&quot;5GCongress&quot;,&quot;5G ecosystem&quot;,&quot;5 Ghz band&quot;,&quot;3G\/4G&quot;],&quot;filterTags&quot;:[]},&quot;breadcrumbTags&quot;:[&quot;Shopping centres&quot;,&quot;International Telecommunication Union&quot;,&quot;bharat net project&quot;,&quot;5GCongress&quot;,&quot;5G ecosystem&quot;,&quot;5 Ghz band&quot;,&quot;3G\/4G&quot;],&quot;Alttitle&quot;:{&quot;minfo&quot;:&quot;&quot;}}'
    data-news-images='[{&quot;msid&quot;:&quot;66325769&quot;,&quot;msname&quot;:&quot;phone-mobile-online-dating_thinkstock&quot;,&quot;msnameseo&quot;:&quot;phone-mobile-online-dating_thinkstock&quot;,&quot;mediatype&quot;:&quot;1&quot;,&quot;artdate&quot;:&quot;2018-05-01 15:32:00.0&quot;,&quot;caption&quot;:&quot;&quot;}]'
    data-newsletter-by='0'
    data-newsletter-date='a'
    data-hasbottomcarousel=''
    data-alldetailsopen='0'
    data-multipleanalyticshit=''
    data-deeplink='https://ettelecom.app.link? Dollars deeplink_path='    
    data-socialshareformat='default' >    
</span>

<div id="fb-root"></div><div class="fb-comments-disabled" data-href="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" data-width="100%" data-height="100%" data-numposts="5"></div></div><script type="text/javascript">
    window. ajurl = 'https://telecom.economictimes.indiatimes.com/ajax_files/etb2b_get_more_on_scroll.php?action=get_more_news&cont_id=66325753&sec_id=49830939&fw=';
    executeOnReady(function(){
        Dollars ('.article-body-full').closest('.container').addClass('main-story');
        var linl =  Dollars ("link[rel=b2b_canonical]").attr('href');
        Dollars ('.article-body-full').closest('.container').attr('data-href',linl);

       window. videoid =  Dollars ('.flexi-audio').attr('data-videoid');
       var msid =  Dollars ('.flexi-audio').attr('data-msid');
       window. posterUrl = CMS_IMG_URL+'/thumb/'+msid+'.cms?width=600&height=400';
       if( Dollars ('.flexi-audio').attr('data-mediatype') == 24){
            Dollars ('.flexi-audio').html('<div id="outerPlayer" class="slikecontainer"><div id="playerContainer" class=""></div></div>');
       }
       // var article_embeds =  Dollars ('.article-embeds').eq(0).clone().detach();
       //  Dollars ('.Normal').append(article_embeds);
       //  Dollars ('.Normal .article-embeds').removeClass('hide');
    });    
</script>
<!-- <div id="disqus_thread"
 class="etb2b-module-ETB2BNewsDisqusModule" 
 data-shortname="" 
 data-identifier="disqus_thread_66325753" 
 data-url="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753"
 data-file="news" 
 data-environment="1"  
 style="display:none;">
</div> -->
<!-- <div id="fb-root"></div>
<div class="fb-comments" data-href="https://telecom.economictimes.indiatimes.com/news/government-frees-spectrum-for-wifi-5g-services-in-5-ghz-band-from-licence/66325753" data-width="900px" data-numposts="5"></div> -->
<!-- <script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v4.0"></script> -->
<script>
 executeOnReady(function(){
  var href =  Dollars ("link[rel=b2b_canonical]").attr('href');
   Dollars ('.fb-comments').attr('data-href',href);
 })
b2bOnReadyFunctions.push(function(){
 if(!isGDPRNation())
 {
  //  Dollars (".disqus_thread").removeClass('hideit');
  //  Dollars .getScript( 'https://st.etb2bimg.com/Themes/Release/javascript/etb2b_nws_dsqs_mdl.js?mod=1631105859', function() {});
 }
});
</script>
<style type="text/css">
 .fb-comments.fb_iframe_widget{height: auto!important;}
 .fb_iframe_widget_fluid_desktop iframe{min-width: 100%!important;}
</style><div class="rndr_ajx hide" data-mod-p="news_id"  data-news_id="66325753" data-mod-name="ETB2BMostReadedRelatedArticle" data-mod-pos="middle" id="modbx_4"></div><span id="etb2b-module-ETB2BNewsDetailPageCTN" class="ETB2BNewsDetailPageCTN"></span>
<div onmouseover = "javascript:document.getElementById('clmb_cmn_logo1').src='https://static.clmbtech.com/ad/commons/images/colombia_red_small.png';" onmouseout = "javascript:document.getElementById('clmb_cmn_logo1').src='//static.clmbtech.com/ad/commons/images/colombia-icon.png';" class="related-article clearfix" style="margin:10px 0 0 0;"><div class="bottom-strip_2"><p style="margin:5px 0 0;color:#888;font-size:10px;display:none;" class="spnsr clmb_sp_stmp">Recommended by Colombia<img id="clmb_cmn_logo1" class="flr" id="colombialogohd1" src="//static.clmbtech.com/ad/commons/images/colombia-icon.png" width="14" height="14" alt="Columbia"/></p><h2 class="hstyl1 hide"><span>Sponsored Stories</span></h2><ul id="div-clmb-ctn-207169-1" style="min-height:2px;width:100%;" data-type="mobile" data-slot="207169" data-position="1" data-section="0" data-cb="adwidget_rcmw" class="colombia flexi-ht list27 clearfix hide"></ul><ul id="div-clmb-ctn-206999-1" style="min-height:2px;width:100%;" data-type="desktop" data-slot="206999" data-position="1" data-section="0" data-cb="adwidget_rcmw" class="colombia flexi-ht list27 clearfix hide"></ul></div></div></div><div class="col-md-4 col-sm-12 sticky sidebar sidebar_outer padl10"><div class="sticky-element"><!-- Subscribe to single newsletter starts -->
 <div class="subscribe mt-none">
  <h3>Subscribe to <span>our Newsletter</span></h3>
     <p>250000+ Industry Leaders read it everyday</p>
  <form method="post" action="" class="clearfix" onsubmit="return (typeof save_techgig_updates_subsription!='undefined')?save_techgig_updates_subsription('top'):EtB2b.subscription.save_techgig_updates_subsription('top');">
   <input id="subscribe_email_top" aria-label="Email" type="text" class="textbox" value="" placeholder="Your Email" />
   <input class="textbox hide" id="full_name_top" name="full_name" value="" placeholder="Your Name" />
   <input class="textbox hide" id="subscribe_company_top" name="subscriber_company" value="" placeholder="Your Company" />
   <input class="textbox hide" id="subscribe_desig_top" name="subscriber_designation" value="" placeholder="Your Designation" />
   <input class="textbox hide" id="subscribe_mobile_top" name="subscriber_mobile" value="" placeholder="Your Mobile" />
   <input type="hidden" name="pip_category_id_top" id="pip_category_id_top" value="" />
         <input type="hidden" name="pip_category_top" id="pip_category_top" value="" />
         <input type="hidden" name="newsletter_id_top" id="newsletter_id_top" value="3">
         <p class=" hide">
    How did you hear about us?
    <select id="subscription_source" name="subscription_source">
     <option value="PRINT">PRINT</option>
     <option value="CUSTOM">WEB</option>
     <option value="REFER">FRIENDS</option>
    </select>
   </p>
   <input type="submit" id="subscriber_btn_top" class="btn submit" value="Join Now">
  </form>
  <div id="subcribe_response_top" class="et-rtl-error" style="display:block;"></div>
        <div class="consent-popup">
            <input type="checkbox" id="consentPopup_top" value aria-label="consent Popup">
            <label for="consentPopup_top"> I have read <a target="_blank" href="/privacy_policy.php">Privacy Policy</a> and <a target="_blank" href="/terms_conditions.php">Terms &amp; Conditions</a> and agree to receive newsletters and other communications on this email ID.</label>
        </div>
        <div id="subcribe_consentPopup_top" class="subcribe_consentPopup et-rtl-error" style="display:block;"></div>
 </div>
<div class="widget ad hide"><div class="featured_section" data-type="ads" id="featured_section_ad" data-ftd-type="featured_section_ad" data-ftd-params="keywords=shopping+centres...international+telecommunication+union...bharat+net+project...5gcongress...5g+ecosystem...5+ghz+band...3g%2F4g...telecomnews"></div></div><div class="widget ad google-ad sidebarads" id="div-gpt-ad-1527493701403-11" style="display:none;"></div><div class="widget ad google-ad sidebarads" id="div-gpt-ad-1527493701403-15" style="display:none;"></div><div class="widget ad google-ad sidebarads" id="div-gpt-ad-1527493701403-16" style="display:none;"></div><div class="widget ad google-ad sidebarads" id="div-gpt-ad-1527493701403-17" style="display:none;"></div><div class="widget ad google-ad sidebarads" id="div-gpt-ad-1527493701403-12" style="display:none;"></div><div class='sidebar-in-page-promotions-all widget hide'></div><div class="widget ad"><div class="featured_section" data-type="ads" id="featured_multi_promotional_banner" data-ftd-type="featured_multi_promotional_banner_32"></div></div><div class="widget ad hide featured_ads" id="featured_ads_newsDetail-" style="margin-bottom:20px;"><div class="featured_section" data-type="ads" id="featured_promotional_ads_all" data-offset="0" data-ftd-type="featured_header_10_15_all"></div></div><script language="javascript">
function callContentWidget2(link)
{
 if(link)
 {
  var wgt_html = '<iframe id="cont_widgt_hp2_iframe" onload="onContWdgtHp_iframeLoaded2()" src="'+link+'" width="100%" height="645" background="transparent" style="position:relative; z-index:99;   background-color: transparent;overflow:hidden;" webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen="true"></iframe>';
  setWidgetContSize2();
   Dollars ('#cont_widgt_hp2').append(wgt_html);
 }
}
window.addEventListener("resize", function(e) {
    var mapElement = document.getElementById("cont_widgt_hp2");
 setWidgetContSize2()
});
function onContWdgtHp_iframeLoaded2()
{
  Dollars ("#cont_widgt_hp2 .preloader_1").hide();
  Dollars url =  Dollars ('#cont_widgt_hp2_iframe').attr('src');
  Dollars urldomain = 'http://'+( Dollars ('<a>').prop('href',  Dollars url).prop('hostname'));
 if( Dollars urldomain == base_url)
  Dollars ('#cont_widgt_hp2_iframe').height( Dollars ('#cont_widgt_hp2_iframe').contents().height());
 else if( Dollars url.indexOf("ms-widget") !=-1 &&  Dollars url.indexOf("type=widgetv2") !=-1)
  Dollars ('#cont_widgt_hp2_iframe').height('655px');
 try {
     ga('send', 'event', 'ContentWidgetIframe', 'Loaded', Dollars url, {
  nonInteraction: true
  });
 }
 catch(err) {
 }
}
function setWidgetContSize2()
{
}
</script>
  
<div id="cont_widgt_hp2" data-ftd-type="featured_header_22" style="position:relative;overflow:hidden;" class="widget1 featured_section"></div>
<style>
.fullWidthWidget{
 margin:0 -20px 20px;
}
.preloader_1 {
  position: absolute;
  z-inde:1;
  width: 160px;
  height: 24px;
  left: 50%;
  top: 50%;
  margin: -12px 0 0 -80px;
  display: block;
  background: url(https://st.etb2bimg.com/Themes/Release/images/responsive/loader-transparent.gif) no-repeat 0 0;
}
@media screen and (max-width:999px)
{
 .fullWidthWidget{
  margin:0 -10px 10px;
 }
}
</style> <div class="wdgt">
  <article class="moreStoriesBx mostread-section">
   <div class="tab-section">
    <div class="clearfix nav-tabs line-pattern">
     <span class="mostread">Most Read</span>
     <ul class="tabs">
      <li class="active"><a targetclass="tab-latest-stories">This Week</a></li>
      <li><a targetclass="tab-most-read">This Month</a></li>
     </ul>    
    </div>
    <div class="tab-content">
     <div class="tabss tab-latest-stories lst_styl_4">
      <ul class="lst-box4 stories-lists">
                <li>
          <article>
           <h4>
            <a href="https://telecom.economictimes.indiatimes.com/news/vodafone-idea-can-get-1-billion-annual-relief-if-govt-cuts-down-interest-rate-bnp/85972141">Vodafone Idea can get  Dollars 1 billion annual relief if govt cuts interest rate: BNP</a>
           </h4>
           <figure>
            <a href="https://telecom.economictimes.indiatimes.com/news/vodafone-idea-can-get-1-billion-annual-relief-if-govt-cuts-down-interest-rate-bnp/85972141" aria-label="Vodafone Idea can get  Dollars 1 billion annual relief if govt cuts interest rate: BNP">
             <img class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-300.jpg" data-src="https://etimg.etb2bimg.com/thumb/vodafone-idea-can-get-1-billion-annual-relief-if-govt-cuts-interest-rate-bnp-updated-2021-09-06-13-51-10-0/85972141.cms?width=300&height=167" alt="Vodafone Idea can get  Dollars 1 billion annual relief if govt cuts interest rate: BNP" />
            </a>
           </figure>
           <div class="descBx">
            <p>BNP Paribas' take on possible ways to rescue Vi comes days after Aditya Birla Group chairman Kumar Mangalam Birla met telecom minister Ashwini Vaishnav in the backdrop of the Department of Telecommunications (DoT) and finance ministry putting together a relief package for the debt-laden telecom sector.</p>
           </div>
          </article>
         </li>
                  <li>
          <article>
           <i class="fa fa-angle-right" aria-hidden="true"></i>
           <div class="descBx">
            <h4>
             <a href="https://telecom.economictimes.indiatimes.com/news/india-cabinet-did-not-take-up-proposal-for-telecoms-relief-measures-source/86031933">Cabinet skips DoT proposal on telecom health package</a>
            </h4> 
           </div>
          </article>
         </li>
                  <li>
          <article>
           <i class="fa fa-angle-right" aria-hidden="true"></i>
           <div class="descBx">
            <h4>
             <a href="https://telecom.economictimes.indiatimes.com/news/dot-moots-4-year-moratorium-on-agr-spectrum-payments/86026773">A 4-year moratorium on AGR, spectrum payments in India's plan to prevent a Jio-led duopoly</a>
            </h4> 
           </div>
          </article>
         </li>
                  <li>
          <article>
           <i class="fa fa-angle-right" aria-hidden="true"></i>
           <div class="descBx">
            <h4>
             <a href="https://telecom.economictimes.indiatimes.com/news/mukesh-ambanis-50-phone-can-unleash-a-credit-revolution-across-the-globe/85886389">Mukesh Ambani's  Dollars 50 phone can unleash a credit revolution across the globe</a>
            </h4> 
           </div>
          </article>
         </li>
               </ul> 
     </div>
     <div class="tabss tab-most-read lst_styl_4 hide"> 
      <ul class="lst-box4 mostread-lists">
                <li>
          <article>
           <h4>
            <a href="https://telecom.economictimes.indiatimes.com/news/vodafone-idea-bankruptcy-2g-users-at-higher-risk-analysts-say-subsided-smartphones-from-airtel-jio-can-help/85293009">Vodafone Idea bankruptcy: 140-150 million 2G subscribers to be the most affected</a>
           </h4>
           <figure>
            <a href="https://telecom.economictimes.indiatimes.com/news/vodafone-idea-bankruptcy-2g-users-at-higher-risk-analysts-say-subsided-smartphones-from-airtel-jio-can-help/85293009" aria-label="Vodafone Idea bankruptcy: 140-150 million 2G subscribers to be the most affected">
             <img class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-300.jpg" data-src="https://etimg.etb2bimg.com/thumb/vodafone-idea-bankruptcy-140-150-million-2g-subscribers-to-be-the-most-affected-updated-2021-08-13-09-52-12-0/85293009.cms?width=300&height=167" alt="Vodafone Idea bankruptcy: 140-150 million 2G subscribers to be the most affected"/>
            </a>
           </figure>
           <div class="descBx">
            <p>For Jio, those users will have to think about buying a new phone. This is not feasible for a majority of such subscribers, experts said, adding that in both situations Vi's 2G customers will suffer.</p>
           </div>
          </article>
         </li>
                  <li>
          <article>
           <i class="fa fa-angle-right" aria-hidden="true"></i>
           <div class="descBx">
            <h4>
             <a href="https://telecom.economictimes.indiatimes.com/news/voda-idea-md-takkar-thanks-users-for-support-avoids-crisis-mention/85297429">Vodafone Idea MD Takkar thanks users for support, avoids crisis mention</a>
            </h4> 
           </div>
          </article>
         </li>
                  <li>
          <article>
           <i class="fa fa-angle-right" aria-hidden="true"></i>
           <div class="descBx">
            <h4>
             <a href="https://telecom.economictimes.indiatimes.com/news/tcs-cdot-emerges-as-indigenous-leader-can-upgrade-bsnl-4g-network-to-5g-by-2022/85758044">TCS-CDoT emerges as indigenous leader, can upgrade BSNL 4G network to 5G by 2022</a>
            </h4> 
           </div>
          </article>
         </li>
                  <li>
          <article>
           <i class="fa fa-angle-right" aria-hidden="true"></i>
           <div class="descBx">
            <h4>
             <a href="https://telecom.economictimes.indiatimes.com/news/vodafone-idea-can-get-1-billion-annual-relief-if-govt-cuts-down-interest-rate-bnp/85972141">Vodafone Idea can get  Dollars 1 billion annual relief if govt cuts interest rate: BNP</a>
            </h4> 
           </div>
          </article>
         </li>
               </ul>
     </div>
    </div> 
   </div>         
  </article>
 </div>
 <div class="wdgt">
    <div class="tabstrips2 clearfix">
        <div class="hdngBx">
            <h2 class="hdng1">
                <a>Most Read in 3G/4G</a>
            </h2>
        </div>
        <div class="tab-section">
            <ul class="navtabs clearfix">
                                <li class="active">
                    <a href="#" title="This Week" targetclass="most_read_w">This Week</a>
                </li>
                                <li class="">
                    <a href="#" title="This Month" targetclass="most_read_m">This Month</a>
                </li>
                            </ul>
            <div class="tabcontent clearfix lst_styl_6">
                <ul class="toggle_ul lst5 most_read_w news-listing">
                                            <li class="clearfix">
                            <article>
                                <figure>
                                    <a href="https://telecom.economictimes.indiatimes.com/news/bsnl-to-discontinue-its-prepaid-broadband-service-report/86033221" aria-label="BSNL to discontinue its prepaid broadband service: Report">
                                        <img width="100" class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg" data-src="https://etimg.etb2bimg.com/thumb/bsnl-to-discontinue-its-prepaid-broadband-service-report/101585/86033221.cms?width=300&height=191" alt="" />
                                    </a>
                                </figure>
                                <div class="descBx">
                                    <h4><a href="https://telecom.economictimes.indiatimes.com/news/bsnl-to-discontinue-its-prepaid-broadband-service-report/86033221">BSNL to discontinue its prepaid broadband service: Report</a></h4>
                                </div>
                            </article>
                        </li>
                                                <li class="clearfix">
                            <article>
                                <figure>
                                    <a href="https://telecom.economictimes.indiatimes.com/news/reliance-jio-discontinues-two-jiophone-recharge-plans/86060001" aria-label="Reliance Jio discontinues two JioPhone recharge plans">
                                        <img width="100" class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg" data-src="https://etimg.etb2bimg.com/thumb/reliance-jio-discontinues-two-jiophone-recharge-plans/33745/86060001.cms?width=300&height=191" alt="" />
                                    </a>
                                </figure>
                                <div class="descBx">
                                    <h4><a href="https://telecom.economictimes.indiatimes.com/news/reliance-jio-discontinues-two-jiophone-recharge-plans/86060001">Reliance Jio discontinues two JioPhone recharge plans</a></h4>
                                </div>
                            </article>
                        </li>
                                            
                </ul>
                <ul class="toggle_ul most_read_m lst5 news-listing hide">
                                            <li class="clearfix">
                            <article>
                                <figure>
                                    <a href="https://telecom.economictimes.indiatimes.com/news/jio-launches-new-prepaid-plans-with-subscription-to-entire-disney-hotstar-library/85794373" aria-label="Jio launches new prepaid plans with subscription to entire Disney+ Hotstar library">
                                        <img width="100" class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg" data-src="https://etimg.etb2bimg.com/thumb/jio-launches-new-prepaid-plans-with-subscription-to-entire-disney-hotstar-library/52556/85794373.cms?width=300&height=191" alt="" />
                                    </a>
                                </figure>
                                <div class="descBx">
                                    <h4>
                                        <a href="https://telecom.economictimes.indiatimes.com/news/jio-launches-new-prepaid-plans-with-subscription-to-entire-disney-hotstar-library/85794373">Jio launches new prepaid plans with subscription to entire Disney+ Hotstar library</a>
                                    </h4>
                                </div>
                            </article>
                        </li>
                                                <li class="clearfix">
                            <article>
                                <figure>
                                    <a href="https://telecom.economictimes.indiatimes.com/news/bsnl-launches-rs-1498-data-only-plan-for-prepaid-customers/85821619" aria-label="BSNL launches Rs 1,498 data-only plan for prepaid customers">
                                        <img width="100" class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg" data-src="https://etimg.etb2bimg.com/thumb/bsnl-launches-rs-1-498-data-only-plan-for-prepaid-customers/48570/85821619.cms?width=300&height=191" alt="" />
                                    </a>
                                </figure>
                                <div class="descBx">
                                    <h4>
                                        <a href="https://telecom.economictimes.indiatimes.com/news/bsnl-launches-rs-1498-data-only-plan-for-prepaid-customers/85821619">BSNL launches Rs 1,498 data-only plan for prepaid customers</a>
                                    </h4>
                                </div>
                            </article>
                        </li>
                                                <li class="clearfix">
                            <article>
                                <figure>
                                    <a href="https://telecom.economictimes.indiatimes.com/news/bsnl-to-discontinue-its-prepaid-broadband-service-report/86033221" aria-label="BSNL to discontinue its prepaid broadband service: Report">
                                        <img width="100" class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg" data-src="https://etimg.etb2bimg.com/thumb/bsnl-to-discontinue-its-prepaid-broadband-service-report/101585/86033221.cms?width=300&height=191" alt="" />
                                    </a>
                                </figure>
                                <div class="descBx">
                                    <h4>
                                        <a href="https://telecom.economictimes.indiatimes.com/news/bsnl-to-discontinue-its-prepaid-broadband-service-report/86033221">BSNL to discontinue its prepaid broadband service: Report</a>
                                    </h4>
                                </div>
                            </article>
                        </li>
                                                <li class="clearfix">
                            <article>
                                <figure>
                                    <a href="https://telecom.economictimes.indiatimes.com/news/reliance-jio-discontinues-two-jiophone-recharge-plans/86060001" aria-label="Reliance Jio discontinues two JioPhone recharge plans">
                                        <img width="100" class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-200.jpg" data-src="https://etimg.etb2bimg.com/thumb/reliance-jio-discontinues-two-jiophone-recharge-plans/33745/86060001.cms?width=300&height=191" alt="" />
                                    </a>
                                </figure>
                                <div class="descBx">
                                    <h4>
                                        <a href="https://telecom.economictimes.indiatimes.com/news/reliance-jio-discontinues-two-jiophone-recharge-plans/86060001">Reliance Jio discontinues two JioPhone recharge plans</a>
                                    </h4>
                                </div>
                            </article>
                        </li>
                                        </ul>
            </div>
        </div>
    </div>
</div>
<div class="wdgt clearfix data-source-slideshows spcl_story_wdgt telecom_tv"> 
    <div class="hdngBx">
        <h2 class="hdng1">
            <a alt="telecom TV" aria-label="telecom TV" href="/tele-bytes/55578279"><img alt="" src="https://img.etb2bimg.com/Themes/Release/images/responsive/telecom-tv.png" style="max-height:26px;"  alt="telecom TV"/></a>
        </h2>
    </div>
    <ul class="lst_styl_2 clearfix">
                         <li>
                        <article>
                            <figure>
                                <a href="https://telecom.economictimes.indiatimes.com/featured-videos/55578279/ettelecom-roundtables-airtel-vodafone-idea-cisos-dot-kpmg-discuss-trustworthy-network-deployment/86037466" title="ETTelecom Roundtables: Airtel &amp; Vodafone Idea CISOs, DoT, KPMG discuss trustworthy network deployment" aria-label="ETTelecom Roundtables: Airtel &amp; Vodafone Idea CISOs, DoT, KPMG discuss trustworthy network deployment">
                                    <img class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-400.jpg" data-src="https://etimg.etb2bimg.com/thumb/ettelecom-roundtables-airtel-vodafone-idea-cisos-dot-kpmg-discuss-trustworthy-network-deployment/77450/86037466.cms?width=700&height=450" alt="" />
                                    <i class="fa fa-youtube-play" aria-hidden="true"></i>
                                </a>
                                <figcaption>
                                    <h3>
                                        <a href="https://telecom.economictimes.indiatimes.com/featured-videos/55578279/ettelecom-roundtables-airtel-vodafone-idea-cisos-dot-kpmg-discuss-trustworthy-network-deployment/86037466" alt="ETTelecom Roundtables: Airtel &amp; Vodafone Idea CISOs, DoT, KPMG discuss trustworthy network deployment">ETTelecom Roundtables: Airtel & Vodafone Idea CISOs, DoT, KPMG discuss trustworthy network deployment</a>
                                    </h3>
                                </figcaption>
                            </figure>                            
                        </article>
                    </li>
                                    <li>
                        <article>
                            <figure>
                                <a href="https://telecom.economictimes.indiatimes.com/featured-videos/55578279/ettelecom-roundtables-trai-vodafone-idea-airtel-taipa-discuss-o-ran-pli-for-telecom/86037447"  alt="ETTelecom Roundtables: TRAI, Vodafone Idea, Airtel, TAIPA discuss O-RAN &amp; PLI for telecom" aria-label="ETTelecom Roundtables: TRAI, Vodafone Idea, Airtel, TAIPA discuss O-RAN &amp; PLI for telecom">
                                    <img class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-300.jpg" data-src="https://etimg.etb2bimg.com/thumb/ettelecom-roundtables-trai-vodafone-idea-airtel-taipa-discuss-o-ran-pli-for-telecom/100159/86037447.cms?width=300&height=167" alt="" />
                                    <span class="time">54:32</span>
                                </a>
                            </figure>
                            <div class="descBx">
                                <h5>
                                    <a href="https://telecom.economictimes.indiatimes.com/featured-videos/55578279/ettelecom-roundtables-trai-vodafone-idea-airtel-taipa-discuss-o-ran-pli-for-telecom/86037447" alt="ETTelecom Roundtables: TRAI, Vodafone Idea, Airtel, TAIPA discuss O-RAN &amp; PLI for telecom">ETTelecom Roundtables: TRAI, Vodafone Idea, Airtel, TAIPA discuss O-RAN & PLI for telecom</a>
                                </h5>
                            </div>
                        </article>
                    </li>
                                        <li>
                        <article>
                            <figure>
                                <a href="https://telecom.economictimes.indiatimes.com/featured-videos/55578279/ettelecom-roundtables-jio-airtel-and-vodafone-idea-ctos-on-5g-spectrum-pricing-use-cases/86035231"  alt="ETTelecom Roundtables: Jio, Airtel and Vodafone Idea CTOs on 5G spectrum pricing, use cases" aria-label="ETTelecom Roundtables: Jio, Airtel and Vodafone Idea CTOs on 5G spectrum pricing, use cases">
                                    <img class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-300.jpg" data-src="https://etimg.etb2bimg.com/thumb/ettelecom-roundtables-jio-airtel-and-vodafone-idea-ctos-on-5g-spectrum-pricing-use-cases/30050/86035231.cms?width=300&height=167" alt="" />
                                    <span class="time">52:53</span>
                                </a>
                            </figure>
                            <div class="descBx">
                                <h5>
                                    <a href="https://telecom.economictimes.indiatimes.com/featured-videos/55578279/ettelecom-roundtables-jio-airtel-and-vodafone-idea-ctos-on-5g-spectrum-pricing-use-cases/86035231" alt="ETTelecom Roundtables: Jio, Airtel and Vodafone Idea CTOs on 5G spectrum pricing, use cases">ETTelecom Roundtables: Jio, Airtel and Vodafone Idea CTOs on 5G spectrum pricing, use cases</a>
                                </h5>
                            </div>
                        </article>
                    </li>
                                        <li>
                        <article>
                            <figure>
                                <a href="https://telecom.economictimes.indiatimes.com/featured-videos/55578279/ettelecom-interviews-gsmas-head-of-apac-julian-gorman-bats-for-affordable-5g-spectrum-in-india/86035214"  alt="ETTelecom Interviews: GSMA's Head of APAC Julian Gorman bats for affordable 5G spectrum in India" aria-label="ETTelecom Interviews: GSMA's Head of APAC Julian Gorman bats for affordable 5G spectrum in India">
                                    <img class="unveil" src="https://st.etb2bimg.com/Themes/Release/images/responsive/default-300.jpg" data-src="https://etimg.etb2bimg.com/thumb/ettelecom-interviews-gsma-s-head-of-apac-julian-gorman-bats-for-affordable-5g-spectrum-in-india/77614/86035214.cms?width=300&height=167" alt="" />
                                    <span class="time">10:25</span>
                                </a>
                            </figure>
                            <div class="descBx">
                                <h5>
                                    <a href="https://telecom.economictimes.indiatimes.com/featured-videos/55578279/ettelecom-interviews-gsmas-head-of-apac-julian-gorman-bats-for-affordable-5g-spectrum-in-india/86035214" alt="ETTelecom Interviews: GSMA's Head of APAC Julian Gorman bats for affordable 5G spectrum in India">ETTelecom Interviews: GSMA's Head of APAC Julian Gorman bats for affordable 5G spectrum in India</a>
                                </h5>
                            </div>
                        </article>
                    </li>
                        </ul>
    <footer>
        <div class="moreTxBx">
            <a class="more-link1" href="/tele-bytes/55578279" alt="More">View More</a>
        </div>
    </footer>
</div>
</div></div></div></div><div class="container"><div class="row" ><div class="col-md-12"><div data-bucket-limit=6 data-bucket-id=6 data-bucket-design=10 data-bucket-position=full_width class="in-page-promotions-buckets-featured featured_section_disabled  bucket-position-full_width" data-type="in-page-promotions" id="in-page-promotions_full_width_1" data-ftd-params="design=10&limit=6&entity_type=masterclass&position=full_width&bucket_id=6&rendered_items=0&" data-ftd-type="in-page-promotions" data-ftd-callback="inPagePromoCallback"><div class="in-page-promotions-buckets  hide"></div></div></div></div></div><div class="container-fluid"><div class="row" ><div class="col-md-12 no-padding"><div id="details_bottom_ad_section" style="width:728px; margin:0 auto;">
</div></div></div></div></div></div></div><footer class="footer footer-horizontal horizontal_v2">
 <div class="container">
  <div class="footer-content">
      <div class="row">
    <div class="col-md-12"><ul class="footer-lst1 clearfix footer-trends"><li>Trends</li><li><a href="http://telecom.economictimes.indiatimes.com/tag/trai">TRAI</a></li><li><a href="http://telecom.economictimes.indiatimes.com/tag/vodafone">Vodafone News</a></li><li><a href="http://telecom.economictimes.indiatimes.com/tag/reliance+jio">Reliance Jio News</a></li></ul></div><div class="col-md-12"><ul class="footer-lst1 clearfix"><li>Industry News</li><li><a rel='noreferrer nofollow' target='_blank' href='https://retail.economictimes.indiatimes.com' data-modname="Header" >Retail News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://auto.economictimes.indiatimes.com' data-modname="Header" >Auto News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://health.economictimes.indiatimes.com' data-modname="Header" >Health News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://energy.economictimes.indiatimes.com' data-modname="Header" >Energy News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://cio.economictimes.indiatimes.com' data-modname="Header" >IT News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://realty.economictimes.indiatimes.com' data-modname="Header" >Real Estate News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://tech.economictimes.indiatimes.com' data-modname="Header" >Technology News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://cfo.economictimes.indiatimes.com' data-modname="Header" >CFO News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://ciso.economictimes.indiatimes.com' data-modname="Header" >IT Security News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://bfsi.economictimes.indiatimes.com' data-modname="Header" >BFSI News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://government.economictimes.indiatimes.com' data-modname="Header" >Government News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://brandequity.economictimes.indiatimes.com' data-modname="Header" >Marketing & Advertising News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://hospitality.economictimes.indiatimes.com' data-modname="Header" >Hospitality News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://travel.economictimes.indiatimes.com' data-modname="Header" >Travel News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://hr.economictimes.indiatimes.com' data-modname="Header" >HR News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://legal.economictimes.indiatimes.com' data-modname="Header" >Legal News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://infra.economictimes.indiatimes.com' data-modname="Header" >Infra News</a></li><li><a rel='noreferrer nofollow' target='_blank' href='https://b2b.economictimes.indiatimes.com' data-modname="Header" >B2B News</a></li></ul></div><div class="col-md-12"><ul class="footer-lst1 clearfix"><li>Features</li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/tag/jobs" data-modname="Header">Jobs & Careers</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/social-analytics" data-modname="Header">Data & Analytics</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/tag/product+launches" data-modname="Header">Product Launches</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/videos" data-modname="Header">TelecomTV</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/webinars" data-modname="Header">Webinars</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/tag/insights" data-modname="Header">Insights</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/tag/trends" data-modname="Header">Trends</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/tag/startups" data-modname="Header">Startups</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/tag/interviews" data-modname="Header">Interviews</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/tele-talk" data-modname="Header">TeleTalk</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/etanalytics/data" data-modname="Header">Data</a></li><li><a rel="nofollow" href="https://telecom.economictimes.indiatimes.com/etanalytics/reports" data-modname="Header">Reports</a></li></ul></div>    <div class="col-md-12 tri-cards">
     <ul class="footer-card-lst clearfix">
      <li>
       <h5>Contact US</h5>
       <h2><a href="https://telecom.economictimes.indiatimes.com/contact_us.php">Advertise with us</a></h2>
       <p class="descp">We have various options to advertise with us including Events, Advertorials, Banners, Mailers, Webinars etc. </p>
       <p class="descp">Please <a href="https://telecom.economictimes.indiatimes.com/contact_us.php">contact us</a> to know more details. </p>
      </li>
      <li>
       <h5>Sign up for</h5>
       <h2><a href="https://telecom.economictimes.indiatimes.com/etnewsletter.php">ETTelecom NewsLetter</a></h2>
       <p class="descp">Get <span>ETTelecom</span>'s top stories every morning in your email inbox.</p>
       <p class="subscribe-count">250000+ Industry Leaders read it everyday</p>
              <form method="post" action="" class="clearfix" onsubmit="return (typeof save_techgig_updates_subsription!='undefined')?save_techgig_updates_subsription('bottom'):EtB2b.subscription.save_techgig_updates_subsription('bottom');">
                <input id="subscribe_email_bottom" aria-label="Email" type="text" class="textbox" value="" placeholder="Your Email" />
        <input type="hidden" name="pip_category_id_bottom" id="pip_category_id_bottom" value="0" />
              <input type="hidden" name="pip_category_top" id="pip_category_bottom" value="" />
              <input type="hidden" name="newsletter_id_bottom" id="newsletter_id_bottom" value="221">
              
        <input type="submit" id="subscriber_btn_bottom" class="btn submit" value="Join Now">
       </form>
              <div id="subcribe_response_bottom" class="et-rtl-error" style="display:block;"></div> 
       <div class="consent-popup">
                 <input type="checkbox" id="consentPopup_bottom" name="consent Popup">
                 <label for="consentPopup_bottom"> I have read <a target="_blank" href="/privacy_policy.php">Privacy Policy</a> and <a target="_blank" href="/terms_conditions.php">Terms &amp; Conditions</a> and agree to receive newsletters and other communications on this email ID.</label>
             </div>
             <div id="subcribe_consentPopup_bottom" class="subcribe_consentPopup et-rtl-error" style="display:block;"></div>      
      </li>
            <li>
       <h5>Follow US</h5>
       <h2>
                                <a target="_blank" href="http://twitter.com/Ettelecom">@ETTelecom</a>                            </h2>
       <p class="descp">Follow @<span>ETTelecom</span> for the latest news, insider access to events and more.</p>
       <ul class="socialIcon">
        <li><a target="_blank" href="http://twitter.com/Ettelecom" class="twitter" data-modname="Header" rel="nofollow noreferrer" aria-label="Follow on Twitter"><i class="fa fa-twitter"></i></a></li><li><a target="_blank" href="http://facebook.com/ettelecom" class="fb" data-modname="Header" rel="nofollow noreferrer" aria-label="Follow on Facebook"><i class="fa fa-facebook"></i></a></li><li><a target="_blank" href="https://www.linkedin.com/showcase/et-telecom/" class="lin" data-modname="Header" rel="nofollow noreferrer" aria-label="Follow on Linkedin"><i class="fa fa-linkedin"></i></a></li>       </ul>
      </li>
            
     </ul>
    </div>

    <div class="col-md-8">
     <div class="footer-aboutus">
      <ul class="inline-list">
       <li class="show-on-top"><a href="https://telecom.economictimes.indiatimes.com/about_us.php" data-modname="Header">About Us</a></li><li><a href="https://telecom.economictimes.indiatimes.com/contact_us.php" data-modname="Header">Contact Us</a></li><li class="show-on-top"><a href="https://telecom.economictimes.indiatimes.com/contact_us.php" data-modname="Header">Advertise with us</a></li><li class="show-on-top"><a href="https://telecom.economictimes.indiatimes.com/etnewsletter.php" data-modname="Header">Newsletter</a></li><li><a href="https://telecom.economictimes.indiatimes.com/rss" data-modname="Header">RSS Feeds</a></li><li><a href="https://telecom.economictimes.indiatimes.com/widget" data-modname="Header">Embed ETTelecom. com Widgets on your Website</a></li><li class="show-on-top"><a href="https://telecom.economictimes.indiatimes.com/privacy_policy.php" data-modname="Header">Privacy Policy</a></li><li class="show-on-top"><a href="https://telecom.economictimes.indiatimes.com/terms_conditions.php" data-modname="Header">Terms &amp; Conditions</a></li><li><a href="https://telecom.economictimes.indiatimes.com/guest-post-guidelines" data-modname="Header">Guest-Post Guidelines</a></li><li><a href="https://telecom.economictimes.indiatimes.com/sitemap" data-modname="Header">Sitemap</a></li>
      </ul>
     </div>
     <div class="copyRight">
      Copyright © 2021 ETTelecom.com. All Rights Reserved.
     </div>
    </div>

    <div class="col-md-4">
     <a class="logo-footer" href="https://telecom.economictimes.indiatimes.com" aria-label="ETTelecom.com">
      <img class="footer-logo" src="https://st.etb2bimg.com/Themes/Release/images/site-logos/et-telecom-footer.png" alt="ETTelecom.com" />
     </a>
    </div>
   </div>
     </div>
 </div>
</footer>
</div><div id="foreground_element"></div><div class="google-ad skinning" id="div-gpt-ad-1527493701403-14" style="display:none;" data-ad-fallback-element="featured_skinning"></div><div class="featured_section_disabled hide" id="featured_skinning" data-ftd-type="featured_skinning" style="position:absolute;top:0px"></div><script type="text/javascript" language="javascript" src="https://js.etb2bimg.com/Themes/Release/js/app.init.min.js?mod=1407"></script>
<script class="externalScript">window.externaljscount = 0;</script><noscript><img src="http://b.scorecardresearch.com/p?c1=2&c2=6036484&cv=2.0&cj=1" /></noscript><script type='text/javascript'>var _sf_startpt=(new Date()).getTime()</script>
<script type='text/javascript'> 
var googletag = googletag || {}; 
googletag.cmd = googletag. cmd || []; 
googletag.renderedads = googletag. renderedads || {}; 
googletag.renderedads['empty'] = googletag.renderedads['empty'] || [];
googletag.renderedads['rendered'] = googletag.renderedads['rendered'] || [];
googletag.renderedads['count'] = googletag.renderedads['count'] || {'total':0,'complete':0};
var slideshowGPTBanner;
var sidebarGoogleAdsSlots = [];
googletag.cmd.push(function() { 
 //<!-- Audience Segment Targeting --> 
 var _auds = new Array(); 
 if(typeof(_ccaud)!='undefined') { 
  for(var i=0;i<_ccaud.Profile.Audiences.Audience.length;i++)
  { 
   if(i<200) 
   _auds.push(_ccaud.Profile.Audiences.Audience[i].abbr); 
  }
 } 
 //<!-- End Audience Segment Targeting --> 
 //<!-- Contextual Targeting --> 
 var _HDL = ''; 
 var _ARC1 = ''; 
 var _Hyp1 = ''; 
 var _article = ''; 
 var _tval = function(v) { 
  if(typeof(v)=='undefined') return ''; 
  if(v.length>100) return v.substr(0,100); 
  return v; 
 }
 //<!-- End Contextual Targeting -->
 
 var mappingATFResponsive1000 = googletag.sizeMapping().addSize([1,1],[320, 50]).addSize([480,200],[468, 60]).addSize([768,200],[728,90],[610,70]).addSize([1003,200],[[610,70],[728,90],[1003, 90]]).build();
 var mappingATFResponsive728 = googletag.sizeMapping().addSize([1,1],[320, 50]).addSize([480,200],[468, 60]).addSize([768,200],[[610,70],[728,90]]).build();
 var mappingATFResponddsive610 = googletag.sizeMapping().addSize([1,1],[320, 50]).addSize([480,200],[468, 60]).addSize([768,200],[610,70]).build();
 var mappingFBN = googletag.sizeMapping().addSize([1, 1],[320, 50]).addSize([480, 200], [468, 60]).addSize([768, 200], []).build();
 var mappingATF=[];
 
 
  eval("sidebarGoogleAdsSlots.push(googletag.defineSlot('/7176/ETTelecom/ETT_AS/ETT_AS_ATF_300_250', [300, 250], 'div-gpt-ad-1527493701403-11').addService(googletag.pubads()));");
 eval("sidebarGoogleAdsSlots.push(googletag.defineSlot('/7176/ETTelecom/ETT_AS/ETT_AS_Slug1_300_100', [[300,100], [300,250]], 'div-gpt-ad-1527493701403-15').addService(googletag.pubads()));");
 eval("sidebarGoogleAdsSlots.push(googletag.defineSlot('/7176/ETTelecom/ETT_AS/ETT_AS_Slug2_300_100', [[300,100], [300,250]], 'div-gpt-ad-1527493701403-16').addService(googletag.pubads()));");
 eval("sidebarGoogleAdsSlots.push(googletag.defineSlot('/7176/ETTelecom/ETT_AS/ETT_AS_Slug3_300_100', [[300,100], [300,250]], 'div-gpt-ad-1527493701403-17').addService(googletag.pubads()));");
 eval("sidebarGoogleAdsSlots.push(googletag.defineSlot('/7176/ETTelecom/ETT_AS/ETT_AS_BTF_300', [300, 250], 'div-gpt-ad-1527493701403-12').addService(googletag.pubads()));");
 eval("googletag.defineSlot('/7176/ETTelecom/ETT_AS/ETT_AS_ATF_1003x90', [[320, 50], [468, 60], [728, 90]], 'div-gpt-ad-1527493701403-10').defineSizeMapping(mappingATFResponsive728).addService(googletag.pubads());");
 eval("googletag.defineSlot('/7176/ETTelecom/ETTelecom_ROS/ETTelecom_ROS_ATF_728', [[320, 50], [468, 60], [728, 90]], 'div-gpt-ad-1527493701403-30').defineSizeMapping(mappingATFResponsive1000).addService(googletag.pubads());");
 eval("googletag.defineOutOfPageSlot('/7176/ETTelecom/ETT_AS/ETT_AS_OP_Innov1', 'div-gpt-ad-1527493701403-14').addService(googletag.pubads());");
 eval("slideshowGPTBanner=googletag.defineSlot('/7176/ETTelecom/ETTelecom_ROS/ETTelecom_ROS_ATF_SS_300', [[300, 1050], [300, 600], [300, 250]], 'div-gpt-ad-1527493701403-28').addService(googletag.pubads());");
 googletag.pubads().setTargeting('sg', _auds).setTargeting('HDL', _tval(_HDL)).setTargeting('ARC1', _tval(_ARC1)).setTargeting('Hyp1', _tval(_Hyp1)).setTargeting('article', _tval(_article));
 googletag.pubads().enableSingleRequest();
 googletag.pubads().collapseEmptyDivs();
 googletag.enableServices();
 googletag.pubads().addEventListener('slotRenderEnded', function (event) {
  googletag.renderedads['count']['complete'] = googletag.renderedads['count']['complete'] + 1;
  var id = event.slot.getSlotElementId();
  googletag.renderedads[(event.isEmpty?'empty':'rendered')].push(id);
  if(event.isEmpty)
  callProductEndAds(id);
  else
  handleGoogleAdLoad(id);
 });
 executeOnReady(function(){
  positionAdSlots(); 
 })
});

function positionAdSlots(){
 if( Dollars ('body').hasClass('js-v2')){
   Dollars in_content_ad_wrapper1 = '<div class="in_content_ad_wrapper ad"></div>';
   Dollars in_content_ad_wrapper2 = '<div class="in_content_ad_wrapper bs_article"><div class="featured_section" data-type="sponsered_content" id="sponsered_articles_inbody" data-ftd-type="sponsered_content_article_detail"></div></div>';
  if( Dollars ('.js-v2 .artcle-txt p:eq(0)').length > 0){
    Dollars ( Dollars in_content_ad_wrapper1).insertAfter( Dollars ('.js-v2 .artcle-txt p:eq(0)')) 
    Dollars ( Dollars in_content_ad_wrapper2).insertAfter( Dollars ('.js-v2 .artcle-txt p:eq(1)')) 
  }
        else{
          Dollars ( Dollars in_content_ad_wrapper1).insertAfter( Dollars ('.js-v2 .artcle-txt br:eq(1)'))
          Dollars ( Dollars in_content_ad_wrapper2).insertAfter( Dollars ('.js-v2 .artcle-txt br:eq(3)'))
  }
  if(deviceType == 'mobile')
  {
    Dollars ('.in_content_ad_wrapper.ad').append( Dollars ("div[id^='div-gpt-ad'].sidebarads:eq(0)"));
  }
  else
  {
    Dollars ('.in_content_ad_wrapper.ad').append( Dollars ('.main-body>.container>.row>.col-md-12 .post-rhs-sidebar'));
  }
    }
  Dollars ("div[id^='div-gpt-ad']").each(function(){
  googletag.renderedads['count']['total'] = googletag.renderedads['count']['total'] + 1;
     var pushTagIdentifier =  Dollars (this).attr('id');
     googletag.cmd.push(function() { googletag.display(pushTagIdentifier); });
 }); 
}
function callProductEndAds( Dollars id){
 executeOnReady(function(){
   Dollars ("#"+ Dollars ("#"+ Dollars id).data('ad-fallback-element')).removeClass('featured_section_disabled').addClass('featured_section');
  if(googletag.renderedads['count']['complete'] >= googletag.renderedads['count']['total'])
  render_featured_sections();
 });
}

function addLeaderBoardClass( Dollars obj){
  Dollars ('body').addClass('hasLeaderBoardBanner');
}

function handleGoogleAdLoad( Dollars id){
 executeOnReady(function(){
  if( Dollars ("#"+ Dollars id).data('ad-fallback-element') == 'featured_header_top_right')
  {
    Dollars (".logoBx").addClass('text-align-left');
  }
  if( Dollars ("#"+ Dollars id).data('ad-fallback-element') == 'featured_leaderboard')
  {
   addLeaderBoardClass();
  }
  if( Dollars ("#"+ Dollars id).hasClass('sidebarads') &&  Dollars ("#" +  Dollars id).parents('.post-body').length > 0 )
  {
    Dollars (".article-lhs").addClass('col-md-2').removeClass('col-md-3');
    Dollars (".article-rhs").addClass('col-md-4').removeClass('col-md-3');
   if(deviceType!='mobile')
             Dollars (".pst-side-bar-rhs").css('padding-left','10px')
  }
  if(googletag.renderedads['count']['complete'] >= googletag.renderedads['count']['total'])
  render_featured_sections();
 });
}
 if(1 && !isGDPRNation() || b2bGdpr.userPreference['config.clmb'] == 1) {
  executeOnComplete(function(){
   loadScript('https://static.clmbtech.com/ase/10113/106/aa.js');
  });
 }
 </script>
<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"485480a09e","applicationID":"1619028409","transactionName":"NAAHZBBXV0sDBUUPWg1KMEILGUtXFxJUFBsTDRU=","queueTime":0,"applicationTime":978,"atts":"GEcEElhNREU=","errorBeacon":"bam.nr-data.net","agent":""}</script></body><script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Organization",
  "location": {
    "@type": "Place",
    "address": "Times Internet Limited (Times Center), FC - 6, Sector 16 A, Film City, Noida - 201301 Uttar Pradesh, India"
  },
  "name": "ETTelecom",
  "description": "ETTelecom An initiative of The Economic Times",
  "logo": "https://st.etb2bimg.com/Themes/Release/images/responsive/ettelecom-logo-400x400.jpg",
  "url": "https://telecom.economictimes.indiatimes.com",
  "email": "contactus@ettelecom.com"
}
</script>
<script type="application/ld+json">
{
    "@context": "http://schema.org",
    "@type": "WebSite",
    "url": "https://telecom.economictimes.indiatimes.com",
    "potentialAction": {
      "@type": "SearchAction",
      "target": "https://telecom.economictimes.indiatimes.com/search/{query}",
      "query-input": "required name=query"
    }
}
</script>
<script>
   (function() {
         var po = document.createElement('script'); po. type = 'text/javascript'; po. async = true;
         po. src = 'https://st.etb2bimg.com/Themes/Release/js/login.encryption.min.js?mod=1407';
         var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
     })();
  </script>
<script type="text/javascript">
 var iOS = !window.MSStream && /iPad|iPhone|iPod/.test(navigator.userAgent); 
 executeOnReady(function(){  
   Dollars (window).on('scroll', function(){
   unvielImg();
  });
  loadScript(resourceURLMap.js["viewport"]);
        if(deviceType != 'mobile' && theme_version == 'v2'){
             Dollars ("body").addClass('font-merriweather font-opensans'); 
        }
        if(iOS){
      loadJSScript();
  }
 });
 
  Dollars (window).on('load', function(event) {
  if(!iOS){
         loadJSScript();
        }
 });
 function loadJSScript(){
   Dollars obj =  Dollars ('body');
  unvielImg();  
        loadScript(resourceURLMap.js["bundle.device"]);
  if (( Dollars ('.page-newsdetail').length) ||  Dollars ('.page-blogdetail').length ||  Dollars ('.page-blogDetail').length ||  Dollars ('.page-vediodetail').length ||  Dollars ('.page-liveBlogDetail').length) {
         loadScript(resourceURLMap.js["news_detail"]);
     }        
     
     if (!(( Dollars ('.page-blogDetail').length) || ( Dollars ('.page-newsdetail').length) ||  Dollars ('.page-homepage').length ||  Dollars ('.page-liveBlogDetail').length ||  Dollars ('.page-home').length)) {
         loadScript(resourceURLMap.js["news_list"]);
     }

     if( Dollars ('.idstry_hlgt').length>0){
         loadScript(resourceURLMap.js['home.autolytics']);
     }
     if ( Dollars ('.twitter-tweet').length) {
         loadScript('https://platform.twitter.com/widgets.js');
     }

     if ( Dollars ('.custom-twitter-widget').length) {
         loadScript(resourceURLMap.js["twitter"]);
     }

      Dollars ('.podcast-audio .flexi-audio').css('visibility', 'visible');
     if ( Dollars obj.find(".flexslider").length > 0 ||  Dollars obj.find(".flexslidercombined").length > 0) {
         loadCss(resourceURLMap.css['flexslider']);
         loadScript(resourceURLMap.js['app.flexslider']);
     }

     if ( Dollars ('.authors-home').length) {
         loadScript(resourceURLMap.js["author.popup"]);
     }

     if ( Dollars ('.flexi-audio').length ||  Dollars ('.flexi-video').length ||  Dollars ('.video-section').length) {
         loadScript(resourceURLMap.js["slikeplayer"]);
     }
   Dollars ('.wdgt').css({'visibility':'visible','height':'auto'});
 }
</script>
</html>