﻿/*----------*/
/* Site CSS */
/*----------*/
/* DO NOT DEFINE COLORS IN THIS STYLE SHEET. */
/* COLORS ARE DEFINED IN THEMES */

body {
	font-size: .9em; /*.85em;*/
	font-family: Verdana, Helvetica, Sans-Serif;
	margin: 0;
	padding: 0;
}

a, a:link, a:hover, a:active, a:visited {
	text-decoration: underline;
	cursor: pointer;
}

p {
	padding-top: 0px;
	margin-top: 0px;
	padding-bottom: 0px;
	margin-bottom: 5px;
}

/*---------------------------------------------------------------------------*/
/* Input validation classes                                                  */
/* 01/22/2014 JKM                                                            */
/* Collected here from Site.css and AppContent.css and from the theme        */
/* versions of these. Background-colors changed from #ffeeee to #ffdddd.     */
/* Because of CSS precidence rules, make sure .input-required-field is       */
/* declared before .input-validation-error.                                  */
.appValidationError {
	display: none;
	width: 100%;
	background-color: #ffdddd;
	color: #ff0000;
}

.validationSummary {
	padding: 0px;
	overflow: hidden;
	background-color: #ffdddd;
	color: #ff0000;
}

	.validationSummary ul {
		list-style: none;
	}

.ui.form textarea.input-required-field,
.input-required-field {
	background-color: #ffffdd;
}

.ui.form textarea.input-validation-error,
.input-validation-error {
	border: 1px solid;
	border-color: #ff0000;
	background-color: #ffdddd;
}

.validation-summary-errors {
	font-weight: bold;
	color: #ff0000;
}

.field-validation-error {
	color: #ff0000;
}

.validate-error {
	background-color: #ffdddd;
}
/*---------------------------------------------------------------------------*/

.page {
	width: 100%;
	/*margin-left: auto;  Auto Margins cause problems with Absolute positioning in IE8
    margin-right: auto;*/
}

.pagebyline {
	font-family: Verdana, Helvetica, Sans-Serif;
	font-size: .8em;
	font-weight: bold;
}

.btn {
	font-size: 1em;
}

.clear {
	clear: both;
}

.copyright {
	font-size: .7em;
}

.error {
	font-size: .7em;
	font-weight: bold;
}

.aefieldset {
	border: solid 1px;
}

.aehidden {
	display: none;
}

.hdr {
	font-size: 1em;
	font-weight: bold;
}

.fldlbl {
	font-size: 1.0em;
	font-weight: bold;
	white-space: nowrap;
}

.leftTable {
	float: left;
	width: 49%;
}

.aelegend {
	font-size: 1em;
	font-weight: bold;
	padding: 2px 2px 2px 2px;
	border: solid 1px;
}

/* Table that lists records to potentially be viewed, edited, or deleted. Used in most student baner apps.  */
.listtbl {
	font-size: .9em;
	border: solid 1px;
	border-spacing: 0;
	border-collapse: collapse;
}

	.listtbl > thead > tr > th {
		padding-left: 4px;
		padding-right: 8px; /* need extra right padding for column sort indicators */
		padding-top: 2px;
		padding-bottom: 2px;
		text-align: left;
		vertical-align: bottom;
		white-space: nowrap;
		font-weight: bold;
	}

		.listtbl > thead > tr > th.alignCenter {
			text-align: center;
		}

		.listtbl > thead > tr > th.alignRight {
			text-align: right;
		}

	.listtbl > thead > tr > td { /* need same horizontal padding on td's in thead (for extra heading rows) */
		padding-left: 4px;
		padding-right: 8px;
		text-align: left;
	}

		.listtbl > thead > tr > td.alignCenter {
			text-align: center;
		}

		.listtbl > thead > tr > td.alignRight {
			text-align: right;
		}

	.listtbl > tbody > tr {
		height: 38px;
	}

		.listtbl > tbody > tr > td {
			padding-left: 4px;
			padding-right: 2px;
			padding-top: 10px;
			padding-bottom: 10px;
			text-align: left;
			vertical-align: top;
			cursor: default;
			height: 18px;
		}

			.listtbl > tbody > tr > td.listRowActionImgCol {
				width: 28px;
				min-width: 28px;
				max-width: 28px;
				text-align: center;
			}

				.listtbl > tbody > tr > td.listRowActionImgCol img {
					height: 18px;
					cursor: pointer;
				}

			.listtbl > tbody > tr > td.alignCenter {
				text-align: center;
				padding-right: 8px; /*need to match right padding on header in order to center align */
			}

			.listtbl > tbody > tr > td.alignRight {
				text-align: right;
				padding-right: 8px; /*need to match right padding on header in order to right align */
			}

	.listtbl.nosort > thead > tr > th {
		padding-left: 4px;
		padding-right: 2px; /* NO extra right padding for column sort indicators */
		padding-top: 2px;
		padding-bottom: 2px;
		text-align: left;
		vertical-align: bottom;
		white-space: nowrap;
		font-weight: bold;
	}

	.listtbl.nosort > thead > tr > td {
		padding-left: 4px;
		padding-right: 2px; /* NO extra right padding for column sort indicators */
		text-align: left;
	}

	.listtbl.vmiddle tbody td {
		font-weight: normal;
		vertical-align: middle;
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.listtbl.rowseperator tbody td {
		font-weight: normal;
		border-bottom: 1px solid;
	}

	.listtbl.cellborder tbody td {
		font-weight: normal;
		border-right: 1px solid;
	}
	/*If it ALSO has the class "narrowrow", override the row height and huge top/bottom padding*/
	.listtbl.narrowrow > tbody > tr {
		height: auto;
	}

		.listtbl.narrowrow > tbody > tr > td {
			padding-top: 2px;
			padding-bottom: 2px;
		}

	.listtbl.cellborders th {
		border: solid 1px;
		font-weight: bold;
		padding: 0px 2px 0px 2px;
		vertical-align: middle;
		white-space: nowrap;
	}

	.listtbl.cellborders td {
		padding: 0px 2px 0px 2px;
		border: solid 1px;
		vertical-align: middle;
		white-space: nowrap;
	}
/* Not sure where this has been used. It is same as listtbl, but without the extra top/bottom padding added 1/2022. */
.listtbl2 {
	font-size: .9em;
	border: solid 1px;
	border-spacing: 0;
	border-collapse: collapse;
}

	.listtbl2 > thead > tr > th {
		padding: 2px 4px 2px 4px;
		text-align: left;
		vertical-align: bottom;
		white-space: nowrap;
		font-weight: bold;
	}

		.listtbl2 > thead > tr > th.alignCenter {
			text-align: center;
		}

		.listtbl2 > thead > tr > th.alignRight {
			text-align: right;
		}

	.listtbl2 > tbody > tr > td {
		padding: 2px 4px 2px 4px;
		text-align: left;
		cursor: default;
	}

		.listtbl2 > tbody > tr > td.alignCenter {
			text-align: center;
		}

		.listtbl2 > tbody > tr > td.alignRight {
			text-align: right;
		}

	.listtbl2 > tfoot > tr > td {
		padding: 2px 4px 2px 4px;
		text-align: left;
		cursor: default;
	}

		.listtbl2 > tfoot > tr > td.alignCenter {
			text-align: center;
		}

		.listtbl2 > tfoot > tr > td.alignRight {
			text-align: right;
		}

.displaytbl {
	border-spacing: 0;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	border-color: var(--mediumNeutral_border_color);
}

	.displaytbl > caption {
		padding: 3px 2px;
		vertical-align: middle;
		font-size: 1em;
		font-weight: bold;
	}

	.displaytbl > thead > tr > th {
		padding-top: 3px;
		padding-bottom: 3px;
		vertical-align: bottom;
		font-weight: bold;
		white-space: nowrap;
		background-color: var(--lightHighlight_back_color);
		color: var(--lightHighlight_text_color);
	}

	.displaytbl > thead > tr > td {
		padding-top: 3px;
		padding-bottom: 3px;
		vertical-align: middle;
		font-weight: bold;
		white-space: nowrap;
	}

	.displaytbl > tbody > tr > td {
		padding-top: 5px;
		padding-bottom: 5px;
		vertical-align: top;
		border-bottom-style: solid;
		border-bottom-width: 1px;
		border-bottom-color: var(--mediumNeutral_border_color);
		background-color: var(--default_back_color);
		color: var(--default_text_color);
	}

	.displaytbl > tbody > tr:hover td {
		background-color: var(--lightNeutral_back_color);
		color: var(--lightHighlight_text_color);
	}

	.displaytbl.nohover > tbody > tr:hover td {
		background-color: var(--default_back_color);
		color: var(--default_text_color);
	}

.displaytblopen {
	background-color: #FCFCFC;
	background-image: url(../Images/gradientReportOptions.jpg);
	background-position: left;
	background-repeat: repeat-y;
}

.rightDetails {
	margin-left: 50%;
	width: 50%;
}

.stdtbl {
	/*border: solid 1px;*/
	border-spacing: 0;
	font-size: .9em;
}

	.stdtbl th {
		font-weight: bold;
		white-space: nowrap;
	}

	.stdtbl tbody tr {
		height: 26px;
	}

	.stdtbl > tbody > tr > td.listRowActionImgCol img {
		height: 18px;
		cursor: pointer;
	}

	.stdtbl tbody td {
		font-weight: normal;
		vertical-align: top;
		padding-top: 5px;
		padding-bottom: 5px;
		height: 23px;
	}

	.stdtbl.vmiddle tbody td {
		font-weight: normal;
		vertical-align: middle;
		padding-top: 5px;
		padding-bottom: 5px;
		height: 23px;
	}

.stdsubtbl {
	border: none;
	border-spacing: 0;
	font-size: .9em;
}

	.stdsubtbl tbody tr {
		height: 20px;
	}

	.stdsubtbl tbody td {
		padding-top: 0px;
		padding-bottom: 0px;
		height: 20px;
	}

.stdtbl2 {
	border: solid 1px;
	border-spacing: 0;
	font-size: .9em;
}

	.stdtbl2 th {
		font-weight: bold;
		white-space: nowrap;
	}

	.stdtbl2 tbody tr {
		height: 33px;
	}

.brdrtbl {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: .9em;
	/*border: 1px solid Black;*/
}

	.brdrtbl th {
		font-weight: bold;
		/*border: 1px solid Black;*/
	}

	.brdrtbl td {
		/*border: 1px solid Black;*/
	}

.scheddiv {
	width: 100%;
	padding-bottom: 5px;
}

.schedimg {
	cursor: pointer;
}

.schedtblhdr {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: .9em;
	font-weight: normal;
}

.schedtbl {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: .9em;
	font-weight: normal;
	border-style: solid;
	border-width: 1px;
}

	.schedtbl th {
		font-weight: bold;
		padding-left: 2px;
		padding-right: 2px;
	}

.divborderall {
	border-width: 1px;
	border-style: solid;
}

.tblbordertop {
	border-top-width: 1px;
	border-top-style: solid;
}

.tblborderbottom {
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.tblborderleft {
	border-left-width: 1px;
	border-left-style: solid;
}

.tblborderright {
	border-right-width: 1px;
	border-right-style: solid;
}

.bigmsg {
	font-size: .9em;
	font-weight: bold;
}

.smallmsg {
	font-size: .7em;
	font-weight: bold;
}

.smalltxt {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: .7em;
	font-weight: normal;
}

.mediumtxt {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: .8em;
	font-weight: normal;
}

.tblinset {
	border: none;
	padding-left: 2px;
	padding-right: 2px;
}

	.tblinset td {
		border: none;
		padding-left: 0px;
		padding-right: 0px;
	}

tr.over td {
	cursor: pointer;
}

.txtin {
	font-family: Verdana, Helvetica, Sans-Serif;
	font-size: 1em;
}

.txtin2 {
	font-family: Verdana, Helvetica, Sans-Serif;
	font-size: 1em;
}

.txtin3 {
	font-family: Verdana, Helvetica, Sans-Serif;
	font-size: .95em;
}

.txtin8 {
	font-family: Verdana, Helvetica, Sans-Serif;
	font-size: .8em;
}

.viewport {
	width: 80%;
	height: 200px;
	overflow: auto;
	position: relative;
}

.appblank {
	font-size: 2.5em;
	font-weight: bold;
	filter: shadow(OffX=3, OffY=3, Color='#cccccc', Positive='true');
	text-shadow: -3px 3px #cccccc;
}

.banner {
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}

.errtbl {
	border: solid 1px;
	font-size: .9em;
}

	.errtbl th {
		font-weight: bold;
		padding: 0px 2px 0px 2px;
		vertical-align: top;
		white-space: nowrap;
	}

	.errtbl td {
		padding: 0px 2px 0px 2px;
		vertical-align: top;
	}

.reportparmstbl {
	border: solid 1px;
}

	.reportparmstbl th {
		font-weight: bold;
		white-space: nowrap;
	}

.imageDatePicker::-ms-clear {
	display: none;
}

.sidebox {
	margin: 0 auto;
	background: url(../images/sbbodyright.gif) no-repeat bottom right;
	font-size: 100%;
	width: 450px;
}

.sidebox2 {
	margin: 0 auto;
	background: url(../images/sbbodyright.gif) no-repeat bottom right;
	font-size: 100%;
	width: 600px;
}

.boxhead {
	background: url(../images/sbheadright.gif) no-repeat top right;
	margin: 0;
	padding: 0;
	text-align: center;
}

	.boxhead h2 {
		background: url(../images/sbheadleft.gif) no-repeat top left;
		margin: 0;
		padding: 22px 30px 5px;
		color: white;
		font-weight: bold;
		font-size: 1.2em;
		line-height: 1em;
		text-shadow: rgba(0,0,0,.4) 0px 2px 5px;
	}

.boxbody {
	background: url(../images/sbbodyleft.gif) no-repeat bottom left;
	margin: 0;
	padding: 5px 30px 31px;
	font-size: 1em;
}

.pending {
	color: #000000;
}
/*Added for version 4.1.0*/
.datepick-trigger {
	margin-top: 1px;
	margin-left: 2px;
	vertical-align: top;
	cursor: pointer;
}
/*Added for datetimepicker addon*/
.ui-datepicker-trigger {
	margin-top: 1px;
	margin-left: 2px;
	vertical-align: top;
	cursor: pointer;
}
/* To get disabled controls of various types to look the same across different browsers. */
input:not([type="button"]):disabled {
	/*	background-color: rgb(240,240,240);*/
	color: rgb(1,1,1);
}
/* To get disabled selects to look the same across different browsers. */
select {
	background-color: var(--default_back_color);
}

	select:disabled {
		background-color: rgb(240,240,240);
		color: rgb(1,1,1);
	}

		select:disabled::-ms-value { /* Specific to I.E. to undo the greyed out text */
			color: rgb(1,1,1);
		}

textarea:disabled {
	background-color: rgb(240,240,240);
	color: rgb(1,1,1);
}

.corners {
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

/* Classes to format data display and edit tables. Moved here from apps 1/28/2022 JKM */
td.FieldLabel {
	white-space: nowrap;
	vertical-align: top;
	text-align: right;
	padding-top: 1px;
	padding-left: 10px;
	padding-right: 5px;
	/*Just to make them show up for testing*/
	/*padding-top:5px;
	padding-bottom:5px;
	background-color:#66ff66;*/
}

td.FieldData {
	white-space: nowrap;
	vertical-align: top;
	text-align: left;
	padding-top: 1px;
	/*Just to make them show up for testing*/
	/*padding-top:5px;
	padding-bottom:5px;
	background-color:#ff6666;*/
}

	td.FieldData input[type='checkbox'] {
		padding: 0;
		margin: 1px 0 0 0;
	}

tr.fieldrow td {
	padding-bottom: 0;
	padding-right: 10px;
}

tr.sublabelrow td {
	font-size: .75em;
	padding-top: 0;
	padding-right: 10px;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
}

input::-ms-clear {
	display: none;
}
/*--------------------------------------------*/

/*  New (2/15/2022) class put on tables used in popup to display record details. 
	Such table's column's use FieldLabel and FieldData classes above. 
	Primarily for possible future formatting of such tables.
*/
table.RecordDisplayTable {
	border-spacing: 0;
	border-collapse: collapse;
	border: none;
	margin: 5px;
	/*Just to make them show up for testing*/
	/*border: 3px solid blue;*/
}
/*  New (2/15/2022) class put on tables used in record edit forms. 
	Such table's column's use FieldLabel and FieldData classes above.
	Primarily for possible future formatting of such tables.
*/
table.RecordEditTable {
	border-spacing: 0;
	border-collapse: collapse;
	border: none;
	/*Just to make them show up for testing*/
	/*border: 3px solid purple;*/
}

div.RecordChangedInfo {
	text-align: left;
	margin-top: 10px;
	font-size: .8em;
}

/*==================================================================================================*/
/* Flex Grid class SGY 11/8/2022                                                                    */
/* Put this class on a container div, and all the divs inside will appear in columns equally spaced.*/
/* Use in lieu of fighting floats!                                                                  */
/*==================================================================================================*/
.flex-container {
	display: flex;
	justify-content: space-around;
}

/*==================================================================================================*/
/* An Area Table definition for apps with accordian-style data areas.                               */
/* See Student Profile, Student Editor, Staff Editor, Student Health, and Parent & Student Portal.  */
/* Note: same definition in Q, ParentPortal, StudentPortal.                                         */
table.clsAreaTable {
	width: calc(100% - 40px);
	border-spacing: 0;
	border-radius: 10px;
	border-style: solid;
	border-width: 1px;
	overflow: hidden;
	margin-left: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	border-color: var(--darkNeutral_color);
}

	table.clsAreaTable > thead > tr {
		cursor: pointer;
		font-size: 0.9em;
		font-weight: bold;
	}

		table.clsAreaTable > thead > tr > th {
			padding: 5px;
			background-color: var(--darkNeutral_back_color);
			color: var(--darkNeutral_text_color);
		}

			table.clsAreaTable > thead > tr > th > img.paneltoggle {
				height: 16px;
				width: 16px;
				vertical-align: middle;
				margin-left: 3px;
				margin-right: 3px;
				border-radius: 5px;
			}

			table.clsAreaTable > thead > tr > th > label {
				cursor: inherit;
			}

		table.clsAreaTable > thead > tr > td { /* Student Profile and the Portals use td's in thead */
			padding: 5px;
			background-color: var(--darkNeutral_back_color);
			color: var(--darkNeutral_text_color);
		}

			table.clsAreaTable > thead > tr > td.clsAreaShowAll {
				width: 15%;
				text-align: right;
				padding-right: 10px;
				white-space: nowrap;
			}

				table.clsAreaTable > thead > tr > td.clsAreaShowAll > .ShowAll {
					vertical-align: middle;
				}

			table.clsAreaTable > thead > tr > td > img.paneltoggle {
				height: 16px;
				width: 16px;
				vertical-align: middle;
				margin-left: 3px;
				margin-right: 3px;
				border-radius: 5px;
			}

			table.clsAreaTable > thead > tr > td > label {
				cursor: inherit;
			}

	table.clsAreaTable > tbody > tr > td {
		padding: 5px;
	}

	/* Neither a displaytbl nor a listtbl inside a clsAreaTable should have a border because it causes a double border look. */
	table.clsAreaTable .displaytbl {
		border-color: transparent;
	}

	table.clsAreaTable .listtbl {
		border-color: transparent;
	}
/*==================================================================================================*/

/*==================================================================================================*/
/* A Scroll-to-Top tab to sit in the upper right of a scrollable area next to the scroll bar.	    */
/* See StudentProfile\Main, StudentEditor\BrowsePanels, Parent and StudentPortal\PortalMainPage.    */
/* Note: same definition in Q, ParentPortal, StudentPortal.                                         */
div.ScrollToTopTab {
	position: absolute;
	top: 0;
	right: 0;
	width: fit-content;
	height: fit-content;
	padding: 0 4px 2px 4px;
	background-color: var(--darkHighlight_back_color);
	color: var(--darkHighlight_text_color);
	border-bottom-left-radius: 5px;
	font-weight: bold;
	font-size: 1.4em;
	text-align: center;
	cursor: pointer;
	display: none;
}
/*==================================================================================================*/

/*==================================================================================================*/
/* A slide-out menu that floats left of the main content.                                           */
/* See StudentProfile\Main, StudentEditor\BrowsePanels, Parent and StudentPortal\PortalMainPage.    */
/* Note: same definition in Q, ParentPortal, StudentPortal.                                         */
div.LeftMenuTab {
	position: absolute;
	top: 0;
	left: 0;
	padding: 6px 4px 6px 6px;
	cursor: pointer;
	font-size: 1.0em;
	font-weight: bold;
	text-align: right;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: var(--darkHighlight_back_color);
	color: var(--darkHighlight_text_color);
	writing-mode: vertical-rl;
	z-index: 5;
}

div.LeftMenuContainer {
	position: relative;
	float: left;
	width: 200px;
	overflow: hidden;
	background-color: var(--default_back_color);
	color: var(--default_text_color);
	z-index: 10;
	border: solid 1px var(--darkHighlight_color);
	border-top-right-radius: 5px;
	border-bottom-right-radius: 8px;
}

	div.LeftMenuContainer table.MenuHeader {
		width: 100%;
		border-spacing: 0;
		border: none;
		font-weight: bold;
		cursor: pointer;
		border-bottom: solid 1px var(--lightHighlight_color);
	}

		div.LeftMenuContainer table.MenuHeader td.MenuHeaderText {
			text-align: center;
			width: 98%;
			background-color: var(--darkHighlight_back_color);
			color: var(--darkHighlight_text_color);
		}

		div.LeftMenuContainer table.MenuHeader td.MenuHeaderClose {
			padding: 2px 4px;
			font-size: 1.2em;
			text-align: right;
			background-color: var(--darkHighlight_back_color);
			color: var(--darkHighlight_text_color);
			border-top-right-radius: 5px;
		}

	div.LeftMenuContainer div.MenuBodyDiv {
		overflow: auto;
	}

	div.LeftMenuContainer table.MenuBodyTable {
		width: 100%;
		border-spacing: 0;
		border: none;
	}

		div.LeftMenuContainer table.MenuBodyTable > tbody > tr > td {
			padding: 5px 2px;
			font-size: 0.9em;
			font-weight: bold;
		}

			div.LeftMenuContainer table.MenuBodyTable > tbody > tr > td:first-child {
				text-align: center;
			}

			div.LeftMenuContainer table.MenuBodyTable > tbody > tr > td > img {
				height: 16px;
				width: 16px;
				margin-left: 2px;
				vertical-align: middle;
				border-radius: 5px;
			}

		div.LeftMenuContainer table.MenuBodyTable > tbody > tr:hover > td {
			background-color: var(--lightHighlight_back_color);
		}

		div.LeftMenuContainer table.MenuBodyTable .areamenu-selected {
			background-color: var(--darkNeutral_back_color);
			color: var(--darkNeutral_text_color);
		}

		div.LeftMenuContainer table.MenuBodyTable .areamenu-unselected {
			background-color: var(--default_back_color); /*var(--lightNeutral_back_color);*/
			color: var(--lightNeutral_text_color);
		}
/*==================================================================================================*/

/*==================================================================================================*/
/* Dashboard Widgets.                                                                               */
/* See Student Profile, Parent Portal, and Student Portal                                           */
/* Note: same definition in Q, ParentPortal, StudentPortal.                                         */
div.DashboardContent {
	width: 100%;
	overflow: auto;
}

	div.DashboardContent > table {
		border-spacing: 0;
		border-collapse: collapse;
		border: none;
		width: 100%;
	}

		div.DashboardContent > table > tbody > tr > td {
			padding: 0 10px;
			width: 33%;
			text-align: center;
			vertical-align: top;
		}

	div.DashboardContent div.DashboardWidget {
		margin: 10px 0;
		padding: 0;
		border-width: 1px;
		border-style: solid;
		border-color: var(--mediumNeutral_border_color);
		border-radius: 5px;
		background-color: white;
		cursor: default;
		overflow: hidden;
	}

		div.DashboardContent div.DashboardWidget div.DashboardWidgetHeader {
			padding: 3px 5px;
			text-align: center;
			font-weight: bold;
			background-color: var(--mediumHighlight_back_color);
			color: var(--mediumHighlight_text_color);
		}

		div.DashboardContent div.DashboardWidget div.DashboardWidgetContent {
			position: relative;
			padding: 5px 10px;
			overflow-y: auto;
		}
/*==================================================================================================*/

