* {
    box-sizing: border-box;
}

/* Style the body */
body {
    font-family: Arial;
    margin: 0;
}

/* Header/logo Title */
.header {
    padding: 2px;
    text-align: left;
    background: #1abc9c;
    color: white;
}

/* Increase the font size of the heading */
.header h1 {
    font-size: 40px;
}

/* Style the top navigation bar */
.navbar {
    overflow: hidden;
    background-color: #333;
    border-top: 10px;
    border-top-style: solid;
    border-top-color: #1ABC9C;
    position: fixed;
    width:100%;
    z-index: 999;
}

/* Style the navigation Title Text Container */
.titleText
{
  padding-left: 10px;
}

/* Style the navigation title Text heading */
.titleText h1{
	color: White;
}

/* Style the navigation title Text sub-heading */
.titleText h3{
	color: White;
	margin-top: -27px;
}

/* Style the navigation bar links */
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    vertical-align: middle;
	margin-top: -40px;
}

/* Right-aligned link */
.navbar a.right {
    float: right;
}

/* Change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 102px;
}

/* Column container */
.row {  
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding-top: 100px;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
    -ms-flex: 20%; /* IE10 */
    flex: 20%;
    background-color: #f1f1f1;
    padding: 20px;
}

/* Main column */
.main {   
    -ms-flex: 80%; /* IE10 */
    flex: 80%;
    background-color: white;
    padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}
/* Green seperator strip */

.green-strip
{
	background-color: #1ABC9C;
	height: 5px;
	margin-top: -15px;
}

.green-strip-thin
{
	background-color: #1ABC9C;
	height: 3px;
	margin-top: -19px;
}

/* Create three equal columns that floats next to each other */
.grid-column {
    float: left;
    width: 33.33%;
    padding: 10px;
    /*height: 300px; /* Should be removed. Only for demonstration */*/
}

/* Clear floats after the columns */
.grid-row:after {
    content: "";
    display: table;
    clear: both;
}

/* Clear floats after the columns */
.clear-row {
    clear: both;
}

.imgl
{
	float:left; 
	margin:0 15px 15px 0; 
	clear:left;
}

.link
{
	color:#0ba586;
}

/* Show Navigation Bar Text Links. */
.hide
{
	display: block !important;
}

/* Hide Navigation Bar Expand Menu. */
.show
{
	display: none !important;
	font-size: 18px;
}

/* Cloumn Heading on the home page. */
.homeHeading
{
	font-size: 1.5em;
	
}

/* Cloumn Text on the home page. */
.homeText
{
	font-size:16px;
}

/* Side Navigation Bar. Visible for mobile devices. */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Footer */
.footer 
{
    padding: 20px;
    text-align: center;
    background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1024px) {
    .row {   
        flex-direction: column;
    }
    
    .navbar a 
    {
        font-size: 20px; 
    }
    .hide
	{
		display: none !important;
	}
	
	.show
	{
		display: block !important;
	}
	
	.homeHeading
	{
		font-size: 1em;
		
	}
}

/* Responsive layout - when the screen is less than 500px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
    .navbar a {
        float: none;
        width: 100%;
    }
    
    .hide
	{
		display: none !important;
	}
	
	.show
	{
		display: block !important;
	}
	
	.homeHeading
	{
		font-size: 1em;
		
	}
	
	.homeText
	{
		font-size:12px;
	}
}

/* Responsive layout - when the screen is less than 320px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 320px) {
    /*.navbar a {
        float: none;
        width: 100%;
    }*/
    
    .hide
	{
		display: none !important;
	}
	
	.show
	{
		display: block !important;
	}
	
	.homeHeading
	{
		font-size: .8em;
		
	}
	
	.homeText
	{
		font-size:12px;
	}
}
