/* ******************************************** */
/* standard styles */
/* ******************************************** */

a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color:  #a40000;
}
body:{
  font-size: 18px;
}

ul {
  margin-left: 15px;
}

.page_title{
  font-family:Arial, Helvetica, sans-serif;
  font-size:26px;
  font-weight: bold;
  padding-top: 10px;
}

.page_subtitle{
  font-family:Arial, Helvetica, sans-serif;
  font-size:20px;
  font-weight: bold;
  padding-top: 5px;
}

h1 {
  -webkit-text-stroke: 1px #a40000;
}

p.note{
   background-image: url('images/note.png');
   background-size: 20px 20px;
   background-repeat: no-repeat;
   padding-left: 30px;  /* width of the image plus a little extra padding */
   display: block;  /* may not need this, but I've found I do */
}

/* page content */
.page_content{
  padding-top: 10px;
}
/* ******************************************** */
/* Index page styles */
/* ******************************************** */


/* index page div layouts */
.grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  width: fit-content;
}


/* index page link style */
.main_page_link_text{
  font-size: 14;
  font-family: sans-serif;
}
.main_page_link_text: hover{
  color:black;	
}


/* imps img */
.imps_img {display:block;}

/* ******************************************** */
/* item detail page */
/* ******************************************** */

.item_img { display:block; margin:10px; }

.item_in_title{
  color: #777777;
}

.item_desc{
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline:block;
    font-size: 12px;
    background-color: #dddddd;
}



/* ***************************************** */
/* footer styles */
/* ***************************************** */

.div-left{
    float:left;
    padding-left:10px;
}

.div-right{
    float:right;
    padding-right:10px;

}
.footer-container{
    height:40px;
    max-width:980px;
    padding-top:25px;
}

.footer{
    width: 100%;
    border-top:2px solid gray;
}

.credit_td {
  padding-top: 8px;
}

/* image hover */

.thumbnail { 
top:-50px; 
left:-35px; 
width: 50px;
display:block; 
z-index:999; 
cursor: pointer; 
-webkit-transition-property: all; 
-webkit-transition-duration: 0.3s; 
-webkit-transition-timing-function: ease; 
} 

/*change the number below to scale to the appropriate size*/ 
.thumbnail:hover { 
transform: scale(5); 
}
/* ******************************************** */
/* modal dialog box styles */
/* ******************************************** */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  padding-left: 100px;
  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.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  padding-right: 20px;
  padding-left: 5px;
  width: auto;
  height: auto;
  display: inline-block;

}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 32px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* ******************************************** */
/* Styles to sort tables by */
/* ******************************************** */


.item_display_table {
    display: table;
    border: 1px solid #ccc;
    font-family: arial,helvetica,sans-serif;
    border-collapse: collapse
}

.table_head {
    display: table-header-group;
    background-color: #ddd;
}
.table_label {
    display: table-cell;
    font-weight: bold;
    border-bottom: 2px solid #ccc;
    padding: 3px;
}
.table_body {
    display: table-row-group;
    background-color: #fff;
}
.table_row {
    display: table-row;
    line-height: 20px;
    padding: 2px;
/*    border-bottom: 3px solid black;*/

}
.table_cell {
    display: table-cell;
    padding: 6px;
}
.table_cellblock {
    padding: 2px 3px;
}
tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: #555;
  color: #fff;
  text-align: rightr;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -50px;
  opacity: 0;
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555;
}
 
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

