*{margin:0px;padding:0px;border:0px;}
input.email{display:none;}
input, textarea{border:1px solid #888;}
body{background-image:url('../Images/stripe4.gif');background-color:rgb(255, 128, 32);}
body.Anderson{background-image:url('../Images/stripe3.png');background-color:rgb(32, 128, 255);}
div.Title{background-color:rgb(255, 255, 255);left:0px;right:0px;padding:32px;text-align:center;color:rgb(0, 0, 0);font-family:"Helvetica", Times, serif;font-size:24px;font-weight:bolder;}
p.Number{text-align:center;font-size:16px;}
p.Info{text-align:center;font-size:14px;}
div.TabBar{position:relative;right:0px;left:0px;background-image:url('../Images/Shadow.png');background-repeat:repeat-x;height:32px;}
h4{text-indent:1em;}
div.TabButton{background-image:url('../Images/Shadow.png');background-repeat:repeat-x;top:0px;position:relative;padding:8px;font-size:18px;background-color:rgb(255, 255, 255);float:left;margin:2px;margin-top:0px;}
div.TabButtonSelected{top:0px;position:relative;padding:8px;font-size:20px;background-color:rgb(255, 255, 255);float:left;margin:2px;margin-top:0px;}
div.ContentContainer{margin-top:16px;padding-top:16px;padding-bottom:32px;padding-left:0%;padding-right:0%;}
div.Content{background-color:rgb(255, 255, 255);padding:8px;}
div.UnderContent{right:0px;left:0px;padding:16px;background-image:url('../Images/Shadow.png');background-repeat:repeat-x;}
div.HideMe{color:rgb(255, 128, 32);overflow:hidden;width:1px;height:1px;}
div.Copyright{text-align:center;font-size:10px;color:white;}
A{z-index:5;color:rgb(50, 50, 255);}
A:link{text-decoration:none;}
A:visited{text-decoration:none;}
A:active{text-decoration:none;}
A.TabButton:hover{color:rgb(100, 100, 255);text-decoration:underline;font-size:36px;}
A:hover{color:rgb(100, 100, 255);text-decoration:underline;}
A.Selected{color:rgb(100, 100, 255);font-size:36px;}
table.Stats{width:50%;border-style:solid;border-width:1px;border-color:rgb(170, 170, 170);border-spacing:0px;}
tr.Stats{border-style:solid;border-width:1px;border-color:rgb(170, 170, 170);}
td.Stats{vertical-align:top;padding:5px;border-style:solid;border-width:1px;border-color:rgb(200, 200, 200);}
td.Stats2{vertical-align:top;padding:5px;border-style:solid;background-color:rgb(230, 230, 230);border-width:1px;border-color:rgb(200, 200, 200);}

/*reference: https://medialoot.com/preview/css-only-navigation-menu/style.css*/
/*Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
li a {
	display:block;
	min-width:140px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #2f3036;
	text-decoration: none;
}

/*Hover state for top level links*/
li:hover a {
	color: #fff;
	background: #ed4040;
}

/*Style for dropdown links*/
li:hover ul a {
	background: #4f5056;
	color: #fff;
	height: 30px;
	line-height: 30px;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background: #ed4040;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
li ul {
	display: none;
}

/*Make dropdown links vertical*/
li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 16px;
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #ed4040;
	text-align: center;
	padding: 16px 0;
	display: none;
}

.search-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #ed4040;
	text-align: center;
	padding: 16px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	.search-menu {
		display:block;
	}
}