body{
    height: 100%;
}
#signup table{
    border-width: 1px;
    border-color: blue;
    border-style: none;
    padding-left: 5px;
    padding-right: 5px;
        
}
#signup tr {
    border-bottom: 1px solid gray
}
#signup td {
    padding-left: 5px;
    padding-right: 5px;
    width: 200px;
    text-align: center;
    border-bottom: 1px;
    border-bottom-color: gray;
    border-bottom-style: none;
}

#signup th {
    text-decoration: underline;
}

#signup {
    border-color: blue;
    border-width: 1px;
    margin-left: 310px;
    padding: 10px;
    position: relative;
        
}

#signup-name {
    float: left;
/*    width: 300px; */
    padding: 10px;
}
/* footer text */
div.footer{ 
	text-align: center;
	color: #666666;	
	position: static;
        font-family: helvetica, sans-serif;
        vertical-align: bottom;
	bottom: 0;
	width: 100%;
        
	}

        

/* heading links */
/*a:link.header{
		text-decoration: none;
		color: #000000;
	}
a:visited.header{
		text-decoration: none;
		color: #000000;
	}
a:hover.header{
		text-decoration: underline;
		color: #555555;
	}
a:active.header{
		text-decoration: underline;	
	}

 Normal Links 
a:link{
		text-decoration: none;
		color: #000000;
	}
a:visited{
		text-decoration: none;
		color: #000000;
	}
a:hover{
		text-decoration: underline;
		color: #555555;
	}
a:active{
		text-decoration: underline;	
	}

        
a:link.red{
		text-decoration: none;
		color: #ff0000;
	}
a:visited.red{
		text-decoration: none;
		color: #ff0000;
	}
a:hover.red{
		text-decoration: underline;
		color: #ff0000;
	}
a:active.red{
		text-decoration: underline;	
	}*/

        
select option.red {
		color: #ff0000;
		background-color: #ffffff;;
	}

        
td.red {

    color: #ff0000;
    background-color: #ffffff;
        }
        
.bmenu{
            display: inline-block;
            padding: 1px 25px;
            font-size: 18px;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            outline: none;
            color: #ffffff;
            background-color: gray;
            border: none;
            border-radius: 15px;
            
        }
        
        .bmenu:hover{
            background-color: darkgray;
        }
        
        .bmenu:active{
            background-color: darkgray;
            color: white;
        }
        
        .bold{
            font-weight: bold;
        }
        
        .nametitle {
            font-size: 24px;
            font-weight: bold;
            text-align: center;
        }
        
     
        
        ul{
            list-style-type: none;
            margin: 0;
            margin-bottom: 10px;
            padding: 0;
            overflow: hidden;
            background-color: white;
            text-align: center;
        }
        
        li {
            float: left;
            /*color: white;*/
        }       

li a, a.dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 2px 16px;
    margin: 2px;
    text-decoration: none;
    border-radius: 25px;
    background-color: gray;
    font-family: arial;
    font-size: 18px;
    
    
}

.menu{
    text-align: center;
}

li a:hover, .dropdown:hover, .dropbtn {
    background-color: darkgray;
    color: white;
}

li.dropdown{
    display: inline-block;
    border-radius: 25px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    border-radius: 25px;
}
.dropdown-content a {
    color: white;
    padding: 2px 16px;
    margin: 5px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 25px;
    background-color: gray;

}

.dropdown-content a:hover {background-color: darkgray;}

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