/* Use this:  
	http://www.w3schools.com/css
*/
/* basic elements */

html {
	margin: 0;
	padding: 0;
	}
iframe {
    position: fixed;
   	text-align: left;
    padding: 15px;
	;
}
/*
	.topright {
    top: 0;
    left: 310px;
/*This width trick is REALLY worth knowing!
    width: calc(100% - 335px);
/*REALLY REALLY worth knowing!
    margin-left: 10px;
	height: 100%;
}
	.topleft {
    top: 0;
    left: 0;
	width: 310px;
    margin: auto;
	height: 100%;
}
*/
body { 
    font-family: Tahoma, Geneva, sans-serif;
	line-height: 1.3;
	letter-spacing: 1px;
	color: black; 
	margin: 0; 
	padding: 0;
	}
p { 
    font-family: Tahoma, Geneva, sans-serif;
	text-align: left;	
	color: black;
	padding: 3px;
	}
	.indent {
		margin-left: 20px;
	}
	.focus {
		font-style: italic;
		font-weight: bold;
	}
	.bigquestion {
		color: red;
		font-weight: bold;
	}
	.footer {
		font-size: 0.6em;
	}
	.medium {
		font-size: 0.85em;
	}
	.reference {
		font-style: italic;
		font-size: 0.85em;
	}
	.box {
		text-align: center;
		width: calc(100% - 350px);
	    padding: 10px;
	    border-style: solid;
		border-width: 2px;
	}
	.dropdown {
		position: relative;
		display: inline-block;
	}
	.dropdown-content {
		display: none;
		position: absolute;
	    z-index: 1;
		background-color: rgb(245,245,245);
		min-width: 255px;
		padding: 1px 2px;
		font-size: 0.80em;
		margin-left: 40px;
	}
	.dropdown:hover .dropdown-content {
		font-size: 0.80em;
		display: block;
	}
h1 { 
    font-family: Tahoma, Geneva, sans-serif;
	letter-spacing: 1px; 
	margin-bottom: 0; 
	margin-top: 0; 
	color: black;
	}
h2 { 
    font-family: Tahoma, Geneva, sans-serif;
	letter-spacing: 1px; 
	margin-bottom: 0; 
	margin-top: 7; 
	color: black;
	}

h3 { 
    font-family: Tahoma, Geneva, sans-serif;
	letter-spacing: 1px; 
	margin-bottom: 0; 
	margin-top: 7; 
	color: black;
	}

	hr {
	height: 1px;
	}
a {
	color: #0254EB
}
a:link { 
    font-family: Tahoma, Geneva, sans-serif;
	text-decoration: none; 
	color: #0000FF;
	}
a:visited { 
    font-family: Tahoma, Geneva, sans-serif;
	text-decoration: none; 
	color: #2222FF;
	}
a:hover, a:focus, a:active { 
    font-family: Tahoma, Geneva, sans-serif;
	color: #FF0000;
	}
a.menu {
	text-align: left;
	margin-left: 10px;
	font-size: 0.90em;
}
/*
.scroll-wrapper-right {
	top: 0;
    left: 310px;
	width: 750px;
	height: 100%;
	position: fixed;
	right: 0; 
	bottom: 0; 
	-webkit-overflow-scrolling: touch;
  	overflow-y: scroll;
	}
	

.scroll-wrapper-left {
	top: 0;
    left: 0px;
	width: 300;
	height: 100%;
	position: fixed;
	right: 0; 
	bottom: 0; 
	-webkit-overflow-scrolling: touch;
  	overflow-y: scroll;
}
}*/

.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .25s ease;
  }

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: 0.85em;
  margin-left: 20px;
}

.read-more-state ~ .read-more-trigger:before {
  content: 'Show more ...';
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Show less ...';
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: blue;
  font-size: .7em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
  margin-top: 5px;
}
