<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6393873030318236659</id><updated>2012-02-16T15:10:43.456-08:00</updated><title type='text'>I Can Give Worthfull Informations</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default?start-index=101&amp;max-results=100'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>209</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-7729580211149356097</id><published>2011-07-12T00:03:00.000-07:00</published><updated>2011-07-12T00:07:34.313-07:00</updated><title type='text'>Website Cookie Testing, Test cases for testing web application cookies?</title><content type='html'>&lt;div id="content_box"&gt;&lt;br /&gt;&lt;div class="posts single" id="content"&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: 32px; font-weight: bold;"&gt;Website Cookie Testing, Test cases for testing web application cookies?&lt;/span&gt;&lt;br /&gt;&lt;div class="post_date"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;What is Cookie?&lt;/strong&gt;&lt;/div&gt;&lt;div class="entry"&gt;&lt;br /&gt;Cookie is small information stored in text file on user’s hard drive by web server. This information is later used by web browser to retrieve information from that machine. Generally cookie contains personalized user data or information that is used to communicate between different web pages.&lt;br /&gt;&lt;strong&gt;Why Cookies are used?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Cookies are nothing but the user’s identity and used to track where the user navigated throughout the web site pages. The communication between web browser and web server is stateless.&lt;br /&gt;For example if you are accessing domain http://www.example.com/1.html then web browser will simply query to example.com web server for the page 1.html. Next time if you type page as http://www.example.com/2.html then new request is send to example.com web server for sending 2.html page and web server don’t know anything about to whom the previous page 1.html served.&lt;br /&gt;What if you want the previous history of this user communication with the web server? You need to maintain the user state and interaction between web browser and web server somewhere. This is where cookie comes into picture. Cookies serve the purpose of maintaining the user interactions with web server.&lt;br /&gt;&lt;strong&gt;How cookies work?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The HTTP protocol used to exchange information files on the web is used to maintain the cookies. There are two types of HTTP protocol. Stateless HTTP and Stateful HTTP protocol. Stateless HTTP protocol does not keep any record of previously accessed web page history. While Stateful HTTP protocol do keep some history of previous web browser and web server interactions and this protocol is used by cookies to maintain the user interactions.&lt;br /&gt;Whenever user visits the site or page that is using cookie, small code inside that HTML page (Generally a call to some language script to write the cookie like cookies in JAVAScript, PHP, Perl) writes a text file on users machine called cookie.&lt;br /&gt;&lt;br /&gt;Here is one example of the code that is used to write cookie and can be placed inside any HTML page:&lt;br /&gt;Set-Cookie: NAME=VALUE; expires=DATE; path=PATH; domain=DOMAIN_NAME;&lt;br /&gt;When user visits the same page or domain later time this cookie is read from disk and used to identify the second visit of the same user on that domain. Expiration time is set while writing the cookie. This time is decided by the application that is going to use the cookie.&lt;br /&gt;Generally two types of cookies are written on user machine.&lt;br /&gt;&lt;strong&gt;1) Session cookies:&lt;/strong&gt; This cookie is active till the browser that invoked the cookie is open. When we close the browser this session cookie gets deleted. Some time session of say 20 minutes can be set to expire the cookie.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;2) Persistent cookies:&lt;/strong&gt; The cookies that are written permanently on user machine and lasts for months or years.&lt;br /&gt;&lt;strong&gt;Where cookies are stored?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;When any web page application writes cookie it get saved in a text file on user hard disk drive. The path where the cookies get stored depends on the browser. Different browsers store cookie in different paths. E.g. Internet explorer store cookies on path &lt;strong&gt;“C:\Documents and Settings\Default User\Cookies”&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Here the “Default User” can be replaced by the current user you logged in as. Like “Administrator”, or user name like “Vijay” etc.&lt;br /&gt;&lt;br /&gt;The cookie path can be easily found by navigating through the browser options. In Mozilla Firefox browser you can even see the cookies in browser options itself. Open the Mozila browser, click on Tools-&amp;gt;Options-&amp;gt;Privacy and then “Show cookies” button.&lt;br /&gt;&lt;strong&gt;How cookies are stored?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Lets take example of cookie written by rediff.com on Mozilla Firefox browser:&lt;br /&gt;&lt;br /&gt;On Mozilla Firefox browser when you open the page rediff.com or login to your rediffmail account, a cookie will get written on your Hard disk. To view this cookie simply click on “Show cookies” button mentioned on above path. Click on Rediff.com site under this cookie list. You can see different cookies written by rediff domain with different names.&lt;br /&gt;&lt;strong&gt;Site:&lt;/strong&gt; Rediff.com Cookie name: RMID&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Name: &lt;/strong&gt;RMID  (Name of the cookie)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Content:&lt;/strong&gt; 1d11c8ec44bf49e0… (Encrypted content)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Domain:&lt;/strong&gt; .rediff.com&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Path:&lt;/strong&gt; /   (Any path after the domain name)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Send For:&lt;/strong&gt; Any type of connection&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Expires:&lt;/strong&gt; Thursday, December 31, 2020 11:59:59 PM&lt;br /&gt;&lt;strong&gt;Applications where cookies can be used:&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;1) To implement shopping cart:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Cookies are used for maintaining online ordering system. Cookies remember what user wants to buy. What if user adds some products in their shopping cart and if due to some reason user don’t want to buy those products this time and closes the browser window? When next time same user visits the purchase page he can see all the products he added in shopping cart in his last visit.&lt;br /&gt;&lt;strong&gt;2) Personalized sites:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;When user visits certain pages they are asked which pages they don’t want to visit or display. User options are get stored in cookie and till the user is online, those pages are not shown to him.&lt;br /&gt;&lt;strong&gt;3) User tracking: &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;To track number of unique visitors online at particular time.&lt;br /&gt;&lt;strong&gt;4) Marketing:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Some companies use cookies to display advertisements on user machines. Cookies control these advertisements. When and which advertisement should be shown? What is the interest of the user? Which keywords he searches on the site? All these things can be maintained using cookies.&lt;br /&gt;&lt;strong&gt;5) User sessions:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Cookies can track user sessions to particular domain using user ID and password.&lt;br /&gt;&lt;strong&gt;Drawbacks of cookies:&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;1) &lt;/strong&gt;Even writing Cookie is a great way to maintain user interaction, if user has set browser options to warn before writing any cookie or disabled the cookies completely then site containing cookie will be completely disabled and can not perform any operation resulting in loss of site traffic.&lt;br /&gt;&lt;strong&gt;2) Too many Cookies:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;If you are writing too many cookies on every page navigation and if user has turned on option to warn before writing cookie, this could turn away user from your site.&lt;br /&gt;&lt;strong&gt;3) Security issues:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Some times users personal information is stored in cookies and if someone hack the cookie then hacker can get access to your personal information. Even corrupted cookies can be read by different domains and lead to security issues.&lt;br /&gt;&lt;strong&gt;4) Sensitive information:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Some sites may write and store your sensitive information in cookies, which should not be allowed due to privacy concerns.&lt;br /&gt;This should be enough to know what cookies are. If you want more cookie info see &lt;a href="http://www.cookiecentral.com/c_concept.htm" target="_blank" title="Cookie info"&gt;Cookie Central page. &lt;/a&gt;&lt;br /&gt;&lt;strong&gt;Some Major Test cases for web application cookie testing: &lt;/strong&gt;&lt;br /&gt;The first obvious test case is to test if your application is writing cookies properly on disk. You can use the &lt;a href="http://www.html-kit.com/tools/cookietester/" target="_blank" title="Cookie testing"&gt;Cookie Tester application&lt;/a&gt; also if you don’t have any web application to test but you want to understand the cookie concept for testing.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Test cases:&amp;nbsp;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;1)&lt;/strong&gt; As a Cookie &lt;strong&gt;privacy policy&lt;/strong&gt; make sure from your design documents that no personal or sensitive data is stored in the cookie.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;2) &lt;/strong&gt;If you have no option than saving &lt;strong&gt;sensitive data&lt;/strong&gt; in cookie make sure data stored in cookie is stored in encrypted format.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;3)&lt;/strong&gt; Make sure that there is &lt;strong&gt;no overuse of cookies&lt;/strong&gt; on your site under test. Overuse of cookies will annoy users if browser is prompting for cookies more often and this could result in loss of site traffic and eventually loss of business.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;4) Disable the cookies&lt;/strong&gt; from your browser settings: If you are using cookies on your site, your sites major functionality will not work by disabling the cookies. Then try to access the web site under test. Navigate through the site. See if appropriate messages are displayed to user like “For smooth functioning of this site make sure that cookies are enabled on your browser”. There should not be any page crash due to disabling the cookies. (Please make sure that you close all browsers, delete all previously written cookies before performing this test)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;5) Accepts/Reject some cookies: &lt;/strong&gt;The best way to check web site functionality is, not to accept all cookies. If you are writing 10 cookies in your web application then randomly accept some cookies say accept 5 and reject 5 cookies. For executing this test case you can set browser options to prompt whenever cookie is being written to disk. On this prompt window you can either accept or reject cookie. Try to access major functionality of web site. See if pages are getting crashed or data is getting corrupted.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;6) Delete cookie: &lt;/strong&gt;Allow site to write the cookies and then close all browsers and manually delete all cookies for web site under test. Access the web pages and check the behavior of the pages.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;7) Corrupt the cookies:&lt;/strong&gt; Corrupting cookie is easy. You know where cookies are stored. Manually edit the cookie in notepad and change the parameters to some vague values. Like alter the cookie content, Name of the cookie or expiry date of the cookie and see the site functionality. In some cases corrupted cookies allow to read the data inside it for any other domain. This should not happen in case of your web site cookies. Note that the cookies written by one domain say rediff.com can’t be accessed by other domain say yahoo.com unless and until the cookies are corrupted and someone trying to hack the cookie data.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;8 ) Checking the deletion of cookies from your web application page:&lt;/strong&gt; Some times cookie written by domain say rediff.com may be deleted by same domain but by different page under that domain. This is the general case if you are testing some ‘action tracking’ web portal. Action tracking or purchase tracking pixel is placed on the action web page and when any action or purchase occurs by user the cookie written on disk get deleted to avoid multiple action logging from same cookie. Check if reaching to your action or purchase page deletes the cookie properly and no more invalid actions or purchase get logged from same user.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;9) Cookie Testing on Multiple browsers: &lt;/strong&gt;This is the important case to check if your web application page is writing the cookies properly on different browsers as intended and site works properly using these cookies. You can test your web application on Major used browsers like Internet explorer (Various versions), Mozilla Firefox, Netscape, Opera etc.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;10)&lt;/strong&gt; If your web application is using &lt;strong&gt;cookies to maintain the logging state of any user&lt;/strong&gt; then log in to your web application using some username and password. In many cases you can see the logged in user ID parameter directly in browser address bar. Change this parameter to different value say if previous user ID is 100 then make it 101 and press enter. The proper access message should be displayed to user and user should not be able to see other users account.&lt;br /&gt;These are some Major test cases to be considered while testing website cookies. You can write multiple test cases from these test cases by performing various combinations. If you have some different application scenario, you can mention your test cases in comments below.&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-7729580211149356097?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/7729580211149356097/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/07/website-cookie-testing-test-cases-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/7729580211149356097'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/7729580211149356097'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/07/website-cookie-testing-test-cases-for.html' title='Website Cookie Testing, Test cases for testing web application cookies?'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-9071586134490452099</id><published>2011-06-27T21:28:00.000-07:00</published><updated>2011-06-27T21:29:26.824-07:00</updated><title type='text'>The End of Unwanted Phone Calls and Spam?</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;img src="http://l.yimg.com/jj/da48c30671d14052b89638375473e045" /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="background-color: white; color: #333333; font-family: arial; font-size: 13px; line-height: 16px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Last year,&amp;nbsp;&lt;a data-rapid_p="3" href="http://www.mensxp.com/technology/phones/2715-change-your-mobile-operator-without-changing-number.html" rel="nofollow" style="color: #bb2255; text-decoration: none;"&gt;TRAI&lt;/a&gt;&amp;nbsp;had announced that calling phone numbers registered in the Do-Not-Call Registry (over a 100 million mobile phone users) would invoke a first fine of Rs and up to Rs 2.5 lakh for the sixth offense, after which any failure to comply would lead to a 2 year blacklist.&lt;/div&gt;&lt;h6 style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Previously, penalties stood at Rs 500 and Rs 1000&lt;/h6&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="" src="http://l.yimg.com/jj/c388ba827487145cd84dcb9e7fa4fdc0" style="border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-style: initial; border-top-width: 0px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px;" /&gt;&lt;/div&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;This powerful measure had not been legislated, even after 4 (missed) deadlines. Now, according to an official's statement to the Economic Times, this measure might be formally passed by end June.&lt;/div&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;The new rules will let you screen out all telemarketing calls, while opting to receive&amp;nbsp;&lt;a data-rapid_p="4" href="http://www.mensxp.com/technology/phones/4830-sms-facilities-you-didnt-know-about-.html" rel="nofollow" style="color: #bb2255; text-decoration: none;"&gt;SMSs&lt;/a&gt;, which can also be filtered by your area of choice, ranging from banking and financial products to real estate, education, health, consumer goods,&amp;nbsp;&lt;a data-rapid_p="5" href="http://www.mensxp.com/auto/5215-top-5-american-cars-that-should-be-in-india.html" rel="nofollow" style="color: #bb2255; text-decoration: none;"&gt;automobiles&lt;/a&gt;, communication, entertainment, tourism nd leisure.&lt;/div&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Further, you won't be receiving this text messages at odd hours - the 9PM to 9 AM telemarketing text window will be closed. This will also be applicable to unregistered customers.&lt;/div&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;The TRAI recently sent a new communication to the Indian Department of Telecom, asking for completion of registering telemarketers with the '140' number series, an easy way to spot unsolicited commercial calls.&lt;/div&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;However, BSNL is asking for more time (till the end of the calendar year)to upgrade to the new ten-digit numbers starting with 140.&lt;/div&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;'The delay is due to BSNL - most of their switching infrastructure is old and it will be challenge for them to get it ready to handle the new numbering series on landlines. On the mobile side, the infrastructure is largely in place across all operators," explained Rajan Mathews, who heads the Cellular Operators Association of India, the industry lobby representing all GSM players.&lt;/div&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;There have also been reports of more powers in curbing erring telemarketers.&lt;/div&gt;&lt;div style="margin-bottom: 10px; margin-top: 10px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Action on spam SMS and telemarketing scenario was held up due to the legal issues between regulators and the Department of Telecom&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-9071586134490452099?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/9071586134490452099/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/06/end-of-unwanted-phone-calls-and-spam.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/9071586134490452099'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/9071586134490452099'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/06/end-of-unwanted-phone-calls-and-spam.html' title='The End of Unwanted Phone Calls and Spam?'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-89151056239796626</id><published>2011-06-03T00:25:00.000-07:00</published><updated>2011-06-03T00:27:41.429-07:00</updated><title type='text'>4 skills HR managers look for in YOU</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;img src="http://im.rediff.com/getahead/2010/jan/25job.jpg" /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;b&gt;1. Discipline and punctuality&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;b&gt;&lt;img src="http://im.rediff.com/getahead/2009/aug/12slide8.jpg" /&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;span style="font-size: large;"&gt;T&lt;/span&gt;hese are qualities that will be sought after and one needs to express that during an interview by being on time. No matter what position a company is hiring for, they will have a tardiness policy, and showing up late to an interview will convey a message that you may not be punctual if you are hired.&lt;/span&gt;&lt;br /&gt;&lt;div style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 1.4em; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;If there is a need for hiring a candidate at a management position, the leadership ability of the candidate is scrutinised. The art of leading from the front and to lead the way for the team you are going to handle at a manager or supervisory position becomes a critical parameter to judge.&amp;nbsp;&lt;b&gt;&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;2. Decision making ability&lt;/b&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;b&gt;&lt;img src="http://im.rediff.com/getahead/2009/may/11interview1.gif" /&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;span style="font-size: large;"&gt;M&lt;/span&gt;ost large companies don't like to deal with applicants that need to be micromanaged. Depending on the position you are applying for, you may need to make a lot of decisions on your own, and you may not be under the direct supervision of a manager.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; line-height: 16px;"&gt; &lt;br /&gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt; A focused and a success-oriented&lt;/span&gt;&lt;b style="font-size: 12px;"&gt;&amp;nbsp;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: 12px;"&gt;candidate will always be preferred over a candidate with unclear goals.&amp;nbsp; You should know what you want from the job and how you will achieve it.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;strong&gt;3. Honesty&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;strong&gt;&lt;img src="http://im.rediff.com/getahead/2009/jun/11money6.jpg" /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;span style="font-size: large;"&gt;T&lt;/span&gt;his is another quality that companies will look for in applicants. This is especially true for jobs in the banking or financial industries, as ethics, integrity are crucial aspects of an employee's behaviour in these industries.&lt;/span&gt;&lt;br /&gt;&lt;div style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 1.4em; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Confidentiality of data is extremely important for such companies and hence employers pay emphasis on selecting a candidate who they can trust with sensitive customer information.&lt;br /&gt;&lt;b&gt;4. Commitment and dedication&lt;/b&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 1.4em; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img src="http://im.rediff.com/getahead/2009/nov/19contest.jpg" /&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;span style="font-size: large;"&gt;A&lt;/span&gt;mong all the above traits pursued by employers, commitment and dedication&lt;b&gt;&amp;nbsp;&lt;/b&gt;seems to be the most desirable quality in any candidate. To prove other qualities stated above you need to be committed to the organisation.&lt;/span&gt;&lt;br /&gt;&lt;div style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 1.4em; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;A candidate should come across as a person who would make honest attempts to have his or her efforts count and thereby add to the organisation's pursuit of its business goals.&lt;/div&gt;&lt;div style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 1.4em; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 1.4em; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-89151056239796626?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/89151056239796626/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/06/4-skills-hr-managers-look-for-in-you.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/89151056239796626'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/89151056239796626'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/06/4-skills-hr-managers-look-for-in-you.html' title='4 skills HR managers look for in YOU'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-8883644680116271658</id><published>2011-04-24T23:44:00.001-07:00</published><updated>2011-04-24T23:44:45.085-07:00</updated><title type='text'>Sai devotees in mouorning, gather for last darshan</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" height="333" id="myMovie" width="400"&gt;&lt;param name="movie" value="http://timesofindia.indiatimes.com/configspace/ads/TimesWrapper.swf"&gt;&lt;param name="quality" value="high"&gt;&lt;param name="wmode" value="opaque"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowNetworking" value="all"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;param name="flashvars" value="channelid=10004&amp;amp;playerid=24&amp;amp;contentid=0_0l3dzj1g&amp;amp;contentpath=&amp;amp;autoplay=1&amp;amp;title=Sai devotees in mouorning, gather for last darshan&amp;amp;keywords=Sai Baba, News, Puttaparthi, Darshan, Andhra Pradesh&amp;amp;section=&amp;amp;videosection=videoshow&amp;amp;duration=&amp;amp;relatedvideo="&gt;&lt;embed allowfullscreen="true" quality="high" wmode="transparent" allowscriptaccess="always" flashvars="channelid=10004&amp;amp;playerid=24&amp;amp;contentid=0_0l3dzj1g&amp;amp;contentpath= &amp;amp;autoplay=1&amp;amp;title=Sai devotees in mouorning, gather for last darshan&amp;amp;keywords=Sai Baba, News, Puttaparthi, Darshan, Andhra Pradesh&amp;amp;section=&amp;amp;videosection=videoshow&amp;amp;duration=&amp;amp;relatedvideo=" allownetworking="all" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="400" height="333" name="myMovie" src="http://timesofindia.indiatimes.com/configspace/ads/TimesWrapper.swf" style="z-index:-1"&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-8883644680116271658?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/8883644680116271658/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/04/sai-devotees-in-mouorning-gather-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8883644680116271658'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8883644680116271658'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/04/sai-devotees-in-mouorning-gather-for.html' title='Sai devotees in mouorning, gather for last darshan'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-2077109109292866029</id><published>2011-03-24T04:58:00.000-07:00</published><updated>2011-04-06T22:17:30.258-07:00</updated><title type='text'>Referral Program For Freshers @Capgemini</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;img src="http://www.durgajobs.com/Capgemini11.jpg" /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-2077109109292866029?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/2077109109292866029/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/03/india-v-australia-live-cricket.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/2077109109292866029'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/2077109109292866029'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/03/india-v-australia-live-cricket.html' title='Referral Program For Freshers @Capgemini'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-8445846070303000524</id><published>2011-03-15T05:20:00.000-07:00</published><updated>2011-03-15T05:28:51.569-07:00</updated><title type='text'>Before Tisunami after Tisunami  in Japan</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div class="subcolumns" id="beforeafter"&gt;&lt;div class="section"&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-airport-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-airport-1.jpg&amp;quot;); height: 529px; width: 234px;"&gt;&lt;/div&gt;&lt;div class="help" style="opacity: 0;"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;&lt;br /&gt;&lt;/h2&gt;&lt;div class="source"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-arahama-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-arahama-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Fujitsuka in Sendai&lt;/h2&gt;&lt;div class="source"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-fujitsuka-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-fujitsuka-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Yuriage in Natori&lt;/h2&gt;&lt;div class="source"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-yuriage-neighborhood-detail-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-yuriage-neighborhood-detail-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Yuriage in Natori (looking west)&lt;/h2&gt;&lt;div class="source"&gt;© Google, Digital Globe, GeoEye&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-yuriage-neighborhood-looking-west-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/sendai-yuriage-neighborhood-looking-west-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Fukushima nuclear plant&lt;/h2&gt;&lt;div class="source"&gt;© Google, Digital Globe, GeoEye&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/fukushima-nuclear-plant-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/fukushima-nuclear-plant-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Kashimaku in Minamisoma&lt;/h2&gt;&lt;div class="source"&gt;© Google, Cnes/Spot Image, GeoEye&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/minamisoma-kashimaku-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/minamisoma-kashimaku-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Kashima in Minamisoma&lt;/h2&gt;&lt;div class="source"&gt;© Google, Digital Globe, GeoEye&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/minamisoma-kashima-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/minamisoma-kashima-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Haranomachi in Minamisoma&lt;/h2&gt;&lt;div class="source"&gt;© Google, Digital Globe, GeoEye&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/minamisoma-haranomachi-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/minamisoma-haranomachi-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Ishinomaki in Miyagi&lt;/h2&gt;&lt;div class="source"&gt;© Google, Cnes/Spot Image, DigitalGlobe, GeoEye&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/ishinomaki-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/ishinomaki-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Iigohama in Miyagi (Oshika Peninsula)&lt;/h2&gt;&lt;div class="source"&gt;© Google, Digital Globe, GeoEye&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/oshika-peninsula-iigohama-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/oshika-peninsula-iigohama-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="section"&gt;&lt;h2&gt;Yagawahama in Miyagi (Oshika Peninsula)&lt;/h2&gt;&lt;div class="source"&gt;© Google, Digital Globe, GeoEye&lt;/div&gt;&lt;div class="beforeafter" style="height: 529px; width: 940px;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="after" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/oshika-peninsula-yagawahama-2.jpg&amp;quot;); height: 529px; width: 940px;"&gt;&lt;/div&gt;&lt;div class="before" style="background-image: url(&amp;quot;http://www.abc.net.au/news/events/japan-quake-2011/images/beforeafter/oshika-peninsula-yagawahama-1.jpg&amp;quot;); height: 529px; width: 900px;"&gt;&lt;/div&gt;&lt;div class="help"&gt;Hover over the image to toggle before/after&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-8445846070303000524?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/8445846070303000524/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/03/hover-over-image-to-toggle-beforeafter.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8445846070303000524'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8445846070303000524'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/03/hover-over-image-to-toggle-beforeafter.html' title='Before Tisunami after Tisunami  in Japan'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-41320432593941639</id><published>2011-02-28T00:55:00.000-08:00</published><updated>2011-02-28T00:55:41.260-08:00</updated><title type='text'>Budget 2011</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;br /&gt;&lt;br /&gt;&lt;li class="nl1 first blogpost post-featured"&gt;&lt;div class="npost"&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;a href="http://www.blogger.com/budget2011/news-detail/post/news/197/highlights-of-the-budget-2011%2f12.html" target="_self"&gt;Highlights of the Budget 2011/12&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="desc"&gt;&lt;h5&gt;&lt;span class="Apple-style-span" style="font-size: small; font-weight: normal;"&gt;NEW DELHI (Reuters) - Finance Minister Pranab Mukherjee on Monday presented to parliament India's federal budget for the coming financial year beginning in April.&lt;/span&gt;&lt;/h5&gt;&lt;/div&gt;&lt;div class="cont"&gt;Following are the highlights of the budget:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;GROWTH, INFLATION EXPECTATIONS&lt;/strong&gt;&lt;br /&gt;* Economy expected to grow at 9 percent in 2012, plus or minus 0.25 percent&lt;br /&gt;* Inflation seen lower in the financial year 2011-12&lt;br /&gt;SPENDING&lt;br /&gt;* Plan expenditure seen at 4.41 trillion rupees in 2011-12, up 18.3 percent&lt;br /&gt;REVENUE&lt;br /&gt;* Gross tax receipts seen at 9.32 trillion rupees in 2011-12&lt;br /&gt;* Non-tax revenue seen at 1.25 trillion rupees in 2011-12&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;DISINVESTMENT&lt;/strong&gt;&lt;br /&gt;* Disinvestment in 2011-12 seen at 400 billion rupees&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;POLICY REFORMS&lt;/strong&gt;&lt;br /&gt;* To create infrastructure debt funds&lt;br /&gt;* To boost infrastructure development with tax-free bonds of 300 billion rupees&lt;br /&gt;* Food security bill to be introduced this year&lt;br /&gt;* To permit Securities and Exchange Board of India (SEBI) registered mutual funds to access subscriptions from foreign investments&lt;br /&gt;* Raised foreign institutional investor limit in 5-year corporate bonds for investment in infrastructure by $20 billion&lt;br /&gt;* Public debt bill to be introduced in parliament soon&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SECTOR SPENDING&lt;/strong&gt;&lt;br /&gt;* To allocate more than 1.64 trillion rupees to defence sector in 2011-12&lt;br /&gt;* Corpus of rural infrastructure development fund raised to 180 billion rupees in 2011-12&lt;br /&gt;* To provide 201.5 billion rupees capital infusion in state-run banks in 2011-12&lt;br /&gt;* To allocate 520.5 billion rupees for the education sector&lt;br /&gt;* To raise health sector allocation to 267.6 billion rupees&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;AGRICULTURE&lt;/strong&gt;&lt;br /&gt;* Removal of supply bottlenecks in the food sector will be in focus in 2011-12&lt;br /&gt;* To raise target of credit flow to agriculture sector to 4.75 trillion rupees&lt;br /&gt;* Gives 3 percent interest subsidy to farmers in 2011-12&lt;br /&gt;* Cold storage chains to be given infrastructure status&lt;br /&gt;* Capitalisation of National Bank for Agriculture and Rural Development (NABARD) of 30 billion rupees in a phased manner&lt;br /&gt;* To provide 3 billion rupees for 60,000 hectares under palm oil plantation&lt;br /&gt;* Actively considering new fertiliser policy for urea&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;FINANCE MINISTER ON THE STATE OF THE ECONOMY&lt;/strong&gt;&lt;br /&gt;* "Fiscal consolidation has been impressive. This year has also seen significant progress in those critical institutional reforms that will pave the way for double digit growth in the near future."&lt;br /&gt;* Food inflation remains a concern&lt;br /&gt;* Current account deficit situation poses some concern&lt;br /&gt;* Must ensure that private investment is sustained&lt;br /&gt;* "The economy has shown remarkable resilience."&lt;br /&gt;&lt;strong&gt;FINANCE MINISTER ON GOVERNANCE&lt;/strong&gt;&lt;br /&gt;* "Certain events in the past few months may have created an impression of drift in governance and a gap in public accountability ... such an impression is misplaced."&lt;br /&gt;* Corruption is a problem, must fight it collectively&lt;/div&gt;&lt;div class="desc2"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-41320432593941639?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/41320432593941639/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/02/budget-2011.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/41320432593941639'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/41320432593941639'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/02/budget-2011.html' title='Budget 2011'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-4801509269297278012</id><published>2011-02-24T23:52:00.000-08:00</published><updated>2011-02-24T23:56:26.167-08:00</updated><title type='text'>RAIL BUDGET - HIGHLIGHTS</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div id="yui-main"&gt;&lt;div class="yui-b"&gt;&lt;div class="yui-g"&gt;&lt;div id="comm-title"&gt;&lt;div&gt;&lt;br /&gt;&lt;div class="heading"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #274e13;"&gt;RAIL BUDGET - HIGHLIGHTS&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="yui-g"&gt;&lt;div id="comm-like"&gt;&lt;div class="em-ep-module-ugccloud-ratings-like region" id="em-ep-module-ugccloud-ratings-1296148183"&gt;&lt;div class="ratings-like-container"&gt;&lt;div class="ratings-like-bd"&gt;&lt;div class="option-toggle"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;Share:&amp;nbsp;&lt;span class="Apple-style-span" style="background-color: white;"&gt;&lt;span class="Apple-style-span" style="color: blue;"&gt;&lt;a class="facebook" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fin.specials.yahoo.com%2Fbudget2011%2Frail-budget" target="_blank"&gt;&lt;span class="Apple-style-span" style="color: blue;"&gt;Facebook&lt;/span&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class="orkut" href="http://promote.orkut.com/preview?nt=orkut.com&amp;amp;tt=Rail+Budget+2011+%7C+Rail+Budget+2011+News+-+Yahoo!+India&amp;amp;du=http%3A%2F%2Fin.specials.yahoo.com%2Fbudget2011%2Frail-budget" target="_blank"&gt;Orkut&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class="digg" href="http://digg.com/submit?phase=2&amp;amp;title=Rail+Budget+2011+%7C+Rail+Budget+2011+News+-+Yahoo!+India&amp;amp;url=http%3A%2F%2Fin.specials.yahoo.com%2Fbudget2011%2Frail-budget" target="_blank"&gt;Digg&lt;/a&gt;&amp;nbsp;&lt;a class="twitter" href="http://twitter.com/share?count=vertical&amp;amp;original_referer=http%3A%2F%2Fin.specials.yahoo.com%2Fbudget2011%2Frail-budget&amp;amp;text=Rail+Budget+2011+%7C+Rail+Budget+2011+News+-+Yahoo!+India&amp;amp;url=http%3A%2F%2Fin.specials.yahoo.com%2Fbudget2011%2Frail-budget" target="_blank"&gt;Twitter&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a class="buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fin.specials.yahoo.com%2Fbudget2011%2Frail-budget&amp;amp;headline=Rail+Budget+2011+%7C+Rail+Budget+2011+News+-+Yahoo!+India&amp;amp;summary=India+Rail+Budget+2011+News%2C+2011+India+Rail+Budget+Highlights+and+more+from+Yahoo!+India.&amp;amp;assettype=text" target="_blank"&gt;Buzz&lt;/a&gt;&amp;nbsp;&lt;a class="meme" href="http://meme.yahoo.com/dashboard/?text=http%3A%2F%2Fin.specials.yahoo.com%2Fbudget2011%2Frail-budget+Rail+Budget+2011+%7C+Rail+Budget+2011+News+-+Yahoo!+India" target="_blank"&gt;Meme&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="comm-share"&gt;&lt;div&gt;&lt;div class="share-txt"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="yui-g"&gt;&lt;div id="comm-main"&gt;&lt;div class="em-ep-html-frame-ad" id="em-ep-module-html-frame-1298541970"&gt;&lt;span class="Apple-style-span" style="color: #274e13;"&gt;&lt;iframe allowtransparency="true" background-color="transparent" class="ad" frameborder="0" height="1000" hspace="0" marginheight="0" marginwidth="0" scrolling="no" src="http://in.promos.yahoo.com/budget2011/rail.php?c=1&amp;amp;h=1400" vspace="0" width="590"&gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="yui-g"&gt;&lt;/div&gt;&lt;div class="yui-g"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-4801509269297278012?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/4801509269297278012/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/02/rail-budget-highlights.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/4801509269297278012'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/4801509269297278012'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/02/rail-budget-highlights.html' title='RAIL BUDGET - HIGHLIGHTS'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-2884966774844962826</id><published>2011-01-26T01:18:00.000-08:00</published><updated>2011-01-26T01:19:00.136-08:00</updated><title type='text'>Padma Awards 2011: The winners</title><content type='html'>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;President Pratibha Patil&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;has approved the conferment of&amp;nbsp;Padma&amp;nbsp;Awards 2011. This year the President has approved 128 awards, including one duo case (counted as one) and 12 in the category of Foreigners/ NRIs/ PIOs/ Posthumous. These comprise&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="font-family: Arial; font-size: small; line-height: 16px;"&gt;13&amp;nbsp;Padma&amp;nbsp;Vibhushan&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;,&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="font-family: Arial; font-size: small; line-height: 16px;"&gt;31&amp;nbsp;Padma Bhushan&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;&amp;nbsp;and&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="font-family: Arial; font-size: small; line-height: 16px;"&gt;84&amp;nbsp;Padma&amp;nbsp;Shri&amp;nbsp;Awards&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;. There are 31 ladies among the&amp;nbsp;awarders.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: x-small; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; line-height: 16px;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: small; line-height: normal;"&gt;&lt;strong style="font-family: Arial; font-size: small; line-height: 16px;"&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;Padma&amp;nbsp;Vibhushan&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;&lt;span class="Apple-style-span" style="line-height: normal;"&gt;&lt;strong style="line-height: 16px;"&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: x-small;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;table class="general" height="413" style="border-collapse: collapse; font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; width: 650px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sl.No.&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Name&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Discipline&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;State / Domicile&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;1.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. (Smt.) Kapila Vatsyayan&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Art Administration and Promotion.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;2.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Mrs. Homai Vyarawalla&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Photography&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Gujarat&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;3.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri A Nageshwara Rao&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art- Cinema&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;4.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Parasaran Kesava Iyengar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Public Affairs&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;5.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Akhlaq-ur-Rehman Kidwai&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Public Affairs&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;6.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Vijay Kelkar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Public Affairs&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;7.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Montek Singh Ahluwalia&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Public Affairs&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;8.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Palle Rama Rao&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;9.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Azim Premji&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;10.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Brajesh Mishra&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Civil Services&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Madhya Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;11.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. (Dr.) Ottaplakkal Neelakandan Velu Kurup&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Kerala&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;12.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Sitakant Mahapatra&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Orissa&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;13.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Late Shri L. C. Jain&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Public Affairs&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial, verdana, sans-serif, FreeSans; font-size: x-small;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: red;"&gt;Padma Bhushan&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;table class="general" height="897" style="border-collapse: collapse; font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; width: 642px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-size: x-small;"&gt;Sl.No.&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-size: x-small;"&gt;Name&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-size: x-small;"&gt;Discipline&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-size: x-small;"&gt;State / Domicile&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;1.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Satyadev Dubey&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Theatre&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;2.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Mohammed Zahur Khayyam Hashmi alias Khayyam&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Cinema - Music&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;3.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Shashi Kapoor&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Cinema&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;4.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Krishen Khanna&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Painting&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Haryana&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;5.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Madavur Vasudevan Nair&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Dance - Kathakali&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Kerala&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;6.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Ms. Waheeda Rehman&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Cinema&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;7.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Rudrapatna Krishna Shastry Srikantan&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Music-Vocal&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;8.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Ms. Arpita Singh&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Painting&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;9.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Dr. Sripathi Panditharadhyula Balasubrahmanyam&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Playback Singing, Music Direction &amp;amp; acting&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;10.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri C.V. Chandrasekhar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art - Classical Dance-Bharatanatyam&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;11.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Dwijen Mukherjee&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;West Bengal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;12.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Smt. Rajashree Birla&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;13.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Mrs. Shobhana Ranade&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;14.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Dr. Suryanarayanan Ramachandran&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Science and Engineering&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;15.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri S.(Kris) Gopalakrishnan&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;16.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Yogesh Chander Deveshwar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;West Bengal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;17.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Ms. Chanda Kochhar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;18.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Dr. K. Anji Reddy&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Trade and Industry- Pharmacy&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;19.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Analjit Singh&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;20.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Rajendra Singh Pawar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Haryana&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;21.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Dr. Gunapati Venkata Krishna Reddy&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;22.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Ajai Chowdhary&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;23.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Surendra Singh&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Civil Services&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;24.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri M. N .Buch&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Civil Services&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Madhya Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;25.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Shyam Saran&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Civil Services&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;26.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Thayil Jacob Sony George&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;27.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Dr. Ramdas Madhava Pai&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;28.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Shri Sankha Ghosh&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;West Bengal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;29.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Late Shri K. Raghavan Thirumulpad&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Medicine - Ayurveda.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Kerala*&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;30.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Late Dr. Keki Byramjee Grant&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Medicine - Cardiology&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Maharashtra *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;31.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Late Shri Dashrath Patel&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Art&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-size: x-small;"&gt;Gujarat *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: red; font-family: arial, verdana, sans-serif, FreeSans; font-size: x-small;"&gt;&lt;b&gt;Padma Shri&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: arial, verdana, sans-serif, FreeSans; font-size: x-small; line-height: 16px;"&gt;&lt;b&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;table class="general" height="2263" style="border-collapse: collapse; font-family: arial, verdana, sans-serif, FreeSans; font-size: 12px; text-align: left; width: 636px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sl.No.&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Name&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Discipline&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th style="background-clip: initial; background-color: #d6d6d6; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; vertical-align: middle;"&gt;&lt;strong&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;State / Domicile&lt;/span&gt;&lt;/strong&gt;&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;1.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Neelam Mansingh Chowdhry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Theatre&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Chandigarh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;2.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Makar Dhwaja Darogha&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art- Chhau Dance&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Jharkhand&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;3.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Shaji Neelakantan Karun&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Film Direction&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Kerala&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;4.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Girish Kasaravalli&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Film making&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;5.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Tabassum Hashmi Khan alias Tabu&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Cinema&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;6.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Jivya Soma Mase&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Warli Painting&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;7.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Guru (Ms.) M.K. Saroja&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Dance- Bharatnatyam&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;8.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Jayaram Subramaniam&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Cinema&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;9.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Pandit Ajoy Chakraborty&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Music-Indian Classical Vocal&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;West Bengal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;10.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Smt. Mahasundari Devi&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Mithilia/ Madhubani Painting.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Bihar&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;11.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Gajam Govardhana&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Handloom Weaving&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;12.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Sunayana Hazarilal&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Dance - Kathak&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;13.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri S.R. Janakiraman&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Carnatic Vocal Music&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;14.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Peruvanam Kuttan Marar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Chenda Melam- Drum concert&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Kerala&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;15.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Smt. Kalamandalam Kshemavathy Pavithran&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Dance - Mohiniattam&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Kerala&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;16.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Dadi Dorab Pudumjee&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Puppetry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;17.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Khangembam Mangi Singh&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Traditional Music of Manipur (Pena)&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Manipur&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;18.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Prahlad Singh Tipaniya&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Folk Music&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Madhya Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;19.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Smt. Usha Uthup&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art - Music.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;West Bengal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;20.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Smt. Kajol&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art- Cinema&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;21.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Irfan Khan&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Art- Cinema&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;22.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Mamraj Agrawal&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;West Bengal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;23.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Jockin Arputham&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;24.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Nomita Chandy&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;25.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Sheela Patel&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;26.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Anita Reddy&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;27.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Kanubhai Hasmukhbhai Tailor&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Gujarat&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;28.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Anant Darshan Shankar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Public Affairs&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;29.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. M. Annamalai&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;30.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Mahesh Haribhai Mehta&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering - Agricultural Science&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Gujarat&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;31.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Coimbatore Narayana Rao Raghavendran&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;32.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. (Mrs.) Suman Sahai&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;33.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof.(Dr.) E.A. Siddiq&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering - Agricultural Science&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;34.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Gopalan Nair Shankar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering - Architecture&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Kerala&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;35.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Mecca Rafeeque Ahmed&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;36.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Kailasam Raghavendra Rao&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;37.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Narayan Singh Bhati&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Civil Services&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;38.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri P K Sen&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Civil Services&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Bihar&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;39.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Shital Mahajan&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sports - Adventure Sports- Para Jumping&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;40.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Nameirakpam Kunjarani Devi&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sports - Weightlifting&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Manipur&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;41.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Sushil Kumar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sports - Wrestling&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;42.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Vangipurapu Venkata Sai Laxman&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sports - Cricket&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;43.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Gagan Narang&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sports - Shooting&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;44.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Smt. Krishna Poonia&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sports - Discus Throw&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Rajasthan&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;45.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Harbhajan Singh&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Sports - Mountaineering&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Punjab&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;46.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Pukhraj Bafna&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Medicine - Padeatrics&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Chhattisgarh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;47.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Mansoor Hasan&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Medicine- Cardiology&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Uttar Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;48.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Shyama Prasad Mandal&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Medicine - Orthopaedic&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;49.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. (Dr.) Sivapatham Vittal&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Medicine - Endocrinology&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;50.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. (Dr.) Madanur Ahmed Ali&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Medicine - Gastroenterology&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;51.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Indira Hinduja&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Medicine - Obstetrics and Gynaecology.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;52.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Jose Chacko Periappuram&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Medicine - Cardio-Thoracic Surgery.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Kerala&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;53.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. (Dr.) A. Marthanda Pillai&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Medicine - Neurosurgery&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Kerala&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;54.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Mahim Bora&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Assam&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;55.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. (Dr.) Pullella Srirama Chandrudu&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education- Sanskrit&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;56.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Pravin Darji&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Gujarat&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;57.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Chandra Prakash Deval&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Rajasthan&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;58.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Balraj Komal&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;59.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Mrs. Rajni Kumar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;60.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Devanooru Mahadeva&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Karnataka&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;61.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Barun Mazumder&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;West Bengal&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;62.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Avvai Natarajan&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Tamil Nadu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;63.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Bhalchandra Nemade&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Himachal Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;64.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Riyaz Punjabi&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Jammu and Kashmir&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;65.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Koneru Ramakrishna Rao&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andhra Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;66.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Buangi Sailo&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Mizoram&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;67.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Devi Dutt Sharma&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Uttarakhand&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;68.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Nilamber Dev Sharma&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Jammu and Kashmir&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;69.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Urvashi Butalia #&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;70.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Ritu Menon #&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;71.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Krishna Kumar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;72.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Deviprasad Dwivedi&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Uttar Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;73.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Mamang Dai&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Arunachal Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;74.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Om Prakash Agrawal&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Others - Heritage Conservation&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Uttar Pradesh&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;75.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Madhukar Keshav Dhavalikar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Others - Archeology&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Maharashtra&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;76.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Ms. Shanti Teresa Lakra&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Others-Nursing&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Andaman &amp;amp; Nicobar&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;77.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Smt. Gulshan Nanda&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Others - Handicrafts promotion&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Delhi&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;78.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Azad Moopen&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;UAE *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;79.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Upendra Baxi&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Public Affairs -Legal Affairs&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;United Kingdom *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;80.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Mani Lal Bhaumik&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;USA *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;81.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Dr. Subra Suresh&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Science and Engineering&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;USA *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;82.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Karl Harrington Potter&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;USA *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;83.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Prof. Martha Chen&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Social work&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;USA *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;84.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Satpal Khattar&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Trade and Industry&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Singapore *&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;85.&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Shri Granville Austin&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;Literature and Education&lt;/span&gt;&lt;/td&gt;&lt;td style="background-clip: initial; background-color: #f4f4f4; background-origin: initial; border-bottom-color: rgb(255, 255, 255); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(255, 255, 255); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(255, 255, 255); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(255, 255, 255); border-top-style: solid; border-top-width: 1px; padding-bottom: 4px; padding-left: 7px; padding-right: 7px; padding-top: 4px; vertical-align: top;"&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;USA *&lt;br /&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-2884966774844962826?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/2884966774844962826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/01/padma-awards-2011-winners.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/2884966774844962826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/2884966774844962826'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2011/01/padma-awards-2011-winners.html' title='Padma Awards 2011: The winners'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-1977555681104091202</id><published>2010-12-22T03:44:00.001-08:00</published><updated>2010-12-22T03:44:49.265-08:00</updated><title type='text'>Testing</title><content type='html'>&lt;a href="http://www.scribd.com/doc/16103271/Software-Testing-Ppt" style="-x-system-font: none; display: block; font-family: Helvetica,Arial,Sans-serif; font-size-adjust: none; font-size: 14px; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; margin: 12px auto 6px auto; text-decoration: underline;" title="View Software Testing Ppt on Scribd"&gt;Software Testing Ppt&lt;/a&gt; &lt;object data="http://d1.scribdassets.com/ScribdViewer.swf" height="600" id="doc_64948" name="doc_64948" style="outline: none;" type="application/x-shockwave-flash" width="100%"&gt;                &lt;param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"&gt;&lt;param name="wmode" value="opaque"&gt;&lt;param name="bgcolor" value="#ffffff"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;param name="FlashVars" value="document_id=16103271&amp;access_key=key-1l44x3wxfd2nn373n0wo&amp;page=1&amp;viewMode=list"&gt;&lt;embed id="doc_64948" name="doc_64948" src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=16103271&amp;access_key=key-1l44x3wxfd2nn373n0wo&amp;page=1&amp;viewMode=list" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="600" width="100%" wmode="opaque" bgcolor="#ffffff"&gt;&lt;/embed&gt;             &lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-1977555681104091202?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/1977555681104091202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/12/testing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/1977555681104091202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/1977555681104091202'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/12/testing.html' title='Testing'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-1066330783954894130</id><published>2010-11-10T21:04:00.000-08:00</published><updated>2010-11-10T21:04:37.168-08:00</updated><title type='text'>God did not create the universe</title><content type='html'>British physicist Stephen Hawking has said the creation of the universe was a result of the inevitable laws of physics and it did not need God's help. &lt;br /&gt;&lt;br /&gt;In his latest book titled ' The Grand Design' , Hawking writes: "Because there is a law such as gravity, the universe can and will create itself from nothing. Spontaneous creation is the reason there is something rather than nothing, why the universe exists, why we exist." &lt;br /&gt;&lt;br /&gt;He rejects Isaac Newton's theory that the universe did not spontaneously begin to form but was set in motion by God. &lt;br /&gt;&lt;br /&gt;"It is not necessary to invoke God to light the blue touch paper and set the universe going," the Daily Telegraph quoted Hawking as writing in his book. &lt;br /&gt;&lt;br /&gt;Earlier, in Hawking's most famous work 'A Brief History of Time', he did not dismiss the possibility that God had a hand in the creation of the world. &lt;br /&gt;&lt;br /&gt;"If we discover a complete theory, it would be the ultimate triumph of human reason - for then we should know the mind of God," he had written in the 1988 book. &lt;br /&gt;&lt;br /&gt;The book, co-written by American physicist Leonard Mlodinow, will be released Sep 9.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-1066330783954894130?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/1066330783954894130/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/11/god-did-not-create-universe.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/1066330783954894130'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/1066330783954894130'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/11/god-did-not-create-universe.html' title='God did not create the universe'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-7653562255397180568</id><published>2010-09-15T22:42:00.000-07:00</published><updated>2010-09-15T22:42:02.874-07:00</updated><title type='text'>Easy Ways To Save Money</title><content type='html'>Money, the second most important thing on Earth after happiness. Rather, happiness too sometimes depends on money. But exactly how much money is sufficient for a human being? The answer is difficult to find because the thirst to earn more never ends. However, to earn as much money as you want, legally, is not easy. The right way to make the best out of the money you have is to save the money. &lt;br /&gt;&lt;br /&gt;Money is not of stagnant nature and tingles your desires. You fall prey to it and thus, the bank balance soon falls short. The mantra to maintain your bank balance and to live a happy life lies on the perfect way to save money. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: blue;"&gt;Lets look at some ways to save money -&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;1.Divide Your Money &lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;– &lt;/span&gt;The day you get your salary, divide the money for your bills. Make separate bundles for different bills and pay them off before you use them for your own purpose. This will let you know exactly what amount you are left with and how will you run the number of days left before the next salary comes.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;2.Make A Shopping List&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt; –&lt;/span&gt; Make a list of what all you want in the month. Divide the list into most important things and the not so important things. This will give you a clear picture as to what to concentrate at first.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;3.Buy In Bulk&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt; –&lt;/span&gt; People tend to buy in small quantities looking at the small amount he has to shed at present. Well, one of the most important way to save money is to buy in bulk. Generally, buying products in bulk costs less than when you buy in many times in small numbers.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;4.Saving Bank Account&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt; – &lt;/span&gt;You should always have two bank accounts. One from which you spend and one where you save your money. Money should never be withdrawn from the account in which you save money. The amount you decide to save should be deposited into that account at the starting of the month.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;5.Daily Expenditure&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt; –&lt;/span&gt; Calculate your daily expenditure and try to stick to it. If some day you save some amount from your daily expenditure, then keep it aside in a piggy bank. You will be surprised to know at the end of the month the fortune you would have collected.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;6.Differentiate Between Need And Desire&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt; –&lt;/span&gt; There are things you need and there are things you desire. Don't compromise on the things you need but try to control your desire. This will help you to save a lot of money.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;7.Avoid Loans&lt;/span&gt;&lt;/b&gt; &lt;span class="Apple-style-span" style="color: #cc0000;"&gt;–&lt;/span&gt; It's best not to take loans from friends. To repay the loan becomes an additional expense and gets carry forward to the nest month too.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt;8.Cut Down Expense Where Possible&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #cc0000;"&gt; –&lt;/span&gt; Some expenses are self imposed. Try to track them and avoid them. If you can carry lunch, no need to buy it. If you have four pair of jeans, no need for the fifth one etc.&lt;br /&gt;&lt;br /&gt;These are few simple ways to save money. Saving money soon becomes a habit and you will be surprised to see, how much you can cut down on your expenses.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-7653562255397180568?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/7653562255397180568/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/09/easy-ways-to-save-money.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/7653562255397180568'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/7653562255397180568'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/09/easy-ways-to-save-money.html' title='Easy Ways To Save Money'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-8687735038148307751</id><published>2010-09-13T02:28:00.001-07:00</published><updated>2010-09-13T02:28:24.634-07:00</updated><title type='text'>Extracting water out of thin air now possible</title><content type='html'>&lt;div class="first" style="line-height: 12.75pt; margin-top: 0in; text-align: justify;"&gt;&lt;span style="color: black;"&gt;London, Sep 12 (IANS) Getting water out of the thin air is now possible, thanks to a new technology.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 12.75pt; text-align: justify;"&gt;&lt;span style="color: black;"&gt;'Drinking water can be extracted from the humidity in the air even in the desert or in the middle of a megacity,' thanks to a technology developed by the Fraunhofer Alliance SysWasser, Germany.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 12.75pt; text-align: justify;"&gt;&lt;span style="color: black;"&gt;The principle behind it is a salt solution that runs down from a tower-shaped system and absorbs water from the air, known as hygroscopic brine. This brine is then pumped into a tank that stands a couple of metres high and contains a vacuum.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: black;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 12.75pt; text-align: justify;"&gt;&lt;span style="color: black;"&gt;Then, energy from solar collectors heats up the brine and the evaporated salt-free water condenses over a distillation bridge. The brine concentrates again and flows down on the surface of the tower to absorb humidity in the air, according to a Fraunhofer statement.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: black;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 12.75pt; text-align: justify;"&gt;&lt;span style="color: black;"&gt;This process is exclusively based on regenerative sources of energy such as simple solar collectors and photovoltaic cells, meaning that this method is completely energy self-sufficient.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: black;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 12.75pt; text-align: justify;"&gt;&lt;span style="color: black;"&gt;That means that it functions in areas where there is no electrical infrastructure. This process is particularly well suited for extracting drinking water in arid and semi-arid areas where more water evaporates than precipitation falls.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-8687735038148307751?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/8687735038148307751/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/09/extracting-water-out-of-thin-air-now.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8687735038148307751'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8687735038148307751'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/09/extracting-water-out-of-thin-air-now.html' title='Extracting water out of thin air now possible'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-6445157167447658781</id><published>2010-08-26T00:24:00.001-07:00</published><updated>2010-08-26T00:24:41.879-07:00</updated><title type='text'>Improve Your Car’s Fuel Efficiency</title><content type='html'>&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;t’s really exasperating to see fuel prices skyrocketing, right? We can only feel helpless in the face of recurring and economy-driven price fluctuations. Seeking measures to improve fuel economy is the only way to combat rising fuel prices. Do not disregard these simple guidelines; each little step can really start adding up to significant savings to your budget.&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Check Tyre Pressure&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Keeping the tyres well inflated is one of the simplest things you can do to help improve your car’s fuel efficiency. You can improve the mileage by about 3.3 percent if you keep your tyres inflated properly, according to the&amp;nbsp;&lt;a href="http://www.energy.gov/" style="color: #334499; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" target="_blank"&gt;DOE&lt;/a&gt;.&lt;a href="http://yfittopostblogin.files.wordpress.com/2010/08/78035249.jpg" style="color: #334499; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;img alt="" class="alignright size-full wp-image-9242" height="204" src="http://yfittopostblogin.files.wordpress.com/2010/08/78035249.jpg?w=136&amp;amp;h=204" style="border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-color: initial; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 1px; border-style: initial; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; float: right; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" title="78035249" width="136" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Lighten Your Load&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Empty out your boot of unnecessary items. For every extra 45 kg you carry, your fuel efficiency can drop by 1-2% in a typical vehicle.&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;S-L-O-W D-O-W-N&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;The faster you drive, the more fuel you use. Driving within the speed limit recommended by the manufacturer helps save fuel. Driving just 5mph over the speed limit can affect fuel economy by up to 23%. Likewise, quick acceleration consumes too much fuel; accelerate slowly and gradually.&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Do Fuel Quality/Types/Additives Help Mileage?&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Petrol pump attendants often try to convince you to go for ‘Speed petrol’ or ‘X-tra Mile diesel’. But this need not necessarily help improve your vehicle’s fuel efficiency. Always use the grade recommended for the vehicle by the manufacturer. Higher octane fuel may not only be a waste of money but may harm the vehicle, as well. However sticking to one brand of fuel is always good for the engine.&amp;nbsp;&lt;a href="http://bikeadvice.in/types-petrol-octane-ratings/" style="color: #334499; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" target="_blank"&gt;Know more about Octane Ratings&lt;/a&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Tune Your Engine&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;A well-tuned engine can improve fuel economy by up to 4%. So change your oil and follow your car manufacturer’s recommendation on servicing.&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Clean the Air Filters Regularly&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Air filters keep impurities from damaging your engine. Replacing a clogged air filter can improve fuel economy by as much as 10%.&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Keep the Windows Closed&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Driving with your windows open considerably reduces mileage, far more than keeping the AC on while driving along highways. So preferably keep the windows closed and the AC on if you want to keep cool. Of course the air-conditioning decreases fuel efficiency considerably, so use it judiciously.&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Clean Spark Plugs&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Ensure your spark plugs are in good condition. Renew the plugs and wires at intervals specified by the manufacturer. This will keep all cylinders firing properly resulting in higher efficiency.&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Don’t Be a Clutch-Driver&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Never keep your foot on the clutch while driving. When you do this, pressure is being placed on your clutch, and it not only reduces mileage, but also wears out the clutch plate, replacing which is not cheap.&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;strong style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Keep the Car in Showroom Condition&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #323232; font-family: Helvetica, Arial, sans-serif; font-size: 13px; line-height: 17px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;It’s always prudent to keep the car in the showroom condition. Remember that any modification to the car, such as broad tyres, diffusers etc., will adversely affect the mileage.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-6445157167447658781?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/6445157167447658781/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/08/improve-your-cars-fuel-efficiency.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/6445157167447658781'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/6445157167447658781'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/08/improve-your-cars-fuel-efficiency.html' title='Improve Your Car’s Fuel Efficiency'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-5877153556362859188</id><published>2010-08-03T21:09:00.001-07:00</published><updated>2010-08-03T21:09:21.824-07:00</updated><title type='text'>Solar tsunami from Sun may hit Earth on Tuesday</title><content type='html'>&lt;meta content="text/html; charset=utf-8" http-equiv="Content-Type"&gt;&lt;/meta&gt;&lt;meta content="Word.Document" name="ProgId"&gt;&lt;/meta&gt;&lt;meta content="Microsoft Word 12" name="Generator"&gt;&lt;/meta&gt;&lt;meta content="Microsoft Word 12" name="Originator"&gt;&lt;/meta&gt;&lt;link href="file:///C:%5CDOCUME%7E1%5CSenthil%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" rel="File-List"&gt;&lt;/link&gt;&lt;link href="file:///C:%5CDOCUME%7E1%5CSenthil%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" rel="themeData"&gt;&lt;/link&gt;&lt;link href="file:///C:%5CDOCUME%7E1%5CSenthil%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" rel="colorSchemeMapping"&gt;&lt;/link&gt;&lt;style&gt;&lt;!-- /* Font Definitions */ @font-face	{font-family:"Cambria Math";	panose-1:2 4 5 3 5 4 6 3 2 4;	mso-font-charset:1;	mso-generic-font-family:roman;	mso-font-format:other;	mso-font-pitch:variable;	mso-font-signature:0 0 0 0 0 0;}@font-face	{font-family:Calibri;	panose-1:2 15 5 2 2 2 4 3 2 4;	mso-font-charset:0;	mso-generic-font-family:swiss;	mso-font-pitch:variable;	mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal	{mso-style-unhide:no;	mso-style-qformat:yes;	mso-style-parent:"";	margin-top:0in;	margin-right:0in;	margin-bottom:10.0pt;	margin-left:0in;	line-height:115%;	mso-pagination:widow-orphan;	font-size:11.0pt;	font-family:"Calibri","sans-serif";	mso-ascii-font-family:Calibri;	mso-ascii-theme-font:minor-latin;	mso-fareast-font-family:Calibri;	mso-fareast-theme-font:minor-latin;	mso-hansi-font-family:Calibri;	mso-hansi-theme-font:minor-latin;	mso-bidi-font-family:"Times New Roman";	mso-bidi-theme-font:minor-bidi;}p	{mso-style-noshow:yes;	mso-style-priority:99;	mso-margin-top-alt:auto;	margin-right:0in;	mso-margin-bottom-alt:auto;	margin-left:0in;	mso-pagination:widow-orphan;	font-size:12.0pt;	font-family:"Times New Roman","serif";	mso-fareast-font-family:"Times New Roman";}p.first, li.first, div.first	{mso-style-name:first;	mso-style-unhide:no;	mso-margin-top-alt:auto;	margin-right:0in;	mso-margin-bottom-alt:auto;	margin-left:0in;	mso-pagination:widow-orphan;	font-size:12.0pt;	font-family:"Times New Roman","serif";	mso-fareast-font-family:"Times New Roman";}.MsoChpDefault	{mso-style-type:export-only;	mso-default-props:yes;	mso-ascii-font-family:Calibri;	mso-ascii-theme-font:minor-latin;	mso-fareast-font-family:Calibri;	mso-fareast-theme-font:minor-latin;	mso-hansi-font-family:Calibri;	mso-hansi-theme-font:minor-latin;	mso-bidi-font-family:"Times New Roman";	mso-bidi-theme-font:minor-bidi;}.MsoPapDefault	{mso-style-type:export-only;	margin-bottom:10.0pt;	line-height:115%;}@page WordSection1	{size:8.5in 11.0in;	margin:1.0in 1.0in 1.0in 1.0in;	mso-header-margin:.5in;	mso-footer-margin:.5in;	mso-paper-source:0;}div.WordSection1	{page:WordSection1;}--&gt;&lt;/style&gt;  &lt;br /&gt;&lt;div class="first" style="margin-top: 0in;"&gt;The Earth is in the path to be hit by a wave of violent space weather as early as Tuesday after a massive explosion of the sun, scientists have warned.&lt;/div&gt;Astronomers witnessed the huge flare above a giant sunspot the size of the Earth, the explosion aimed directly towards Earth.&lt;br /&gt;It sent a "solar tsunami" racing 93 million miles across space, which is likely to hit the planet on Tuesday.&lt;br /&gt;The wave of supercharged gas is likely to spark spectacular displays of the aurora or northern and southern lights.&lt;br /&gt;However, a really big solar eruption could shut down global communication grids and destroy satellites, if it reaches today.&lt;br /&gt;A recent warning by NASA said that Britain could be at the receiving end of widespread power blackouts for a long time after the earth is hit by a once-in-a-generation "space storm".&lt;br /&gt;"It looks like the first eruption was so large that it changed the magnetic fields throughout half the Sun's visible atmosphere and provided the right conditions for the second eruption," said Dr Lucie Green, of the Mullard Space Science Laboratory, Surrey.&lt;br /&gt;"This means we have a very good chance of seeing major and prolonged effects, such as the northern lights at low latitudes," she added. (ANI)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-5877153556362859188?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/5877153556362859188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/08/solar-tsunami-from-sun-may-hit-earth-on.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/5877153556362859188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/5877153556362859188'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/08/solar-tsunami-from-sun-may-hit-earth-on.html' title='Solar tsunami from Sun may hit Earth on Tuesday'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-3004201291886122015</id><published>2010-07-26T03:10:00.000-07:00</published><updated>2010-07-26T03:10:15.535-07:00</updated><title type='text'>Features of Epic Browser</title><content type='html'>&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;"&gt;Epic Web Browser is a product of Mozilla. This web browser is the first ever web browser for India. Epic Web Browser is the world's first antivirus web browser. Epic browser is the web browser for India. It has many features which a web browser should have.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;"&gt;To know more about epic browser see below:-&lt;br /&gt;&lt;br /&gt;&lt;b&gt;In-built Antivirus :-&lt;/b&gt; Epic browser have in-built antivirus. It is the world's first web browser with anti browser. It scans all the download files automatically. Even it scans your &lt;a href="http://www.mywindowsclub.com/resources/3544-Features-Epic-Browser-for-Windows.aspx" id="KonaLink0" target="undefined"&gt;&lt;span class="klink"&gt;&lt;span style="color: windowtext; font-size: 9.0pt; line-height: 115%;"&gt;system&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; also. This antivirus can delete all the viruses from your system also. It have the feature &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Ad blocker :-&lt;/b&gt; Epic browser have a feature of ad-blocker, anti-malware and anti-spyware. It protects your &lt;a href="http://www.mywindowsclub.com/resources/3544-Features-Epic-Browser-for-Windows.aspx" id="KonaLink1" target="undefined"&gt;&lt;span class="klink"&gt;&lt;span style="color: windowtext; font-size: 9.0pt; line-height: 115%;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; from the viruses and malicious sites.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Word Processing :-&lt;/b&gt; Epic browser have a feature of word processing. Now you can create your own word &lt;a href="http://www.mywindowsclub.com/resources/3544-Features-Epic-Browser-for-Windows.aspx" id="KonaLink2" target="undefined"&gt;&lt;span class="klink"&gt;&lt;span style="color: windowtext; font-size: 9.0pt; line-height: 115%;"&gt;document&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; with the help of epic browser. You don't need separate word processing &lt;a href="http://www.mywindowsclub.com/resources/3544-Features-Epic-Browser-for-Windows.aspx" id="KonaLink3" target="undefined"&gt;&lt;span class="klink"&gt;&lt;span style="color: windowtext; font-size: 9.0pt; line-height: 115%;"&gt;software&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Themes :-&lt;/b&gt; Epic browser contains 1500 plus themes for epic browser. You can change the themes according to your requirement. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Language supports :-&lt;/b&gt; Epic Browser supports 10 Indian languages. Now you can write in any language. This web browser supports 10 Indian languages which helps you to write in your regional language.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;In-built Widgets: -&lt;/b&gt; Epic browser have many in-built widgets. Now you can surf the websites very easily. This browser have many widgets like twitter, in.com, &lt;a href="http://www.mywindowsclub.com/resources/3544-Features-Epic-Browser-for-Windows.aspx" id="KonaLink4" target="undefined"&gt;&lt;span class="klink"&gt;&lt;span style="color: windowtext; font-size: 9.0pt; line-height: 115%;"&gt;gmail&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;, orkut, facebook, bookmyshow.com, Citibank many more.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;One Click Services: -&lt;/b&gt; Epic browser have single services also. There you can get the &lt;a href="http://www.mywindowsclub.com/resources/3544-Features-Epic-Browser-for-Windows.aspx" id="KonaLink5" target="undefined"&gt;&lt;span class="klink"&gt;&lt;span style="color: windowtext; font-size: 9.0pt; line-height: 115%;"&gt;latest news&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;, sensex information, events, sports, music, movies, shopping many more.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Privacy: -&lt;/b&gt; Epic browser contains many feature along with privacy. This browser saves your surfing in private surfing. You can delete all the history, cookies and temporary files with a single click.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Private Browsing: -&lt;/b&gt; Epic Browser have the feature of private browsing also. You can browser privately without any inference. This private browsing does not store any history, cookies or temporary files on your system. This feature helps you surf privately.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-3004201291886122015?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/3004201291886122015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/07/features-of-epic-browser.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/3004201291886122015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/3004201291886122015'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/07/features-of-epic-browser.html' title='Features of Epic Browser'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-1364596709819101508</id><published>2010-07-21T03:03:00.000-07:00</published><updated>2010-07-21T03:03:17.014-07:00</updated><title type='text'>‘Epic’ Browser Wars</title><content type='html'>Bangalore-based startup, Hidden Reflex, has developed a browser for the Indian audience called Epic, thanks to Mozilla’s popular open-source platform. Though made on lines of the Firefox browser, it has many firsts.&lt;br /&gt;&lt;br /&gt;It’s the only browser that has an in-built anti-virus scanner and other unique privacy features like theflash cookie deletion.&lt;br /&gt;&lt;br /&gt;Epic also has a side-bar with shortcut icons for frequently used applications and websites – all of which are a part of the 1500+ apps that ‘Epic’ boasts of.&lt;br /&gt;&lt;br /&gt;My favourite, however, is the ‘type in Indian languages’ widget that can be done using the English script, which the browser instantly converts into the regional language chosen.&lt;br /&gt;&lt;br /&gt;Even as ‘Epic’ hogs the limelight, other browser developers, especially the more popular ones like Internet Explorer, Firefox, Opera, Safari and Chrome are on an overdrive to come up with advanced versions. We have entered the era of browser wars.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Here’s a look at some of the features that these browsers brag about:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Firefox 3.6&lt;/b&gt;&lt;br /&gt;Released in January 2010, this Firefox version is unique, as it has over 6000 add-ons and other browser personalization features like themes.&lt;br /&gt;Other features include live bookmarks, tabbed browsing, a full-screen video option, notification of outdatedplugins as well as aids for web-designers and web application developers.&lt;br /&gt;The next major release, Firefox 4 has been scheduled for November 2010.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Internet Explorer 8&lt;/b&gt;&lt;br /&gt;It seems like ages ago when this browser was released by Microsoft – which was back in March 2009. This one was proclaimed to have better security than its previous versions, with stronger protection againstphishing and malware attacks.&lt;br /&gt;Other features include tab recovery – allows a tab to crash without crashing the rest of the browser,domain highlighter, web slices and accelerator – that makes repetitive tasks into simple one click behaviours.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Chrome 4&lt;/b&gt;&lt;br /&gt;This browser was released by Google in January 2010, and came with enhanced features like the browser preferences and bookmark syncing, extension support, improved developer tools, increased browser security and being integrated with the Adobe Flash Player.&lt;br /&gt;&lt;br /&gt;Chrome 5 was announced in May 2010 and was touted to be Google’s first browser that supported 3 OSplatforms – Windows, Linux and the Mac OS X.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Opera 10.50&lt;/b&gt;&lt;br /&gt;The Windows OS version of this browser was released in March 2010. The makers have claimed it to be the fastest browser ever and 7 times faster than its previous version.&lt;br /&gt;&lt;br /&gt;This browser has distinct feature – from tabs that can expanded, re-arranged, resized and cascaded for a better overview of the browser to the slider zoom that can zoom a page up to 300%, pin-tab feature that can lock a tab,  and not to forget the option of having a mix of private and non-private tabs in the same window.&lt;br /&gt;Opera 10.60 has seen a stable release this month, July 2010.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Safari 5&lt;/b&gt;&lt;br /&gt;This version of the Safari OS was released for Mac OS 10 and Windows in June 2010. It has some special features like the Safari Reader that removes all ads and junk to give a clutter-less page just like text in aPDF version.&lt;br /&gt;&lt;br /&gt;It also has good page caching for the faster loading of links, a smart address field to remember web pages visited earlier and a greater HTML 5 support, enabling web content creation without third-party add-ons.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-1364596709819101508?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/1364596709819101508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/07/epic-browser-wars.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/1364596709819101508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/1364596709819101508'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/07/epic-browser-wars.html' title='‘Epic’ Browser Wars'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-1260752448638841268</id><published>2010-07-12T03:53:00.001-07:00</published><updated>2010-07-12T03:53:08.528-07:00</updated><title type='text'>PSLV launch successful, 5 satellites placed in orbit</title><content type='html'>&lt;div class="MsoNormal" style="line-height: normal; margin-bottom: .25in; text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #3b3a39; line-height: 18px;"&gt;The Indian Space Research Organisation’s (ISRO) Polar Satellite Launch Vehicle (PSLV-C15) put five satellites in their precise orbits on Monday, unequivocally demonstrating its reliability and robustness. It was a flawless mission all the way, with the ignition and separation of the rocket’s four stages taking place on time, the heat-shield protecting the satellites falling off on schedule and the satellites flying out of the fourth stage at a velocity of 27,000 km an hour. The on-board computers worked with clock-work precision. This was the 16th consecutively successful fight of the PSLV.&lt;/span&gt;&lt;/div&gt;&lt;div class="body" style="line-height: 13.5pt; margin-top: 0in; outline-color: initial; outline-style: none; outline-width: initial; text-align: justify;"&gt;&lt;span style="color: #3b3a39;"&gt;The five satellites that were injected into orbit were: ISRO’s 694-kg Cartosat-2B; the 116-kg Alsat-2A of Algeria; a 6.5-kg nano satellite named NLS 6.1 AISSAT-1 of the Space Flight Laboratory, University of Toronto, Canada; a 1 kg nano satellite called NLS 6.2 TISAT-1 built by the University of Applied Science Sciences of Switzerland; and a tiny satellite named Studsat built by 35 students of seven engineering colleges in Karnataka and Andhra Pradesh. Studsat was the centre of attraction as the students had designed and built this pico satellite with an imaging camera and had employed several frontline technologies. They had also built a clean room to test the satellite and a ground station in Bangalore to receive its signals.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="body" style="line-height: 13.5pt; margin-top: 0in; outline-color: initial; outline-style: none; outline-width: initial; text-align: justify;"&gt;&lt;span style="color: #3b3a39;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="body" style="line-height: 13.5pt; margin-top: 0in; outline-color: initial; outline-style: none; outline-width: initial; text-align: justify;"&gt;&lt;span style="color: #3b3a39;"&gt;ISRO Chairman K. Radhakrishnan called it “an excellent launch” and said the mission went off “extremely well, as expected”. The Mission Director, P. Kunhikrishnan, stressed the satellites went to their precise orbits. If the mission was to inject five satellites into a polar orbit an altitude of 637 km, the final figure was an apogee of 637.39 km and a perigee of 631 km.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="body" style="line-height: 13.5pt; margin-top: 0in; outline-color: initial; outline-style: none; outline-width: initial; text-align: justify;"&gt;&lt;span style="color: #3b3a39;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="body" style="line-height: 13.5pt; margin-top: 0in; outline-color: initial; outline-style: none; outline-width: initial; text-align: justify;"&gt;&lt;span style="color: #3b3a39;"&gt;There was no “hold” in the 51-hour countdown to the PSLV-C15 launch. After it lifted off majestically at the appointed time of 9.22 a.m., it roared skyward, painting the sky with yellow flames. At the end of 17 minutes and 14 seconds of rocket’s flight, the satellites were home and dry.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="body" style="line-height: 13.5pt; margin-top: 0in; outline-color: initial; outline-style: none; outline-width: initial; text-align: justify;"&gt;&lt;span style="color: #3b3a39;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="body" style="line-height: 13.5pt; margin-top: 0in; outline-color: initial; outline-style: none; outline-width: initial; text-align: justify;"&gt;&lt;span style="color: #3b3a39;"&gt;There was applause when T.K. Alex, Director, ISRO Satellite Centre, Bangalore, announced that Studsat’s signals were received at the ground station in Bangalore and the Alsat’s signals were received in Algeria.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="body" style="line-height: 13.5pt; margin-top: 0in; outline-color: initial; outline-style: none; outline-width: initial; text-align: justify;"&gt;&lt;span style="color: #3b3a39;"&gt;While the PSLV-C15 cost Rs.80 crore to build, the Cartosat-2B cost Rs.175 crore. The PSLV - C15 Vehicle Director was B. Jayakumar, the Satellite Director was M. Krishnaswamy.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-1260752448638841268?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/1260752448638841268/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/07/pslv-launch-successful-5-satellites.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/1260752448638841268'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/1260752448638841268'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/07/pslv-launch-successful-5-satellites.html' title='PSLV launch successful, 5 satellites placed in orbit'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-8765171245691373267</id><published>2010-07-08T00:06:00.000-07:00</published><updated>2010-07-26T03:08:40.392-07:00</updated><title type='text'>Solar plane takes off for 24-hour test flight</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_C9wy0v5fPhc/TDV4uTQbpcI/AAAAAAAABWo/BW4ZuCszjt0/s1600/Solar+plane.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_C9wy0v5fPhc/TDV4uTQbpcI/AAAAAAAABWo/BW4ZuCszjt0/s320/Solar+plane.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #3f3f3f; font-family: Georgia, serif; font-size: 15px; line-height: 20px;"&gt;An experimental solar-powered plane whose makers hope to one day circle the globe using only energy collected from the sun took off for its first 24-hour test flight Wednesday.&lt;/span&gt;&lt;br /&gt;&lt;div style="line-height: 15.0pt; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; text-align: justify;"&gt;&lt;span style="color: #3f3f3f; font-family: Georgia, serif; font-size: 11.5pt;"&gt;The plane with its 262.5-foot (80-meter) wingspan left Payerne airfield in Switzerland shortly before 7 a.m. (0500 GMT; 1 a.m. EDT) after an equipment problem that delayed a previous attempt was solved, the Solar Impulse team said.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 15.0pt; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; text-align: justify;"&gt;&lt;span style="color: #3f3f3f; font-family: Georgia, serif; font-size: 11.5pt;"&gt;Pilot Andre Borschberg will take the prototype to an altitude of 27,900 feet (8,500 meters) by Wednesday evening, when a decision will be made whether to fly the plane through the night using solar power stored in its batteries.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 15.0pt; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; text-align: justify;"&gt;&lt;span style="color: #3f3f3f; font-family: Georgia, serif; font-size: 11.5pt;"&gt;"The goal of the project is to have a solar-powered plane flying day and night without fuel," said team co-founder Bertrand Piccard, adding that this test flight - the third major step after its first 'flea hop' and an extended flight earlier this year – will demonstrate whether the ultimate goal is feasible: to fly the plane around the world.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 15.0pt; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; text-align: justify;"&gt;&lt;span style="color: #3f3f3f; font-family: Georgia, serif; font-size: 11.5pt;"&gt;&lt;/span&gt;"This flight is crucial for the credibility of the project," said Piccard, a record-breaking balloonist whose father and grandfather also accomplished pioneering airborne and submarine feats.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div style="line-height: 15.0pt; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; text-align: justify;"&gt;&lt;span style="color: #3f3f3f; font-family: Georgia, serif; font-size: 11.5pt;"&gt;The team had hoped to make their 24-hour test flight last week when days in the northern hemisphere were even longer, allowing the plane's 12,000 solar cells to collect even more energy before attempting to coast through the night.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 15.0pt; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; text-align: justify;"&gt;&lt;span style="color: #3f3f3f; font-family: Georgia, serif; font-size: 11.5pt;"&gt;But there was a problem with a key piece of communications equipment, forcing the team to keep the plane on the ground while modifications were made. Every aspect of the aircraft is monitored by engineers on the ground, with much of it fed onto the team's website and Twitter page.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 15.0pt; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; text-align: justify;"&gt;&lt;span style="color: #3f3f3f; font-family: Georgia, serif; font-size: 11.5pt;"&gt;&lt;/span&gt;Borscherg, the plane's sole pilot, will decide by 8 p.m. (1800 GMT; 2 p.m. EDT) whether to continue through the night. If he goes ahead, the plane will slowly descend to 4,920 feet (1,500 meters) before midnight, where Borschberg will stay until attempting a dawn landing.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div style="line-height: 15.0pt; margin-bottom: 6.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; text-align: justify;"&gt;&lt;span style="color: #3f3f3f; font-family: Georgia, serif; font-size: 11.5pt;"&gt;Piccard, who achieved the first nonstop circumnavigation of the globe in a balloon, the Breitling Orbiter III, in 1999, said that, if successful, the next step will be an Atlantic crossing. That will be done in a second, lighter prototype, involving new challenges and dangers, he said.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-8765171245691373267?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/8765171245691373267/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/07/solar-plane-takes-off-for-24-hour-test.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8765171245691373267'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8765171245691373267'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/07/solar-plane-takes-off-for-24-hour-test.html' title='Solar plane takes off for 24-hour test flight'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_C9wy0v5fPhc/TDV4uTQbpcI/AAAAAAAABWo/BW4ZuCszjt0/s72-c/Solar+plane.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-8601731319350436405</id><published>2010-06-23T22:50:00.000-07:00</published><updated>2010-06-23T22:50:49.370-07:00</updated><title type='text'>WORLD CLASSICAL TAMIL CONFERENCE 2010</title><content type='html'>&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;The first World Classical Tamil Conference got off to a rousing start here on Wednesday in the presence of a massive gathering. Distinguished speakers, led by President Pratibha Devisingh Patil, hailed Tamil, which has the oldest literature among the living languages of the world.&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;Inaugurating the five-day event, the President said that many concepts intrinsic to India's society and critical to its polity were found in Tamil discourse over the millennia. The message of peace, universality and the spirit of equality was propounded in a Sangam poem more than 2000 years ago, she said, referring to a poem in Purananooru.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;&lt;b style="outline-color: initial; outline-style: none; outline-width: initial;"&gt;Award&lt;/b&gt;&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;She presented the Kalaignar M. Karunanidhi Classical Tamil Award to Asko Parpola, renowned Indologist, for his work on the Dravidian hypothesis in the interpretation of the Indus script. He said Old Tamil was best preserved in Dravidian linguistic traditions.&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;Calling Tamil an old living language with an extraordinary volume of literature and grammar, the President said Tirukkural, written by Thiruvalluvar, was a remarkable treatise on ethics. Silapathikaram and Manimekalai were works of excellence, as were the epics of Jeevakachintamani, Kamba Ramayanam, and the soul-stirring hymns of Nayanmars and Alvars. The poems and songs of Subramania Bharati evoked in the minds of the people “deep feelings of patriotism during our freedom struggle.”&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;Emphasising that “the history of the Tamils is our nation's pride,” she said the Tamil ethos based on pluralism, tolerance and a humanistic approach had contributed in a variety of ways to India's progress and in shaping its identity as a nation that was rich in art, music, architecture and literature.&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;The next generation of Tamils must anchor as well as equip themselves with knowledge of Tamil culture, literature and values, the President said.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;&lt;b style="outline-color: initial; outline-style: none; outline-width: initial;"&gt;Classical status&lt;/b&gt;&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;Presiding over the inauguration, Tamil Nadu Chief Minister M. Karunanidhi said there was a worldwide consensus that Tamil possessed greater merits than the 11 parameters laid down for declaring a language classical.&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;“Tamil is not only an international language; it is like a mother for all the languages of the world,” he said.&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;Noting that the roots of Tamil words were present in many languages of the world, Mr. Karunanidhi said such words differed only in form but retained the meaning. Quoting extensively from works such as the Valmiki Ramayana, Arthasastra and Purananooru, he stressed that the Tamil people had an ancient origin and a hoary past.&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;Though the demand to classify Tamil as a classical language was made over a hundred years ago, it was the United Progressive Alliance government at the Centre that granted the status [in October 2004] to the language. It was after the declaration that such a meet was being organised for the first time, he added.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;&lt;b style="outline-color: initial; outline-style: none; outline-width: initial;"&gt;Parpola's praise&lt;/b&gt;&lt;br /&gt;Professor Parpola said the Union government had rightly recognised Tamil as a classical language, the status that it fully deserved in view of “its antiquity and its rich literature that in quality and extent matches many other classical traditions of the world.”&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;“Old Tamil texts constitute the only source of ancient Dravidian linguistic and cultural heritage, not yet much contaminated by the Indo-Aryan tradition. Without it [Old Tamil texts], it would be much more difficult, if not impossible, to penetrate into the secrets of the Indus script and unravel the beginnings of India's great civilisation,” he said.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;&lt;b style="outline-color: initial; outline-style: none; outline-width: initial;"&gt;Souvenir released&lt;/b&gt;&lt;/div&gt;&lt;div class="body" style="color: #3b3a39; font-family: Georgia, 'Times New Roman', Times, serif; font-size: 14px; line-height: 18px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial;"&gt;Governor Surjit Singh Barnala, who handed over the first copy of the conference souvenir to Ms. Patil, referred to the influence of the Tamil language in several important language families of the world and said the language had been ever-growing.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-8601731319350436405?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/8601731319350436405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/06/world-classical-tamil-conference-2010.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8601731319350436405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/8601731319350436405'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/06/world-classical-tamil-conference-2010.html' title='WORLD CLASSICAL TAMIL CONFERENCE 2010'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-87803469364762586</id><published>2010-06-23T00:11:00.001-07:00</published><updated>2010-06-23T00:11:27.576-07:00</updated><title type='text'>The 10 Most Amazing Flowers in the World</title><content type='html'>Check out this SlideShare Presentation: &lt;div style="width:425px" id="__ss_46810"&gt;&lt;strong style="display:block;margin:12px 0 4px"&gt;&lt;a href="http://www.slideshare.net/scrobins/the-10-most-amazing-flowers-in-the-world" title="The 10 Most Amazing Flowers in the World"&gt;The 10 Most Amazing Flowers in the World&lt;/a&gt;&lt;/strong&gt;&lt;object id="__sse46810" width="425" height="355"&gt;&lt;param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=the-10-most-amazing-flowers-in-the-world-13120&amp;stripped_title=the-10-most-amazing-flowers-in-the-world" /&gt;&lt;param name="allowFullScreen" value="true"/&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;embed name="__sse46810" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=the-10-most-amazing-flowers-in-the-world-13120&amp;stripped_title=the-10-most-amazing-flowers-in-the-world" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div style="padding:5px 0 12px"&gt;View more &lt;a href="http://www.slideshare.net/"&gt;presentations&lt;/a&gt; from &lt;a href="http://www.slideshare.net/scrobins"&gt;scrobins&lt;/a&gt;.&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6393873030318236659-87803469364762586?l=tsenthilkumar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tsenthilkumar.blogspot.com/feeds/87803469364762586/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/06/10-most-amazing-flowers-in-world.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/87803469364762586'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6393873030318236659/posts/default/87803469364762586'/><link rel='alternate' type='text/html' href='http://tsenthilkumar.blogspot.com/2010/06/10-most-amazing-flowers-in-world.html' title='The 10 Most Amazing Flowers in the World'/><author><name>Senthilkumar.T</name><uri>http://www.blogger.com/profile/13453402941356654204</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/-DQ8XVb2EHcU/TgRf_ZYhh-I/AAAAAAAACCo/rX8T7sy-y-o/s220/DSCN0770.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6393873030318236659.post-4325464555450849343</id><published>2010-06-18T03:55:00.000-07:00</published><updated>2010-06-18T03:56:32.036-07:00</updated><title type='text'>The 10 Rarest Animals in the World</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #333333; line-height: 18px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;img align="right" alt="Baiji Dolphin" height="120" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-baiji-1.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Baiji Dolphin" width="151" /&gt;&lt;br /&gt;&lt;div class="MsoNormal" style="text-align: justify;"&gt;&lt;span class="apple-style-span"&gt;&lt;span style="color: black; line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Endangered, hunted, smuggled and now some would say abandoned, these animals have the smallest chances of recovery out off all the Earth’s creatures. Last year, studies shown that there are at least 35 different animals with world populations of under 1000. But which are the rarest, the animals on the brink of extinction? We have rounded up a list of 10 of the rarest animals in the wild. These animals are so rare, they might disappear forever, and they’re not alone!&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span id="more-142" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;span class="apple-style-span"&gt;&lt;span style="color: black; line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-color: initial; border-style: initial; font-style: inherit;"&gt;&lt;span style="border-bottom-color: windowtext; border-bottom-style: none; border-bottom-width: 1pt; border-left-color: windowtext; border-left-style: none; border-left-width: 1pt; border-right-color: windowtext; border-right-style: none; border-right-width: 1pt; border-top-color: windowtext; border-top-style: none; border-top-width: 1pt; color: black; line-height: 115%; padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Baiji&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="apple-style-span"&gt;&lt;span style="color: black; line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(Yangtze River Dolphin) - With no more than a few tens of individuals,&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;img align="left" alt="Pinta Island tortoise" height="150" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-pinta-island-turtle.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Pinta Island tortoise" width="216" /&gt;&lt;br /&gt;&lt;div class="MsoNormal" style="text-align: justify;"&gt;&lt;span class="apple-style-span"&gt;&lt;span style="color: black; line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-color: initial; border-style: initial; font-style: inherit;"&gt;&lt;span style="border-bottom-color: windowtext; border-bottom-style: none; border-bottom-width: 1pt; border-left-color: windowtext; border-left-style: none; border-left-width: 1pt; border-right-color: windowtext; border-right-style: none; border-right-width: 1pt; border-top-color: windowtext; border-top-style: none; border-top-width: 1pt; color: black; line-height: 115%; padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;The Pinta Island tortoise&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="apple-style-span"&gt;&lt;span style="color: black; line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;- Without argument, this turtle is one of the few species of Giant Galapagos tortoises and the rarest animal in the world since there is only one left alive. Lonesome George is the sole surviving member of the Pinta Island race, the giant tortoise being a symbol for the fragility of the Galapagos islands, and a constant reminder for vigilence and conservation of the species. The species was considered extinct until 1971, when a lone example was located by rangers. Since then, the Charles Darwin Research Station has been searching for a female tortoise, even posting a reward of $10,000 to those that find one.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;img align="right" alt="Yangtze River Dolphin" height="180" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-baiji-2.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Yangtze River Dolphin" width="276" /&gt;&lt;br /&gt;&lt;div class="MsoNormal" style="text-align: justify;"&gt;&lt;span class="apple-style-span"&gt;&lt;span style="color: black; line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;the dolphin is one of the world’s rarest mammals, and a victim of China’s breakneck economic growth, competing for food with the human beings. It has been driven to extinction due to the activity in 50 years, this being the fourth time when an entire evolutionary line of mammals has vanished from the face of the Earth since the year 1500. The main reason for this fact are the numerous dams and barrages, built starting in the 1930’s, that have fragmented the population and reduced the amount of available habitat. There are news that the species is functionally extinct, experts still searching for members of the species. Fingers crossed!&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;img align="left" alt="Vancouver Island Marmot" height="191" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-marmot.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Vancouver Island Marmot" width="260" /&gt;&lt;br /&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;span style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-color: initial; border-style: initial; font-style: inherit;"&gt;&lt;span style="border-bottom-color: windowtext; border-bottom-style: none; border-bottom-width: 1pt; border-left-color: windowtext; border-left-style: none; border-left-width: 1pt; border-right-color: windowtext; border-right-style: none; border-right-width: 1pt; border-top-color: windowtext; border-top-style: none; border-top-width: 1pt; padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;The Vancouver Island Marmot&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;- This marmot is found only in the high mountainous regions of Vancouver Island, in British Columbia, the Canadian Species at Risk Act listing it as endangered in May 2000. In 1998, the population reached an all-time low of 75 individuals, a captive breeding programme being started during that time. In captivity, there are around 90 Vancouver Island marmots in four breeding facilities, while an estimated 30 members of this species live in the wild ibn 2004. The ultimate goal is to restore a sustainable population of 400-600 Vancouver Island marmots in the wild, so there’s still much to be done. 2005 was a successful year, with 150 individuals in captivity and over 44 pups born.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;span style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-color: initial; border-style: initial; font-style: inherit;"&gt;&lt;span style="border-bottom-color: windowtext; border-bottom-style: none; border-bottom-width: 1pt; border-left-color: windowtext; border-left-style: none; border-left-width: 1pt; border-right-color: windowtext; border-right-style: none; border-right-width: 1pt; border-top-color: windowtext; border-top-style: none; border-top-width: 1pt; padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Seychelles Sheath-tailed Bat&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;- Inhabiting the central granitic islands of the Seychelles Islands north of Madagascar,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;img align="right" alt="Seychelles Sheath-tailed Bat" height="170" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-bat.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Seychelles Sheath-tailed Bat" width="170" /&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;div class="MsoNormal" style="text-align: justify;"&gt;&lt;span class="apple-style-span"&gt;&lt;span style="color: black; line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;the bat is part of our list, being one of the most endangered animals since fewer than 100 are believed to exist in the world. It was once commonly found in Seychelles, but the species has undergone a dramatic decline in population during the mid to late 20th century. More research needs to be done in order to understand how the species behave and what needs to be done in order to save them. Scientists believe that, with a heavy amount of effort, 500 individuals may be sufficient to guarantee long-term persistence of the population.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;img align="left" alt="Javan Rhino" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-rhino.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Javan Rhino" /&gt;&lt;br /&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;/div&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;span style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;5.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-color: initial; border-style: initial; font-style: inherit;"&gt;&lt;span style="border-bottom-color: windowtext; border-bottom-style: none; border-bottom-width: 1pt; border-left-color: windowtext; border-left-style: none; border-left-width: 1pt; border-right-color: windowtext; border-right-style: none; border-right-width: 1pt; border-top-color: windowtext; border-top-style: none; border-top-width: 1pt; padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Javan Rhino&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;- This scarce animal is one of the rhino species with fewer than 60 animals surviving in only two known locations: one in Indonesia and the other in Vietnam. Though once widespread throughout Asia, by the 1930’s the rhinoceros was nearly hunted to extinction in Peninsular Malaysia, India, Burma and Sumatra. It was poached for its horn, that is believed to have medicinal uses, and driven to extinction to the intense agricultural practices. Even with all the conservation efforts, the Javan rhinoceros’ chance of survival is small: the population is reduced, hence there are risks of disease and inbreeding.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="margin-bottom: .0001pt; margin: 0in; text-align: justify; vertical-align: baseline;"&gt;&lt;span style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;6.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-color: initial; border-style: initial; font-style: inherit;"&gt;&lt;span style="border-bottom-color: windowtext; border-bottom-style: none; border-bottom-width: 1pt; border-left-color: windowtext; border-left-style: none; border-left-width: 1pt; border-right-color: windowtext; border-right-style: none; border-right-width: 1pt; border-top-color: windowtext; border-top-style: none; border-top-width: 1pt; padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Hispid hare&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;- Also called the “bristly rabbit”, this hare has been recorded along the southern foothills of the Himalayan&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;img align="right" alt="Hispid hare" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-hispid-hare.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Hispid hare" /&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;mountain chain, Nepal, , Bengal, and Assam. Deforestation, cultivation, and human settlement had the most negative impact on the species, isolating the rabbits in Uttar Pradesh, Bihar, West Bengal and Assam. This animal was feared extinct in 1964, but in 1966, one was spotted. There were an estimated 110 hispid hares worldwide in 2001, numbers continuing to plunge due its unsuccessful adaptation to captivity.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;img align="left" alt="Northern Hairy-nosed Wombat" height="169" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-wombat.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Northern Hairy-nosed Wombat" width="213" /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;7.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Northern Hairy-nosed Wombat&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;- In the 19th century this species of wombat was present in New South Wales and Victoria but now can only be found in a small national park near Epping Forest Station in tropical Queensland. While this area has been protected as a National Park, the native grasses that the wombat eats are overtaken by non-indigenous plants. The Northern hairy-nosed wombat is the rarest Australian marsupial, and probably the world’s rarest large mammal. In the latest population study, there are an estimated 113 (range 96 to 150) individual. A major recovery program is underway, funded by the Queensland and Commonwealth governments to the tune of $250,000 per year.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;8.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Tamaraw&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(Dwarf Water Buffalo) - Found in the the island of Mindoro in the Philippines, the tamaraw is the only&lt;/span&gt;&lt;/span&gt;&lt;img align="right" alt="Dwarf Water Buffalo" height="149" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-tamaraw.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Dwarf Water Buffalo" width="207" /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;endemic Phillipine bovine. In 1900 there were an estimated 10,000 tamaraw on Mindoro, 120 in 1975, 370 in 1987 . It was declared critically endangered species in 2000 by the World Conservation Union and remained so until today, being threatened by agriculture, hunting or disease brought by domestic species. The current population was estimated in 2002 at a number between 30 and 200 individuals. Although protected by law, the illegal capture and killing of this species continues to occur.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;img align="left" alt="Iberian Lynx" height="172" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-lynx.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Iberian Lynx" width="240" /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;9.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Iberian Lynx&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;- The Lynx, the most endangered of the world’s 36 cats, stands on the edge of extinction. This lynx was once distributed over the entire Iberian Peninsula but now its area is severely restricted in Andalusia. Threatened by destruction of habitat and of its prey, the cat was killed by traps set for rabbits or hit by cars as the number of roads increase. The Spanish Government is now in the process of developing a national conservation effort to save the Iberian Lynx. Studies from March 2005 have estimated the number of Lynx to be as few as 100, down from about 400 in 2000. On March 29, 2005, the birth of 3 cubs, the first born in captivity, was announced, a hope for the future reintroduction of the species.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;10.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Red Wolf&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;- This wolf is a smaller and a more slender cousin of the gray wolf, historically ranging from southeastern&lt;/span&gt;&lt;/span&gt;&lt;img align="right" alt="Red Wolf" height="203" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-red-wolf.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Red Wolf" width="163" /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;United States to Florida and Texas. Now, their home is the 1.7 million acres throughout northeastern North Carolina, including Alligator River National Wildlife Refuge and Pocosin Lakes National Wildlife Refuge. Only 20 pure red wolves were estimated in 1980, however the number increased to 207 captive red wolves, found in 38 captive breeding facilities across the United States. With the successful breeding programs, over 100 red wolves currently live in the wild.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: inherit; font-size: 12px; font-style: inherit; font-weight: inherit; margin-bottom: 1.5em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Runner-up.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;strong style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-style: inherit; font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Dwarf Blue Sheep&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&amp;nbsp;- The Dwarf Blue Sheep or Dwarf Bharal Pseudois schaeferi is an endangered&lt;/span&gt;&lt;/span&gt;&lt;img align="left" alt="Dwarf Blue Sheep" height="135" src="http://www.greenexpander.com/wp-content/uploads/2007/10/exp-sheep.jpg" style="border-bottom-width: 1px; border-color: initial; border-left-color: rgb(95, 148, 16); border-left-width: 1px; border-right-color: rgb(95, 148, 16); border-right-width: 1px; border-style: initial; border-top-color: rgb(95, 148, 16); border-top-style: solid; border-top-width: 1px; display: block; float: none; font-style: inherit; font-weight: inherit; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 10px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; padding-top: 5px; vertical-align: baseline;" title="Dwarf Blue Sheep" width="135" /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;species of caprid found in China and Tibet. The dwarf blue sheep population in the world has declined to a total of 70–200 individuals, currently being listed as endangered by the International Union for C
