/*
 * 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;
	height: 100%;
    margin: 0;
}
.mobile-container {
	max-width: 480px;
	margin: auto;
    height: 100%;
	background: url(cur_tile.png);
	background-repeat: repeat; 
	background-position: left top;
	color: rgb(14, 0, 0);
	border-radius: 10px;
}
table {
	margin-left: 5%;
}
td {
	padding-bottom:8px;
}
ol {
	margin-left: 2%;
}
ol li {
	padding: 10px;
}
div.maintitle {
	font-size: 40px;
	color: red; 
	text-align: center;
}
div.subtitle {
	font-size: 20px;
	color: black; 
	text-align: center;
}
div.subtitle2 {
	font-size: 25px;
	color: black; 
	text-align: center;
}
div.subtitleleft {
	font-size: 20px;
	color: black; 
	text-align: left;
	margin-left: 2%;
}
p {
	color: rgb(0, 0, 0);
	padding: 4px 8px 4px 8px;
	margin-left: 2%;
}
p.quote1 {
    margin: auto;
    font-size: 25px;
    text-align: center;
    padding-bottom: 4px;
    color: rgb(141, 137, 137); 
}
p.quote2 {
    width: 95%;
    font-size: 16px;
    text-align: center;
    padding: 0px;
    color: rgb(235, 119, 12);
}
p.quote_c {
	width: 95%;
	font-size: 20px;
	text-align: center;
	padding: 12px;
	color: rgb(235, 119, 12);
}
span.punch {
	font-size: 1.1em;
	text-align: left;
}
div.center {
	margin: auto;
  	width: 95%;
	padding: 6px;
	text-align: center;
	font-size: 1.2em;
}
div.space {
	padding-bottom: 5px;
}
div.text1 {
	text-align: left;
	margin-left: 2%;	
}
div.text2 {
	text-align: left;
	margin-left: 5%;	
}
div.text3 {
	margin: auto;
	width: 95%;
	text-align: left;	
}
div.linknoborder {
	margin: auto;
  	width: 95%;
	padding: 12px;
	text-align: left;
	font-size: 1em;
}
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: #f30712;
	color: white;
  }