
				
		
		body
		{
			font-size: 100%; /* browser default = 1.0em = 16px ... all other text on homepage is EM ... 100% means full browser text size whis is changeable by user */			
			font-family: Verdana, sans-serif; /* as stated here: https://www.w3schools.com/css/css_font.asp */			
			margin: 0;
		}		
		
		ul.breadcrumb
		{
			width: 95%; /* in other files ... the width isn't set here ... because breadcrumbs lives within some other DIV */
			
			padding: 10px 16px;
			
			list-style: none;
			background-color: #eee;
			
			border: 1px solid green;
			margin: 5px auto 6px auto; /* top .. right .. bottom .. left */
		}
		
		ul.breadcrumb li
		{
			display: inline;
			
			font-size: 15px;
		}
		
		ul.breadcrumb li+li:before
		{
			padding: 8px;
			
			color: black;
			
			content: "\00BB"; /* ">>" character ... (Link 1 ... from above) https://www.w3schools.com/cssref/css_entities.asp */
		}
		
		ul.breadcrumb li a
		{
			color: #0275d8;
			text-decoration: none;
		}
		
		ul.breadcrumb li a:hover
		{
			color: #F29445;
			text-decoration: underline;
		}
		
		ul.breadcrumb li#fixed_text
		{
			color: #74730E;
		}			
		
		/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxx */		
		
		.iframe_div
		{
			position: relative;
			
			width: 50%;
			
			/* border: 1px solid green; */
			
			/* padding-top: 56.25%; */
			padding-top: 28.125%; /* 1/2 the above percentage height of 16x9 simply because this DIV's width is 50% of its parent */
		}
		
		
		.image_location
		{
			position: absolute;
			
			width: 100%;
			height: 100%;

			top: 0;
			left: 0;			
		}
		
		/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxx */
		
		.test_color
		{
			color: #087975;
		}
		
		hr
		{
			margin-bottom: 15px;
		}
		
		h1.section_header, h3.section_header, h4.section_header, h5.section_header
		{
			margin: 5px auto 10px 5px; /* top .. right .. bottom .. left */
			
			font-style: italic;
		}
		
		h1.section_header
		{
			font-size: 32px;
			
			/* color: #BD2D0C; */
			color: #CE660F;
			
			margin-left: 7px;
			
			font-style: italic;
		}
		
		h2.section_header
		{
			font-size: 25px;
			
			margin: 5px auto 10px 22px; /* top .. right .. bottom .. left */
			
			/* color: #CE660F; */
			color: #B22222;
			/* color: #0000CD; */
		}
		
		h3.section_header
		{	
			margin-top: 20px;
			margin-left: 35px;
			margin-bottom: 7px;
		
			font-size: 20px;
			
			color: green;
		}
		
		h4.section_header
		{	
			margin-left: 20px;
			margin-top: 22px;
		
			font-size: 18px;
			
			color: #151A9D;
		}
		
		h5.section_header
		{	
			margin-left: 20px;
			margin-top: 22px;
		
			font-size: 17px;
			
			color: #A901B5;
		}
		
		#video_anisotropic_filtering
		{
			/* margin-top: 10px; */ /* this is required because the text immediately above this iframe is the last paragraph, which has margin-bottom set to: 0 further down this page */
		}
		
		#test_subject_the_beast
		{
			margin-top: 18px;
		}
		
		#simanic_logo
		{			
			position: relative;
			
			margin: 7px auto 7px auto; /* top .. right .. bottom .. left */
			
			/* border: 1px dashed red; */
		}
		
		#simanic_logo img
		{
			max-width: 65%;
			
			margin: 5px auto 1px 20px; /* top .. right .. bottom .. left */
		}
		
		/* #product_cat_block */ /* width commented in ... navbar_middle_mega.css ... because it is controlled here */
		/* { 
				width: 95%; ... seems not to be used anymore 08-03-2020 ... also commented further down ... see old note further down which states it was used in product detail page
		} */
		
		#navbar_top_inner /* width commented in ... navbar_top_fixed.css ... because it is controlled here */
		{ 
			width: 95%;
		}
		
		.page_description_content
		{
			width: 95%;
			
			margin: 0 auto 0 auto; /* top .. right .. bottom .. left */
			
			border: 1px solid green;
			
			padding: 7px 15px 5px 15px;
		}
		
		.text_block
		{	
			font-size: 14px;
			line-height: 150%;
			
			font-family: arial;
			
			/* border: 1px solid blue; */
			
			margin-top: 10px;
			
			padding: 5px 15px 5px 15px; /* top .. right .. bottom .. left */
		}
		
		p
		{
			margin: 0;			
			margin-bottom: 10px;
		}

		.text_block p:first-of-type
		{
			margin-top: 0;
		}
		
		.text_block p:last-of-type
		{
			margin-bottom: 10px;
		}
		
		.text_block h3:first-of-type
		{
			margin-top: 0;
		}
		
		.text_block ul
		{
			margin: 0;
			
			margin-left: 15px;
			
			/* border: 1px dashed green; */
		}
		
		.text_block li
		{
			/* color: #CE7403; */
			/* margin: 0; */				
			
			/* line-height: 1.75; */  /* list-style: none; */ /* gets rid of bullet points */
		}
			
		.text_block li span
		{
			/* color: black; */
			/* line-height: 1.75; */  /* list-style: none; */ /* gets rid of bullet points */
		}
		
		@media only screen and (min-width: 500px)
		{
			.text_block
			{	
				font-size: 14px;								
			}
		}
		
		@media only screen and (min-width: 768px) /* screens 768px or wider */
		{
			.text_block
			{	
				font-size: 15px;								
			}
		}
				
		@media only screen and (min-width: 1200px)
		{
			ul.breadcrumb li
			{
				font-size: 18px;
			}
			
			.text_block
			{	
				font-size: 17px;				
			}
		}
			
		@media only screen and (min-width: 1450px)
		{ /* Bootstrap breakpoints: (down page a bit) https://getflywheel.com/layout/css-breakpoints-responsive-design-how-to/ */
		
			#simanic_logo, #navbar_top_inner, .page_description_content, #footer_inner, ul.breadcrumb /*, #product_cat_block ... commented 08-03-2020 ... also see note further up */
			{
				/* .product_cat_block ... is in ... navbar_product_cat.css ... which is set to different width for ... product_detail_page.css */
				
				width: 70%;
			}
		}
		
		
		
			
			
			