@charset "utf-8";
/* CSS Document */
/* -- Dec 8,2017 - changed all Pixel Width to Percentages using math - mobil --*/
/* ------Color Guide --- #FfFfCc: yelowish | used for blockquote/tables BG
#993300: burgandy | used for font headers etc
#999999: | greyish used for nav BG -----------------------*/
/* ------ We are using Selector Short Cuts Here When Remember? ----- */
/* ----- TAG/Type Selectors -----*/

html, body {
	margin: 0;
	padding: 0;
}
body, td, th {
	font-size: 90%;
}
body {
	background-image: url(../images/camLensLite.png);
	background-color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	margin-top: 25px;
	text-align: left;
}
h1 {
	font-family: "Times New Roman", Times, serif, Georgia;
	color: #930;
	text-align: center;
}
h3 {
	text-align: center;
}
blockquote {
	font-size: .9em;
	font-style: italic;
	background-color: #FFC;
	padding: 2px;
	border: 1px;
	border-color: #666666;
}
table {
	background: #FFFFCC;
	font-size: 75%;
}
img {
	display: block;
	margin: auto;
	max-width: 100%;   /*-- !scales images (not BG images) porportionally - mobil -- */
	height: auto;  /*-- matches width with its height -- */
}
/* ----- Div ID Selectors ----- */

#wrapper {  /*was the Container*/
	width: 100%;
	max-width: 780px;
	background: #FFF;
	border: 2px solid #993300;
	margin: 0 auto;
}
header {
	height: auto; /*150px;*//*background-image: url(../images/header.jpg);*//* BG img - It screws up the Reponsiveness by doing nothing, it's a BG, not a loose scr image, I'm now using Dec2017.*/
}
nav {
	font-size: 100%;
	background-color: #999999;
	padding: 1px 1.28205%;
}
nav ul {
	/*height: 150px*/
	margin: 5px auto;
}
nav li {
	list-style: none;
	display: inline;
	text-align: center;
	margin: 0 1.28205%;
}
nav a {
	color: #993300;
	text-decoration: none;
}
nav a:hover {
	color: white;  /*#FF0000;*//*font-size: 10%;*/
}
/* --  ---------- For the menu reposnsiveness -------------------- */
/* -- This is making a Hamburger with DIVs, not an icon - cool -- */

label {  /*shows hamburger here menu icon -- */
	margin: 8px 5px;
	font-size: 100%;
	width: 40px;
	float: right;
	display: none;
}
/*toggle box ON, here or not - reponsive*/
#toggle {
	float: right;
	cursor: pointer;/*display: none;*/
	
}
#vidBox {
	margin-left: 50px;
	margin-right: 50px;
}
video {
} /* -- not used yet to box embeds vids --- */
aside {
	width: 26.9231%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	background-color: #FFF;
	color: #999;
	padding-top: 10px;
	padding-right: 1.28205%;
	padding-left: 1.28205%;
	padding-bottom: 10px;
	border-left-style: solid;
	float: right;
}
aside p {
	color: #333
}
aside h2, h3, h4 {
	font-family: "Times New Roman", Times, serif;
	color: #333333;
}
aside ul {
	text-indent: -20%;
}
section {   /* Was Main Content div*/
	width: 67.3077%;
	float: left;
	font-size: 80%;
	color: #666;
	font-weight: bold;
	padding-bottom: 10px;
	border-left-width: 1px;
	border-left-style: solid;
}
section p {
	padding-left: 2.5641%;
}
section h1 {
	color: #993300;
}
/* --------- Form Styles Here ------ */
#frmWrap {
	width: 64.1026%;
	margin-right: auto;
	margin-left: auto;
}
footer {     /*Was #Footer div*/
	font-size: 85%;
	padding: 1.28205%;
	text-align: center;
	background-color: #6389DE;
	height: auto;
}
/* ----- Class Style Selectors I made up ----- */

.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 1.02564%;
}
.clearfloat {
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}
.greyWords {
	color: #666;
}
.italicWords {
	font-style: italic;
}
.boldWords {
	font-weight: bold;
}
.centerUS {
	text-align: center;
}
.RedText {
	color: #F00;
}
.video-wrapper { /*Start useing or <VIDEO> tag element, replacement -*/
}
iframe {
	display: block;
	margin: auto;
}
	
    /**************************************** Responsive Mobil Settings Below ***********************/

	 
 /* -- When screen/viewport gets to 640px or less, Aside no-display - Section centers  --*/
 

@media only screen and (max-width: 640px) {
aside {
	display: none;
}
section {
	float: none;
	margin: auto;
	border-left: none;
}
body {
	background-image: none;
}
}
 
 
 
 /* -- When screen/viewport gets to 320px or less then this happens   --*/
 @media only screen and (max-width: 320px) {
aside {
	display: none;
}
section {
	float: none;
	margin: auto;
	border-left: none;
}
body {
	background-image: none;
}
/*  --- Work NAV into a Hamburger icon if possible */
nav {
	padding: 1px 0px;/*background-color: orange;*//*margin-right: 0px;*/
}
nav ul {
	background-color: green;
}
nav .menu li {
	display: BLOCK;
	margin-right: 40px;
	border: 1px solid black;
	padding: 3px 0;
}
nav a {
	color: #993300;/*text-decoration: none;*/
}
nav a:hover {
	color: white;  /*#FF0000;*//*font-size: 10%;*/
}
label {  /*shows hamburger here menu icon -- */
	margin: 8px 5px;
	display: NONE;
	cursor: pointer;
}
#toggle:checked + .menu a {
	display: NONE;
}


/*    end of NAV works if possible  */

/*  --  Trying to make youtube video shrink to smaller size for this medaia ---  */
 #video-wrapper: {
position:relative;
padding-bottom:56.25%;
padding-top:30px;
height:0;
overflow:hidden;
}
#video-wrapper iframe {
	position:absolute;
	top:-389px;
	left:-27px;
	width:781px;
	height:428px;
}
}   /*end of @ media 320px  -  139 WEST */
