/* HTML reset */
   article, aside, details, figcaption, figure, 
   footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
	font-family: Tahoma, Arial, sans-serif;
  }
  
  ol, ul {
    /* list-style: none; */
  }
  
  blockquote, q {
    quotes: none;
  }
  
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
	text-align: center;
  }
  
  table th {
	  padding-bottom: 10px;
  }

/*=========================================
    Main Styles
    =========================================*/
    body {
		font-family: Tahoma, Arial, sans-serif;	  
		background-color: #ffffcc;
		margin: 0;
    }
	
	.navbar {
		overflow: hidden;
		background-color: #0040ff;
	}
	
	div {
		padding-left: 100px;
	}
	
	.navbar a {
	  float: left;
	  color: #f2f2f2;
	  text-align: center;
	  padding: 14px 16px;
	  text-decoration: none;
	  font-size: 17px;
	}

	.navbar a:hover {
	  background-color: #ddd;
	  color: black;
	}

	.navbar a.active {
	  background-color: #4CAF50;
	  color: white;
	}

	.bgHeader {
		background-color: gray;
		background-size: 100px;
	}

	.center {
		text-align: center;
	}
	
	.left {
		text-align: left;
	}
	
    .footer {
      text-align: center;
	  font-style: italic;
	  background-color: #cce6ff;
    }
	
	img {
		height: 200px;
		width: 200px;
	}
	
	.imgShadow {
		height: 130px;
		width: 130px;
		box-shadow: 5px 5px blue;
	}
	
	.imgRotateRight {
		transform: rotate(15deg);
	}
	
	.imgRotateLeft {
		transform: rotate(-15deg);
	}
	
	.border {
	   width: 250px;
       border: 1px solid #000;
       list-style-type: none;		
	}
	
	ul.breadcrumb {
		padding: 1px 10px;
		list-style: none;
	}

	 ul.breadcrumb li {
		display: inline;
		font-size: 12px;
	}

	ul.breadcrumb li+li:before {
		padding: 6px;
		color: black;
		content: "/\00a0";
	}

	/* Add a color to all links inside the list */
	 ul.breadcrumb li a {
		color: #0275d8;
		text-decoration: none;
	}

	ul.breadcrumb li a:hover {
		color: #01447e;
		text-decoration: underline;
	} 
	
	.banner {
		width: 100vw;
		height: 25vh;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		color: black; 
		background-image:url(../img/camera.jpg);
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}	
	
	.banner h1 {
		font-size: 3em;
		margin-top: 0;
		margin-bottom: 0.5em;
	}		
	
	.imgShadow {
		box-shadow: 5px 5px blue;
	}