@charset "utf-8";
* {
  box-sizing: border-box;
}

/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. 
This keeps line length more readable. IE6 does not respect this declaration. */

body {
	max-width: 960px;
	margin: 0 auto;
	padding-left: 10px;
}

.content {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;	
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link :not(.topnav) {
	color: #3366FF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited :not(.topnav){
	color: #000099;
	text-decoration: underline;
}
a:hover, a:active, a:focus :not(.topnav){ /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

.resp-img, video {
	max-width: 100%; 
	height: auto;	
}
.copyright {
	font-size: 12px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cc9900;
	padding-top: 5px;
	font: 13px Verdana, Arial, Helvetica, sans-serif;	
}

/* ~~ for gallery ~~*/
.thumb_container {
	width: 500px;
	margin-left:80px;
	padding-top: 40px;
}
.thumb_box {
	width: 260px;
	height: 250px;
	float: left;
	margin-right: 40px;
}
.thumb_img {
	border: 1px solid #560002;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.indented {
	margin-left: 30px;
}
.indented2 {
	margin-left: 50px;
}

.red_txt {
	color: #EE0000;
}
.hint_txt {
	color: #d100d1;
}

.note_txt {
	color: #d100d1;
	font-weight: normal;
}

.param_txt {
	color: #008a00;
	font-style: italic;
	font-weight: bold;	
}
.param_file  a {
	color: #008a00;
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
	border-bottom: 1px dotted #000000;
}

figure img {
	margin-left: 20px;
	margin-right: 40px;
	margin-bottom: 10px;
	float: left;
}
figcaption {
	font-size: 90%;
	color: #36F;
	padding:10px;
	width: 80%;
}
.lower25 {
	vertical-align: -25%;
}
.lower15 {
	vertical-align: -15%;
}
