/*
ADL 2015 Styles
by David Campbell
*/

/* ---------------------------------------------------------------------------- Panels */

.whitePanel
	{
	display:block;
	position:relative;
	float:left;

	width:100%;

	background-color:#ffffff;

	padding:20px;

	-moz-box-sizing:		border-box;
	-webkit-box-sizing:		border-box;
	-ms-box-sizing:			border-box;
	box-sizing:					border-box;

	border-style:solid;
	border-width:1px;
	border-color:#e0e0e0;

	/* shadow */
	/*-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);*/

	clear:both;
	}


.colourFormPanel
	{
	display:block;
	position:relative;
	float:left;

	width:100%;

	background-color:#ccc;

	padding:10px;

	-moz-box-sizing:		border-box;
	-webkit-box-sizing:		border-box;
	-ms-box-sizing:			border-box;
	box-sizing:					border-box;

	-webkit-border-radius:	3px;
	-moz-border-radius:		3px;
	border-radius:				3px;

	/*border-style:solid;
	border-width:1px;
	border-color:#e0e0e0;*/

	/* shadow */
	/*-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.1);*/

	clear:both;
	}

.colourFormPanel.color262626
	{
	background-color:#262626;
	color:#ffffff;
	}

.colourFormPanel.lightGreen
	{
	background-color:#e6ffe6;
	}

.colourFormPanel.lightGray
	{
	background-color:#f2f2f2;
	}

.colourFormPanel.formRowGray
	{
	background-color:rgb(237, 237, 237);
	}