@charset "utf-8";
/* CSS Document */

* {
    box-sizing: border-box;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
[class*="col-"] {
    float: left;
    padding: 15px;
}
html {
    font-family: "Lucida Sans", sans-serif;
}
.header {
    /* background-color: #9933cc;*/
    color: #ffffff;
    padding: 5px;
	overflow: hidden;
			
}


/* Old Menu
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #33b5e5;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li:hover {
    background-color: #0099cc;
}

Old Menu End
*/
 /* NEW MENU: Add a black background color to the top navigation */
.topnav {
    background-color: #361600;
    overflow: hidden;
	width: 100%;
}

/* NEW MENU: Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
	font-weight: 300;
}

/* NEW MENU: Change the color of links on hover */
.topnav a:hover {
	overflow: hidden;
    background-color: maroon; 
    color: whitesmoke;
}

/* Add an active class to highlight the current page */
.active {
    background-color: brown;
    color: white;
}

/* NEW MENU: Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
} 
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .header img {
	width: 95%;
	height: auto;
}
	.col-6 img{
		width: 95%;
		height: auto;
	}

}
.aside {
    background-color: firebrick;
    padding: 15px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.footer {
    background-color: darkred;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    padding: 10px;
}
/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 600px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 30%;}
    .col-3 {width: 30%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 70%;}
    .col-6 {width: 70%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}
