/*
 * Combined style sheet for the index pages and the slide pages, with classes that are common to both styles
 */
 
body {
	font-family: Arial, Helvetica, sans-serif;
}
.mobile-container {
	max-width: 480px;
	height: 100vh;
	margin: auto;
	background: url(cur_tile.png);
	background-repeat: repeat; 
	background-position: left top;
	color: rgb(14, 0, 0);
	border-radius: 10px;
}
table {
	margin-left: 4%;
}
td {
	padding-bottom: 8px;
}
img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
td.div.space {
	padding-bottom: 8px;
	text-indent: 2%;
}
div.maintitle {
	font-size: 20px;
	color: red; 
	text-align: left;
	margin-left: 2%;
}
div.subtitle {
	font-size: 20px;
	color: black; 
	text-align: center;
}
div.image {
	float: left;
}
div.a {
	height: 100px;
}
div.b {
	height: 50px;
}
div.c {
	height: 25px;
}
div.d {
	height: 10px;
}
a.pics:hover {
	font-size:125%;
}
a:link {
	color: blue;
}
a:hover {
	font-size:120%;
	color: rgb(255, 0, 34);
}
a:active {
	color: blue;
}
a:visited {
	color: blue;
}

/* Style the navigation menu */
.topnav {
	overflow: hidden;
	background-color: #333;
	position: relative;
  }
  
/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
	display: none;
  }
  
/* Style navigation menu links */
.topnav a {
	color: white;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 25px;
	display: block;
  }
  
/* Style the hamburger menu */
.topnav a.icon {
	background: black;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
  }
  
/* Add a grey background color on mouse-over */
.topnav a:hover {
	background-color: #ddd;
	color: black;
  }
  
/* Style the active link (or home/logo) */
.active {
	background-color: #3b12f1;
	color: white;
  }