@charset "utf-8";
/* CSS Document */

/* Global Styles */
* {
	margin: 0px;
	padding: 0px;
}

body {
	overflow: auto;
	background-color: white;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	}

/* Screen reader skip link — hidden until keyboard focus (WCAG 2.4.1) */
.skip-link {
	position: absolute;
	left: -9999px;
}
.skip-link:focus {
	left: 10px;
	top: 10px;
	background: #fff;
	padding: 8px;
	z-index: 1000;
}

/* Visually hidden (for screen-reader-only content like form labels) */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

#wrapper {
	position:relative;
	width: 996px;
	margin: 0px auto;
	background-color: #EEE;
}

#wrapper p {
	color: #333;
	font-size: 0.9em;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 24px;
	margin-bottom: 20px;
}

#wrapper a:link, #wrapper a:visited {
	text-decoration: none;
	color: #0b6332;  /* was #396 (3.56:1 — failed AA); now 7.8:1 on #fff, 7.1:1 on #eee */
}

#wrapper a:hover {
	text-decoration: underline;
	color: #0033cc;
}

#contents {
	position: relative;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
	width: 996px;
}

#titlebox {
	padding: 8px;
	color: #000;
}

#footer {
	text-align: center;
	font-size: 0.8em;
	margin-top: 40px;
	padding-bottom: 20px;
}

#footer a:link,
#footer a:visited {
	text-decoration: underline;
}

#footer a:hover,
#footer a:focus {
	text-decoration: underline;
}
#footer a {
	text-decoration: underline;
}

/* Headings */
h1 {
	font-size: 1.1em;
	margin-bottom: 0.5em;
}

h2 {
	font-size: 1.0em;
	margin-bottom: 0.5em;
	margin-left: 20px;
}

h3 {
	font-size: 0.95em;
	margin-bottom: 0.5em;
	margin-left: 20px;
}

/* Two column design */
#leftdiv {
	position: absolute;
	width: 250px;
	left: 10px;
	margin-top: 10px;
}

/* Section navigation — clean card-style list with accessible contrast,
   visible focus ring, and a highlighted aria-current item. Replaces the
   old orange-gradient hover image and broken nested-ul rules. */
#leftdiv nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #fff;
	border: 1px solid #cfd8dc;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

#leftdiv nav li {
	font-size: 0.9em;
	margin: 0;
	border-bottom: 1px solid #e4ebed;
}

#leftdiv nav li:last-child {
	border-bottom: 0;
}

#leftdiv nav a:link,
#leftdiv nav a:visited {
	display: block;
	padding: 10px 14px;
	color: #0b6332;           /* 7.8:1 on #fff — passes AAA */
	text-decoration: none;
	line-height: 1.3;
	min-height: 24px;          /* WCAG 2.5.8 touch target */
	background-image: none;
	background-color: #fff;
}

#leftdiv nav a:hover {
	background-color: #f0f7f3;
	background-image: none;
	color: #064521;
}

#leftdiv nav a:focus {
	outline: 2px solid #0b6332;
	outline-offset: -2px;
	background-color: #f0f7f3;
}

#leftdiv nav a[aria-current="page"] {
	background-color: #0b6332;
	color: #fff;
	font-weight: 600;
}

#leftdiv nav a[aria-current="page"]:hover,
#leftdiv nav a[aria-current="page"]:focus {
	background-color: #064521;
	color: #fff;
}

#rightdiv {
	padding-top: 10px;
	padding-left: 15px;
	margin-left: 270px;
	margin-right: 10px;
	border-left: solid black 1px;
}

#rightdiv ol {
	margin-left: 30px;
	font-size: 0.95em;
}

#rightdiv li {
	margin-bottom: 10px;
}

#rightdiv ul {
	margin-left: 30px;
	font-size: 0.95em;
}

/* Table Styles — shared across Watering Guide comparison tables
   (device types, common irrigation challenges, etc.) */
.typestable {
	width: 100%;
	border: 2px solid #000;
	border-collapse: collapse;
}

.typestable td {
	border: 1px solid #000;
	font-size: 0.90em;
	text-align: left;
	padding: 8px;
	vertical-align: top;    /* replaces deprecated valign="top" */
}

.typestable th {
	border: 1px solid #000;
	font-size: 0.90em;
	padding: 8px 6px;
	vertical-align: top;
	font-weight: bold;
}

/* Column headers (thead) — gray banner, centered */
.typestable thead th {
	background-color: #f4f6f4;
	text-align: center;
}

/* Row headers (first cell in tbody rows, used as scope="row")
   — left-aligned like body cells, normal weight */
.typestable tbody th[scope="row"] {
	background-color: transparent;
	text-align: left;
	font-weight: normal;
}

/* When images are used inside headers (DeviceTypes page) */
.typestable th img {
	max-width: 100%;
	height: auto;
	display: inline-block;
	margin-bottom: 6px;
}

/* Modifier: 5-column equal-width layout for the Watering Device Types table */
.typestable--equal {
	table-layout: fixed;
}
.typestable--equal th,
.typestable--equal td {
	width: 20%;
}

.typestable .device-name {
	display: inline-block;
	font-weight: bold;
	color: #222;
	line-height: 1.3;
}

#tablediv p {
	color: #333;
	font-size: 0.9em;
	padding-left: 8px;
	padding-right: 8px;
	line-height: 24px;
	margin-bottom: 8px;
}

.seasontable {
	border: 2px solid #B2C4DE;
	border-collapse: collapse;
}

.seasontable td {
	border: 3px solid #FFF;
	font-size: 0.90em;
	text-align: left;
	padding: 0.7em 0.5em 0.7em 35px;
}

.quad1 {
	background-color:#FCCE00;		/* Yellow */
}

.quad2 {
	background-color:#F86900;		/* Orange */
}

.quad3 {
	background-color:#769230;		/* Green */
}

.quad4 {
	background-color:#578BD4;		/* Blue */
}

.datatable {
	border: 2px solid #B2C4DE;
	border-collapse: collapse;
}

.datatable td {
	border: 1px solid #B2C4DE;
	font-size: 0.90em;
	text-align: left;
	padding: 0.3em 0.3em 0.3em 45px;
}

.datatable th {
	border: 1px solid #B2C4DE;
	text-align: center;
	color: #33517A;
	background-color: #D6D7D8;
	font-weight: bold;
	text-transform: capitalize;
	padding: 0.2em;
}

.datatable caption {
	font-size: 1.0em;
	font-weight: bold;
	padding: 0.4em 0 0.3em 0;
	background-color: #B2C4DE;
	color: #33517A;
	border: 1px solid #789AC6;
}

/* For the Left Column Images */
.leftimage {
	margin-left: 10px;
	margin-bottom: 15px;
	border: 1px solid #B2C4DE;
}

/* Used on a single cell table for images with captions */
.rightimage {
	margin-left: 20px;
	border: 1px solid #B2C4DE;
}