/* Makes everything look cleaner */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 40;
}

/* Full-width background section */
.section {
  width: 100%;
  padding: 40px 0; /* vertical spacing */
  background: #FFFFFF; /* example */
}

/* Centered content area */
.container {
  width: 100%;
  max-width: 1200px;   /* desktop indentation */
  margin: 0 auto;      /* center horizontally */
  padding: 0 20px;     /* mobile-friendly side padding */
}

/* Optional typography */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Example styling per section */
header.section { background: #e3eefc; }
footer.section { background: #dde4ee; }


.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 images side-by-side */
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr); /* collapse to 3 per row */
  }
}





#banner{
	float:left;
	text-align:left;
	margin-bottom:5px;/*this depends on the height of the logo*/
	margin-top:5px;/*this depends on the height of the logo*/
}




/* Default (6 columns) */
.ipdfooter {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 equal columns */
  gap: 20px; /* Optional: space between columns */
}

.ipdfooter .column2 {
  padding: 10px;
}

/* Mobile (2 columns) */
@media (max-width: 768px) {
  .ipdfooter {
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns on mobile */
  }
}




/* Magnifying search box */

/* Basic Reset */

.search-container {
  margin-top:5px;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: right;
  gap: 10px;
}

.search-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100px;
  transition: width 0.3s ease;
  align-items: right;
}

.search-btn {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.search-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 450px) {
  .search-container {
    top: 10px;
    right: 10px;
	display: none;
  }

  .search-input {
    width: 150px;
  }
}












































/* Box sizing. Awesome thing. Read about it here: https://www.w3schools.com/cssref/css3_pr_box-sizing.asp */
*{	box-sizing:border-box;
	-moz-box-sizing:border-box;}

  
/* structure */   
.wrapper{
	width: 95%; 
	margin: 0 auto;
}
.wrapperplusmargin{
	width: 95%; 
	margin-left:5px;
    margin-right:5px;
}
header{ 
	padding:15px 0;
}
panel{ 
	margin-left:100px;
}

#content {  
	margin:10px 0;
}

aside { 
	margin:40px 0;
}

p{ margin:0 0 1.5em;}


/* RESPONSIVE IMAGES */
img{ max-width:100%; height:auto;}


.autoResizeImage {
    max-width: 270px;
    width: auto;
}
.autoResizeImagesmall {
    max-width: 270px;
    width: auto;
}


.autoResizeTableImage {
	width:auto;
	max-width:100%;
	height:auto;
}


/*SPACE GRID ELEMENTS VERTICALLY, SINCE THEY ARE ONE UNDER ANOTHER SO FAR*/
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	margin-bottom:10px;
	/*positioning and padding*/
	position: relative;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 5px;
}

/*GRID ELEMENTS WITHOUT INDENTS*/
.grid_12b {
	margin-bottom:40px;
	/*positioning and padding*/
	position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
}


/* Contain floats*/ 
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.row:after{
  clear: both;
}


/*
LARGER MOBILE DEVICES
This is for mobile devices with a bit larger screens.
*/
@media only screen and (min-width: 350px) {



} 

/*
TABLET & SMALLER LAPTOPS
The average viewing window and preferred media query for those is 768px.
But I think that some more breathing space is good:)
*/
@media only screen and (min-width: 920px) {

.wrapper{
	max-width: 90%; 

}

#content {  
	float:left;
	width:65%;
}
#content.wide-content{
	float:none;
	width:100%;
}


.autoResizeImage {
    max-width: 300px;
    width: auto;
}
.autoResizeImagesmall {
    max-width: 300px;
    width: auto;
}



aside { 
	float:right;
	width:30%;
}


/*GRID*/
/*
 & Columns : 12 

 */
 .row{
	 margin-left: 15px;
     margin-right: 15px;
}

 .row-details{
	 margin-left: -15px;
     margin-right: -15px;
}
 
.grid_1 { width: 8.33333333%; }
.grid_2 { width: 16.66666667%; }
.grid_3 { width: 25%; }
.grid_4 { width: 33.33333333%; }
.grid_5 { width: 41.66666667%; }
.grid_6 { width: 50%; }
.grid_7 { width: 58.33333333%; }
.grid_8 { width: 66.66666667%; }
.grid_9 { width: 75%; }
.grid_10 { width: 83.33333333%; }
.grid_11 { width: 91.66666667%; }
.grid_12 { width: 100%; }

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	float: left;
	display: block;
}

.grid_3b {
	margin-bottom:40px;
	/*positioning and padding*/
	position: relative;
    min-height: 1px;
    margin-left:20px;
}

.rightfloat{float:right;}
/* @notation inspired by tinyGrid, .row and percentage by Twitter Bootstrap
 */


/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1030px) {

} 

/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width: 1240px) {

} 

/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution.
*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min--moz-device-pixel-ratio: 1.5),
       only screen and (min-device-pixel-ratio: 1.5) {


} 

/*
iPHONE 5 MEDIA QUERY
iPhone 5 or iPod Touch 5th generation styles (you can include your own file if you want)
*/
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) { 

  
}

/*
PRINT STYLESHEET
*/
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}

* {
  box-sizing: border-box;
}






