
				
		
		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;
		}	
		
		h1.section_header, h3.section_header, h4.section_header
		{
			margin: 5px auto 10px 2%; /* top .. right .. bottom .. left */
			
			font-style: italic;
		}
		
		h1.section_header
		{
			margin-left: 20px;
			
			font-style: italic;
			
			font-size: 27px;
			
			/* color: #BD2D0C; */
			color: #CE660F
		}		
		
		h2.section_header
		{
			font-size: 25px;
			
			margin: 5px auto 0 26px; /* top .. right .. bottom .. left */
			
			/* color: #CE660F; */
			color: #B22222;
			/* color: #0000CD; */
		}
		
		h3.section_header
		{	
			margin-top: 15px;
			margin-left: 20px;
			margin-bottom: 7px;
		
			font-size: 19px;
			
			color: green;
		}
		
		h4.section_header
		{	
			margin-left: 20px;
			/* margin-bottom: 7px; */
		
			font-size: 19px;
			
			color: #151A9D;
		}
						
			.one_image
			{
				margin: 10px 20px 0 20px; /* top .. right .. bottom .. left */
				
				/* border: 1px dashed blue; */
			}
			
			.one_image img
			{
				max-width: 100%;
			}		
		
		#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 5px 5px 5px;
		}
		
		.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: 10px;
		}
		
		.text_block p:last-of-type
		{
			margin-bottom: 0;
		}
		
		.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%;
			}
		}
			
			
			