﻿/*<meta />*/

/* home tiles */

div.home-tiles-container
{
	padding-top: 0px;
	padding-bottom: 30px;
}

div.home-tiles-container > p
{
	text-align: center;
}

div.home-tiles
{
	mc-grid-row: true;
	margin-left: 2%;
	margin-right: 2%;
	margin-top: 3%;
	margin-bottom: 3%;
}

div.home-tiles::before
{
	content: ' ';
	display: table;
}

div.home-tiles::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.home-tiles > div
{
	float: left;
	text-align: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0%;
	border-style: solid;
	border-width: 3pt;
	border-color: var(--SommerGreenDark);
	overflow: hidden;
	color: var(--Black);
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
}

div.home-tiles > div:hover
{
	box-shadow: 0 12px 18px rgba(0,0,0,0.16), 0 12px 18px rgba(0,0,0,0.23);
	transform: scale(1.05);
}

p.tile-title
{
	color: var--(Black);
	margin: 0;
	padding: 10px 10px;
	font-size: 1.2em;
	font-weight: bold;
}

p.tile-content
{
	color: var(--Black);
	padding: 10px 10px;
	margin: 0;
}

p.tile-footer
{
	color: var(--White);
	padding: 10px 10px;
	margin: 0;
	background-color: var(--SommerGreenDark);
}

p.tile-button
{
	margin-top: 8px;
	float: right;
	margin-right: 8px;
}

div.home-tiles a	/*Complex Selector: Links within the home tiles will have the following properties*/
{
	text-decoration: none;
	color: #fff;
}

a:link
{
	color: var(--SommerGreenDark);
}

a:visited
{
	color: var(--SommerGreenLight);
}

div.home-tiles a:hover	/*Complex Selector: When hovering over links within the home tiles the following properties will apply.*/
{
	color: #d3d3d3;
}

/* quicklink tiles*/

div.quicklink-tiles-container
{
	padding-top: 0px;
	padding-bottom: 0px;
}

div.quicklink-tiles-container > h1
{
	text-align: center;
}

div.quicklink-tiles
{
	mc-grid-row: true;
	margin-left: 2%;
	margin-right: 2%;
	margin-top: 2%;
	margin-bottom: 3%;
}

div.quicklink-tiles::before
{
	content: ' ';
	display: table;
}

div.quicklink-tiles::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.quicklink-tiles > div
{
	float: left;
	txt-align: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0%;
	border-style: solid;
	border-width: 3pt;
	border-color: var(--BlueLight);
	overflow: hidden;
	color: var(--Black);
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
}

div.quicklink-tiles > div:hover
{
	box-shadow: 0 12px 18px rgba(0,0,0,0.16), 0 12px 18px rgba(0,0,0,0.23);
	transform: scale(1.05);
}

div.quicklink-tiles a	/*Complex Selector: Links within the quicklink tiles will have the following properties*/
{
	text-decoration: none;
	color: #fff;
}

div.quicklink-tiles a:hover	/*Complex Selector: When hovering over links within the quicklink tiles the following properties will apply.*/
{
	color: #d3d3d3;
}

p.quicklink-tile-footer
{
	color: var(--White);
	padding: 10px 10px;
	margin: 0;
	background-color: var(--BlueLight);
}

/* video tiles */

div.video-tiles
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
}

div.video-tiles::before
{
	content: ' ';
	display: table;
}

div.video-tiles::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.video-tiles > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 5px;
	padding-right: 5px;
}

div.video-tiles > div:nth-child(1)
{
	width: 35%;
	margin-left: 15%;
}

div.video-tiles > div:nth-child(2)
{
	width: 35%;
	margin-left: 0;
}

div.video-tiles > div:nth-child(3)
{
	width: 33.333%;
	margin-left: 0%;
}

div.video-tiles *	/*Text-align center set to all elements within div.video-tiles*/
{
	text-align: center;
}