@charset "UTF-8";
/*
	Base: #3949ab
	Darker:	#00227b
	Lighter: #6f74dd
*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
a:link, a:visited {
	color: #09c;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
}
a:active, a:hover {
	color: blue;/*#7bf;*/
}
a:focus {
	outline: thin dotted;
}
a#buttonTop {
	background-color: #2196f3;
	border-radius: 50%;
	bottom: 8pt;
	box-shadow: 0 1pt 3pt rgba(0, 0, 0, .5);
	color: white;
	display: block;
	float: right;
	font-size: 18pt;
	height: 32pt;
	line-height: 32pt;
	position: fixed;
	right: 8pt;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	width: 32pt;
	transition: background 0.3s ease-in-out;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
}
a#buttonTop:focus, a#buttonTop:hover {
	background-color: #1a77c9;
	outline: none;
}
a#buttonTop:active {
	background-color: #7aa9f7;
}
body {
	background-color: white;
	border-radius: 4pt;
	box-shadow: 2pt 2pt 4pt 1pt rgba(0, 0, 0, .5);
	margin: 24pt auto;
	max-width: 900px;
	padding: 12pt;
}
body.extraPaddedBottom {
	padding-bottom: 36pt;
}
body#home li.home, body#deesha li.deesha, body#gis li.gis, body#works li.works, body#whats-new li.whats-new, body#feedback li.feedback, body#privacy li.privacy {
	background-color: #3949ab;
	border-radius: 4pt;
}
div.extraPaddingTop {
	padding-top: 24pt;
}
div.imgHolder {
	text-align: center;
}
div.imgHolder div {
	display: inline-block;
	text-align: center;
	vertical-align: top;
}
div.monoBlock, pre.monoBlock, span.monoBlock {
	background: lemonchiffon;
	border: 1pt solid silver;
	display: inline-block;
	font-family: monospace;
	font-size: 12pt;
}
/* Dropdown Menu*/
div.menuDropdown {
	cursor: default;
	display: inline-block;
	position: relative;
	user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
div.menuDropdown.disabled {
	opacity: 0.5;
}
div.menuDropdown:not(.disabled):focus, div.menuDropdown:not(.disabled):hover {
	background-color: gainsboro;
}
div.menuDropdown>ul {
	background-color: white;
	border: solid 1pt silver;
	border-radius: 2pt;
	box-shadow: 0 2pt 6pt rgba(0, 0, 0, .5);
	cursor: default;
	display: none;
	list-style: none;
	margin: 0;
	overflow: auto;
	padding: 0;
	position: absolute;
	z-index: 999;
}
div.menuDropdown.north>ul {
	bottom: 100%;
}
div.menuDropdown.west>ul {
	right: 0;
}
div.menuDropdown>ul>li {
	color: black;
	min-width: 4em;
	padding: 8pt 6pt;
	white-space: nowrap;
	transition: background 0.2s ease-in-out;
	-webkit-transition: background 0.2s ease-in-out;
	-moz-transition: background 0.2s ease-in-out;
	-o-transition: background 0.2s ease-in-out;
}
div.menuDropdown:not(.disabled):focus>ul, div.menuDropdown:not(.disabled):hover>ul {
	display: block;
}
div.menuDropdown>ul>li:focus, div.menuDropdown>ul>li:hover {
	background-color: gainsboro;
}
div.row {
	display: block;
	margin: 0 2pt;
	overflow: hidden;
}
div.row:after {
	clear: both;
	content: "";
	display: table;
}
div.row > label {
	padding-right: 2pt;
}
figure {
	margin: 0;
	margin-bottom: 1em;
}
figure[align=center] figcaption {
	text-align: center;
}
figure img {
	margin-bottom: 0;
}
figure.sourcecode code {
	background-color: whitesmoke;
	border: dashed 1pt silver;
	display: block;
	font-size: 10pt;
	max-height: 30em;
	overflow: auto;
	padding: 2pt;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	white-space: pre;
	word-wrap: normal;
}
figure.sourcecode figcaption {
	border: solid 1pt silver;
	border-bottom: none;
	border-radius: 4pt 4pt 0 0;
	display: inline-block;
	padding: 2pt 2pt 0;
}
figure.sourcecode pre {
	margin: 0;
}
h1 {
	font-size: 24pt;
	letter-spacing: 2.5pt;
}
h2 {
	font-size: 18pt;
	letter-spacing: 2pt;
}
h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0;
	margin-top: 0;
}
h3 {
	font-size: 16pt;
	letter-spacing: 1pt;
}
h4 {
	font-size: 14pt;
}
html {
	background-color: gray;
	font-family: "Roboto", Arial, Helvetica, sans-serif;
	font-size: 12pt;
}
img {
	margin-bottom: 1em;
}
img.iconTopLeft {
	margin-bottom: 4pt;
	margin-right: 4pt;
}
img.shadowed {
	box-shadow: 2pt 2pt 4pt rgba(0, 0, 0, .5);
	margin-left: 4pt;
	margin-right: 4pt;
}
li.listNoBullet, ol.listNoBullet > li, ul.listNoBullet > li {
	list-style: none;
}
ol.listPaddingExtra > li, ul.listPaddingExtra > li {
	padding-top: 8pt;
	padding-right: 0;
	padding-bottom: 8pt;
	padding-left: 0;
}
ol.listPaddingNormal > li, ul.listPaddingNormal > li {
	padding-top: 4pt !important;
	padding-right: 0;
	padding-bottom: 4pt !important;
	padding-left: 0;
}
ol.listPaddingNone, ul.listPaddingNone {
	list-style-position: inside;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
}
ol.listPaddingNone > li, ul.listPaddingNone > li {
	padding: 0 !important;
	padding-left: 8pt !important;
}
p.paraNoBottom {
	margin-bottom: 0;
}
pre.monoBlock {
	padding: 2pt;
}
select.row {
	margin-left: 2pt;
	margin-right: 2pt;
	width: 100%;
}
small {
	font-size: 10.5pt;
}
span.textGlyph {
	color: gray;
	cursor: default;
	font-weight: bold;
	user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
span.monoNoBlock {
	font-family: monospace;
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
}
textarea.resizeNone {
	resize: none;
}
textarea.resizeVertical {
	resize: vertical;
}
th {
	font-weight: bold;
	text-align: center;
	vertical-align: top;
}
th.nonCentred {
	text-align: start;
}
/* Navigation Menu*/
ul#menuNavigation {
	background-color: #6f74dd;
	cursor: default;
	margin: -12pt -12pt 12pt;
	padding: 2pt 8pt;
	text-align: center;
}
ul#menuNavigation, .unselectable {
	cursor: default;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
ul#menuNavigation, #header.bottomShadow {
	box-shadow: 0 3pt 6pt rgba(0, 0, 0, .5);
}
ul#menuNavigation a {
	color: black;
	cursor: default;
	display: block;
	width: 100%;
}
ul#menuNavigation a:focus {
	outline: none;
}
ul#menuNavigation span.menuRightArrow {
	padding-right: 4pt;
}
ul#menuNavigation span.menuRightArrow::before {
	content: "\25ba";
	float: right;
	font-size: 0.5em;
	padding-top: 0.5em;
}
ul#menuNavigation li {
	color: black;
	display: inline-block;
	list-style-type: none;
	padding: 0;
	vertical-align: middle;
	white-space: nowrap;
	z-index: 999;
	transition: background 0.2s ease-in-out;
	-webkit-transition: background 0.2s ease-in-out;
	-moz-transition: background 0.2s ease-in-out;
	-o-transition: background 0.2s ease-in-out;
}
ul#menuNavigation ul {
	background-color: white;
	border: solid 1pt silver;
	border-radius: 2pt;
	box-shadow: 0 2pt 6pt rgba(0, 0, 0, .5);
	left: -2pt;
	margin: 0;
	padding: 0;
	position: absolute;
	visibility: hidden;
}
ul#menuNavigation > li {
	min-width: 4em;
}
ul#menuNavigation > li, ul#menuNavigation > li > a {
	color: white;
}
ul#menuNavigation > li.submenu, ul#menuNavigation > li > a {
	padding: 4pt 2pt;
}
ul#menuNavigation ul li {
	display: block;
	margin: 0;
	padding: 0;
	text-align: left;
	white-space: nowrap;
}
ul#menuNavigation ul ul {
	left: 100%;
	top: 0;
}
ul#menuNavigation > li:focus, ul#menuNavigation > li:hover,
ul#menuNavigation > li:focus > a, ul#menuNavigation > li:hover > a {
	color: black;
}
ul#menuNavigation li:focus, ul#menuNavigation li:hover {
	background-color: gainsboro;
	position: relative;
}
ul#menuNavigation li:focus > ul, ul#menuNavigation li:hover > ul {
	visibility: visible;
}
ul#menuNavigation li ul li.submenu, ul#menuNavigation li ul li a {
	padding: 8pt 6pt;
}
#header {
	background-color: #3949ab;
	border-radius: 4pt 4pt 0 0;
	color: white;
	display: block;
	margin: -12pt -12pt 12pt;
	padding: 12pt;
	text-align: center;
	text-transform: capitalize;
}
.autoScrollX {
	display: block;
	overflow-x: auto;
	max-width: 100%;
}
.block {
	display: block;
}
.centered {
	text-align: center;
}
.centered > * {
	text-align: start;
}
.cursorWait * {
	cursor: wait !important;
}
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
.heading {
	font-weight: bold;
}
.inlineBlock {
	display: inline-block;
}
.maxWidth5em {
	max-width: 5em;
}
.maxWidth10em {
	max-width: 10em;
}
.maxWidth15em {
	max-width: 15em;
}
.maxWidth20em {
	max-width: 20em;
}
.maxWidth25em {
	max-width: 25em;
}
.maxWidth30em {
	max-width: 30em;
}
.maxWidth35em {
	max-width: 35em;
}
.maxWidth40em {
	max-width: 40em;
}
.maxWidth45em {
	max-width: 45em;
}
.maxWidth50em {
	max-width: 50em;
}
.maxWidth50pc {
	max-width: 50%;
}
.maxWidth100pc {
	max-width: 100%;
}
.minHeight4em {
	min-height: 4em;
}
.minWidth5em {
	min-width: 5em;
}
.minWidth10em {
	min-width: 10em;
}
.minWidth15em {
	min-width: 15em;
}
.minWidth20em {
	min-width: 20em;
}
.minWidth25em {
	min-width: 25em;
}
.minWidth30em {
	min-width: 30em;
}
.minWidth35em {
	min-width: 35em;
}
.minWidth40em {
	min-width: 40em;
}
.minWidth45em {
	min-width: 45em;
}
.minWidth50em {
	min-width: 50em;
}
.nowrap {
	white-space: nowrap;
}
.righted {
	text-align: right;
}
.righted > * {
	text-align: start;
}
.uppercase {
	text-transform: uppercase;
}
.verticalAlignTop {
	vertical-align: top;
}
.verticalAlignMiddle {
	vertical-align: middle;
}
.width20pc {
	width: 20%;
}
.width25pc {
	width: 25%;
}
.width30pc {
	width: 30%;
}
.width33pc {
	width: 33%;
}
.width40pc {
	width: 40%;
}
.width50pc {
	width: 50%;
}
.width60pc {
	width: 60%;
}
.width67pc {
	width: 67%;
}
.width70pc {
	width: 70%;
}
.width75pc {
	width: 75%;
}
.width80pc {
	width: 80%;
}
.width100pc {
	width: 100%;
}