/*
		Author: Tom V Mathew
		Update: Sat Aug 22 15:03:19 IST 2026
*/

body
{
	font-family:Arial, Sans-Serif;
}

.clearfix:before, .clearfix:after
{
	content: "";
	display: table;
}

.clearfix:after
{
	clear: both;
}

a
{
	color:#0067ab;
	text-decoration:none;
}

a:hover
{
	text-decoration:underline;
}

.form
{
	margin: 0 auto;
}

input[type='text'], input[type='email'], input[type='password']
{
	border-radius: 2px;
	border: 1px solid #CCC; padding: 10px;
	color: #333;
	font-size: 14px;
	margin-top: 10px;
}

input[type='submit']
{
	padding: 3px 25px 3px;
	color: #fff;
	background-color: #0067ab;
	text-shadow: rgba(0,0,0,0.24) 0 1px 0;
	font-size: 16px; box-shadow: rgba(255,255,255,0.24) 0 2px 0 0 inset,#fff 0 1px 0 0;
	border: 0px solid #0164a5;
	border-radius: 0px;
	margin-top: 1px;
	cursor:pointer;
}

input[type='submit']:hover
{
	background-color: #024978;
}


/* --- CSS for H1, H2, H3, H4, P --- */

/* --- BASE TYPOGRAPHY VARIABLES --- */
:root
{
  /* Professional Color Palette (Deep/Muted Variants) */
  --text-p: #1a1a1a;       /* Rich Black (softer on the eyes than pure #000000) */
  --color-h1: #991b1b;     /* Deep Crimson / Brick Red */
  --color-h2: #86198f;     /* Deep Plum / Muted Magenta */
  --color-h3: #065f46;     /* Forest / Emerald Green */
  --color-h4: #1e40af;     /* Royal / Navy Blue */
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- BODY & PARAGRAPHS --- */
body
{
  font-family: var(--font-stack);
  background-color: #ffffff;
  color: var(--text-p);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

p
{
  font-size: 1rem;       
  margin-top: 0;
  margin-bottom: 1.25rem;
  max-width: 70ch;       
}

/* --- HEADINGS (Shared Styles) --- */
h1, h2, h3, h4
{
  font-family: var(--font-stack);
  line-height: 1.2;      
  font-weight: 700;
  margin-top: 2rem;      
  margin-bottom: 0.75rem;
}

/* --- INDIVIDUAL HEADING SIZES & COLORS --- */
h1
{
  color: var(--color-h1);
  font-size: 2.5rem;     
  letter-spacing: -0.025em; 
  margin-top: 0;         
}

h2
{
  color: var(--color-h2);
  font-size: 2rem;       
  letter-spacing: -0.02em;
  padding-bottom: 0.25rem;
}

h3
{
  color: var(--color-h3);
  font-size: 1.5rem;     
}

h4
{
  color: var(--color-h4);
  font-size: 1.25rem;    
  font-weight: 600;      
}







/* styling for the tables  */

#tvm-table-a
{
	font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size: 16px;
	margin: 20px;
	text-align: center;
	border-collapse: collapse;
}
#tvm-table-a th
{
	font-size: 16px;
	font-weight: normal;
	padding: 8px;
	background: #b9c9fe;
	border-top: 1px solid #808080;
	border-bottom: 1px solid #808080;
	color: #039;
	vertical-align:top;
}
#tvm-table-a th.aC{
	text-align: center;
}
#tvm-table-a td
{
	padding: 8px;
	background: #e8edff;
	border-bottom: 1px solid #808080;
	color: #339;
	border-top: 1px solid transparent;
	vertical-align:top;
}
#tvm-table-a td.aC{
	text-align: center;
}

#tvm-table-a tr:hover td
{
	background: #d0dafd;
	color: #669;
}

/* Popup container */
.popup
{
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext
{
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after
{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show
{
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn
{
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeIn
{
    from {opacity: 0;}
    to {opacity:1 ;}
} 

