#toc {
    position:   absolute;
    left:       0px;
    top:        54px;
    height:     auto;
    width:      145px;
    padding:    0;
    margin:     0;
}

#toc a
{
	display:block;
}
#toc a:hover
{
	text-decoration:none;
	text-align:center;
}


/* To disable selection 
body
{
oncontextmenu : return-false;
-ms-user-select:none;
onselectstart:return false;
}*/

#content {
    position:   absolute;
    left:       146px;
    top:        54px;
    height:     auto;
    width:      1112;
}

a:visited,a{
color:#0033FF;
}

#title {
    position:         absolute;
    top:              0px;
    left:             0px;
    height:           45px;
    padding:          0;
    padding-top:      4px;
    padding-bottom:   2px;
    background-color: #BBF;
    width:            1258;
}

/* Styles for mini-view */
#miniToc {
    position:   absolute;
    left:       0px;
    top:        30px;
    height:     40px;
    width:      100%;
    padding:    0;
    margin:     0;
}

#miniContent {
    position:   absolute;
    /*left:       150px; */
    top:        45px;
    height:     auto;
    width:      100%;
}

#miniTitle {
    position:         absolute;
    top:              0px;
    left:             0px;
    height:           25px;
    padding:          5px;
    padding-top:      10px;
    background-color: #BBF;
    width:            100%;
}

body {
  font-family:  sans-serif;
  font-size:    9pt;
}

table {
    border:    none;
    font-size: 9pt;
    margin:    2px;
	user-select:text;
}

td {
  border:       1px solid;
  border-color: #EEE;
  padding:      3px;
}

td.abc {
  border: 1px solid;
  font-size: 8pt;
  border-color: #EEE;
  padding:      1px;
}

tr.even {
  background-color: transparent;
}

tr.odd {
  background-color: #EEF;
  
}

tr.highlight {
  background-color: #AFA;
}

th {
  vertical-align:   top;
  /*text-align:       left;*/
  border:           0px none;
  padding:          4px;
  background-color: #BBF;
}

table.invisible {
  border:         0px none;
  border-spacing: 1px;
  padding:        1px;
  margin:         1px;
}

td.invisible {
  border: 0px none;
}

img {
  border:         0;
  margin-top:     1px;
  margin-bottom:  1px;
  margin-left:    1px;
  margin-right:   3px;
  vertical-align: -30%;
}

h1 {
  font-family:  sans-serif;
  font-size:    1.8em;
}

h2 {
  font-family:  sans-serif;
  font-size:    1.6em;
}

h3 {
  font-family:  sans-serif;
  font-size:    1.4em;
}

a {
  text-decoration:none;
}

a:hover {
  text-decoration: underline;
}

/* --Login Classes-- */
a.login {
  text-decoration:  none;
  font-size:        10pt;
  font-family:      sans-serif;
}

a.login:hover {
  text-decoration:  none;
  background-color: #AAFFAA;
}

/* --Footer Classes-- */

p.footer {
  text-align: left;
  font-size: 75%;
}

/* --Warning Classes-- */

table.warning {
  border:	2px solid red;
}

p.warning {
  font-family:  sans-serif;
  font-weight:  bold;
  font-size:    1.25em;
}

p.byline {
  font-family:  sans-serif;
  font-size:    0.75em;
  padding-top:  0;
  margin-top:   0;
}

p.news {
  padding:	2px;
  margin:		2px;
  border:		1px solid gray;
  max-width: 600px;
}

/* Label Styling */
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

/* Input, Textarea, and Select Styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="file"],
textarea,
select {
  
  padding: 5px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button Styling */
input[type="submit"],button {
  display: inline-block;
 
  padding: 8px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button,input[type="submit"]:hover {
  background-color: #89b9d4;
  transform: translateY(-4px) scale(1.05); /* Moves the button up and scales it */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Adds a bigger shadow */
}

button,input[type="submit"]:active {
  transform: translateY(2px) scale(0.98); /* Shrinks and slightly lowers the button on click */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

button:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

/* Textarea Specific Styling */
textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form Helper Text and Error Message */
.form-help {
  display: block;
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #6c757d;
}

.form-error {
  display: block;
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #dc3545;
}

/* Basic Anchor Tag Styling */
a {
  color: #007bff; /* Primary color */
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: #0056b3; /* Darker shade on hover */
  transform: translateY(-.5px); /* Slight lift effect */
}

/* Underline animation */
a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #007bff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

a:hover::before {
  visibility: visible;
  transform: scaleX(1);
}

a:active {
  color: #003e7f; /* Darker color when clicked */
  transform: translateY(1px); /* Press-down effect */
}

/* Disabled/Inactive Links */
a:disabled,
a[disabled] {
  color: #aaa;
  pointer-events: none;
  text-decoration: none;
}

/* General table styling */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 12px;
  margin: 20px 0;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Table header styling */
.styled-table thead tr {
  background-color: #003e7f;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

/* Table body styling */
.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

/* Zebra striping effect for table rows */
.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

/* Hover effect on table rows */
.styled-table tbody tr:hover {
  background-color: #f1f1f1;
}

/* Padding for table cells */
.styled-table th, .styled-table td {
  padding: 1px 1px;
}

/* Add spacing between table cells */
.styled-table td {
  border-right: 1px solid #dddddd;
}

/* Remove right border for the last column */
.styled-table td:last-child {
  border-right: none;
}


.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.button-link {
  background-color: rgb(34, 34, 122); /* light blue */
  color: #ffffff; /* white text */
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}

.button-link:hover {
  background-color: #094c94; /* darker blue on hover */
  transform: scale(1.05);
}

.button-link.active {
  background-color: #1f39a4; /* even darker for active state */
  box-shadow: 0 0 6px rgba(0,0,0,0.25);
  transform: scale(1.05);
}
/* Responsive table styling for smaller screens */

				
					