/* coo.css - a more complicated, yet still experimental style sheet */
/* Mod: August 17 2022, 18:00 CET by ACM (added buttons) */
:root {
    --bordergrey: #ccc;
    --inputbkgnd: #F3F3F3;
    --mainblue: #013A81;
    --textcolor: #333;    
    --secblue: #7587AD;
    --whiteblue: #C1CBE0;
    --tooltipcolor: #485A7F;
    --offwhite: #F8F8F8;
    --warnred: #B00002;
    --warnorange: #E77E03;
    --warnviolet: #8338BD;
}
* { 
    box-sizing: border-box;
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
}
html {
    margin: 0;
    padding:0;
} 
body {
    padding: 0;
	margin-left: 40px;
	margin-right: 40px;
	margin-top: 30px;
	margin-bottom: 30px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	background-color:#333;
	font-size: 11.5pt;
	color: #1C1C1C;
	font-weight: normal;
}


/* These rules control header placement */

h1 {
	text-align: center;
	color: #013A81;
	margin-top: 50px;
	margin-bottom: 30px;
	font-size: 27px;
}
.variant1 {
	margin-top: 10px;
	font-style: italic;
	margin-bottom: 20px;
}

h2 {
	text-align: center;
	color:#013A81;
	margin-top: 10px;
	margin-bottom: 30px;
	font-size: 22px;
}

.variant2  {
	margin-top: 50px;
	margin-bottom: 20px;
}

h3 {
	color:#013A81;
	margin-top: 40px;
	margin-bottom:15px;
	margin-left: 0;
}

h4 {  
  	color:#013A81;
	margin-top: 30px;
	margin-bottom:15px;
	margin-left: 0;
}


/* These rules control paragraphs */


p {
	font-size: 11.5pt;
	color: #1C1C1C;
	font-weight: normal;
}

.r-padded {
	padding-right: 40px;
	
}

.footer {
	font-size: 9pt;
	color: #999;
}

.attribution {
	font-size: 9pt;
	color: #666;
	font-style: italic;
	padding-top: 30px;
}

.caption {
	font-size: 10pt;
	font-style: italic;
	margin: 0px;
	padding: 4px;
	padding-top: 8px;
	line-height: normal;
	color: #333;
}

p.menu {
	font-size: 10pt;
	color: #333;
	font-style: normal;
}


/* These rules control lists */

ul {
	font-size: 11.5pt;
	color: #1C1C1C;	
}

ol {
	font-size: 11.5pt;
	color: #1C1C1C;	
}


.square {
	list-style-type: square;
}

.dot {
	list-style-type: disc;
}

.unnumbered {
	list-style-type: none;
}

li {
	padding-top: 3pt;
	padding-bottom: 3pt;
	color: inherit;
}


/* These rules control links */

a {
	text-decoration: none;
	color: #013A81;
} 

a:hover {
	text-decoration: underline;
}

a:visited {
	color: #697CAD;
}

a.navigation {
	font-size: 10pt;
	color: #CCC;
	font-style: normal;
}

li.menu, li.menu a, a.menu, p.menu {
	font-size: 10pt;
	color: #333;
	font-style: normal;
}


a.anchor:hover {
	text-decoration: none;
}
nav {  
    position: -webkit-sticky; /* Safari, but doesn't work */
    position: sticky;
    top: 50px;
    text-align: left;
    display: block;   /* must have for Safari, but doesn't work */
}    
nav ul, nav ul li { 
	text-indent: 0; 
	margin: 0; 
	padding: 0;
	list-style: none;
}

nav ul li { 
	padding-top: 7px; 
	padding-bottom: 7px;
	line-height:normal;
}
li.submenu, li.submenu a, a.submenu {
	font-size: 9pt;
	color: #363636;
	font-style: normal;
    
}
li.ssubmenu, li.ssubmenu a, a.ssubmenu {
	font-size: 8pt;
	color: #444;
	font-style: normal;
    margin-left: 5px;
	padding-top: 5px; 
	padding-bottom: 5px;    
}

.chev:after {
   font-family: FontAwesome;
    content:"\f0da";
   font-size: 16px;
   display: inline-block;     /* to increase touch area*/
   position: relative;    
   z-index: 1;     
   padding: 1em;     
   margin: -1em;
   padding-left: 1.2em; /* was 1.3em*/
   bottom: -2px;
   color:inherit;
}
.chev:hover {    
    color: #697CAD;
    cursor: hand;  /* safari */
    cursor: pointer;
}
nav .chev:hover {    
    color: #CCC;
}
.chev.down:after {
    content:"\f0d7";
} 
.contcat {
    display: none;
}
.contcat.down{
    display: block;
}
#localnav { 
    display: none;
}  

/* These rules control tabular elements */

table {
	width: 100%;
	border-style: none;
	border-width: 0px;
	border-spacing: 0px;
	font-size: 11.5pt;
	color: #1C1C1C;
}

.main {
	max-width: 1100px;
	margin: 0px auto;
}

.content {
	background-color: #FFF;
	padding-left: 64px;
	padding-right: 64px;
	padding-bottom: 20px;
	//height: 740px;
	//vertical-align: top;	
}

.top {
	background-color:#666;
	padding: 0px;
	padding-left: 36px;
	padding-right: 36px;
	text-align: center;
	max-height: 60px;
}

.bottom {
	background-color:#666;
	padding: 10px;
	padding-left: 36px;
	padding-right: 36px;
	text-align: center;
}

.left {
	background-color:#999;
	//width: 118px;
    width: 146px;
	padding-top: 114px;
	padding-left: 14px;
	padding-right: 14px;
	text-align: right;
	vertical-align: top;
}

/* These rules control tabular options */

.short, .short td {
	width: auto;		
}

.padded {
	padding: 30px;
}

.data-l, .data-c {
	width: auto;
	max-width: 100%;
	margin: 0px auto;
	margin-top: 30px;
	margin-bottom: 30px;
	vertical-align: middle;
	border-collapse: collapse;
	font-size: 11.5pt;
    min-width: 400px;
}
.data-c {
	text-align: center;
}

.data-l {
	text-align: left;
}


tr.bar {
	border-bottom: solid 1px;
	border-color: #999;
}

.data-c, .data-l, .short-c {    
	min-width: 400px;
}
.data-c.full, .data-l.full {    
	min-width: 100%;
}

.short-c {
	width:auto;
	margin: 0px auto;
	text-align: center;
	vertical-align: middle;
	border-collapse: collapse;
}

.data-c th, .data-l th {
	background-color: #F3F3F3;
	border-bottom: solid 1px;
	border-top: solid 1px;
    padding: 5px;
}
.data-l td, .data-c td{
    padding: 5px;
}
.data-l th {
	padding-right: 12px;
	padding-left: 12px;
}

.data-l td {
	padding-left: 12px;
	padding-right: 0px;
}

.data-c tr:nth-child(odd), .data-c div.item:nth-child(odd),
.data-l tr:nth-child(odd), .data-l div.item:nth-child(odd) {
	background-color: #F8F8F8;
}

td.shade {
	background-color: rgba(229,233,238,0.2); 
}

th.clear, td.clear {
	background-color: #FFF;
}

th.noborder, th.clear, td.clear {
	border-bottom: none;
	border-top: none;
}

tr.bar, .data-c th, .data-l th, td.caption {
	border-color: #BBB;
}

.data-c tr:last-of-type, .data-l tr:last-of-type, .data-l div.item:last-of-type, .data-c div.item:last-of-type {
    border-bottom: solid 1px #BBB;
}

td.caption {
	font-size: 10pt;
	text-align: left;
	background-color: #FFF;
	font-style: italic;
	margin: 0px;
	padding: 8px 0px 0px 0px;
 	line-height: normal;
	color: #333;
	border-top: solid 1px #BBB;
    border-bottom: solid 1px transparent;
}



/* These rules control horizontal bars */

hr {
	max-width: 1080px;
	border: 0;
	height: 1px;
	background-color: #E3E3E3;
	margin-top: 30px;
	margin-bottom: 30px;
}

hr.thick {
	height: 6px;
}

hr.short {
	height: 1px;
	background-color: #333;
	margin-top: 15px;
	margin-bottom: 13px;
	margin-left: 0;
    margin-right: 40px;
}

/*Images*/

.floatright {
	width:auto;
	float: right;
	margin-left: 40px;
	margin-bottom: 20px;
	margin-right: 10px;
	margin-top: 3px;    
}

.floatleft {
	width:auto;
	float: left;	 
	margin-right: 40px;
	margin-bottom: 20px;
	margin-top: 3px;
}

img {
	display: block;
}
.thumbnail{
    box-sizing: content-box;
	background-color: #F3F3F3;
	border: solid 1px #CCC;
	padding: 4px;
}
.thumbnail {
    max-width: 300px;
}
.thumbnail img {
    width: 300px;
}
.narrow {
    max-width: 250px;
}
.narrow img {
    width: 250px;
}
.full {
    max-width: 100%; 
}
.full img {
    width: 100%; margin: 0 auto;
} 
#overlay{
    display: none;
    z-index: 4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background-color: rgba(0,0,0,0.7);
}



/* Miscellaneous  */
.showhide {
    display: none;
}
.showhidebtn, .showhideallbtn {
    background-color: var(--offwhite); 
    color: var(--textcolor);
    border: 1px solid var(--bordergrey);
    border-radius: 2px;
    cursor: pointer;
    font-size: small;
    padding: 2px 8px 4px;
    float: none;
    display: block; 
    margin: 10px 0 10px;    
}
.showhidebtn:hover, .showhideallbtn:hover {
    background-color: var(--whiteblue); 
    color: inherit;   
}
.showhideallbtn {
    color: var(--mainblue);
    display: block;
    margin: 0 auto;
}
button .chev {
    pointer-events: none;
    cursor: default;
}    
button:hover .chev, button .chev:hover {
    cursor: pointer;
    color: inherit;
}
    
new {
        padding: 1px 4px;
        display: inline-block;
        padding: 6px 10px;
        margin: 4px 0;        
        border: 1px solid var(--bordergrey);
}
new:before {
        content: "NEW: ";
        color: var(--secblue);
        font-size: small;
        padding: 2px;
        font-weight: bold;    
}    
noteworthy {
        font-style: italic;
        //color: var(--tooltipcolor);
}    

important {
        font-weight: bold;
        background-color: var(--offwhite);
        display: inline-block;
        padding: 6px 10px;
        margin: 4px 0;
        border: 1px solid var(--bordergrey);
}

