@charset "UTF-8";

/* CSS Document */

@font-face {
	font-family: 'Roboto';
	src: url('Roboto-Regular.ttf');
}

@font-face {
	font-family: 'Roboto-bold';
	src: url('Roboto-Bold.ttf');
}

/* Defined variabls for font size, line height & standard padding so as to maintain the ratio for tables & references. These variables will be updated via JS when the font size is changed from the settings for the app */
:root {
	--body-font-size: 14px;
	--body-line-height: 20px;
	--standard-padding: 15px;
}


* {
	margin:0;
	padding:0;
}

body {
	-webkit-user-select: none;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	font-family: Roboto;
	color: black;
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	word-spacing:0;
	text-align: left;
	background: white;
}

h2{
	font-size: 18px;
}

/*-----------------------Standard Text Definition------------------------*/

p,h1,h2 {
	margin:0px;
	padding: 0px 12.5px var(--standard-padding) 12.5px;
}


.indent {
	margin-left: 10px;
}


p.text-center {
	text-align: center;
}

p.text-blue {
	color: #0A89C6;
}


/*-----------------------Headline Definition - 4 Level (Note: Display: none! Exception Level 4 clarify behavior with Editor)------------------------*/
/* THESE ARE NOT DISPLAYED IN THE PAGE */


p.h1 {
	color: #08338f;
	font-weight: Roboto-bold;
	display: none;
}

p.h2 {
	color: #298A08;
	font-weight: Roboto-bold;
	display: none;
}

p.h3 {
	color: #FF8000;
	font-weight: Roboto-bold;
	display: none;
}

p.h4 {
	color: #585858;
	font-weight: Roboto-bold;
	display: none;
}



/* Give margins between hidden elements and any other element*/
p.h1 + * {
	margin-top: var(--standard-padding) !important;
}
p.h2 + * {
	margin-top: var(--standard-padding) !important;
}
p.h3 + * {
	margin-top: var(--standard-padding) !important;
}
p.h4 + * {
	margin-top: var(--standard-padding) !important;
}

/* remove top margins to avoid double margins between elements */
p + table{
	margin-top: 0px !important;
}
p + div{
	margin-top: 0px !important;
}

.header1 + div.ref{
	margin-top: var(--standard-padding) !important;
}
.header2 + div.ref{
	margin-top: var(--standard-padding) !important;
}
.header3 + div.ref{
	margin-top: var(--standard-padding) !important;
}
.header4 + div.ref{
	margin-top: var(--standard-padding) !important;
}
/*-----------------------Enumeration with… - First Level------------------------*/

p.listlevel1::before
	{ 
		content: "\2022";
		padding-right:2px;
	}

p.listlevel1
	{
		text-indent: -9px;
		padding-left: 20px;
	}


/*-----------------------Enumeration with Hyphen - Second Level------------------------*/

p.listlevel2::before  
	{
		content: "\2212";  
		padding-right:2px;
	}

p.listlevel2         
	{				
     	text-indent:-12px;             
    	margin-left:20px;
	}

p.listlevel3:before {
	content: "\2212";
	margin-right: 0.3em;
}

p.listlevel3 {
	text-indent: -0.5em;
	margin-left: 2.3em;
	/*1.15em;*/
}

/*-----------------------Standard Source Code with div box------------------------*/

p.reference {
	font-size: calc(var(--body-font-size) * 0.92);
	padding: 5px 5px 5px 5px !important;
	line-height: calc(var(--body-line-height) * 0.9);
}

div.ref {
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	background: #F4F4F4;
	/*or #f5f5f5 very light bg*/
	border: 1px solid #D9D9F3;
	padding: 2px 2px 0px 2px;
	margin: var(--standard-padding) 10px var(--standard-padding) 10px ;
	border-radius: 1px;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
}

/*-----------------------Standard Source Code with images------------------------*/
div.legend{
	margin: var(--standard-padding) 10px var(--standard-padding) 10px !important;
}


/*--------------------------Standard Table Declaration & paddings for td & th------------------------*/

table.table, table.recomm-table{
	width: calc(100% - 20px);
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: var(--standard-padding);
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: var(--standard-padding);
    font-size: var(--body-font-size);
	border: 1px solid rgb(182, 181, 181);
	line-height: calc(var(--body-line-height) * 0.9);;
}

table.table+table.table {
	margin-top: 15px;
}

table.recomm-table+table.recomm-table {
	margin-top: 15px;
}

th, td {
	padding: 8px 8px 0px 8px
}

td > p, th > p{
	padding: 0px 0px var(--standard-padding) 0px;
}

/*-----------------------Numbered List, first and second Level Note: also latin, small/big letters ------------------------*/


li.enum1 {
    margin: 0px 12.5px 0px 25px;
    text-align: left;
    padding-bottom: 5px;
}


/* -----------------Ordered list---------------*/

p.list:before {
	content: "";
	margin-right: 0.8em;
}

p.list {
	margin: 0px;
	text-indent: -1.999em;
	margin-left: 1.5em;
	margin-bottom: 0.40em;
	margin-top: 0.05em;
	color: #2e2d30;
}


/*----------Standard Table Header Text declaration---------------*/

th.table-header1 {
	background-color: #739900;
}


/*----------Standard Table title Text declaration---------------*/

p.table-title1 {
	color: #ffffff;
	text-align: left;
}

p.table-title2 {
	color: #000000;
	text-align: left;
}


/*---------Table columns and table rows border behavior----------*/

tr:first-child {
	border-bottom: 1px solid #999999;
}

tr+tr {
	border-bottom: 1px solid #999999;
}

td+td {
	border-left: 1px solid #999999;
}

td {
	background: #ffffff;
	vertical-align: top;
}

/*------------------- Table Text----------------------*/

p.table-text-white {
	color: #ffffff;
	text-align: left;
}


/*------------------------------------Additional Table Declarations/Exceptions -----------------------------------*/

td.center {
	vertical-align: middle;
}


/*----------------------------Different Text Highlighting Character styles---------------------------*/
/*---------Bold Text black----------*/

span.bold {
	font-family: Roboto-bold;
}

.bold {
	font-family: Roboto-bold;
}

span.normal {
	font-weight: normal;
}

.normal {
	font-weight: normal;
}


/*---------Bold Text any color----------*/

span.bold-colour {
	font-family: Roboto-bold;
	color: #6cb4bd;
}

span.colour {
	color: #6cb4bd;
}

span.red {
	color: #AF0727;
	font-family: Roboto-bold;
}


/*---------Bold Text and Underlined----------*/

span.bold-underline {
	font-family: Roboto-bold;
	color: #f06e00;
	text-decoration: underline;
}

span.bold-italic {
	font-family: Roboto-bold;
	font-style: italic;
}


/*---------Italic Text--------------*/

span.italic {
	font-style: italic;
}


/*---------Italic Text and Underlined--------------*/

span.italic-underline {
	text-decoration: underline;
	font-style: italic;
}


/*--------------Text Underlined--------------*/

span.underline {
	text-decoration: underline;
}


/*--------------Text/Number/Sign superscripted/subscripted--------------*/

span.text-sup {
	vertical-align:super; 
}

span.text-sub {
	vertical-align:sub; 
}

.text-sub,
.text-sup {
	font-size:0.7em;
	line-height:100%;
}

.left {
	text-align: left;
}

.blue {
	color: #0A89C6;
}


/*--------------------td colors-----------------------*/
td.green2 {
	background-color: #acc592;
	font-weight: normal;
	vertical-align: middle;
}

td.green1 {
	background-color: hsl(89, 44%, 86%);
	font-weight: normal;
	vertical-align: middle;
}

td.orange1 {
	background-color: #C99134;
	font-weight: normal;
	vertical-align: middle;
	color: white;
}

td.red1 {
	background-color: #85140A;
	font-weight: normal;
	vertical-align: middle;
	color: white;
}

td.red2 {
	background-color: #C20B1A;
	font-weight: normal;
	vertical-align: middle;
	color: white;
}

td.blue1 {
	background-color: #c8e0ef;
	vertical-align: top;
}

td.col-gray2 {
	background-color: #ECECEB;
	vertical-align: top;
}

span.orange {
	color: #cc7a00;
}