File size: 71,165 Bytes
ab3deb0 | 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 |
<script type="text/javascript" language="javascript">
function show()
{
myValue = confirm('This is external link, Are you sure you want to continue?')
if (myValue)
{
return true;
} else
{
return false;
}
}
function showlang(langstring)
{
var myformval = confirm(langstring)
if (myformval == true)
{
var mylangvalue = document.getElementById('ddllanguage');
var newlang = mylangvalue.options[mylangvalue.selectedIndex].value;
var form = document.createElement("form");
var element1 = document.createElement("input");
form.method = "POST";
form.action = "index.php";
element1.value = newlang;
element1.name = "ddllanguage";
form.appendChild(element1);
document.body.appendChild(form);
form.submit();
} else
{
return false;
}
}
</script>
<!DOCTYPE html>
<style>
.table1 {
width: 98%;
margin-bottom: 20px;
}
</style>
<html lang="en">
<base href="//cabsec.gov.in" >
<head>
<script type="text/javascript" language="javascript">
/* function show()
{
myValue = confirm('This is external link, Are you sure you want to continue?')
if (myValue)
{
return true;
}
else
{
return false;
}
}
function showlang(langstring)
{
var myformval = confirm(langstring)
if (myformval==true)
{
var mylangvalue = document.getElementById('ddllanguage');
var newlang = mylangvalue.options[mylangvalue.selectedIndex].value;
var form=document.createElement("form");
var element1 = document.createElement("input");
form.method = "POST";
form.action = "index.php";
element1.value=newlang;
element1.name="ddllanguage";
form.appendChild(element1);
document.body.appendChild(form);
form.submit();
}
else
{
return false;
}
}
*/
</script>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" href="sites/default/files/favicon_1.ico" type="image/vnd.microsoft.icon" />
<meta name="Generator" content="Cabinet Secretariat (https://cabsec.gov.in)" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<meta name="keywords" content="Cabinet Secretariat,Rashtrapati Bhavan,Cabinet,Govt. Of India">
<meta name="description" content="The Cabinet Secretariat is responsible for the administration of the Government of India (Transaction of Business) Rules, 1961 and the Government of India (Allocation of Business) Rules 1961, facilitating smooth transaction of business in Ministries/ Departments of the Government">
<title>
Archives
:Cabinet Secretariat, Government of India</title>
<link href="assets/css/style_menu_new.css" rel="stylesheet" />
<link href="modules/system/system.base.css?otx9ak" rel="stylesheet" />
<link href="modules/system/system.theme.css?otx9ak" rel="stylesheet" />
<link href="sites/all/modules/contributed/calendar/css/calendar_multiday.css?otx9ak" rel="stylesheet" />
<link href="sites/all/modules/customs/cmf_content/assets/css/base.css?otx9ak" rel="stylesheet" />
<link href="sites/all/themes/cmf/css/font.css?otx9ak" rel="stylesheet" />
<link href="sites/all/themes/cmf/css/font-awesome.min.css?otx9ak" rel="stylesheet" />
<link href="sites/all/themes/cmf/css/flexslider.css?otx9ak" rel="stylesheet" />
<link href="assets/css/font-awesome.min.css" rel="stylesheet" />
<link href="assets/css/font-awesome-animation.css" rel="stylesheet" />
<link href="assets/css/attached-offices-animation.css" rel="stylesheet" />
<!-- Internal Css Link from pages -->
<link href="sites/all/modules/customs/cmf_content/assets/css/base-responsive.css?otx9ak" rel="stylesheet" />
<link href="sites/all/themes/cmf/css/site-responsive.css?otx9ak" rel="stylesheet" />
<link href="assets/css/style1.css" rel="stylesheet" />
<link href="assets/css/bootstrap-table.css" rel="stylesheet" />
<script src="assets/js/jquery.min.js"></script>
<script src="misc/jquery.once.js?v=1.2"></script>
<script src="misc/drupal.js?otx9ak"></script>
<script src="sites/all/modules/contributed/views_slideshow/js/views_slideshow.js?v=1.0"></script>
<!--<script src="sites/all/modules/contributed/jquery_update/js/jquery_update.js?v=0.0.1"></script>-->
<script src="sites/all/modules/customs/cmf_content/assets/js/framework.js?otx9ak"></script>
<script src="sites/all/modules/customs/cmf_content/assets/js/swithcer.js?otx9ak"></script>
<script src="sites/all/libraries/flexslider/jquery.flexslider-min.js?otx9ak"></script>
<script src="sites/all/modules/contributed/flexslider_views_slideshow/js/flexslider_views_slideshow.js?otx9ak"></script>
<script src="sites/all/themes/cmf/js/jquery.flexslider.js?otx9ak"></script>
<script src="sites/all/themes/cmf/js/easyResponsiveTabs.js"></script>
<script>jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"cmf","theme_token":"DDyx8T7G2k_1wI9fWApLHvBGc9IAwcwfemYR8jHhFQ0","jquery_version":"1.8","js":{"sites\/all\/modules\/contributed\/jquery_update\/replace\/jquery\/1.8\/jquery.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"sites\/all\/modules\/contributed\/views_slideshow\/js\/views_slideshow.js":1,"sites\/all\/modules\/contributed\/jquery_update\/replace\/ui\/external\/jquery.cookie.js":1,"sites\/all\/modules\/contributed\/jquery_update\/replace\/misc\/jquery.form.js":1,"misc\/ajax.js":1,"sites\/all\/modules\/contributed\/admin_menu\/admin_devel\/admin_devel.js":1,"sites\/all\/modules\/contributed\/extlink\/extlink.js":1,"0":1,"1":1,"sites\/all\/modules\/customs\/cmf_content\/assets\/js\/font-size.js":1,"sites\/all\/modules\/customs\/cmf_content\/assets\/js\/framework.js":1,"sites\/all\/modules\/customs\/cmf_content\/assets\/js\/swithcer.js":1,"sites\/all\/libraries\/colorbox\/jquery.colorbox-min.js":1,"sites\/all\/modules\/contributed\/colorbox\/js\/colorbox.js":1,"sites\/all\/modules\/contributed\/colorbox\/styles\/default\/colorbox_style.js":1,"sites\/all\/modules\/customs\/goisearch\/js\/custom_result_jsversion.js":1,"sites\/all\/modules\/customs\/goisearch\/js\/auto_jsversion.js":1,"2":1,"sites\/all\/modules\/customs\/guidelines\/js\/script.js":1,"sites\/all\/modules\/contributed\/lightbox2\/js\/lightbox.js":1,"sites\/all\/libraries\/flexslider\/jquery.flexslider-min.js":1,"sites\/all\/modules\/contributed\/flexslider_views_slideshow\/js\/flexslider_views_slideshow.js":1,"sites\/all\/modules\/contributed\/views\/js\/base.js":1,"misc\/progress.js":1,"sites\/all\/modules\/contributed\/views\/js\/ajax_view.js":1,"sites\/all\/themes\/cmf\/js\/jquery-2.1.1.min.js":1,"sites\/all\/themes\/cmf\/js\/jquery.flexslider.js":1,"sites\/all\/themes\/cmf\/js\/custom.js":1,"sites\/all\/themes\/cmf\/js\/swithcer.js":1,"sites\/all\/themes\/cmf\/js\/easyResponsiveTabs.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.theme.css":1,"sites\/all\/modules\/contributed\/views_slideshow\/views_slideshow.css":1,"sites\/all\/modules\/contributed\/calendar\/css\/calendar_multiday.css":1,"sites\/all\/modules\/contributed\/date\/date_api\/date.css":1,"sites\/all\/modules\/contributed\/date\/date_popup\/themes\/datepicker.1.7.css":1,"modules\/field\/theme\/field.css":1,"modules\/node\/node.css":1,"modules\/search\/search.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/contributed\/extlink\/extlink.css":1,"sites\/all\/modules\/contributed\/views\/css\/views.css":1,"sites\/all\/modules\/customs\/cmf_content\/assets\/css\/base.css":1,"sites\/all\/modules\/customs\/cmf_content\/assets\/css\/font.css":1,"sites\/all\/modules\/customs\/cmf_content\/assets\/css\/flexslider.css":1,"sites\/all\/modules\/customs\/cmf_content\/assets\/css\/base-responsive.css":1,"sites\/all\/modules\/customs\/cmf_content\/assets\/css\/font-awesome.min.css":1,"sites\/all\/modules\/contributed\/colorbox\/styles\/default\/colorbox_style.css":1,"sites\/all\/modules\/contributed\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/customs\/goisearch\/css\/custom_result.css":1,"http:\/\/goisas.nic.in\/content\/scripts\/jquery.1.8.7\/themes\/base\/jquery.ui.all.css":1,"sites\/all\/modules\/customs\/goisearch\/css\/add-css.css":1,"sites\/all\/modules\/customs\/google_search\/css\/result.css":1,"sites\/all\/modules\/contributed\/lightbox2\/css\/lightbox.css":1,"sites\/all\/modules\/contributed\/panels\/css\/panels.css":1,"sites\/all\/modules\/contributed\/views_slideshow\/views_slideshow_controls_text.css":1,"sites\/all\/modules\/contributed\/flexslider\/assets\/css\/flexslider_img.css":1,"sites\/all\/libraries\/flexslider\/flexslider.css":1,"sites\/all\/themes\/zen\/system.menus.css":1,"sites\/all\/themes\/cmf\/css\/ma5gallery.css":1,"sites\/all\/themes\/cmf\/css\/site.css":1,"sites\/all\/themes\/cmf\/css\/site-responsive.css":1,"sites\/all\/themes\/cmf\/css\/grid.css":1,"sites\/all\/themes\/cmf\/css\/font.css":1,"sites\/all\/themes\/cmf\/css\/font-awesome.min.css":1,"sites\/all\/themes\/cmf\/css\/flexslider.css":1,"sites\/all\/themes\/cmf\/css\/components\/misc.css":1,"sites\/all\/themes\/cmf\/css\/print.css":1}},"encrypt_submissions":{"baseUrl":"http:\/\/finmin.nic.in"},"colorbox":{"opacity":"0.85","current":"{current} of {total}","previous":"\u00ab Prev","next":"Next \u00bb","close":"Close","maxWidth":"98%","maxHeight":"98%","fixed":true,"mobiledetect":true,"mobiledevicewidth":"480px"},"lightbox2":{"rtl":"0","file_path":"\/(\\w\\w\/)public:\/","default_image":"\/sites\/all\/modules\/contributed\/lightbox2\/images\/brokenimage.jpg","border_size":10,"font_color":"000","box_color":"fff","top_position":"","overlay_opacity":"0.8","overlay_color":"000","disable_close_click":1,"resize_sequence":0,"resize_speed":400,"fade_in_speed":400,"slide_down_speed":600,"use_alt_layout":0,"disable_resize":0,"disable_zoom":1,"force_show_nav":0,"show_caption":1,"loop_items":1,"node_link_text":"View Image Details","node_link_target":0,"image_count":"Image !current of !total","video_count":"Video !current of !total","page_count":"Page !current of !total","lite_press_x_close":"press \u003Ca href=\u0022#\u0022 onclick=\u0022hideLightbox(); return FALSE;\u0022\u003E\u003Ckbd\u003Ex\u003C\/kbd\u003E\u003C\/a\u003E to close","download_link_text":"","enable_login":false,"enable_contact":false,"keys_close":"c x 27","keys_previous":"p 37","keys_next":"n 39","keys_zoom":"z","keys_play_pause":"32","display_image_size":"original","image_node_sizes":"()","trigger_lightbox_classes":"","trigger_lightbox_group_classes":"","trigger_slideshow_classes":"","trigger_lightframe_classes":"","trigger_lightframe_group_classes":"","custom_class_handler":0,"custom_trigger_classes":"","disable_for_gallery_lists":true,"disable_for_acidfree_gallery_lists":true,"enable_acidfree_videos":true,"slideshow_interval":5000,"slideshow_automatic_start":1,"slideshow_automatic_exit":1,"show_play_pause":0,"pause_on_next_click":0,"pause_on_previous_click":1,"loop_slides":0,"iframe_width":600,"iframe_height":400,"iframe_border":1,"enable_video":0},"viewsSlideshow":{"home_flexslider-block":{"methods":{"goToSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"nextSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","flexsliderViewsSlideshow","viewsSlideshowCycle"],"pause":["viewsSlideshowControls","flexsliderViewsSlideshow","viewsSlideshowCycle"],"play":["viewsSlideshowControls","flexsliderViewsSlideshow","viewsSlideshowCycle"],"previousSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","flexsliderViewsSlideshow","viewsSlideshowCycle"],"transitionBegin":["viewsSlideshowPager","viewsSlideshowSlideCounter"],"transitionEnd":[]},"paused":0}},"viewsSlideshowControls":{"home_flexslider-block":{"bottom":{"type":"viewsSlideshowControlsText"}}},"flexslider_views_slideshow":{"#flexslider_views_slideshow_main_home_flexslider-block":{"num_divs":6,"id_prefix":"#flexslider_views_slideshow_main_","vss_id":"home_flexslider-block","namespace":"flex-","selector":".slides \u003E li","easing":"swing","direction":"horizontal","reverse":false,"smoothHeight":false,"startAt":0,"animationSpeed":600,"initDelay":0,"useCSS":true,"touch":true,"video":false,"keyboard":true,"multipleKeyboard":false,"mousewheel":0,"controlsContainer":".flex-control-nav-container","sync":"","asNavFor":"","itemWidth":0,"itemMargin":0,"minItems":0,"maxItems":0,"move":0,"animation":"slide","slideshow":true,"slideshowSpeed":7000,"directionNav":true,"controlNav":true,"prevText":"","nextText":"","pausePlay":false,"pauseText":"Pause","playText":"Play","randomize":false,"thumbCaptions":false,"thumbCaptionsBoth":false,"animationLoop":true,"pauseOnAction":false,"pauseOnHover":true,"manualControls":""}},"extlink":{"extTarget":"_blank","extClass":"ext","extLabel":"(link is external)","extImgClass":0,"extSubdomains":1,"extExclude":"","extInclude":"","extCssExclude":".gov-india, .no-ext-image, .copyright-content","extCssExplicit":"","extAlert":0,"extAlertText":"This link will take you to an external web site.","mailtoClass":0,"mailtoLabel":"(link sends e-mail)"}});</script>
<!--[if lt IE 9]>
<script src="/sites/all/themes/zen/js/html5-respond.js"></script>
<![endif]-->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/bootstrap-table/bootstrap-table.js"></script>
<script src="assets/js/bootstrap-table/extensions/export/bootstrap-table-export.js"></script>
<script src="assets/js/bootstrap-table/tableExport.js"></script>
<script src="assets/js/bootstrap-table/extensions/export/jspdf.min.js"></script>
<script src="assets/js/bootstrap-table/extensions/export/jspdf.plugin.autotable.js"></script><style>
#main {
width: 100%;
float: left;
min-height: 415px;
}
#content-column.content-column {
width: inherit;
}
.full_width_secction {
width: 100%;
float: left;
}
</style>
<script type="text/javascript">var fontSize = "100";</script>
<script type="text/javascript" language="javascript">
function show()
{
myValue = confirm('This is external link, Are you sure you want to continue?')
if (myValue)
{
return true;
}
else
{
return false;
}
}
function set_font_size(parameter)
{
if(parameter=='decrease')
{
document.querySelector("link[href='assets/css/style.css']").href = "assets/css/style2.css";
}
else if(parameter=='increase')
{
}
else if(parameter=='normal')
{
}
}
</script>
<link href="assets/css/bootstrap.css" rel="stylesheet" />
</head>
<body>
<link href="assets/css/style1.css" rel="stylesheet" />
<script type="text/javascript">
if(typeof(Storage)!=="undefined") {
// Text resizing
jQuery(".text-size a").click(function(){
var fontSize = jQuery(this).attr("class").split("size")[1];
jQuery("body").css("font-size", fontSize + "px");
jQuery(this).addClass("active");
jQuery(".text-size a").not(this).removeClass("active");
localStorage.setItem("font_size", fontSize);
});
// Highcontrast
jQuery(".contrast a").click(function(){
var contrast = jQuery(this).attr("class");
jQuery("body").attr("class", contrast);
jQuery(this).addClass("active");
jQuery(".contrast a").not(this).removeClass("active");
localStorage.setItem("contrast", contrast);
});
/*window.onload = function() {
var fontSize = localStorage.getItem("font_size");
var contrast = localStorage.getItem("contrast");
if (fontSize != undefined || fontSize != null) {
jQuery("body").css("font-size", fontSize + "px");
jQuery(".text-size a.size" + fontSize).addClass("active");
}
if (contrast != undefined || contrast != null) {
jQuery("body").attr("class", contrast);
jQuery(".contrast a." + contrast).addClass("active");
}
}*/
}
else {
jQuery("#top-menu").hide();
}
</script>
<div class="wrapper common-wrapper">
<div class="region region-header-top">
<div id="block-cmf-content-header-region-block" class="block block-cmf-content first last odd">
<noscript class="no_scr">
"JavaScript is a standard programming language that is included to provide interactive features, Kindly enable Javascript in your browser. For details visit help page"
</noscript>
<div class="wrapper common-wrapper">
<div class="container common-container">
<div class="common-left clearfix">
<ul>
<li class="gov-india"><span class="responsive_go_hindi" lang="hi"><a onclick="return show();" style="font-size:11px;color:black;text-decoration: none;" target="_blank" href="https://india.gov.in/hi/" title="भारत सरकार ( बाहरी वेबसाइट जो एक नई विंडो में खुलती है)">भारत सरकार</a></span></li>
<li class="ministry"><span class="li_eng responsive_go_eng"><a onclick="return show();" target="_blank" style="font-size:11px;vertical-align: baseline;font-style: normal;color:black;text-decoration: none;" href="https://india.gov.in/" title="GOVERNMENT OF INDIA,External Link that opens in a new window" class="ext">GOVERNMENT OF INDIA</a></span></li>
</ul>
</div>
<div class="common-right clearfix">
<ul id="header-nav">
<li class="ico-skip cf"><a style="color:black;text-decoration:none;" href="/archived/88#skipCont" title="Skip to main content">Skip to main content</a> </li>
<li class="ico-site-search cf">
<a href="search_results.php" id="toggleSearch" title="Site Search">
<img class="top" src="sites/all/modules/customs/cmf_content/assets/images/ico-site-search.png" alt="Site Search" /></a>
<div class="search-drop both-search">
<div class="find">
<div id="auto_suggesion"></div>
</div>
</div>
</li>
<li class="ico-accessibility-custom cf"><a href="javascript:void(0);" id="toggleAccessibility" title="Accessibility Dropdown"> <img class="top" src="sites/all/modules/customs/cmf_content/assets/images/ico-accessibility.png" alt="Accessibility Dropdown" /> </a>
<ul style="visibility:visible;">
<li> <a onclick="set_font_size('increase')" title="Increase font size" href="https://cabsec.gov.in?fontsize=large"><span style="color:black">A<sup>+</sup> </span></a> </li>
<li> <a onclick="set_font_size('normal')" title="Reset font size" href="https://cabsec.gov.in?fontsize=normal"><span style="color:black">A<sup> </sup></span></a> </li>
<li> <a onclick="set_font_size('decrease')" title="Decrease font size" href="https://cabsec.gov.in?fontsize=small"><span style="color:black">A<sup>-</sup></span></a> </li>
<li> <a href="https://cabsec.gov.in?theme=dark" onclick="set_font_size('dark')" title="High Contrast" class="high-contrast dark" style="display: block;">A</a> </li>
</ul>
</li>
<li class="ico-sitemap cf"><a href="sitemap.php" title="Sitemap"> <img class="top" src="sites/all/modules/customs/cmf_content/assets/images/ico-sitemap.png" alt="Sitemap" /></a></li>
<li class="hindi cmf_lan"><a href="javascript:;" title="Select Language">Language</a>
<ul>
<li>
<select onclick="return showlang('You are about to change the language. Do you want to continue ?');" onkeyup="return showlang('You are about to change the language. Do you want to continue ?');" name="ddllanguage" id="ddllanguage" class="lang_select">
<option style="margin-left: 2px;color:black;" value="2" >हिन्दी</option>
</select>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Top-Header Section end-->
<section class="wrapper header-wrapper">
<div class="container header-container">
<h1 class="logo">
<img class="national_emblem" src="sites/all/themes/cmf/images/emblem-dark.png" alt="national emblem" />
<a href="/index.php" title="Cabinet Secretariat"><strong lang="hi">मंत्रिमंडल सचिवालय</strong> <span>Cabinet Secretariat</span></a></h1>
<a class="toggle-nav-bar" href="javascript:void(0);">
<span class="menu-icon"></span>
<span class="menu-text"></span>
</a>
<div class="header-right clearfix">
<div class="right-content clearfix">
<div class="float-element">
<a onclick="return show();" class="sw-logo" title="External Link that opens in a new window" href="https://amritmahotsav.nic.in/" target="_blank" ><img src="sites/all/themes/cmf/images/azadi_logo.png" alt="Azadi ka Amrit Mahotsav" /></a>
<a onclick="return show();" class="sw-logo" title="External Link that opens in a new window" href="https://swachhbharat.mygov.in/" target="_blank" ><img src="sites/all/themes/cmf/images/swach-bharat.png" alt="Swachh Bharat" /></a>
</div>
</div>
</div>
</div>
</section>
<!--/.nav-wrapper-->
<nav class="top-nav">
<div class="container">
<ul class="main">
<script>document.cookie = 'myJavascriptVar='+screen.width;</script><li class="home"><a href= /index.php "><i class="fa fa-home homeicon" aria-hidden="true"></i></a></li><li><a href="#">About Us <i class="fa fa-plus addicon" aria-hidden="true"></i> </a><ul class="dropdown-new"><li><a href="/aboutus/origin/">Origin</a></li><li><a href="/aboutus/functions/">Functions</a></li><li><a href="/aboutus/development/">Development</a></li><li><a href="/aboutus/whoiswho/">Who's who</a></li><li><a href="/aboutus/cabinetsecretaries/">Cabinet Secretaries</a></li><li><a href="/aboutus/organizationchart/">Organization Chart</a></li><li><a href="/aboutus/workdistribution/">Work Distribution</a></li><li><a href="/aboutus/ebookaboutcabinetsecretariat/">eBook about Cabinet Secretariat</a></li></ul></li><li><a href="#">Business Rules <i class="fa fa-plus addicon" aria-hidden="true"></i> </a><ul class="dropdown-new"><li><a href="#">Allocation of Business Rules <i class="fa fa-plus addicon"></i> </a><ul class="dropdown-new"><li><a href="/allocationofbusinessrules/order/">Order</a></li><li><a href="/allocationofbusinessrules/firstschedule/">First Schedule</a></li><li><a href="/allocationofbusinessrules/secondschedule/">Second Schedule</a></li><li><a href="/allocationofbusinessrules/amendment/">Amendment</a></li><li><a href="/allocationofbusinessrules/completeaobrules/">Complete AOB Rules</a></li></ul></li><li><a href="#">Transaction of Business Rules <i class="fa fa-plus addicon"></i> </a><ul class="dropdown-new"><li><a href="/transactionofbusiness/transactionofbusinessrules/">Transaction of Business Rules</a></li><li><a href="/transactionofbusiness/tobamendment/">TOB Amendment</a></li></ul></li></ul></li><li><a href="#">Council of Ministers <i class="fa fa-plus addicon" aria-hidden="true"></i> </a><ul class="dropdown-new"><li><a href="/councilofministers/councilofministers/">Council of Ministers</a></li><li><a href="/councilofministers/swearingofnewministers/">Swearing of New Ministers</a></li><li><a href="/councilofministers/changeinportfolios/">Change In Portfolios</a></li><li><a href="/councilofministers/cabinetcommittees/">Cabinet Committees</a></li></ul></li><li><a href="#">Circulars <i class="fa fa-plus addicon" aria-hidden="true"></i> </a><ul class="dropdown-new"><li><a href="#">Cabinet Section <i class="fa fa-plus addicon"></i> </a><ul class="dropdown-new"><li><a href="/cabinetsection/interministerialconsultation/">Inter Ministerial Consultation (IMC)</a></li><li><a href="/cabinetsection/memorandumofunderstandingmourule12expostfactoapproval/">Memorandum of Understanding MoU / Rule 12 / Ex-Post Facto Approval</a></li><li><a href="/cabinetsection/inclusionofadditionalparagraphs/">Inclusion of Additional Paragraphs</a></li><li><a href="/cabinetsection/consultationwithspecificministriesdepartmentsauthorities/">Consultation with specific Ministries / Departments / Authorities</a></li><li><a href="/cabinetsection/inftrastructurerelatedproposals/">Inftrastructure Related Proposals</a></li><li><a href="/cabinetsection/revisedcostestimates/">Revised Cost Estimates</a></li><li><a href="/cabinetsection/attendanceofsecretaries/">Attendance of Secretaries</a></li><li><a href="/cabinetsection/committeeofsecretariescos/">Committee of Secretaries (COS)</a></li><li><a href="/cabinetsection/appraisalbodies/">Appraisal Bodies</a></li><li><a href="/cabinetsection/proceduretimelinesrelatedtoinstructionsingeneral/">Procedure/Timelines related to Instructions in General</a></li><li><a href="/cabinetsection/miscellaneous/">Miscellaneous</a></li><li><a href="/cabinetsection/highlevelcommittees/">High Level Committees</a></li><li><a href="/cabinetsection/esamiksha/">eSamikSha</a></li><li><a href="/cabinetsection/guidelinesonforeigntravel/">Guidelines on Foreign Travel</a></li><li><a href="/cabinetsection/instructionsoncagandparliamentarycommitteesmatters/">Instructions on CAG and Parliamentary Committees Matters</a></li><li><a href="/cabinetsection/modelcodeofconductforelection/">Model Code of Conduct for Election</a></li><li><a href="/cabinetsection/subordinatelegislation/">Subordinate Legislation</a></li><li><a href="/cabinetsection/budgetannouncements/">Budget Announcements</a></li></ul></li><li><a href="#">Administration <i class="fa fa-plus addicon"></i> </a><ul class="dropdown-new"><li><a href="/administration/instructionsoncourtortribunalcases/">Instructions on Court or Tribunal Cases</a></li><li><a href="/administration/general/">General</a></li></ul></li><li><a href="#">Others <i class="fa fa-plus addicon"></i> </a><ul class="dropdown-new"><li><a href="/others/policyofjammer/">Policy of Jammer</a></li></ul></li><li><a href="/circulars/nitiaayog/">NITI Aayog</a></li></ul></li><li><a href=" /archived/88 ">Archive</a></li><li><a href="#">Right to Information <i class="fa fa-plus addicon" aria-hidden="true"></i> </a><ul class="dropdown-new"><li><a href="/righttoinformation/organizationchart/">Organization Chart</a></li><li><a href="/righttoinformation/cpioandappellateauthorities/">CPIO and Appellate Authorities</a></li><li><a href="/righttoinformation/quarterlyreport/">Quarterly Report</a></li><li><a href="/righttoinformation/requestformfacilitiesfee/">Request Form/ Facilities/ Fee</a></li><li><a href="/righttoinformation/categoriesofdocuments/">Categories of Documents</a></li><li><a href="/righttoinformation/poweranddutiesofofficials/">Power and Duties of Officials</a></li><li><a href="/righttoinformation/budgetallocation/">Budget Allocation</a></li><li><a href="/righttoinformation/directoryofofficials/">Directory of Officials</a></li><li><a href="/righttoinformation/officialsmonthlyremuneration/">Officials Monthly Remuneration</a></li><li><a href="/righttoinformation/workdistribution/">Work Distribution</a></li><li><a href="/righttoinformation/faqunderrighttoinformationact2005/">FAQ Under Right to Information Act 2005</a></li><li><a title=" " onclick="return show();" target="_blank" href=" http://www.istm.gov.in/rti_portal">ISTM</a></li></ul></li><li><a href=" /tenders/ ">Tenders</a></li><li><a href="#">Guidelines <i class="fa fa-plus addicon" aria-hidden="true"></i> </a><ul class="dropdown-new"><li><a href="/guidelines/handbookoncabinetnotes/">Handbook on Cabinet Notes</a></li><li><a href="/guidelines/preparationofcosnotes/">Preparation of CoS Notes</a></li><li><a href="/guidelines/processforpendinglegislativeproposals/">Process for Pending Legislative Proposals</a></li><li><a href="/guidelines/recruitmentrules/">Recruitment Rules</a></li></ul></li><li><a href="#">More <i class="fa fa-plus addicon" aria-hidden="true"></i> </a><ul class="dropdown-new"><li><a href="/more/vacancies/">Vacancies</a></li><li><a href="/more/compassionateappointment/">Compassionate Appointment</a></li><li><a title=" " onclick="return show();" target="_blank" href=" https://doptcirculars.nic.in/Default.aspx?URL=6G4WVPFk5ngz">Secretary List</a></li><li><a href="/more/formercabinetsecretariesemaillist/">Former Cabinet Secretaries email List</a></li><li><a title=" " onclick="return show();" target="_blank" href=" https://doptcirculars.nic.in/Default.aspx?URL=DFcTMmz52pRG">Chief Secretary List</a></li><li><a title=" " onclick="return show();" target="_blank" href=" https://pfms.nic.in">Employee Corner</a></li><li><a href="/more/committeesondisputes/">Committees on Disputes</a></li><li><a href="/more/pressreleases/">Press Releases</a></li><li><a title=" " onclick="return show();" target="_blank" href=" https://yoga.ayush.gov.in">Yoga Prayer & CYP</a></li></ul></li> </ul>
</div>
</nav>
<section class="nav-divider-border"></section><!--/.nav-wrapper-->
<!-- section for button aob,tob-->
<div class="container">
<div class="row">
<div id="main">
<main id="content-column" class="content-column" role="main">
<!-- !Breadcrumbs -->
<div class="breadcrumb_for_all" >
<div><a style="text-decoration: none;" href="index.php">
Home
</a> <i class="fa fa-angle-right"></i> Archive</div>
</div>
<div style="min-height: 1px; display: block; margin: 0 auto!important;" >
<!-- !Messages and Help -->
<div style="width: 100%; float: left;">
<!-- !Secondary Content Region -->
<section style="display: block;" id="main-content">
<div class="three-25-50-25 at-panel panel-display clearfix" >
<div class="col-lg-4 col-md-4 col-xs-12" id="pagetitle_with_icon">
<div class="region-inner clearfix">
<div class="panel-pane pane-block pane-npi-utility-left-menu-siblings left_sidebar test2 no-title block">
<div class="block-inner clearfix">
<div class="block-content">
<div id="leftside-bar">
<div style="width: 100%;float: left; height: auto; padding-left: 0;">
<i id="icon_sitemap_title" class="fa fa-sitemap"></i>
<span class="parentval_ptitle"> </span>
</div>
<ul style="box-sizing: border-box;
float: left;
list-style-type: none;
padding: 14px 0 0 26px;
width: 80%;><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Handbook on Cabinet Notes' href="archived/52">Handbook on Cabinet Notes</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Transaction of Business Rules' href="archived/17">Transaction of Business Rules</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Who's who' href="archived/75">Who's who</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Initial Compositions of Council of Ministers' href="archived/88">Initial Compositions of Council of Ministers</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Cabinet Section' href="archived/7">Cabinet Section</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Policy of Jammer' href="archived/41">Policy of Jammer</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Swearing of New Ministers' href="archived/3">Swearing of New Ministers</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Recruitment Rules' href="archived/79">Recruitment Rules</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Second Schedule' href="archived/14">Second Schedule</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Change In Portfolios' href="archived/5">Change In Portfolios</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Council of Ministers' href="archived/1">Council of Ministers</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Cabinet Committees' href="archived/7">Cabinet Committees</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Amendment' href="archived/15">Amendment</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Complete AOB Rules' href="archived/30">Complete AOB Rules</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='General' href="archived/42">General</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Allocation of Business Rules' href="archived/30">Allocation of Business Rules</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Empowered Group of Ministers (EGoMs)' href="archived/28">Empowered Group of Ministers (EGoMs)</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Tenders' href="archived/22">Tenders</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Directory of Officials' href="archived/48">Directory of Officials</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Officials Monthly Remuneration' href="archived/49">Officials Monthly Remuneration</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Group of Ministers (GoMs)' href="archived/29">Group of Ministers (GoMs)</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Initial Compositions of Council of Ministers' href="archived/108">Initial Compositions of Council of Ministers</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Vacancies' href="archived/26">Vacancies</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Miscelleneous' href="archived/34">Miscelleneous</a></li><li style="
margin: 0px;
display: block;"><a style="border-bottom: 1px solid #eee;
display: block;
padding: 6px 6px 8px 15px;
line-height: normal;
text-decoration:none;" role="link" title='Model Code of Conduct for Election' href="archived/33">Model Code of Conduct for Election</a></li></ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
<div class="region-inner clearfix">
<div class="panel-pane pane-views pane-level2-description no-title block">
<div class="block-inner clearfix">
<div class="block-content">
<div class="view view-level2-description view-id-level2_description view-display-id-block view-dom-id-341427acefa176f80d079fb2e54c87f3">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first views-row-last">
<!--<div class="title_images">
<img typeof="foaf:Image" class="image-style-none" src="image/portfolio.png" width="162" height="163" alt="Constitution of India" title="Constitution of India" /></div>-->
<h2 id="skipCont" class="cont_div_titleh2">
<span>Initial Compositions of Council of Ministers</span> </h2>
<?php// echo archive_year($page,$year,$month); ?>
<table class="table1">
<tr style="background-color: #00BFFF;width: 100%;height: 20px;">
<td valign="middle" style="width:10%;font-weight: bold;color:white;height: 40px;text-align:center;"><p style="margin-top:10px;text-align:center;font-size: 14px;">Sl.No.</p></td>
<td valign="middle" style="width:50%;color:white;height: 40px;font-weight: bold;text-align: center;"><p style="margin-top:10px;text-align:center;font-size: 14px;">Year</p></td>
<td valign="middle" style="width:40%;color:white;height: 40px;font-weight: bold;text-align: center;"><p style="margin-top:10px;text-align:center;font-size: 14px;">No. Of Documents</p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">1</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2014' href="archived/88/2014" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2014
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/2014" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">2</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2009' href="archived/88/2009" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2009
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/2009" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">3</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2004' href="archived/88/2004" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2004
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/2004" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">4</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1999' href="archived/88/1999" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1999
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1999" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">5</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1998' href="archived/88/1998" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1998
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1998" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">6</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1997' href="archived/88/1997" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1997
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1997" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">7</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1996' href="archived/88/1996" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1996
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2' href="archived/88/1996" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">8</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1991' href="archived/88/1991" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1991
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1991" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">9</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1990' href="archived/88/1990" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1990
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1990" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">10</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1989' href="archived/88/1989" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1989
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2' href="archived/88/1989" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">11</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1984' href="archived/88/1984" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1984
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2' href="archived/88/1984" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">12</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1980' href="archived/88/1980" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1980
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2' href="archived/88/1980" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">13</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1979' href="archived/88/1979" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1979
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1979" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">14</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1977' href="archived/88/1977" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1977
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2' href="archived/88/1977" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">15</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1971' href="archived/88/1971" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1971
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1971" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">16</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1967' href="archived/88/1967" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1967
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1967" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">17</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1966' href="archived/88/1966" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1966
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='5' href="archived/88/1966" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 5
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">18</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1964' href="archived/88/1964" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1964
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2' href="archived/88/1964" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">19</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1962' href="archived/88/1962" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1962
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1962" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">20</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1957' href="archived/88/1957" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1957
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1957" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">21</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1952' href="archived/88/1952" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1952
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1952" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">22</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1950' href="archived/88/1950" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1950
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='2' href="archived/88/1950" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 2
</a></p></td></tr><tr style="width: 100%;"><td style="width: 10%;text-align:center;height:40px;vertical-align: middle;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:justify;">23</p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1947' href="archived/88/1947" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1947
</a></p></td><td style="width: 35%;height:40px;vertical-align: middle;"><a title='1' href="archived/88/1947" id="a1" style="text-decoration: none;"><p style="margin-top:10px;margin-left:10px;margin-right:10px;text-align:center;"> 1
</a></p></td></tr> </table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--------------->
</div>
<div class="panel-separator"></div>
</section>
</div>
</div>
</main>
</div>
</div>
</div>
<script type="text/javascript" src="assets/js/jquerycarousel.min.js"></script>
<script type="text/javascript" src="sites/all/themes/cmf/js/jquery.flexslider.js?otx9ak"></script>
<style>
@font-face {
font-family: 'Digital';
src:url('fonts/digital_counter_7_italic.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.counter{
text-shadow: 2px 2px #000000;
font-size:22px;
line-height:22px;
font-weight:normal;
text-align:center;
}
</style>
<div class="wrapper carousel-wrapper">
<div class="container carousel-container">
<div id="flexCarousel" class="flexslider carousel">
<div class="region region-featured">
<div id="block-views-footer-banner-block" class="block block-views first last odd">
<div class="view view-footer-banner view-id-footer_banner view-display-id-block nbs-flexisel-container view-dom-id-0bee404310ad839eb61d2c5688013fc6">
<div class="view-content">
<ul class="slides">
<li class="" onfocusin="focusFunction(this)" onfocusout="blurFunction(this)">
<a onclick="return show();" href="https://presidentofindia.nic.in/" target="_blank">
<img typeof="foaf:Image" src="assets/img/president.png" width="200" height="150" title="President of INDIA | External link that open in new window" alt="President of India | External link that open in new window" /></a>
</li>
<li class="" onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" style="padding: 0 5px;">
<a onclick="return show();" href="http://vicepresidentofindia.nic.in/" target="_blank"><img typeof="foaf:Image" src="assets/img/vicepresident.png" width="200" height="150" title="Vice President of INDIA | External link that open in new window" alt="Vice President of India | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="http://www.pmindia.gov.in/en/" target="_blank"><img typeof="foaf:Image" src="assets/img/pmindia.png" width="200" height="150" title="PM INDIA | External link that open in new window" alt="Vice President of India | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="" style="padding: 50px 5px 50px 5px;">
<a onclick="return show();" href="http://india.gov.in/ " target="_blank"><img typeof="foaf:Image" src="sites/default/files/india-gov.jpg" width="200" height="150" alt="India.gov.in" title="India.gov.in | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="https://esamiksha.gov.in/ " target="_blank"><img typeof="foaf:Image" src="assets/img/esamiksha.png" width="200" height="150" alt="eSamiksha" title="eSamiksha | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="https://esuvidha.gov.in/" target="_blank"><img typeof="foaf:Image" src="assets/img/esuvidha.png" width="200" height="150" alt="esuvidha" title="esuvidha | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="http://enivesh.gov.in/pmgportalforclearances/" target="_blank"><img typeof="foaf:Image" src="assets/img/enivesh.png" width="200" height="150" title="e-nivesh | External link that open in new" alt="e-nivesh | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="https://dbtbharat.gov.in" target="_blank"><img typeof="foaf:Image" src="assets/img/DBTBharat.png" width="200" height="150" title="DBT Bharat | External link that open in new" alt="DBT Bharat | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="https://mygov.in/ " target="_blank"><img typeof="foaf:Image" src="sites/default/files/mygov.png" width="200" height="150" alt="MYGOV | External link that open in new window" title="MYGOV | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="http://www.digitalindia.gov.in/ " target="_blank"><img typeof="foaf:Image" src="sites/default/files/digital-India-logo.png" width="200" height="150" alt="Digital India| External link that open in new window" title="Digital India | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="http://goidirectory.nic.in/index.php " target="_blank"><img typeof="foaf:Image" src="assets/img/trans_GOI.png" width="200" height="150" alt="GOI | External link that open in new window" title="GOI | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="https://data.gov.in " target="_blank"><img typeof="foaf:Image" src="sites/default/files/data-gov.png" width="200" height="150" alt="data.gov.in| External link that open in new window " title="data.gov.in | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="http://egazette.nic.in/ " target="_blank"><img typeof="foaf:Image" src="sites/default/files/e-gazette_0.png" width="200" height="150" alt="e-Gazette| External link that open in new window" title="e-Gazette | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="http://indiacode.nic.in/ " target="_blank"><img typeof="foaf:Image" src="assets/img/trans_indiacode.png" width="200" height="150" alt="data.gov.in| External link that open in new window " title="indiacode | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="https://gem.gov.in/" target="_blank"><img typeof="foaf:Image" src="assets/img/gem.png" width="200" height="150" alt="myvisit | External link that open in new window" title="GeM | External link that open in new window" /></a>
</li>
<li onfocusin="focusFunction(this)" onfocusout="blurFunction(this)" class="">
<a onclick="return show();" href="http://evisitors.nic.in/ " target="_blank"><img typeof="foaf:Image" src="sites/default/files/myvisit-logo_0.png" width="200" height="150" alt="myvisit | External link that open in new window" title="myvisit | External link that open in new window" /></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="footer" class="region region-footer">
<div id="block-cmf-content-footer-region-block" class="block block-cmf-content first last odd">
<div class="wrapper footer-wrapper">
<div class="footer-top-wrapper">
<div class="container footer-top-container"> <ul class="menu"><li class="menu__item is-leaf first leaf"><a style="color:white;text-decoration:none;" href="/footercontent/aboutthiswebsite/" title="About this website" > About this website</a></li><li class="menu__item is-leaf first leaf"><a style="color:white;text-decoration:none;" href="/footercontent/help/" title="Help" > Help</a></li><li class="menu__item is-leaf first leaf"><a style="color:white;text-decoration:none;" href="/footercontent/termsandconditions/" title="Terms and Conditions" > Terms and Conditions</a></li><li class="menu__item is-leaf first leaf"><a style="color:white;text-decoration:none;" href="/footercontent/accessibilitystatement/" title="Accessibility Statement" > Accessibility Statement</a></li><li class="menu__item is-leaf first leaf"><a style="color:white;text-decoration:none;" href="/footercontent/webinformationmanager/" title="Web Information Manager" > Web Information Manager</a></li><li class="menu__item is-leaf first leaf"><a style="color:white;text-decoration:none;" href="/footercontent/websitepolicies/" title="Website Policies" > Website Policies</a></li><li class="menu__item is-leaf first leaf"><a style="color:white;text-decoration:none;" href="/footercontent/feedback/" title="Feedback" > Feedback</a></li><li class="menu__item is-leaf first leaf"><a style="color:white;text-decoration:none;" href="/footercontent/contactus/" title="Contact Us" > Contact Us</a></li></ul> </div>
</div>
<div class="footer-bottom-wrapper">
<div class="container footer-bottom-container">
<div class="footer-content clearfix ">
<div class="logo-cmf"> <a href="http://cmf.gov.in/" target="_blank" title="CMF" ><img src="sites/all/modules/customs/cmf_content/assets/images/cmf-logo.png" alt="Built on Common Minimum Framework"></a> </div>
<div class="copyright-content">© Website Content Managed by <strong> Cabinet Secretariat, Government of India</strong>
<span>Designed, Developed and Hosted by <a href="http://www.nic.in/" title="NIC, External Link that opens in a new window" target="_blank" style="text-decoration: none; font-size: 100%;"><strong>National Informatics Centre</strong></a> </span>
<span class="lastupdated">Last Updated: <strong> 24 August, 2021 </strong></span>
<span class="counter"> Visitors : <strong style="font-family:'Digital';text-align: center;"> 1522257</strong> </span>
</div>
<div class="logo-cmf"> <a href="/writereaddata/stqc_certificate/English/1_Upload_2017.pdf" target="_blank"><img title="cqw" src="image/cqw_logo.gif" alt="cqw"></a> </div>
</div>
</div>
</div>
</div>
</div>
</footer>
<script type="text/javascript">
jQuery(window).load(function () {
// Slider
jQuery('#flexSlider').flexslider({
animation: "slide",
controlNav: true,
start: function (slider) {
jQuery('body').removeClass('loading');
}
});
jQuery('#gallery').flexslider({
animation: "slide",
controlNav: false,
start: function (slider) {
jQuery('body').removeClass('loading');
}
});
jQuery('#contSlider1').flexslider({
animation: "slide",
controlNav: false,
start: function (slider) {
jQuery('body').removeClass('loading');
}
});
jQuery('#contSlider2').flexslider({
animation: "slide",
controlNav: false,
start: function (slider) {
jQuery('body').removeClass('loading');
}
});
// Carousel
jQuery('#flexCarousel').flexslider({
animation: "slide",
animationLoop: false,
itemWidth: 200,
itemMargin: 5,
pausePlay: true,
minItems: 2,
maxItems: 6,
slideshow: 1,
move: 1,
controlNav: false,
start: function (slider) {
jQuery('body').removeClass('loading');
if (slider.pagingCount === 1)
slider.addClass('flex-centered');
}
});
// Gallery
jQuery('#galleryCarousel').flexslider({
animation: "fade",
controlNav: "thumbnails",
start: function (slider) {
jQuery('body').removeClass('loading');
}
});
// Video Gallery
jQuery('#videoCarousel').flexslider({
animation: "fade",
controlNav: "thumbnails",
start: function (slider) {
jQuery('body').removeClass('loading');
}
});
});
function focusFunction(x) {
x.style.border = "1px dotted #000000";
}
function blurFunction(x) {
x.style.border = "none";
}
</script>
<script type="text/javascript">
jQuery('.documents-reports .menu').addClass('list');
</script>
</body>
</html>
|