/* $DOUG: MadHatters/main.css,v 1.1.1.1 2022/03/30 07:50:53 doug Exp $ */

/*      Background for the page body. */
body {
   background-color: #e6e6e6;
}

/********************  Dropdown Menu Definitions  ************************/
/*	Container holds the menu bar	*/
.container {
    overflow: hidden;
    background-color: #4b9900;	/*	Menu bar background color	*/
    font-family: Arial;
}

/*	The anchors in the menu bar	*/
.container a {
    float: left;
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    text-align: center;
    padding: 18px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

/*	The drop down menu bar text entries	*/
.dropdown .dropbtn {
    font-size: 16px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
}

/*	The hover changes to the menu bar (both types)	*/
.container a:hover, .dropdown:hover .dropbtn {
    color: black;	/* menu bar highlight color */
}

/*	The drop down sub menu items	*/
.dropdown-content {
    display: none;
    text-align: left;
    position: absolute;
    background-color: #d0d0d0;	/* sub menu background color */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/*	The drop down sub menu anchors	*/
.dropdown-content a{
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/*	The drop down sub menu buttons	*/
.dropdown-content .button {
    float: none;
    color: black;
    font-size: 16px;
    padding: 12px 16px;
    text-decoration: none;
    border: none;
    background-color: #d0d0d0;	
    display: block;
    text-align: left;
}

/*	The drop down sub menu hover changes	*/
.dropdown-content a:hover, .dropdown-content .button:hover {
    /* background-color: #ddd;	/* highlight sub menu background color */
    color: red;			/*highlight sub menu text color */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/********************  Slick Button Definitions  ************************/
.slickButton {
        color: black; 
        font-weight: bold; 
        font-family: "Trebuchet MS", Helvetica, sans-serif;
        line-height: 2.5;
        padding: 4px;
        font-size: 14; 
        background: yellow; 
        cursor: pointer; 
        border-style: outset;
        border-color: pink;
        text-decoration: none;
}


.slickButton:hover {
        color: black;
        background: 
        pink;
}

/********************  Aux Button Definitions  ************************/
.auxButton {
	color: black; padding: 5px;
	font-size: 14; background: #33ffff; cursor: pointer;
}



/********************  Title above the text on the image  ***************/
/*      Format the Title above the text on the image */
.home_title { 
   font-family: Arial, Helvetica, sans-serif;
   color: white;
   text-align: center;
   font-size: 36px;
   font-stretch: normal;
   font-style: normal;
   line-height: 46px;
}

/********************  Text on top of the image  ************************/
/*      Format the text on top of the image */
.home_text { 
   position: absolute; 
   bottom: 40px; 
   left: 5%; 
   font-family: 'TrebuchetMS', 'Trebuchet MS', sans-serif;
   color: white;
   text-align: left;
   font-size: 14px;
   font-stretch: normal;
   font-style: normal;
}

/********************  Slick Button Definitions  ************************/
/*      Format text on Secondary Pages  */
.body_text { 
   font-family: 'TrebuchetMS', 'Trebuchet MS', sans-serif;
   color: black;
   text-align: left;
   font-size: 28px;
   font-stretch: normal;
   font-style: normal;
}

