<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS Template</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<style>
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

#Logo {
      
 }
 
.tab1 {
 /*   overflow: hidden;*/
    border-bottom: 5px solid #F5F5F5;
    background-color: #F1FFFF;
	opacity: 0.8;
	position: fixed;
    margin: 0;
	left: 0;
	top: 0;
    height:auto;
	width: 100%;
}

.tab1 ul#mainmenu, ul.submenu {
     list-style-type:none; 
	 font-size:10pt;
     z-index:10;
 }
 
.tab1 ul#mainmenu li {
     width: 125px;
     text-align: center;
     position: relative;  
     float: right;
     z-index:10;      
 }
 
.tab1 ul#mainmenu a {
  	text-decoration:none;
	display: block; 
	width: 125px;
	height:25px;
	line-height:25px;
	border-radius: 5px; 
  }

.tab1 ul#mainmenu li:hover > a {
	background-color:#CFC;
}

.tab1 ul#mainmenu ul.submenu {
	display: none;
    background-color: white;
    border:5px solid #F5F5F5;
	position:absolute;
	top: 25px;
	left: 0px;
    margin: 0px;
    padding:0;
    z-index:10;
    
 }
 
 .tab1 ul#mainmenu li:hover .submenu {
       display:block; 
       justify-content: space-between;
 }
 
/* -- */
.topimg {
  	border: none;
    border-top: none;
    border-bottom: 2px solid #D3D3D3;
	margin-left: 0px;
    margin-right: 0px;
    display: flex;
    flex-direction: row;
    position: relative;
}

.logo {
      width: 300px;
      height: 150px;
      opacity:1;      
      
}

.pageimg {
         padding-left:0px;
      width: 100%;
      height: 150px;
      opacity:0.6;
      
 }

/*--*/

/* 3 Column Division */
.contentrow {
  	border: none;
    border-top: none;
 /*   border-bottom: 2px solid #D3D3D3;*/
    padding: 5px;
	margin-left: 30px;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    position: relative;
    font-size:10pt;
}

.col1 {
      width: 250px;      
      margin-left: 20px;
      padding: 15px;
      float: left;   
}

.col2 {
      width: 250px;     
      padding: 15px;
      
 }
 
.col3 {
      width: 250px;
      padding: 15px;
      
 }

/*--*/


.toggleLink {
        color: red;
        text-decoration: none;
    }
    .toggleLink:hover {
        cursor: pointer;
    }
    .elaboration {
        display: none;
    }
 

 
.column img {
      padding-right: 20px;
      opacity: 1;
 }

.about {
    font-family: calibri, serif;
    border: none;
    border-top: none;
	margin: 20px;
    padding 20px;
}


.footer {
	background-color: #ABC1FF;
	font-size: 12px;
	width: 100%;
    text-align: center;
    border-top: 2px solid #0000FF;
    position: absolute;
}

.row {
    	display: flex;
		padding: 0px 0px;
		font-size:10pt;
        height: auto;
		}
.column {
    		flex: 50%;
    		padding: 0px 25px;
			/*border-right: 2px solid #D3D3D3;*/
            font-size:12pt;
            font-family:calibri, serif;
		}

.column2 {
    		width: 150px;
    		padding: 25px;
			border-right: 2px solid #D3D3D3;
            font-size:10pt;
            font-family:calibri, serif;
            background-color: #F2FFE1;
		}
        
        



.container {
	margin: 0 auto;
	max-width: 700px;
	max-height: 100vh;
	background-color: white;
}


/* Useful Classes */
.xy-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.transition {
	transition: all 350ms ease-in-out;
}

.r-3-2 {
	width: 100%;
	padding-bottom: 66.667%;
	background-color: #ddd;
}

.image-holder {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Main Styles */
.gallery-wrapper {
	position: relative;
	overflow: hidden;
}

.gallery {
	position: relative;
	white-space: nowrap;
	font-size: 0;
}

.item-wrapper {
	cursor: pointer;
	width: 23%; /* arbitrary value */
	display: inline-block;
	background-color: white;
}

.gallery-item { opacity: 0.5; }
.gallery-item.active { opacity: 1; }

.controls {
	font-size: 0;
	border-top: none;
}
.move-btn {
	display: inline-block;
	width: 50%;
	border: none;
  color: #ccc;
	background-color: transparent;
	padding: 0.2em 1.5em;
}
.move-btn:first-child {border-right: none;}
.move-btn.left  { cursor: w-resize; }
.move-btn.right { cursor: e-resize; }

        

</style>

</head>
<body>



</body>

</html>