:root {
	--theme-website: #7F3E98;
    --button-color: #4F709F;
	--theme-color-invoice: #7F3E98;
	/* --theme-website: #0000FF; */
    /* --button-color: #0000FF; */
	/* --theme-color-invoice: #000000; */
	/* --menu-1-col-width: 200px; /* was 140px; width of 1-column menu dropdowns */
	/* --menu-1-col-width-less-10: 190px; /* was 130px; width of 1-column menu dropdowns */
}

* {
    margin: 0;
    padding: 0;
    /* Next 2-lines: testing */
    box-sizing: border-box; /* Ensures padding and borders are included in element width/height */
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
    font-size: .85rem;
}

.form-780 {
/*    width: 780px;  AA */
    width: 800px;
    padding: 20px;
}

.form-860 {
    width: 860px;
    padding: 20px;
}

form {
/*    width: 780px; /* 460px; */
    padding: 20px; /* */
    width: 100%;
    padding: 0;
    color: #333333; 
    margin: 0 auto;
/*  border: 1px solid #FF0000; TESTING */
}
fieldset {
    border: 0;
    padding: 10px; 
/*	position: relative;  WHAT DOES THIS DO? */
    margin-bottom: 20px; 
    background: #F6F6F6;
    -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px;
    background: -webkit-gradient(linear, left top, left bottom, from(#EEEEEE), to(#FFFFFF)); 
    background: -moz-linear-gradient(center top, #EFEFEF, #FFFFFF 100%);
    box-shadow: 3px 3px 10px #ccc; 
    -moz-box-shadow: 3px 3px 10px #ccc; 
    -webkit-box-shadow: 3px 3px 10px #ccc
}

legend {
    padding: 5px 10px; 
    background-color: var(--button-color);
    color: white; 

    border-radius: 4px;
    -webkit-border-radius: 4px; 
    -moz-border-radius: 4px; 

	box-shadow: 2px 2px 4px #888;
    -moz-box-shadow: 2px 2px 4px #888;
    -webkit-box-shadow: 2px 2px 4px #888;
    text-shadow: 1px 1px 1px #333;
}

.dashed-box {
    border: 1px dashed red;
}

.login-name {
    float: left;
    clear: left;
    padding-left: 20px; 
    /* font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
    font-size: 1em; */
    padding-top: 6px;
}

div.container {
/*  width: 340px; AA */
    width: 349px;
/*  margin: 0 20px; */
    margin: 0 10px;
    border: 0px solid;
/*  border: 1px solid #00FF00; TESTING */
}
#container-wide {
    width: 740px;
    clear: left;
}
.container-wide {
    width: 740px;
}
#container-L {
    float: left;
/*  border: 1px solid #0000FF; TESTING */
}
#container-R {
    float: right;
/*  border: 1px solid #0000FF; TESTING */
}
#container-wide-A {
    width: 710px;
}
#container-wide-B {
    width: 710px;
}

label {
    float: left;
    clear: left;
    display: block; 
/*  width: 85px;     AA */
    width: 105px;
    text-align: right; 
    padding-right: 10px; 
/*    height: 20px; AA - removed */
    line-height: 20px;
/*    border: 1px solid #FF0000; TESTING */
    padding-top: .2rem;
}

.label-inv-editor {
    float: left;
    clear: left;
    display: block; 
    width: 80px;
    text-align: right; 
    padding-right: 10px; 
    height: 20px;
    line-height: 20px;
    padding: .2rem;
}

.button {
    width: 110px; 
    border: 0; 
    padding: 5px 10px; 
    background: var(--button-color);
    color: white; 

    border-radius: 4px;
    -webkit-border-radius: 4px; 
    -moz-border-radius: 4px; 

    box-shadow: 2px 2px 4px #888;
    -moz-box-shadow: 2px 2px 4px #888;
    -webkit-box-shadow: 2px 2px 4px #888;
    /*  margin-bottom: 4px; */
    text-shadow: 1px 1px 1px #333;
    float: none;
}

input, textarea, select {
    border: 1px solid #d9d9d9;
    margin-top: 3px;

    box-sizing: content-box;         /* These next 3 change the default for "select" elements which is border-box */
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    padding: .2rem;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transitions for interactions */
}

input:focus, textarea:focus, select:focus { 
    /* background: white; 
    border-color: #600 */
    border-color: #4a90e2; /* Blue border on focus */
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.25); /* Subtle glow effect */
    outline: none; /* Remove default browser outline */
}

p {
    overflow: hidden; 
    margin-bottom: 7px;
}
textarea {
    background: -webkit-gradient(linear, left top, left bottom, from(#EEEEEE), to(#FFFFFF)); 
    background: -moz-linear-gradient(center top, #EFEFEF, #FFFFFF 100%);
    border-radius: 4px;
    padding: 6px;
}
input, textarea, select {
/*  width: 213px;   Don't know why one pixel more messes it up. */
    width: 232px;
/*  border: 1px solid #00FF00; TESTING */
}
div.invoice-notes {
    width: 340px;
    /*margin: 0 20px; */
    border: 0;
    margin-left: auto;
    margin-right: 0;
}
#i_NotesInv {
   width: 335px;
   height: 100px;
   resize: vertical;
}

#i_Note {
   width: 500px;
   height: 100px;
   resize: vertical;
}

#i_Synopsis, #i_Subject, #i_Attachment {
   width: 500px;
}

#i_FirstName {
    width: 110px;
}
#i_LastName {
    width: 110px;
    margin-left: 4px;
}
#i_City {
    width: 115px;
}
#i_State {
    width: 22px;
    margin-left: 4px;
}
#i_Zip {
    width: 66px;
    margin-left: 4px;
}
#i_Phone1, #i_Phone2 {
    width: 147px;
}
#i_PhoneType1, #i_PhoneType2 {
    width: 72px;
    margin-left: 4px;
}
#i_Notes {
/* width: 450px;  Narrowed on 6-20-2017 */
   width: 335px;
   height: 233px;
   resize: vertical;
}

#i_Instructions {
   width: 335px;
   height: 190px;
   resize: vertical;
}
#i_Description {
    width: 335px;
    height: 243px;
    resize: vertical;
}
#i_span_PhoneNo_1, #i_span_PhoneNo_2 {
    display: block;
    margin-top: 4px;
/*  width: 232px; */
}
#i_Address {
    font-family: Verdana, Geneva, sans-serif; 
    font-size: 12px;
    border: 0px;
    resize: none;
}
.rec-info {
    text-align: right;
    font-size: 11px;
}

.L-of-LR-line {
    float: left;
}

.R-of-LR-line {
    float: right;
}

div.LR-line-end {
    clear: both;
}

table.center {
    text-align:center; 
    margin-left:auto; 
    margin-right:auto; 

  table-layout: fixed;
  width: 100%;
/*  white-space: nowrap; */
  }
/*  tr,td {text-align:left;} */

/* ========== OLD STUFF FOLLOWS ========== */

.body {
	/* font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif; */
	/* font-size: .9em; */
/*	color: #000033 */
	color: #000066;
    /* Testing */
    height: 100vh; /* Full viewport height */
    /* background: linear-gradient(120deg, #a1c4fd, #c2e9fb); /* Soft blue gradient background */

}

.red {
	color: #FF0000
}

.red-bg {
	background: #FF0000
}

.bold-red {
	color: #FF0000;
	font-weight: bold;
	font-style: italic;
}

.legacy {
	color: #FFFFFF;  /* Bold Italic Reverse Red*/
	font-weight: bold;
	font-style: italic;
	background-color: #FF0000;
	text-align: right;
	padding-right: 20px;
}

.bodyb {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: 1rem;
/*	color: #000033 */
	color: #000066
}

.small {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: .75rem;
	color: #000066
}

.smallr {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: .75rem;
	color: #993333
}

.smallr2 {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: .9rem;
	color: #993333;
	font-style: italic;
}

.smallbw {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .75rem;
	color: #FFFFFF
}

.smalli {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: .75rem;
	font-style: italic;
/*	color: #000033 */
	color: #000066
}

.small2 {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: .65rem;
/*	color: #000033 */
	color: #000066
}

.smallb {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .75rem;
/*	color: #000033 */
	color: #000066
}

.head {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: 1.5rem;
/*	color: #000033 */
	color: #000066
}

.link {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: .8rem;
	color: #993333
}

A:link {
	text-decoration: underline;
	color:#993333
}

A:active {
	text-decoration: underline; 	
	color:#990000
}

A:visited {
	text-decoration: underline;
/*	color: #000033 */
	color: #000066
}

A.head:link {
	text-decoration: underline;
	font-size: 1rem;
	color: #FFFFFF
}

A.head:active {
	text-decoration: underline;
	font-size: 1rem;
	color: #FFFFFF
}

A.head:visited {
	text-decoration: underline;
	font-size: 1rem;
	color: #FFFFFF
}

A.listing:link {
	text-decoration: underline;
/*	color: #000033 */
	color: #000066
}

A.listing:active {
	text-decoration: underline; 	
	color: #990000
}

A.listing:visited {
	text-decoration: underline;
	color: #990000
}

A.menu:link {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .9rem;
/*	color: #000033 */
	color: #000066
}

A.menu:active {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .9rem;
/*	color: #000033 */
	color: #000066
}

A.menu:visited {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .9rem;
/*	color: #000033 */
	color: #000066
}

/* Stuff for FB_Update_Hold_Counts.asp */
/*
	margin-right: 10px;
	margin-bottom: .9em;
	<table border="1" cellspacing="10" cellpadding="1" bgcolor="yellow">
*/

.col_num {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .9rem;
	color: #000066;
}

td.col_num1 {
	padding: 3rem;
}

#Hold-Counts-Table {
	/* Necessary - do not remove. */
}

#Hold-Counts-Table th {
	background: #999966;
	text-align: center;
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .75rem;
	vertical-align: bottom;
	color: #FFF;
}
#Hold-Counts-Table td {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .9rem;
	color: #000066;
	height: 2em;
}

#Hold-Counts-Table td.error {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .9rem;
	color: #FF0000;
	height: 2em;
}

#Hold-Counts-Table td.small {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: normal;
/*	font-size: .9em; */
	font-size: .75rem;
	color: #000066;
	height: 2em;
}

#Hold-Counts-Table a {
	color: #000066
}

#Hold-Counts-Table .numeric {
	text-align: right;
/*	padding-right: 2em; */
}

#big-warning {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: 1em;
	font-weight: bold;
	font-style: italic;
	color: #FFF;
	background: #F00;
	width: 20em;
}

.rb_style {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: 1rem;
	font-weight: bold;
	color: #000066
}

#PMD-Editor td {
	text-align: left;
	vertical-align: top;
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	color: #000066;
	font-size: .9rem;
}

/***************/

.invoice-table-1 .h4_a { /* First Name */
    width: 80px;
}

.invoice-table-1 .h4_b { /* Last Name */
    width: 80px;
}

/***************/

/* cellspacing="2" cellpadding="1" */
.PMD-Table, .PMD-Table-2 {  /* We define table 2 just because the Contact-Viewer screen has two tables which must be disinguished. */
	background: #FFF;
}

.PMD-Table th, .PMD-Table-2 th {
	background: var(--theme-website);
/*	background: #81439A;
	background: #999966; */
	text-align: center;
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: 1em;
/*	font-size: .75em; */
	vertical-align: bottom;
	color: #FFF;
}

.PMD-Table th a, .PMD-Table-2 th a {
	text-decoration: underline;
	font-size: 1rem;
	color: #FFF;
}

.PMD-Table td, .PMD-Table-2 td {
	text-align: left;
	vertical-align: top;
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	color: #000066;
	font-size: 1em;
/*	font-size: .75em; */
}

.PMD-Table td.Fixed-Pitch, .PMD-Table-2 td.Fixed-Pitch {
	font-family: Lucida Console,Courier New,monospace;
}

.PMD-Table td.Checkbox, .PMD-Table-2 td.Checkbox {
	text-align: center;
	background: #CCCC88;
}

.narrow-cb {
	width: 80px;
}

.Sys-Msg-Table {
    width: 100%;
}

.Sys-Msg-Table td {
	text-align: left;
	vertical-align: top;
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	color: #000066;
	font-size: 13px; /* 1.25em; */
}

.Sys-Msg-Table td:nth-child(1) {
    width: 50px;
}

.Sys-Msg-Table td:nth-child(2) {
    width: 50px;
}


.sys-msg-cb {
	width: 48px;
    margin-top: 0;
}

.PMD-Table td a:link, .PMD-Table-2 td a:link {
	color: #000066;
}

.PMD-Table td a:active, .PMD-Table-2 td a:active {
	color: #F00;
}

.PMD-Table td a:visited, .PMD-Table-2 td a:visited {
	color: #990000;
}

tr.stripe {
	background: #D1D7E1;
/*	background: #CCCCCC; */
}

#Tbl-Inv-Update {
	border: 1px solid black;
}

#Tbl-Inv-Update td {
	color: #000;
	font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular, Sans-Serif;
	font-size: .9rem;
}

#Tbl-Inv-Update td.Fixed-Pitch {
	font-family: Lucida Console,Courier New,monospace;
}

#Tbl-Inv-Update td.rb2_style {
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-size: .9rem;
	font-weight: bold;
	color: #CC0000;
}

#Tbl-Claims-Key th {
	background: #999966;
	text-align: center;
	font-family: Arial,Helvetica,Geneva,Swiss,SunSans-Regular,Sans-Serif;
	font-weight: bold;
	font-size: .75rem;
	vertical-align: bottom;
	color: #FFF;
	white-space: nowrap;	/* doesn't work */
}

#Tbl-Claims-Key td {
	color: #000;
	font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular, Sans-Serif;
	font-size: .75em;
	height: .9em;
}

#Tbl-Claims-Key .Claims-Key-Value-Width {
	width: 40px;
	font-weight: bold;
}

#Tbl-Claims-Key .Claims-Key-Value-Space {
	width: 20px;
}

.distcd-cell {
	border-style: none;
	width: 12px;
	background-color: #CCCC88;
	margin: -1px;
}

.multi-search-box {
	width:270px; height:75px; padding:3px; background:url('images/bg-search-box.gif');
	font:.917em/25px Arial,sans-serif;
}

#tl_test {
	background-image:url("images/Total-Logistix-Header-Mid.gif");
/*	background-repeat:repeat-x;  APPEARS NOT TO BE NEEDED. */
}

#frr_test {
	background-image:url("images/FRR-Header-Mid.png");
}

.User-Table {
    text-align:center; 
    margin-left:  auto; 
    margin-right: 0; 

    table-layout: fixed;
    width: 100%;
}

.User-Table input {
    height: 110px;
    margin-top: 25px;
    margin-bottom: 25px;
}

#current-div {
	padding-bottom: 10px;
}

#current-div-table {
	vertical-align: middle;
	margin-right: 0px;
	margin-left: auto;
}

#current-set-buttons {
	vertical-align: middle;
}

#current-show-buttons {
	vertical-align: middle;
}

.cur-link {
	cursor: pointer;
}

.sys-msg-header {
    color: #FFFFFF;
    font-weight: bold;
    background-color: var(--theme-color-invoice);
    padding: 3px;
}

.sys-msg-item {
	text-align: left;
	padding: 15px 0 10px 0;
}

/* TEST MENU STUFF BELOW */

#test-menu {
    list-style:none;
    height:43px;
    position:fixed;
	z-index: 999;
 
    /* Rounded Corners */
     
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
 
    /* Background color and gradients */
     
    background: #014464;
    background: -moz-linear-gradient(top, #0272a7, #013953);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0272a7), to(#013953));
     
    /* Borders */
     
    border: 1px solid #002232;
 
    box-shadow:inset 0px 0px 1px #edf9ff;
    -moz-box-shadow:inset 0px 0px 1px #edf9ff;
    -webkit-box-shadow:inset 0px 0px 1px #edf9ff;

	/* Stuff added to center it. */
    @media (min-width: 576px) {
    margin:15px auto 0px auto;
    padding:0px 20px 0px 20px;
	left: 50%;
    transform: translateX(-50%) translateY(0);
    -moz-transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    }
    display: flex;
    justify-content: center;
}

#test-menu li {
    float:left;
    display:block;
    text-align:center;
    position:relative;
    padding: 4px 9px 4px 9px;
    margin-left: 0; /* 20px; */
    margin-right: 0; /* 20px; */
    margin-top:7px;
    border:none;
    white-space: nowrap;
}

#test-menu li:hover {
    border: 1px solid #777777;
    padding: 4px 9px 4px 9px;
     
    /* Background color and gradients */
     
    background: #F4F4F4;
    background: -moz-linear-gradient(top, #F4F4F4, #EEEEEE);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F4F4F4), to(#EEEEEE));
     
    /* Rounded corners */
     
    border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
}
 
#test-menu li a {
    font-family:Arial, Helvetica, sans-serif;
    font-size:14px; 
    color: #EEEEEE;
    display:block;
    outline:0;
    text-decoration:none;
    text-shadow: 1px 1px 1px #000;
}
 
#test-menu li:hover a {
    color:#161616;
    text-shadow: 1px 1px 1px #FFFFFF;
}

/* Drop Down */
 
.menu_dropdown_user,
.dropdown_1column {
    margin:4px auto;
    float:left;
    position:absolute;
    left:-999em; /* Hides the drop down */
    text-align:left;
    padding:10px 5px 10px 5px;
    border:1px solid #777777;
    border-top:none;
     
    /* Gradient background */
    background:#F4F4F4;
    background: -moz-linear-gradient(top, #EEEEEE, #BBBBBB);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#EEEEEE), to(#BBBBBB));
 
    /* Rounded Corners */
    border-radius: 0px 5px 5px 5px;
    -moz-border-radius: 0px 5px 5px 5px;
    -webkit-border-radius: 0px 5px 5px 5px;
}
 
#test-menu li:hover .menu_dropdown_user,
#test-menu li:hover .dropdown_1column {
    left:-1px;
    top:auto;
}
 
/* Columns */
 
.col_1 {
    display:inline;
    float: left;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
}

/* Right alignment */
 
#test-menu .menu_right {
    float:right;
    margin-right:0px;
}

#test-menu li .align_right {
    /* Rounded Corners */
    border-radius: 5px 0px 5px 5px;
    -moz-border-radius: 5px 0px 5px 5px;
    -webkit-border-radius: 5px 0px 5px 5px;
}

#test-menu li:hover .align_right {
    left:auto;
    right:-1px;
    top:auto;
}
 
/* Drop Down Content Stylings */
 
#test-menu p, #test-menu ul li {
    font-family:Arial, Helvetica, sans-serif;
    line-height:21px;
/*    font-size:12px; */
    font-size:14px;
    text-align:left;
    text-shadow: 1px 1px 1px #FFFFFF;
}

#test-menu p {
    line-height:18px;
    margin:0 0 10px 0;
}
 
#test-menu li:hover div a {
    font-size:14px;  /* Was 12 - This is the font size of the dropdown menus */
    color:#015b86;
}

/* Hover color of dropdown items. */
#test-menu li:hover div a:hover {
    color:#029feb;
}

/* Hover over top menu items. 
   Only Calendar, the fourth item should change
   to light blue since that has no dropdown items. */
#test-menu li:nth-child(4):hover a:hover {
    color:#029feb;
}

.strong {
    font-weight:bold;
}
.italic {
    font-style:italic;
}
.imgshadow {
    background:#FFFFFF;
    padding:4px;
    border:1px solid #777777;
    margin-top:5px;
    box-shadow:0px 0px 5px #666666;
    -moz-box-shadow:0px 0px 5px #666666;
    -webkit-box-shadow:0px 0px 5px #666666;
}
.img_left { /* Image sticks to the left */
    width:auto;
    float:left;
    margin:5px 15px 5px 5px;
}

.logo {
    background-color: #e0e4ea;
    height: 79px;
    margin-bottom: 19px;
}

.logo > div {
    position: relative;
    top: 50%; 
    left: 10px;
    transform: translateY(-50%);
    font-size: 40px;
}

.status-mark {
    margin-right: 3px;
}

.pd-cal-day {
    cursor: pointer;
}

#test-menu li .black_box {
    background-color:#333333;
    color: #eeeeee;
    text-shadow: 1px 1px 1px #000;
    padding:4px 6px 4px 6px;
 
    /* Rounded Corners */
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
 
    /* Shadow */
    box-shadow:inset 0 0 3px #000000;
    -webkit-box-shadow:inset 0 0 3px #000000;
    -moz-box-shadow:inset 0 0 3px #000000;
}
#test-menu li ul {
    list-style:none;
    padding:0;
    margin:0;
}
#test-menu li ul li {
    font-size:12px;
    line-height:24px;
    position:relative;
    text-shadow: 1px 1px 1px #ffffff;
    padding:0;
    margin:0;
    float:none;
    text-align:left;
    white-space:nowrap;
}
#test-menu li ul li:hover {
    background:none;
    border:none;
    padding:0;
    margin:0;
}
#test-menu li .greybox li {
    background:#F4F4F4;
    border:1px solid #bbbbbb;
    margin:0px 0px 4px 0px;
    padding:4px 6px 4px 6px;
    width:116px;
 
    /* Rounded Corners */
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
#test-menu li .greybox li:hover {
    background:#ffffff;
    border:1px solid #aaaaaa;
    padding:4px 6px 4px 6px;
    margin:0px 0px 4px 0px;
}

/* This modal code was added on 05-05-2025. */
.modal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.2); /* Black w/ opacity */
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 10px;
    border: 1px solid #888;
    /* width: 40%; /* Could be more or less, depending on screen size */
    width: 250px;
    border-radius: 5px;
}

/* The Close Button */
.modal-close {
    align-self: end;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    cursor: pointer;
    /* text-decoration: none; */
}

.modal-body {
    text-align: center;
}

.modal-footer {
    padding-bottom: 20px;
}
