﻿* {
    box-sizing: border-box;
}
.row:after {
    content: "";
    clear: both;
    display: block;
}
[class*="col-"] {
    float: left;
    padding: 15px;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.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%;}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="col-"] {
        width: 100%;
    }
}

html {    
}

.cell
{
	padding: 3px;
}

.header {
    background-color: #008080;
    color: #ffffff;
    padding: 15px;
	margin-left: 2px;
}
.footer {
	background-color: #FFFFFF;
	clear:both;
	width:100%
}

.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;
}

/* Style The Dropdown Button */
.dropbtn {
    background-color: #008080;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
	width:100%
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	padding: 2px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #008B8B;
    min-width: 160px;    
	z-index:2;
	margin-top: -12px;
	margin-left: 16px;
	border-width: 1px 1px 1px 1px;
	border-color: lightgrey darkgrey;
	border-style: none solid solid solid;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;	
	border-width: 1px;
	border-color: lightgrey darkgrey;
	border-style: none solid solid none;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #009B9B}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #008B8B;
}

@media (max-width:900px) and (min-width:100px){.w3-hide-small-medium{display:none!important}}
@media (max-width:720px) , (min-width:900px) {.w3-show-small-medium{display:none!important}}
@media (max-width:100px) , (min-width:720px) {.w3-show-small{display:none!important}}