@font-face {
    font-family: 'Frutiger';
    src: url("../fonts/FrutigerforUBSWeb-Lt.202008181632.woff2") format("woff2"),url("../fonts/FrutigerforUBSWeb-Lt.202008181632.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 300
}

@font-face {
    font-family: 'Frutiger';
    src: url("../fonts/FrutigerforUBSWeb-Md.202008181632.woff2") format("woff2"),url("../fonts/FrutigerforUBSWeb-Md.202008181632.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: bold
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
	font-family: Frutiger, Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
	
	margin: 0;
	
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
	overflow: hidden;
	
	display: flex;
	flex-direction: column;
}

button {
    font-family: Frutiger, Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 16px;
    color: #000000;
}

a,
a:link
a:visited,
a:active {
	color: #000000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/**
 * Header
 */
header {
	border-bottom: 1px solid rgba(204, 204, 204, 0.75);
	
	background: #FFFFFF;
	
	display: flex;
	align-items: center;
	justify-content: space-between;
	
	height: 106px;
}

header .responsive-navigation {
    display: none;
}

header .logo-container {
	display: flex;
	padding: 0 20px;
}

header .logo-wrapper {
}

header .logo-wrapper img {
	height: 45px;
	display: block;
}

header .report-title {
    font: 300 1.6875rem/1 Frutiger,Arial,Helvetica,sans-serif;
    color: #000000;
	
    word-break: break-word;
    text-align: left;
	
	padding: 0 0 4px 30px;
	
    display: flex;
    align-items: flex-end;
    
    white-space: nowrap;
}

header .home-container {
    display: none;
}

header .side-container {
	font-size: 0.875rem;
	
	padding: 0 50px 0 0;
}

header .side-container .side-responsive-button {
    display: none;
}

header .side-container .side-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

header .side-container,
header .side-container a {
	color: #585858;
}

header .side-container a {
    display: block;
    padding: 0.5rem 0;
}


header .side-container a:hover {
	color: #E60000;
    text-decoration: none;
}

header .side-container .download-link-wrapper,
header .side-container .back-link-wrapper {
    margin-left: 3rem;
}

header .side-container .download-link-wrapper i,
header .side-container .back-link-wrapper i {
    margin-left: 0.375rem;
}

/**
 * Main
 */
main {
	max-height: calc(100% - 106px);
	
	display: flex;
	flex: 1;
    
    position: relative;
}

/**
 * Sidebar
 */
main .sidebar {
	width: 340px;
	
	display: flex;
	flex-direction: column;
}

main .sidebar .tab-nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	
	display: flex;
}

main .sidebar .tab-nav li {
	flex: 1 0 25%;
	
	text-align: center;
	
	font-size: 0.875rem;
}

main .sidebar .tab-nav li i {
	color: #959595;
	
	display: block;
	
	font-size: 1.6875rem;
	margin: 1rem 0 0.125rem;
}

main .sidebar .tab-nav li .tab-label {
	padding: 0.5rem 0 0.625rem;
	display: block;
}

main .sidebar .tab-nav li.active {
	border-bottom: 4px solid #E60000;
}

main .sidebar .tab-nav li.active i {
	color: #E60000;
}

main .sidebar .tab-nav li:hover i,
main .sidebar .tab-nav li.active:hover i {
	color: #000000;
}

main .sidebar .tab-nav li a,
main .sidebar .tab-nav li a:hover {
	text-decoration: none;
}

main .sidebar .tab-content {
	overflow: hidden;
	
	border-style: solid;
	border-color: rgba(204, 204, 204, 0.75);
	border-width: 1px 1px 0 0;
	
	flex: 1;
	display: flex;
}

main .sidebar .tab-content .tab {
	display: none;
	
	flex: 1;
	overflow-y: auto;
    
    position: relative;
}

main .sidebar .tab-content .tab.padded-tab {
    padding: 0 1.5rem;
}

main .sidebar .tab-content .tab.active {
	display: block;
}

.navigation-tab ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
    user-select: none;
}

.navigation-tab ul.books li {
	display: flex;
	flex-direction: column;
}

.navigation-tab ul.books li.hidden-item {
    display: none;
}

.navigation-tab ul.books > li a {
	flex: 1;
	
	display: flex;
	align-items: center;
	
	border-bottom: 1px solid rgba(204, 204, 204, 0.75);
}

.navigation-tab ul.books > li a:hover {
	text-decoration: none;
	
	background: rgba(190, 185, 170, 0.3);
}

.navigation-tab ul.books > li .number {
	font-size: 2.5rem;
	padding: 0.5rem;
	width: 65px;
	
	text-align: center;
}

#index_tab ul.books > li.book:not(.active) .number {
	color: #9a998f;
}

.navigation-tab ul.books > li.book.active .number {
	color: #E60000;
}

.navigation-tab ul.books > li > a > .label {
	flex: 1;
	font-size: 1.125rem;
	line-height: 1.5rem;
	color: #474747;
	
	padding: 0.5rem 1.875rem 0.5rem 0;
}

.navigation-tab .chapter {
	display: none;
}

#index_tab.active {
	display: flex;
    
    overflow-y: scroll;
}

#index_tab .book-list {
	width: 65px;
	
	-webkit-box-shadow: 6px 0px 10px 0px rgba(0, 0, 0, 0.10); 
	box-shadow: 6px 0px 10px 0px rgba(0, 0, 0, 0.10);
	
	position: sticky;
	top: 0;
}

#index_tab .book-index {
    flex: 1;
}

#index_tab .book-list ul.books > li > a .label {
	display: none;
}

#index_tab .book-index ul.books > li > a {
	display: none;
}

#index_tab .book-index ul.books li.with-chapter > a {
	position: relative;
	padding-right: 3.75rem !important;
}

#index_tab .book-index ul.books > li > .chapter a {
	color: #222222;
	font-size: 0.875rem;
	line-height: 1.25rem;
	
	padding: 0.5rem 1.875rem 0.5rem 1.375rem;
}

#index_tab .book-index ul.books > li > .chapter > li > .chapter > li > a {
	padding: 0.5rem 1.25rem 0.5rem 1.375rem;
}

#index_tab .book-index ul.books > li .chapter .chapter {
	background: #eeece9;
}

#index_tab .book-index ul.books > li > .chapter > li.divider-chapter > a {
	padding: 0.5rem 1.25rem 0.5rem 1.375rem;
	font-size: 1.125rem;
	line-height: 1.5rem;
}

#index_tab .book-index ul.books > li > .chapter > li.divider-chapter > .chapter {
    background: #FFFFFF;
}

#index_tab .book-index ul.books > li .chapter li.with-chapter:not(.divider-chapter) .chapter .chapter a,
#index_tab .book-index ul.books > li .chapter li.with-chapter.divider-chapter .chapter .chapter .chapter a {
	padding: 0.5rem 2.125rem 0.5rem 2.25rem;
}

#index_tab ul.books > li > .chapter {
	
}

#index_tab ul.books li.active > .chapter {
	display: block;
}

#index_tab ul.books li a.highlight {
    color: #E60000 !important;
}

#index_tab .desktop-open-submenu {
    display: block;
    
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    
    background: transparent;
    border: none;
    
    font-size: 0.75rem;
    padding: 0 1.625rem 0 1.25rem;
    
    color: #999999;
    
    cursor: pointer;
}

#index_tab .desktop-open-submenu .uri-arrow-up {
    display: none;
}

#index_tab .active > a > .desktop-open-submenu .uri-arrow-down {
    display: none;
}

#index_tab .active > a > .desktop-open-submenu .uri-arrow-up {
    display: block;
    color: #000000;
}

#index_tab .responsive-open-submenu {
    display: none;
}

main .page-body {
	flex: 1;
    display: flex;
	
	max-height: 100%;
    
    position: relative;
}

main .page-body .page-body-scrollable {
    flex: 1;
    
    max-height: 100%;
    
	overflow-y: scroll;
    
    position: relative;
}

.page-body .report-content-navigation {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    
    min-height: 85px;
    
    background: #FFFFFF;
    
    z-index: 100;
    
    -webkit-box-shadow: 0px 1px 20px 20px rgb(255 255 255); 
	box-shadow: 0px 1px 20px 20px rgb(255 255 255);
    
    font-size: 0.875rem;
    line-hieght: 1.125rem;
    
    padding-bottom: 1rem;
}

.report-content-navigation .report-chapter-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 1rem 0 0.125rem 0;
}

.report-content-navigation .report-chapter-buttons .button {
    display: flex;
    align-items: center;
    
    text-decoration: none;
    color: #585858;
    
    cursor: pointer;
    user-select: none;
}

.report-content-navigation .report-chapter-buttons .button.hidden {
    visibility: hidden;
}

.report-content-navigation .report-chapter-buttons .button i {
    display: block;
    
    color: #585858;
    font-size: 1.35rem;
}

.report-content-navigation .report-chapter-buttons .button:hover i {
    color: #000000;
}

.report-content-navigation .report-chapter-buttons .button.prev-chapter-button i {
    margin-right: 1rem;
}

.report-content-navigation .report-chapter-buttons .button.next-chapter-button i {
    margin-left: 1rem;
}

.report-breadcrumb-navigation {
    padding: 0.5rem 0;
}

.report-breadcrumb-navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    user-select: none;
}

.report-breadcrumb-navigation ul li {
    display: inline;
    
    position: relative;
}

.report-breadcrumb-navigation ul li:after {
    content: '/';
    color: #B0B0B0;
    
    display: inline-block;
    margin: 0 0.25rem;
}

.report-breadcrumb-navigation ul li:last-child:after {
    content: '';
    display: none;
}

.report-breadcrumb-navigation ul li a {
    color: #585858;
}

.report-breadcrumb-navigation ul li:last-child a {
    color: #000000;
}

.report-wrapper {
	width: 880px;
	margin: 0 auto;
	
	padding: 0 0 100px 0;
}

.report-wrapper.wrapper-hidden {
    display: none;
}

.report-book {
    display: none;
}

.report-book.active {
    display: block;
    
    position: relative;
}

.report-content h1,
.report-content h2,
.report-content h3,
.report-content h4 {
    font-weight: 300;
}

.report-content h1 {
    margin: 2rem 0 1.25rem 0;
	
	font-size: 2.5rem;
	line-height: 1.25;
}

.report-content h1.main-title {
	font-size: 4rem;
    line-height: 5rem;
}

.report-content .caption {
    margin-bottom: 1.5rem;
    
    font-size: 1.625rem;
    line-height: 2.25rem;
    color: #757575;
}

.report-content h1.main-title,
.report-content .caption {
    position: relative;
    
    padding-left: 1.5rem;
}

.report-content h1.main-title:after,
.report-content .caption:after {
    content: '';
    
    display: block;
    
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    
    width: 6px;
    
    background: #E60000;
}

.report-content h1.main-title:after {
    top: 17px;
    bottom: 17px;
}

.report-content .caption:after {
    bottom: 9px;
}

.report-content h1.main-title + .caption {
    margin-top: -1.25rem;
    padding-top: 1.25rem;
}

.report-content h1.main-title + .caption:after {
    top: -30px;
}

.report-content h2 {
    font-size: 3rem;
    line-height: 4.1rem;
    
    margin-top: 4rem;
}

.report-content h2.subdivider {
    font-size: 3.5rem;
    line-height: 4.5rem;
    
    margin-top: 4rem;
}

.report-content h3 {
    font-size: 2.25rem;
    line-height: 3rem;
    
    margin-bottom: 1.5rem;
}

.report-content h4 {
    font-size: 1.75rem;
    line-height: 2.5rem;
    font-weight: normal;
    
    margin-top: 1rem;
    margin-bottom: 1rem;
    
    color: #A43725;
}

.report-content h4.special-subtitle,
.report-content h4.special-sidebar-title {
    color: #000000;
}

.report-content h4.special-sidebar-title {
    border-top: 1px solid #000000;
    padding-top: 1rem;
}

.report-content h5 {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #E60000;
    
    margin-top: 1.5rem;
    margin-bottom: 0.9rem;
}

.report-content h5.subtitle-a {
    font-weight: bold;
}

.report-content h5.subtitle-b {
    font-weight: normal;
    margin-bottom: 0;
}

.report-content h5.subtitle-c {
    font-weight: normal;
    font-style: italic;
    margin-bottom: 0;
}

.report-content h5.subtitle-d {
    font-weight: normal;
    font-style: italic;
    color: #000000;
    margin-bottom: 0;
}

.report-content h5.contact-subtitle-a {
    border-bottom: 1px solid #000000;
}

.report-content h6 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: bold;
    color: #000000;
    
    margin-top: 1.5rem;
    margin-bottom: 1.1rem;
    
    border-bottom: 1px solid #000000;
}

.report-content h6.note-subtitle-b {
    color: #A43725;
}

.report-content h6.contact-subtitle-b {
	border-bottom: none;
}

.report-content p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.report-content p:last-child {
    margin-bottom: 0;
}

.report-content p.special-title {
    font-weight: bold;
}

.report-content p.special-subtitle {
    font-size: 1.375rem;
}

.report-content .infobox-table {
    padding: 1.25rem;
    
    background: #F5F5F5;
    
    margin-top: 2.5rem;
}

.report-content .infobox-table td,
.report-content .infobox-table td cite {
    font-size: 0.875rem;
    line-height: 1.375rem
}

.report-content .infobox-table td {
    padding: 1rem;
}

.report-content .infobox-table .special-title {
    margin-bottom: 1rem;
}

.report-content strong {
	font-weight: bold;
}

.report-content cite {
	margin: 1rem 0 2rem;
	padding: 0 1rem 0 2rem;
	
	font-size: 14px;
	font-weight: bold;
    line-height: 1.25rem;
    font-style: normal;
	
    max-width: 700px;
    
    display: block;
}

.report-content cite:before {
    content: '\203A';
    
    font-size: 1.25rem;
    
    margin-left: -1rem;
    
    width: 1rem;
    display: inline-block;
}

.report-content cite + cite {
    margin-top: -1.375rem;
}

.report-content cite a {
    text-decoration-thickness: 1px;
    text-decoration-style: dotted;
    text-decoration-line: underline;
}

.report-content cite a:hover {
    color: #E60000;
}

.report-content blockquote {
    position: relative;
    padding-left: 1.5rem;
    margin-left: 0;
    
    font-size: 1.5rem;
}

.report-content blockquote:after {
    content: '';
    display: block;
    
    position: absolute;
    top: 9px;
    left: 0;
    bottom: 10px;
    
    width: 6px;
    background: #E60000;
}

.report-content dl {
	margin: 0;
}

.report-content dt {
	width: 80px;
	float: left;
}

.report-content dd {
	margin-left: 80px;
}

.report-content ul:not(.breadcrumb-navigation) {
    margin: 0;
    margin-bottom: 1rem;
    padding: 0 0 0 1.05rem;
    
    list-style-type: none;
}

.report-content ul:not(.breadcrumb-navigation):last-child {
    margin-bottom: 0;
}

.report-content ul:not(.breadcrumb-navigation) li:before {
    content: '\2013';
    
    display: inline-block;
    margin-left: -1rem;
    width: 1rem;
}

.report-content span.text-italic-color {
    font-style: italic;
    color: #A43725;
}

.report-content span.text-italic-bold {
    font-style: italic;
    font-weight: bold;
}

.report-content span.text-ubs-red {
    color: #E60000;
}

.report-content abbr {
	cursor: pointer;
	text-decoration-thickness: 1px;
    text-decoration-style: dotted;
    text-decoration-line: underline;
    
    white-space: nowrap;
}

.report-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.report-content img.fixed-width {
    display: inline-block;
}

.report-content img.full-width {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.report-content img.half-width {
    width: 50%;
    max-width: 50%;
    height: auto;
}

.report-content .image-link img.full-width,
.report-content .image-link img.half-width {
    cursor: zoom-in;
}

.report-content .info-message {
    font-size: 0.875rem;
    line-height: 1.5rem;
    
    border: 1px solid #E60000;
    
    padding: 0.75rem 1.25rem;
    
    margin-bottom: 1rem;
}

.report-content .table-container {
	margin-bottom: 1.5rem;
}

.report-content .table-container .table-buttons {
    margin-bottom: 1rem;
    
    text-align: right;
}

.report-content .table-container .table-buttons .btn {
    margin-right: 0;
}

.report-content .table-container .table-swipe-info {
    border: 1px solid #E60000;
    
    text-align: center;
    
    margin-bottom: 1rem;
    
    line-height: 2;
}

.report-content table {
    border-collapse: collapse;
}

.report-content .responsive-table {
    overflow-x: auto;
    overflow-y: hidden;
    
    margin: 0 -2px;
    padding: 0 2px;
}

.report-content .table-container + .table-container {
    margin-top: 3rem;
}

.report-content .table-container.horizontally-glued .responsive-table {
    cursor: grab;
}

.report-content .table-container.horizontally-glued .responsive-table.grabbing {
    cursor: grabbing;
    user-select: none;
}

.report-content table.data-table.table-horizontally-glued {
    width: 150%;
}

.report-content table.data-table.table-horizontally-glued th:first-child,
.report-content table.data-table.table-horizontally-glued td:first-child {
    position: sticky;
    left: 0;
    
    background: #FFFFFF;
    
    z-index: 2;
}

.report-content table.data-table.table-horizontally-glued tbody tr:not(.empty-row):hover th:first-child,
.report-content table.data-table.table-horizontally-glued tbody tr:not(.empty-row):hover td:first-child {
    background: #F7F7F7;
}

.report-content table.data-table.table-horizontally-glued th:first-child:after, 
.report-content table.data-table.table-horizontally-glued td:first-child:after {
    content: '';
    
    display: block;
    width: 20px;
    
    position: absolute;
    top: 0px;
    right: -20px;
    bottom: 0;
    
    background: linear-gradient(90deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
}

.report-content table.data-table.table-horizontally-glued tbody tr:not(.empty-row):hover th:first-child:after,
.report-content table.data-table.table-horizontally-glued tbody tr:not(.empty-row):hover td:first-child:after {
    background: linear-gradient(90deg, rgba(247,247,247,1) 20%, rgba(247,247,247,0) 100%);
}

.report-content table.text-table.table-with-row-lines {
    border-collapse: collapse;
}

.report-content table.text-table.table-with-row-lines tr {
    border-bottom: 1px solid #000000;
}

.report-content table.text-table.table-with-row-lines tr:last-child {
    border-bottom: 0;
}

.report-content .table-container .table-title-row,
.report-content .table-container .table-title-row th,
.report-content .table-container .table-title-row td {
    font-size: 1rem;
}

.report-content table.text-table.table-with-row-lines tr td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.report-content table.data-table p,
.report-content table.text-table th p {
    margin-bottom: 0;
}

.report-content table th,
.report-content table td {
	font-size: 0.75rem;
	
	padding: 0 5px;
}

.report-content table td cite {
    font-size: 0.75rem;
}

.report-content table th {
    font-weight: normal;
}

.report-content table:not(.table-with-background):not(.text-table) th:not(.background-light-gray):not(.background-gray):not(.background-gray-two):not(.background-gray-three):not(.background-dark-gray):first-child,
.report-content table:not(.table-with-background):not(.text-table) td:not(.background-light-gray):not(.background-gray):not(.background-gray-two):not(.background-gray-three):not(.background-dark-gray):first-child {
	padding-left: 0;
}

.report-content .table-container .value-negative,
.report-content .table-container .value-negative {
	padding: 0 1px;
}

.report-content .table-container .spacer-column {
	width: 4px;
	padding: 0;
}

.report-content .table-container .border-top-solid-thin {
	border-top: 1px solid #74726F;
}

.report-content .table-container .border-top-solid-thick {
	border-top: 2px solid #74726F;
}

.report-content .table-container .border-top-dotted-thin {
	border-top: 1px dotted #74726F;
}

.report-content .table-container .border-top-dotted-thick {
	border-top: 2px dotted #74726F;
}

.report-content .table-container .border-top-solid-thin-white {
	border-top: 1px solid #FFFFFF;
}

.report-content .table-container .border-top-solid-thick-white {
	border-top: 2px solid #FFFFFF;
}

.report-content .table-container .border-top-solid-extra-thick-white {
	border-top: 3px solid #FFFFFF;
}

.report-content .table-container .border-top-dotted-thin-white {
	border-top: 1px dotted #FFFFFF;
}

.report-content .table-container .border-top-dotted-thick-white {
	border-top: 2px dotted #FFFFFF;
}

.report-content .table-container .border-top-dotted-extra-thick-white {
	border-top: 3px dotted #FFFFFF;
}

.report-content .table-container .border-top-solid-thick-gray {
	border-top: 2px solid #A6A6A6;
}

.report-content .table-container .border-left-solid-thin {
	border-left: 1px solid #74726F;
}

.report-content .table-container .border-left-solid-thick {
	border-left: 2px solid #74726F;
}

.report-content .table-container .border-left-dotted-thin {
	border-left: 1px dotted #74726F;
}

.report-content .table-container .border-left-dotted-thick {
	border-left: 2px dotted #74726F;
}

.report-content .table-container .border-left-solid-thin-white {
	border-left: 1px solid #FFFFFF;
}

.report-content .table-container .border-left-solid-thick-white {
	border-left: 2px solid #FFFFFF;
}

.report-content .table-container .border-left-solid-extra-thick-white {
	border-left: 3px solid #FFFFFF;
}

.report-content .table-container .border-left-dotted-thin-white {
	border-left: 1px dotted #FFFFFF;
}

.report-content .table-container .border-left-dotted-thick-white {
	border-left: 2px dotted #FFFFFF;
}

.report-content .table-container .border-left-dotted-extra-thick-white {
	border-left: 3px dotted #FFFFFF;
}

.report-content .table-container .border-left-solid-thick-gray {
	border-left: 2px solid #A6A6A6;
}

.report-content .table-container .border-right-solid-thin {
	border-right: 1px solid #74726F;
}

.report-content .table-container .border-right-solid-thick {
	border-right: 2px solid #74726F;
}

.report-content .table-container .border-right-dotted-thin {
	border-right: 1px dotted #74726F;
}

.report-content .table-container .border-right-dotted-thick {
	border-right: 2px dotted #74726F;
}

.report-content .table-container .border-right-solid-thin-white {
	border-right: 1px solid #FFFFFF;
}

.report-content .table-container .border-right-solid-thick-white {
	border-right: 2px solid #FFFFFF;
}

.report-content .table-container .border-right-solid-extra-thick-white {
	border-right: 3px solid #FFFFFF;
}

.report-content .table-container .border-right-dotted-thin-white {
	border-right: 1px dotted #FFFFFF;
}

.report-content .table-container .border-right-dotted-thick-white {
	border-right: 2px dotted #FFFFFF;
}

.report-content .table-container .border-right-dotted-extra-thick-white {
	border-right: 3px dotted #FFFFFF;
}

.report-content .table-container .border-right-solid-thick-gray {
	border-right: 2px solid #A6A6A6;
}

.report-content .table-container .border-bottom-solid-thin {
	border-bottom: 1px solid #74726F;
}

.report-content .table-container .border-bottom-solid-thick {
	border-bottom: 2px solid #74726F;
}

.report-content .table-container .border-bottom-dotted-thin {
	border-bottom: 1px dotted #74726F;
}

.report-content .table-container .border-bottom-dotted-thick {
	border-bottom: 2px dotted #74726F;
}

.report-content .table-container .border-bottom-solid-thin-white {
	border-bottom: 1px solid #FFFFFF;
}

.report-content .table-container .border-bottom-solid-thick-white {
	border-bottom: 2px solid #FFFFFF;
}

.report-content .table-container .border-bottom-solid-extra-thick-white {
	border-bottom: 3px solid #FFFFFF;
}

.report-content .table-container .border-bottom-dotted-thin-white {
	border-bottom: 1px dotted #FFFFFF;
}

.report-content .table-container .border-bottom-dotted-thick-white {
	border-bottom: 2px dotted #FFFFFF;
}

.report-content .table-container .border-bottom-dotted-extra-thick-white {
	border-bottom: 3px dotted #FFFFFF;
}

.report-content .table-container .border-bottom-solid-thick-gray {
	border-bottom: 2px solid #A6A6A6;
}

.report-content .table-container .padding-left-small {
	padding-left: 15px !important;
}

.report-content .table-container .padding-left-large {
	padding-left: 30px !important;
}

.report-content .table-container .text-bold {
	font-weight: bold;
}

.report-content .table-container .text-italic {
	font-style: italic;
}

.report-content .table-container .text-white {
	color: #FFFFFF;
}

.report-content .table-container .text-red {
	color: #9A3D37;
}

.report-content .table-container table.data-table .text-red {
	color: #a43725;
}

.report-content .table-container .table-background-light-gray,
.report-content .table-container .background-light-gray {
	background: rgba(155, 150, 125, 0.2);
}

.report-content .table-container .background-gray {
	background: rgba(5, 5, 5, 0.26);
}

.report-content .table-container .background-gray-two {
    background: rgba(90, 90, 90, 0.2);
}

.report-content .table-container .background-gray-three {
    background: rgba(130, 130, 130, 0.2);
}

.report-content .table-container .background-gray-four {
    background: rgba(0, 0, 0, 0.35);
}

.report-content .table-container .background-dark-gray {
	background: rgba(0, 0, 0, 0.608);
}

.report-content .table-container .table-background-warm-ebeae5,
.report-content .table-container .background-warm-ebeae5 {
    background: #EBEAE5;
}

.report-content .table-container .table-background-warm-cccabc,
.report-content .table-container .background-warm-cccabc {
    background: #CCCABC;
}

.report-content .table-container .table-background-warm-f7f3dd,
.report-content .table-container .background-warm-f7f3dd {
    background: #F7F3DD;
}

.report-content .table-container .table-background-warm-7c7a72,
.report-content .table-container .background-warm-7c7a72 {
    background: #7C7A72;
}

.report-content .table-container .table-background-warm-5b5e5d,
.report-content .table-container .background-warm-5b5e5d {
    background: #5B5E5D;
}

.report-content .table-container .table-background-warm-9a998f,
.report-content .table-container .background-warm-9a998f {
    background: #9A998F;
}

.report-content .table-container .table-background-warm-b8b3a2,
.report-content .table-container .background-warm-b8b3a2 {
    background: #B8B3A2;
}

.report-content .table-container .table-background-warm-bd000c,
.report-content .table-container .background-warm-bd000c {
    background: #BD000C;
}

.report-content .table-container .table-background-warm-8a000a,
.report-content .table-container .background-warm-8a000a {
    background: #8A000A;
}

.report-content .table-container .table-background-warm-620004,
.report-content .table-container .background-warm-620004 {
    background: #620004;
}

.report-content .table-container .background-white {
	background: #FFFFFF;
}

.report-content table.table-with-background th,
.report-content table.table-with-background td {
    padding: 1rem;
}

.report-content table:not(.text-table) tbody tr:not(.empty-row):hover {
    background: #F7F7F7;
}

.report-content .table-container cite:last-child {
    margin-bottom: 0;
}

.report-content .table-container .footnote-list {
	list-style-position: inside;
	
	margin: 0;
	padding: 0;
	
	counter-reset: footnote-list-counter;
    
	font-size: 0.75rem;
}

.report-content .table-container .footnote-list li {
	padding-right: 20px;
	
	counter-increment: footnote-list-counter;
    
    display: inline;
}

.report-content .table-container .footnote-list li::before {
	content: counter(footnote-list-counter);
	
	font-weight: bold;
	font-size: 10px;
	
	color: #9A3D37;
    
    margin-right: 5px;
}

.report-content .footnote {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	
	position: relative;
	width: 14px;
	height: 14px;
    vertical-align: middle;
	
	font-weight: bold !important;
    font-style: normal !important;
    font-size: 12px !important;
	line-height: 14px !important;
	
	margin: 0 0 3px 5px;
	
	background: #7c7a72 !important;
	color: #FFFFFF !important;
	
	cursor: pointer;
}

.report-content table .footnote {
    margin-bottom: 0;
}

.report-content .footnote:before {
	content: '';
	display: block;
	
	position: absolute;
	
	width: 28px;
	height: 28px;
}

.report-content .footnote:hover {
	text-decoration: none;
}

.report-content .audited-paragraph {
    margin-bottom: 0.25rem;
}

.report-content .audited-end-paragraph {
    margin-top: 0.25rem;
    
    text-align: right;
}

.report-content table + .audited-end-paragraph {
    margin-top: -1.25rem;
}

.report-content .audited {
    font-size: 0.75rem;
    font-weight: bold;
    
    color: #E0B818;
}

.report-content .audited-end {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 10px 5px;
    border-color: transparent transparent #E0B818 transparent;
    
    display: inline-block;
}

.report-content .quarterly,
.report-content .pillar-3 {
    color: #3C8287;
    
    font-size: 0.75rem;
    font-weight: bold;
}

.report-content .quarterly-end,
.report-content .pillar-3-end {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 10px 5px;
    border-color: transparent transparent #3C8287 transparent;
    
    display: inline-block;
}

.report-content .semiannual {
    color: #be0000;
    
    font-size: 0.75rem;
    font-weight: bold;
}

.report-content .semiannual-end {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 10px 5px;
    border-color: transparent transparent #be0000 transparent;
    
    display: inline-block;
}

.report-content .icon-bullet {
    font-size: 1.25rem;
    
    display: block;
    margin: -0.75rem 0;
}

.report-content .icon-arrow {
    font-size: 0.9rem;
    
    display: block;
    margin: -0.75rem 0;
}

.report-content .cv-entry {
    margin-bottom: 3.125rem;
}

.report-content .cv-entry .cv-picture {
    margin-bottom: 0.75rem;
}

.report-content .cv-entry .cv-picture img {
    max-width: 66.66667%;
}

.report-content .cv-entry .cv-picture-line-above {
    border-top: 1px solid #000000;
    padding-top: 3.125rem;
}

.report-content .cv-entry .cv-name {
    font-size: 1.5rem;
    
    color: #E60000;
    
    margin-bottom: 0.25rem;
}

.report-content .cv-bio {
    display: none;
}

.report-content .cv-bio.open {
    display: block;
}

.report-content .cv-bio.open + .btn-open-bio {
    display: none;
}

.report-content .btn-open-bio i,
.report-content .btn-close-bio i {
    color: #E60000;
}

.report-content .cv-subtitle {
    font-weight: bold;
    
    margin-bottom: 0;
}

.report-content .cv-bio table.text-table td:first-child {
    padding-left: 0;
    white-space: nowrap;
}

.report-content .cv-bio table.text-table th,
.report-content .cv-bio table.text-table td {
    font-size: 1rem;
}

/**
 * Back to top
 */
.back-to-top-button-container {
    display: flex;
    justify-content: flex-end;
    
    padding: 0 3rem 3rem 0;
}

.back-to-top-button-container a {
    width: 4rem;
    height: 4rem;
    
    border-radius: 2rem;
    
    background: #dcdbd2;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-to-top-button-container a:hover {
    background: #cccabc;
    text-decoration: none;
}

.back-to-top-button-container a i {
    font-size: 1.25rem;
}

/**
 * Other tabs
 */
.search-tab h3,
.tags-tab h3 {
    font-size: 2rem;
    font-weight: 300;
    
    margin: 1.25rem 0;
}

/**
 * Search
 */
.search-tab .hidden {
    display: none;
}
 
.search-field-container {
    margin-bottom: 5rem;
}

.search-field-container .reset-container {
    margin-bottom: 1rem;
}

.search-field-container .reset-container.invisible {
    visibility: hidden;
}

.search-field-container .form-group {
    display: flex;
    
    border: 1px solid #2B2B2B;
    border-radius: 2px;
}

.search-field-container .form-group .search-field {
    flex: 1;
    
    border: 0;
    
    padding: 0 10px;
    
    font-family: Frutiger, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 300;
}

.search-field-container .form-group .search-button {
    min-width: 2.125rem;
    height: 2.125rem;
    
    background: #2B2B2B;
    
    border: 0;
    border-radius: 0;
    
    color: #FFFFFF;
    
    cursor: pointer;
    
    padding: 0 0.7rem;
}

.search-field-container .no-search-results {
    margin-top: 1.5rem;
    
    font-size: 1.25rem;
    color: #757575;
}

.search-field-container .form-group .search-field:focus,
.search-field-container .form-group .search-button:focus {
    outline: none;
}

.search-field-container .no-search-results {
    
}

.search-result-item {
    padding-bottom: 1.75rem;
	margin-bottom: 1.75rem;
    
    position: relative;
}

.search-result-item:after {
    content: '';
    display: block;
    
    background: #D9D9D9;
    
    position: absolute;
    left: -1.5rem;
    right: -1.5rem;
    bottom: 0;
    
    height: 1px;
}

.search-result-item:last-child:after {
    display: none;
}

.search-result-item .search-result-title,
.search-result-item .search-result-snippet {
	cursor: pointer;
}

.search-result-item .search-result-title {
	font-weight: bold;
    line-height: 1.375rem;
	
	margin-bottom: 1rem;
}

.search-result-item .search-result-snippet {
    line-height: 1.5rem;
}

.search-result-item .search-result-snippet + .search-result-snippet {	
	margin-top: 1rem;
}

mark {
    position: relative;
    
    background: none;
}

mark:after {
    content: '';
    display: inline-block;
    
    background-color: #D9D9D9;
    
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    
    z-index: -1;
}

/**
 * Tags
 */
.tags-container {
    margin-bottom: 5rem;
}

.tags-container .reset-container {
    margin-bottom: 1rem;
}

.tags-container .reset-container.invisible {
    visibility: hidden;
}

.tags-container .tags-list button {
    background: #F0F0F0;
    border: 1px solid #F0F0F0;
    
    border-radius: 12px;
    
    font-size: 0.875rem;
    padding: 0 1.5rem;
    
    cursor: pointer;
    
    margin-right: 0.5rem;
    margin-bottom: 0.7rem;
    
    min-height: 24px;
}

.tags-container .tags-list button:hover {
    background: #FFFFFF;
    border: 1px solid #2B2B2B;
}

.tags-container .tags-list button.active {
    background: #2B2B2B;
    border: 1px solid #2B2B2B;
    color: #FFFFFF;
}

.report-content .tag-result-item {
    border-top: 1px solid #CCCCCC;
    
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.report-content .tag-result-item:last-child {
    min-height: 40vh;
}

.tag-result-item-breadcrumbs {
    padding-top: 2rem;
    
    font-size: 0.875rem;
}

.tag-result-item .tag-placeholder-area {
    margin-bottom: 1rem;
}

.tag-result-item .tag-placeholder-area div {
    background: #000000;
    opacity: 0.07;
    
    min-height: 1rem;
    
    display: inline-block;
    
    border-radius: 0.25rem;
    
    width: 90%;
}

.tag-result-item .tag-placeholder-area div:nth-child(2) {
    width: 80%;
}

.tag-result-item .tag-placeholder-area div:nth-child(3) {
    width: 85%;
}

.tag-result-item .tag-placeholder-area div:nth-child(4) {
    width: 60%;
}

/**
 * Tooltip
 */
.tooltip {
	position: absolute;
	max-width: 300px;
	
	background: #FFFFFF;
	
	padding: 1.25rem;
	
	font-size: 14px;
	
	-webkit-box-shadow: 7px 7px 20px 0px rgba(0,0,0,0.5); 
	box-shadow: 7px 7px 20px 0px rgba(0,0,0,0.5);
	
	border-radius: 5px;
    
    z-index: 5;
}

/**
 * Button
 */
.chapter-buttons {
    display: flex;
    
    margin-top: 4rem;
}

.report-content .chapter-buttons + h1,
.report-content .chapter-buttons + h2 {
    margin-top: 0;
}
 
.btn {
    background: #dcdbd2;
    
    border-radius: 1rem;
    border: none;
    
    min-height: 2rem;
    padding: 0.5rem 1.2rem;
    
    font-size: 0.75rem;
    line-height: 1rem;
    
    display: inline-flex;
    align-items: center;
    
    margin-right: 0.5rem;
    
    cursor: pointer;
}

.btn-action {
    font-weight: bold;
}

.btn:hover {
    background: #cccabc;
    
    text-decoration: none;
}

.btn i {
    font-size: 0.875rem;
    
    margin-right: 0.5rem;
}

.btn i.uri-download {
    font-size: 12px;
}

.btn i.uri-link {
    font-size: 17px;
}

.text-btn {
    background: transparent;
    border: none;
    
    cursor: pointer;
    
    display: inline-flex;
    align-items: center;
    
    padding: 0;
    
    font-size: 0.875rem;
    color: #757575;
}

.text-btn i {
    margin-right: 0.5rem;
    
    font-size: 0.6rem;
}

.report-content .row {
    display: flex;
    margin: 0 -15px;
}

.report-content .row .col {
    width: 33.33333%;
    padding: 0 15px;
}

.report-content .row.two-col .col {
    width: 50%;
}

/**
 * Book navigation
 */
.report-book-navigation {
    display: flex;
    
    margin-top: 5rem;
}

.report-book-navigation .left-column,
.report-book-navigation .right-column {
    width: 50%;
}

.report-book-navigation .right-column {
    text-align: right;
}

.report-book-navigation .btn {
    font-size: 0.875rem;
}

.report-book-navigation .left-column .btn:before,
.report-book-navigation .right-column .btn:after {
    content: '';
    display: block;
    
    font-family: 'ubs-report-icons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.report-book-navigation .left-column .btn:before {
    content: "\e901";
    margin-right: 0.5rem;
    margin-left: -0.5rem;
}

.report-book-navigation .right-column .btn:after {
    content: "\e902";
    margin-right: -0.5rem;
    margin-left: 0.5rem;
}

/**
 * Content pages
 */
.content-page .intro-text {
    font-size: 1.5rem;
    color: #757575;
}

.content-page .text-center {
    text-align: center;
}

.front-page h1.front-page-title {
    text-align: center;
    font-size: 7.5rem;
    line-height: 5rem;
    
    margin-top: 0;
    margin-bottom: 4.5rem;
}

.front-page h1.front-page-title .small {
    display: block;
    font-size: 2.5rem;
    margin-left: -1rem;
}

.front-page .rows {
    overflow: hidden;
}

.front-page .row.two-col {
    margin: 0 -25px;
    height: 5.5rem;
}

.front-page .row.two-col .col {
    padding: 0 25px;
    display: flex;
}

.front-page a:not(.btn):not(.footnote) {
    flex: 1;
    display: flex;
    align-items: center;
    
    padding: 0 3rem 0 0;
    
    position: relative;
    
    font-size: 1.5rem;
    line-height: 1.25em;
    
    border-bottom: 1px solid #000000;
}

.front-page .row.two-col:first-child a:not(.btn):not(.footnote) {
    border-top: 1px solid #000000;
}

.front-page a.continue-link {
    font-weight: bold;
    
    font-size: 1.25rem;
}

.front-page a:not(.btn):not(.footnote):hover {
    text-decoration: none;
    color: #e60000;
}

.front-page a:not(.btn):not(.footnote):after {
    content: "\e915";
    display: inline-flex;
    align-items: center;
    
    font-family: 'ubs-report-icons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    color: #e60000;
    
    font-size: 4rem;
    
    margin-right: -1.3rem;
    transition: margin-right 0.25s;
    
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.front-page a:not(.btn):not(.footnote):hover:after {
    margin-right: 0;
}

.front-page img {
    margin-top: 3rem;
}

.contacts-page h2.contacts-title {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.25;
    
    border-bottom: 1px solid #000000;
    
    color: #e60000;
    
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.contacts-page table td {
    font-size: 1rem;
}

/**
 * Loader
 */
.loader-container {
    display: none;
}

.loader-container.visible {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    
    background: rgba(255, 255, 255, 0.9);
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    overflow: hidden;
}
 
.loader,
.loader:after {
    border-radius: 50%;
    
    width: 10em;
    height: 10em;
}

.loader {
    position: relative;
    margin: 60px auto;
    
    font-size: 10px;
    text-indent: -9999em;
    
    background-image: url('../images/loader.svg');
    background-repeat: no-repeat;
    background-position: center;
    
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    
    -webkit-animation: pageLoader 1.1s infinite linear;
    animation: pageLoader 1.1s infinite linear;
}

@-webkit-keyframes pageLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes pageLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/**
 * simple lightbox image
 */
.slbImage {
    padding: 0;
    margin: 5rem 0;
    border: 1rem solid #FFFFFF;
    max-height: none !important;
}

/**
 * ID label
 */
.id-label,
.table-label,
.refer-to-label {
    margin-right: 0.5rem;
    
    display: inline-block;
    
    position: absolute;
    right: 100%;
    
    text-align: right;
}

.id-label,
.table-label-okay,
.table-label-error,
.refer-to-label-okay,
.refer-to-label-error {
    background: #0000FF;
    
    color: #FFFFFF;
    
    font-size: 12px;
    font-weight: normal;
    
    padding: 3px 7px;

    white-space: nowrap;
    
    margin-bottom: 1px;
    
    display: inline-block;
}

.table-label,
.refer-to-label {
    margin-top: 25px;
}

.table-label-okay,
.refer-to-label-okay {
    background: #008800;
}

.table-label-error,
.refer-to-label-error {
    background: #DD0000;
}

.sub-book-nav {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sub-book-nav .sub-book-nav-item {
    display: inline-block;
    margin: 0 0.2rem 0.5rem 0;
}

.sub-book-nav .sub-book-nav-item:before {
    content: unset !important;
}

.sub-book-nav .sub-book-nav-item a {
    border: 2px solid #b8b29c;
    border-radius: 10rem;
    
    min-height: 2rem;
    padding: 0.5rem 1.2rem;
    
    font-size: 1rem;
    
    display: flex;
    align-items: center;
}

.sub-book-nav .sub-book-nav-item.active a {
    font-weight: bold;
}

.sub-book-nav .sub-book-nav-item.active a,
.sub-book-nav .sub-book-nav-item a:hover {
    text-decoration: none;
    
    border-color: #bd000c;
}

.report-sub-book {
    display: none;
}

.report-sub-book.active {
    display: block;
}

h2.sub-book-main-title {
    margin-top: 1rem;
}
