/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

body {
/*	background: #212121;*/
	background: #ccffff;
	font-size:22px;
	line-height: 32px;
/*	color: #ffffff;*/
	color: #000000;
	margin: 0;
	padding: 0;
	word-wrap:break-word !important;
	font-family: 'Open Sans', sans-serif;
	}

h1 {
	font-size:60px;
	text-align:center;
/*	color: #ffffff;*/
	color: #000000;
	margin-top: 100px;
	line-height: 70px;
	font-family: 'Bree Serif', 'serif';
	}


h2 {
	font-size: 45px;
	text-align: center;
/*	color: #ffffff;*/
	color: #000000;
}	

h3 {
	font-size: 30px;
	line-height: 34px;
	text-align: center;
/*	color: #ffffff;*/
	color: #000000;
}

h3 a {
/*	color: #ffffff;*/
	color: #000000;
}

a {
/*	color: #ffffff;*/
	color: #000000;
}

h4 {
	font-size: 25px;
	text-align: left;
/*	color: #ffffff;*/
	color: #000000;
        margin: 0;
}	

h5 {
	font-size: 22px;
	text-align: left;
/*	color: #ffffff;*/
	color: #000000;
        margin: 0;
}

.bottomMargin {
    margin: 0px 0px 10px 0px;
}

#container {
	margin: 0 auto;
	max-width: 890px;
}

p {
	text-align: left;
}

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
/*	background-color: #254441;*/
	background-color: #59a69e;
}

#logo {
	display:inline-block;
	padding: 0 30px;
	float: left;
	font-size:20px;
	line-height: 60px;
}

#language {
	display: block;
	padding: 0 30px;
	float: left;
	font-size:20px;
	line-height: 60px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: left;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
/*	background-color: #254441;*/
	background-color: #59a69e;
}

/* Styling the links */
nav a {
	display:block;
	padding: 14px 20px;
	color:#FFF;
	font-size:17px;
	text-decoration:none;
}


nav ul li ul li:hover { background: #000000; }

/* Background color change on Hover */
nav a:hover { 
	background-color: #000000; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a::after { content:  ' +' !important; }
li > a:only-child::after { content: '' !important;}

/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {
	.menu {
		max-width: 100vw;
		overflow: hidden;
	}
	
	nav > label {
		padding-left: 10px !important;
	}
	.first>label, .first>a {
		padding-left: 15px !important;
	}
	.second>label, .second>a {
		padding-left: 30px !important;
	}

	.second > ul > li > a,
	.second > ul > li > label {
		padding-left: 45px !important;
	}

	.second > ul > li > ul > li > a,
	.second > ul > li > ul > li > label {
		padding-left: 60px !important;
	}

	.first > ul a, .first > ul label {
		background-color: rgba(0, 0, 0, 0.385) !important;

	}
	.second > ul a, .second > ul label{
		background-color: rgba(0, 0, 0, 0.66) !important;
	}

	.toggle::after { content:  ' +'; }
	.toggle:only-child::after { content: '';}

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}

	nav {
		margin: 0;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Styling the toggle lable */
	.toggle {
		display: block;
	/*	background-color: #254441;*/
		background-color: #59a69e;
		padding: 14px 0px;
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
		width: 100%;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}
 
	nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
	/*	background-color: #212121;*/
		background-color: #59a69e;
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* First Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}
div.flexContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.flexContainer > div {
  margin: 5px;
}
div.productInfo{
	text-align: center;
}
figure.center {
	display: inline-block;
	text-align: center;
	/*border: 1px dotted gray;*/
	margin: 5px; /* adjust as needed */
}
figure.center img {
	vertical-align: top;
}
figure.center figcaption {
	/*border: 1px dotted blue;*/
}
table.priceList {
	border: 1px solid black;
	border-collapse: collapse;
	border-spacing: 15px 2px;
}
tr.priceList td {
    padding: 2px 10px 2px 10px;
    border-bottom: 1px solid black;
}
td.priceList {
	
}

table.windRange {
	border: 1px solid black;
	border-collapse: collapse;
	border-spacing: 15px 2px;
}
tr.windRange td {
    padding: 2px 10px 2px 10px;
    border-bottom: 1px solid black;
}
td.windRange {
	
}

td.center {
  text-align: center;
}

#siteContent {
    /*border:10px solid white;*/
    padding: 0px 15px 0px 15px;
}
    
p.center {
  text-align: center;
}
