
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d292ec7e2f0faee2ac793595.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.176000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a1161d68ff3b1325b6cc3a1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_587e5853dda5425382c0741f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_93fe36c9ee59c1cbab0218f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.198000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e84a569d956f730ab10221be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.198000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c3f40edbb3c3f59df54c6dde.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_61241ed783e60869cc1c0082.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0b1e594eceee3cce949b2fee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3df3ffdd05064767c8217040.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f54776c492789698182c3b63.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.133000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_51430f5587823380d33c4dfa.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_983db314ca2d5fce943cf610.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_61c12e60db79f5ed5bbe0619.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7fbc5c00d59b5975132e6916.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.176000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b5695e5c19c09561c93116a2.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.880000px;}
.v5{vertical-align:-18.000000px;}
.v1{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.v6{vertical-align:26.640000px;}
.ls40{letter-spacing:-0.648000px;}
.ls3c{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.308400px;}
.ls1e{letter-spacing:-0.288000px;}
.ls41{letter-spacing:-0.270000px;}
.ls1b{letter-spacing:-0.235200px;}
.ls6{letter-spacing:-0.226200px;}
.ls30{letter-spacing:-0.220800px;}
.ls37{letter-spacing:-0.197400px;}
.ls5{letter-spacing:-0.180000px;}
.ls3d{letter-spacing:-0.162000px;}
.ls2f{letter-spacing:-0.137400px;}
.ls2e{letter-spacing:-0.103800px;}
.ls2c{letter-spacing:-0.094800px;}
.ls42{letter-spacing:-0.092400px;}
.ls2a{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.076200px;}
.ls33{letter-spacing:-0.072000px;}
.ls27{letter-spacing:-0.045360px;}
.ls26{letter-spacing:-0.032400px;}
.lse{letter-spacing:-0.031680px;}
.ls28{letter-spacing:-0.029520px;}
.ls20{letter-spacing:-0.006480px;}
.ls4{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.021600px;}
.ls21{letter-spacing:0.026640px;}
.ls38{letter-spacing:0.040320px;}
.ls35{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.080640px;}
.ls9{letter-spacing:0.087840px;}
.ls25{letter-spacing:0.098400px;}
.ls23{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.138240px;}
.ls39{letter-spacing:0.157680px;}
.ls2d{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.195000px;}
.lsd{letter-spacing:0.201000px;}
.ls3f{letter-spacing:0.234000px;}
.ls0{letter-spacing:0.252000px;}
.ls31{letter-spacing:0.257760px;}
.ls32{letter-spacing:0.261360px;}
.ls3{letter-spacing:0.271440px;}
.ls3b{letter-spacing:0.277680px;}
.ls8{letter-spacing:0.277800px;}
.ls29{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.291000px;}
.ls12{letter-spacing:0.297600px;}
.ls1{letter-spacing:0.321120px;}
.ls10{letter-spacing:0.326400px;}
.ls19{letter-spacing:0.331800px;}
.ls1a{letter-spacing:0.340800px;}
.ls14{letter-spacing:0.349200px;}
.ls2b{letter-spacing:0.352200px;}
.ls2{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.375000px;}
.ls16{letter-spacing:0.420600px;}
.ls36{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.499200px;}
.ls1f{letter-spacing:0.516000px;}
.ls1d{letter-spacing:0.624000px;}
.ls13{letter-spacing:0.684000px;}
.lsb{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.822000px;}
.ls11{letter-spacing:26.586720px;}
.lsf{letter-spacing:29.466720px;}
.lsa{letter-spacing:849.216000px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(111,164,219),0 0.015em rgb(111,164,219),0.015em 0 rgb(111,164,219),0 -0.015em  rgb(111,164,219);}
.sc5{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc4{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc3{text-shadow:-0.015em 0 rgb(3,72,96),0 0.015em rgb(3,72,96),0.015em 0 rgb(3,72,96),0 -0.015em  rgb(3,72,96);}
.sc2{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.sc1{text-shadow:-0.015em 0 rgb(129,180,226),0 0.015em rgb(129,180,226),0.015em 0 rgb(129,180,226),0 -0.015em  rgb(129,180,226);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc6{-webkit-text-stroke:0.015em rgb(111,164,219);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(3,72,96);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(129,180,226);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-59.760000px;}
.ws34{word-spacing:-16.912080px;}
.ws13{word-spacing:-16.281120px;}
.ws15{word-spacing:-16.173120px;}
.ws18{word-spacing:-16.032120px;}
.ws26{word-spacing:-16.009320px;}
.ws11{word-spacing:-15.988920px;}
.wse{word-spacing:-15.778920px;}
.ws19{word-spacing:-15.755520px;}
.wsc{word-spacing:-15.707520px;}
.wsd{word-spacing:-15.684720px;}
.ws1c{word-spacing:-15.683760px;}
.ws10{word-spacing:-15.657120px;}
.ws16{word-spacing:-15.650640px;}
.ws4{word-spacing:-15.636120px;}
.ws33{word-spacing:-15.627600px;}
.ws1a{word-spacing:-15.624720px;}
.ws1d{word-spacing:-15.611760px;}
.ws20{word-spacing:-15.570000px;}
.ws27{word-spacing:-15.562320px;}
.ws3{word-spacing:-15.553320px;}
.ws21{word-spacing:-15.534000px;}
.ws2b{word-spacing:-15.459720px;}
.ws17{word-spacing:-15.421920px;}
.ws1e{word-spacing:-15.390000px;}
.ws1{word-spacing:-15.282000px;}
.ws22{word-spacing:-15.192000px;}
.ws2{word-spacing:-15.132120px;}
.ws0{word-spacing:-15.102000px;}
.wsf{word-spacing:-15.049920px;}
.ws31{word-spacing:-15.012000px;}
.ws23{word-spacing:-14.994000px;}
.ws2c{word-spacing:-14.958000px;}
.ws2f{word-spacing:-14.382000px;}
.ws2e{word-spacing:-14.166000px;}
.ws30{word-spacing:-14.148000px;}
.ws24{word-spacing:-14.058000px;}
.ws2d{word-spacing:-13.986000px;}
.ws7{word-spacing:-13.651920px;}
.wsb{word-spacing:-13.620240px;}
.wsa{word-spacing:-12.839880px;}
.ws9{word-spacing:-12.562680px;}
.ws8{word-spacing:-10.941120px;}
.ws6{word-spacing:-9.992160px;}
.ws2a{word-spacing:-9.864000px;}
.ws29{word-spacing:-9.504000px;}
.ws12{word-spacing:-9.432000px;}
.ws1f{word-spacing:-9.372960px;}
.ws28{word-spacing:-9.360000px;}
.ws14{word-spacing:-9.144000px;}
.ws25{word-spacing:-8.677440px;}
.ws32{word-spacing:-8.585040px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-15.657120px;}
._14{margin-left:-4.091520px;}
._13{margin-left:-2.460240px;}
._2{margin-left:-1.018560px;}
._1{width:1.134000px;}
._1f{width:2.154240px;}
._3{width:3.167280px;}
._10{width:5.118960px;}
._4{width:6.373680px;}
._24{width:7.415760px;}
._11{width:8.538480px;}
._12{width:10.130400px;}
._21{width:11.505600px;}
._26{width:12.642480px;}
._22{width:13.653840px;}
._25{width:15.238560px;}
._1e{width:16.510320px;}
._9{width:17.622720px;}
._1a{width:18.981840px;}
._15{width:20.652240px;}
._16{width:22.329600px;}
._1c{width:24.281280px;}
._23{width:25.457760px;}
._a{width:26.589600px;}
._20{width:28.771680px;}
._27{width:29.813040px;}
._1b{width:30.822720px;}
._d{width:49.944960px;}
._19{width:51.302880px;}
._8{width:53.920800px;}
._7{width:55.325520px;}
._1d{width:56.494800px;}
._c{width:63.349920px;}
._5{width:67.944960px;}
._f{width:71.732880px;}
._6{width:78.091200px;}
._18{width:81.193440px;}
._b{width:95.299200px;}
._e{width:141.639840px;}
._17{width:374.873040px;}
.fc5{color:transparent;}
.fc4{color:rgb(68,114,196);}
.fc3{color:rgb(129,180,226);}
.fc2{color:rgb(9,56,77);}
.fc1{color:rgb(3,72,96);}
.fc7{color:rgb(111,164,219);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.120000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y29{bottom:2.520000px;}
.y37{bottom:2.700000px;}
.y5b{bottom:2.880000px;}
.y63{bottom:3.060000px;}
.y6f{bottom:3.240000px;}
.y22{bottom:3.780000px;}
.y23{bottom:5.400000px;}
.y30{bottom:8.460000px;}
.y4d{bottom:10.440000px;}
.ya4{bottom:11.520000px;}
.ya3{bottom:12.420000px;}
.y28{bottom:14.400000px;}
.y36{bottom:14.580000px;}
.y5a{bottom:15.660000px;}
.y5f{bottom:17.640000px;}
.y6c{bottom:17.685000px;}
.y4a{bottom:17.820000px;}
.y25{bottom:20.340000px;}
.y33{bottom:20.520000px;}
.ya7{bottom:23.940000px;}
.y17{bottom:24.660000px;}
.y19{bottom:24.840000px;}
.y4c{bottom:25.020000px;}
.y6a{bottom:25.065000px;}
.y65{bottom:25.200000px;}
.y15{bottom:25.230000px;}
.y27{bottom:26.280000px;}
.y35{bottom:26.460000px;}
.y59{bottom:28.440000px;}
.y6{bottom:30.456000px;}
.y44{bottom:31.896000px;}
.y62{bottom:32.220000px;}
.y6b{bottom:32.265000px;}
.y49{bottom:32.400000px;}
.ya6{bottom:36.210000px;}
.y26{bottom:38.160000px;}
.y34{bottom:38.340000px;}
.y4b{bottom:39.600000px;}
.y5d{bottom:39.780000px;}
.y58{bottom:41.220000px;}
.y61{bottom:46.980000px;}
.y6e{bottom:47.160000px;}
.y2e{bottom:50.040000px;}
.y5{bottom:53.856000px;}
.y57{bottom:54.000000px;}
.y72{bottom:61.554000px;}
.y2d{bottom:61.965000px;}
.y93{bottom:63.396000px;}
.y56{bottom:66.780000px;}
.yb6{bottom:74.196000px;}
.y4{bottom:77.076000px;}
.y4f{bottom:79.560000px;}
.y73{bottom:85.536000px;}
.yc9{bottom:86.256000px;}
.yf3{bottom:86.976000px;}
.y92{bottom:90.936000px;}
.y55{bottom:92.385000px;}
.y71{bottom:99.396000px;}
.yb5{bottom:101.736000px;}
.y54{bottom:105.165000px;}
.yc8{bottom:113.796000px;}
.yf2{bottom:114.516000px;}
.yd2{bottom:114.696000px;}
.y53{bottom:118.125000px;}
.y91{bottom:118.296000px;}
.y52{bottom:130.905000px;}
.yc7{bottom:141.156000px;}
.yf1{bottom:141.876000px;}
.y51{bottom:143.685000px;}
.yb4{bottom:147.096000px;}
.y50{bottom:156.465000px;}
.y90{bottom:163.830000px;}
.yc6{bottom:168.510000px;}
.yf0{bottom:169.230000px;}
.y70{bottom:173.190000px;}
.yb3{bottom:174.450000px;}
.y8f{bottom:191.190000px;}
.yc5{bottom:196.050000px;}
.yef{bottom:196.770000px;}
.yb2{bottom:201.990000px;}
.y8e{bottom:218.550000px;}
.yc4{bottom:223.410000px;}
.yee{bottom:224.490000px;}
.yb1{bottom:229.350000px;}
.y6d{bottom:232.410000px;}
.y1e{bottom:237.270000px;}
.y8d{bottom:246.090000px;}
.yc3{bottom:250.950000px;}
.yed{bottom:251.850000px;}
.yb0{bottom:256.710000px;}
.y1d{bottom:264.630000px;}
.y8c{bottom:273.450000px;}
.yc2{bottom:278.310000px;}
.yec{bottom:279.210000px;}
.yaf{bottom:284.250000px;}
.y1c{bottom:289.470000px;}
.y69{bottom:291.810000px;}
.y8b{bottom:300.855000px;}
.yeb{bottom:306.795000px;}
.y1b{bottom:309.495000px;}
.yae{bottom:311.655000px;}
.yc1{bottom:322.455000px;}
.y8a{bottom:328.395000px;}
.yad{bottom:339.195000px;}
.yc0{bottom:347.115000px;}
.y68{bottom:351.075000px;}
.yea{bottom:352.155000px;}
.y89{bottom:355.755000px;}
.yac{bottom:366.555000px;}
.y1a{bottom:373.935000px;}
.ye9{bottom:379.695000px;}
.y88{bottom:383.295000px;}
.ybf{bottom:387.435000px;}
.yab{bottom:393.915000px;}
.ye8{bottom:407.055000px;}
.y67{bottom:410.295000px;}
.y87{bottom:410.655000px;}
.yaa{bottom:421.455000px;}
.ye7{bottom:434.415000px;}
.y86{bottom:438.015000px;}
.y18{bottom:438.375000px;}
.y40{bottom:459.075000px;}
.ye6{bottom:461.955000px;}
.y85{bottom:465.555000px;}
.y66{bottom:469.515000px;}
.y3f{bottom:472.935000px;}
.yd1{bottom:481.395000px;}
.ye5{bottom:489.315000px;}
.y84{bottom:492.915000px;}
.ya9{bottom:498.855000px;}
.y3e{bottom:500.475000px;}
.y16{bottom:502.995000px;}
.ye4{bottom:516.675000px;}
.y83{bottom:520.275000px;}
.ya8{bottom:524.775000px;}
.yd0{bottom:526.935000px;}
.y3d{bottom:528.015000px;}
.y64{bottom:528.735000px;}
.y3c{bottom:543.675000px;}
.ye3{bottom:544.215000px;}
.y82{bottom:547.815000px;}
.ya5{bottom:550.515000px;}
.ycf{bottom:554.295000px;}
.y3b{bottom:559.335000px;}
.y14{bottom:567.435000px;}
.ye2{bottom:571.575000px;}
.y81{bottom:575.175000px;}
.yce{bottom:581.685000px;}
.y3a{bottom:586.905000px;}
.y60{bottom:588.165000px;}
.ye1{bottom:599.145000px;}
.y80{bottom:602.745000px;}
.ya2{bottom:603.285000px;}
.ycd{bottom:609.225000px;}
.y39{bottom:614.445000px;}
.ye0{bottom:626.505000px;}
.y7f{bottom:630.105000px;}
.ycc{bottom:636.585000px;}
.y13{bottom:646.125000px;}
.y5e{bottom:647.385000px;}
.ydf{bottom:653.865000px;}
.y7e{bottom:657.465000px;}
.ya1{bottom:662.145000px;}
.ycb{bottom:664.125000px;}
.y38{bottom:665.745000px;}
.y12{bottom:670.785000px;}
.ybe{bottom:673.485000px;}
.ya0{bottom:689.685000px;}
.yca{bottom:691.485000px;}
.y32{bottom:693.105000px;}
.y7d{bottom:696.525000px;}
.yde{bottom:699.405000px;}
.y11{bottom:704.445000px;}
.y5c{bottom:707.325000px;}
.yf9{bottom:711.105000px;}
.y9f{bottom:717.045000px;}
.ybd{bottom:718.845000px;}
.y7c{bottom:741.885000px;}
.y31{bottom:744.405000px;}
.y9e{bottom:744.585000px;}
.ydd{bottom:744.765000px;}
.ybc{bottom:746.385000px;}
.yf8{bottom:756.645000px;}
.y10{bottom:760.245000px;}
.y4e{bottom:767.265000px;}
.y7b{bottom:769.425000px;}
.y2f{bottom:771.945000px;}
.ydc{bottom:772.125000px;}
.y9d{bottom:772.485000px;}
.ybb{bottom:773.745000px;}
.y7a{bottom:796.785000px;}
.y2c{bottom:799.485000px;}
.ydb{bottom:799.665000px;}
.y9c{bottom:800.025000px;}
.yba{bottom:801.105000px;}
.yf7{bottom:802.005000px;}
.yf{bottom:818.565000px;}
.yda{bottom:827.025000px;}
.y9b{bottom:827.925000px;}
.yb9{bottom:828.645000px;}
.y79{bottom:835.845000px;}
.yf6{bottom:847.545000px;}
.ye{bottom:852.225000px;}
.yd9{bottom:854.610000px;}
.y9a{bottom:855.510000px;}
.yb8{bottom:856.050000px;}
.y2b{bottom:874.590000px;}
.y78{bottom:881.250000px;}
.yd{bottom:882.690000px;}
.y99{bottom:883.050000px;}
.yb7{bottom:883.590000px;}
.yf5{bottom:892.950000px;}
.yd8{bottom:898.710000px;}
.y77{bottom:908.790000px;}
.y98{bottom:910.950000px;}
.y2a{bottom:914.010000px;}
.yf4{bottom:920.310000px;}
.yd7{bottom:923.370000px;}
.y48{bottom:934.530000px;}
.y76{bottom:936.150000px;}
.y97{bottom:938.310000px;}
.y24{bottom:941.550000px;}
.yd6{bottom:948.030000px;}
.y75{bottom:963.690000px;}
.y96{bottom:965.850000px;}
.yd5{bottom:972.690000px;}
.y21{bottom:992.850000px;}
.y95{bottom:993.210000px;}
.yd4{bottom:997.350000px;}
.y47{bottom:1001.310000px;}
.y74{bottom:1002.570000px;}
.yc{bottom:1003.290000px;}
.y94{bottom:1020.570000px;}
.y46{bottom:1020.750000px;}
.yd3{bottom:1022.010000px;}
.yb{bottom:1036.950000px;}
.y20{bottom:1039.290000px;}
.y43{bottom:1048.110000px;}
.ya{bottom:1061.610000px;}
.y42{bottom:1075.470000px;}
.y1f{bottom:1077.270000px;}
.y9{bottom:1086.270000px;}
.y41{bottom:1102.830000px;}
.y8{bottom:1111.110000px;}
.y3{bottom:1137.060000px;}
.y2{bottom:1164.420000px;}
.y7{bottom:1179.000000px;}
.y45{bottom:1182.060000px;}
.y1{bottom:1191.960000px;}
.h17{height:14.940000px;}
.hd{height:21.240000px;}
.h24{height:24.660000px;}
.h14{height:26.640000px;}
.h11{height:26.820000px;}
.h16{height:26.856000px;}
.h10{height:33.553440px;}
.he{height:36.038880px;}
.h1d{height:36.581760px;}
.h12{height:38.700000px;}
.hb{height:41.631120px;}
.h1e{height:42.258240px;}
.h22{height:44.911440px;}
.h5{height:46.602000px;}
.h3{height:47.130480px;}
.h27{height:47.304000px;}
.h1b{height:48.047040px;}
.ha{height:48.780000px;}
.h25{height:49.356000px;}
.h8{height:49.896000px;}
.h26{height:50.274000px;}
.h15{height:50.400000px;}
.hf{height:50.580000px;}
.h9{height:51.572880px;}
.h29{height:52.349760px;}
.h4{height:52.758000px;}
.h7{height:53.784000px;}
.h2{height:58.385520px;}
.h1a{height:58.500000px;}
.h1f{height:58.536000px;}
.h20{height:58.680000px;}
.h2a{height:59.439023px;}
.h28{height:59.520960px;}
.h18{height:61.423863px;}
.hc{height:62.136000px;}
.h23{height:62.211094px;}
.h19{height:65.884219px;}
.h21{height:73.080000px;}
.h13{height:74.376000px;}
.h6{height:155.615040px;}
.h1c{height:166.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:52.020000px;}
.w1e{width:52.920000px;}
.w18{width:73.296000px;}
.w1b{width:74.016000px;}
.w19{width:83.556000px;}
.w12{width:83.736000px;}
.wd{width:84.456000px;}
.w1d{width:84.996000px;}
.wf{width:94.320000px;}
.wa{width:95.040000px;}
.w1c{width:95.760000px;}
.w15{width:116.280000px;}
.w17{width:130.896000px;}
.w11{width:135.900000px;}
.w13{width:136.296000px;}
.wc{width:136.620000px;}
.we{width:137.016000px;}
.w14{width:148.536000px;}
.w8{width:184.170000px;}
.w6{width:184.530000px;}
.w10{width:222.555000px;}
.wb{width:223.455000px;}
.w4{width:275.250000px;}
.w16{width:307.695000px;}
.w5{width:438.405000px;}
.w9{width:536.505000px;}
.w7{width:536.865000px;}
.w3{width:714.390000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:1.260000px;}
.xc{left:7.020000px;}
.x10{left:8.280000px;}
.x1e{left:9.405000px;}
.x3{left:10.439987px;}
.x2a{left:12.060000px;}
.x33{left:14.400000px;}
.x13{left:16.379987px;}
.x2c{left:20.880000px;}
.x20{left:25.920000px;}
.x32{left:27.900000px;}
.x16{left:30.420000px;}
.x30{left:34.560000px;}
.x31{left:36.180000px;}
.x35{left:37.440000px;}
.x36{left:40.185000px;}
.x1d{left:42.165000px;}
.x21{left:44.820000px;}
.x15{left:47.514000px;}
.x34{left:51.840000px;}
.x1b{left:53.100000px;}
.x29{left:58.140000px;}
.x2f{left:65.370000px;}
.x1a{left:68.400000px;}
.x24{left:74.334000px;}
.xf{left:77.796000px;}
.x1{left:84.995987px;}
.xa{left:93.095987px;}
.x14{left:106.776000px;}
.x18{left:111.645000px;}
.x22{left:120.635987px;}
.x23{left:147.635987px;}
.x17{left:202.530000px;}
.x25{left:243.075000px;}
.x11{left:262.335000px;}
.x8{left:303.374987px;}
.x9{left:353.414987px;}
.xb{left:357.554987px;}
.x26{left:360.075000px;}
.xd{left:361.875000px;}
.x19{left:426.705000px;}
.x2b{left:434.805000px;}
.xe{left:439.304987px;}
.x2{left:440.564987px;}
.x12{left:442.724987px;}
.x4{left:446.504987px;}
.x5{left:450.824987px;}
.x7{left:523.364987px;}
.x2d{left:530.565000px;}
.x1c{left:564.045000px;}
.x2e{left:615.750000px;}
.x1f{left:649.230000px;}
.x27{left:668.490000px;}
.x6{left:808.019987px;}
@media print{
.v7{vertical-align:-18.560000pt;}
.v5{vertical-align:-16.000000pt;}
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.v6{vertical-align:23.680000pt;}
.ls40{letter-spacing:-0.576000pt;}
.ls3c{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.274133pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls41{letter-spacing:-0.240000pt;}
.ls1b{letter-spacing:-0.209067pt;}
.ls6{letter-spacing:-0.201067pt;}
.ls30{letter-spacing:-0.196267pt;}
.ls37{letter-spacing:-0.175467pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls3d{letter-spacing:-0.144000pt;}
.ls2f{letter-spacing:-0.122133pt;}
.ls2e{letter-spacing:-0.092267pt;}
.ls2c{letter-spacing:-0.084267pt;}
.ls42{letter-spacing:-0.082133pt;}
.ls2a{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.067733pt;}
.ls33{letter-spacing:-0.064000pt;}
.ls27{letter-spacing:-0.040320pt;}
.ls26{letter-spacing:-0.028800pt;}
.lse{letter-spacing:-0.028160pt;}
.ls28{letter-spacing:-0.026240pt;}
.ls20{letter-spacing:-0.005760pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.019200pt;}
.ls21{letter-spacing:0.023680pt;}
.ls38{letter-spacing:0.035840pt;}
.ls35{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.071680pt;}
.ls9{letter-spacing:0.078080pt;}
.ls25{letter-spacing:0.087467pt;}
.ls23{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.122880pt;}
.ls39{letter-spacing:0.140160pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.173333pt;}
.lsd{letter-spacing:0.178667pt;}
.ls3f{letter-spacing:0.208000pt;}
.ls0{letter-spacing:0.224000pt;}
.ls31{letter-spacing:0.229120pt;}
.ls32{letter-spacing:0.232320pt;}
.ls3{letter-spacing:0.241280pt;}
.ls3b{letter-spacing:0.246827pt;}
.ls8{letter-spacing:0.246933pt;}
.ls29{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.258667pt;}
.ls12{letter-spacing:0.264533pt;}
.ls1{letter-spacing:0.285440pt;}
.ls10{letter-spacing:0.290133pt;}
.ls19{letter-spacing:0.294933pt;}
.ls1a{letter-spacing:0.302933pt;}
.ls14{letter-spacing:0.310400pt;}
.ls2b{letter-spacing:0.313067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.333333pt;}
.ls16{letter-spacing:0.373867pt;}
.ls36{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.443733pt;}
.ls1f{letter-spacing:0.458667pt;}
.ls1d{letter-spacing:0.554667pt;}
.ls13{letter-spacing:0.608000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.730667pt;}
.ls11{letter-spacing:23.632640pt;}
.lsf{letter-spacing:26.192640pt;}
.lsa{letter-spacing:754.858667pt;}
.ws1b{word-spacing:-53.120000pt;}
.ws34{word-spacing:-15.032960pt;}
.ws13{word-spacing:-14.472107pt;}
.ws15{word-spacing:-14.376107pt;}
.ws18{word-spacing:-14.250773pt;}
.ws26{word-spacing:-14.230507pt;}
.ws11{word-spacing:-14.212373pt;}
.wse{word-spacing:-14.025707pt;}
.ws19{word-spacing:-14.004907pt;}
.wsc{word-spacing:-13.962240pt;}
.wsd{word-spacing:-13.941973pt;}
.ws1c{word-spacing:-13.941120pt;}
.ws10{word-spacing:-13.917440pt;}
.ws16{word-spacing:-13.911680pt;}
.ws4{word-spacing:-13.898773pt;}
.ws33{word-spacing:-13.891200pt;}
.ws1a{word-spacing:-13.888640pt;}
.ws1d{word-spacing:-13.877120pt;}
.ws20{word-spacing:-13.840000pt;}
.ws27{word-spacing:-13.833173pt;}
.ws3{word-spacing:-13.825173pt;}
.ws21{word-spacing:-13.808000pt;}
.ws2b{word-spacing:-13.741973pt;}
.ws17{word-spacing:-13.708373pt;}
.ws1e{word-spacing:-13.680000pt;}
.ws1{word-spacing:-13.584000pt;}
.ws22{word-spacing:-13.504000pt;}
.ws2{word-spacing:-13.450773pt;}
.ws0{word-spacing:-13.424000pt;}
.wsf{word-spacing:-13.377707pt;}
.ws31{word-spacing:-13.344000pt;}
.ws23{word-spacing:-13.328000pt;}
.ws2c{word-spacing:-13.296000pt;}
.ws2f{word-spacing:-12.784000pt;}
.ws2e{word-spacing:-12.592000pt;}
.ws30{word-spacing:-12.576000pt;}
.ws24{word-spacing:-12.496000pt;}
.ws2d{word-spacing:-12.432000pt;}
.ws7{word-spacing:-12.135040pt;}
.wsb{word-spacing:-12.106880pt;}
.wsa{word-spacing:-11.413227pt;}
.ws9{word-spacing:-11.166827pt;}
.ws8{word-spacing:-9.725440pt;}
.ws6{word-spacing:-8.881920pt;}
.ws2a{word-spacing:-8.768000pt;}
.ws29{word-spacing:-8.448000pt;}
.ws12{word-spacing:-8.384000pt;}
.ws1f{word-spacing:-8.331520pt;}
.ws28{word-spacing:-8.320000pt;}
.ws14{word-spacing:-8.128000pt;}
.ws25{word-spacing:-7.713280pt;}
.ws32{word-spacing:-7.631147pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-13.917440pt;}
._14{margin-left:-3.636907pt;}
._13{margin-left:-2.186880pt;}
._2{margin-left:-0.905387pt;}
._1{width:1.008000pt;}
._1f{width:1.914880pt;}
._3{width:2.815360pt;}
._10{width:4.550187pt;}
._4{width:5.665493pt;}
._24{width:6.591787pt;}
._11{width:7.589760pt;}
._12{width:9.004800pt;}
._21{width:10.227200pt;}
._26{width:11.237760pt;}
._22{width:12.136747pt;}
._25{width:13.545387pt;}
._1e{width:14.675840pt;}
._9{width:15.664640pt;}
._1a{width:16.872747pt;}
._15{width:18.357547pt;}
._16{width:19.848533pt;}
._1c{width:21.583360pt;}
._23{width:22.629120pt;}
._a{width:23.635200pt;}
._20{width:25.574827pt;}
._27{width:26.500480pt;}
._1b{width:27.397973pt;}
._d{width:44.395520pt;}
._19{width:45.602560pt;}
._8{width:47.929600pt;}
._7{width:49.178240pt;}
._1d{width:50.217600pt;}
._c{width:56.311040pt;}
._5{width:60.395520pt;}
._f{width:63.762560pt;}
._6{width:69.414400pt;}
._18{width:72.171947pt;}
._b{width:84.710400pt;}
._e{width:125.902080pt;}
._17{width:333.220480pt;}
.fs9{font-size:29.440000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:2.240000pt;}
.y37{bottom:2.400000pt;}
.y5b{bottom:2.560000pt;}
.y63{bottom:2.720000pt;}
.y6f{bottom:2.880000pt;}
.y22{bottom:3.360000pt;}
.y23{bottom:4.800000pt;}
.y30{bottom:7.520000pt;}
.y4d{bottom:9.280000pt;}
.ya4{bottom:10.240000pt;}
.ya3{bottom:11.040000pt;}
.y28{bottom:12.800000pt;}
.y36{bottom:12.960000pt;}
.y5a{bottom:13.920000pt;}
.y5f{bottom:15.680000pt;}
.y6c{bottom:15.720000pt;}
.y4a{bottom:15.840000pt;}
.y25{bottom:18.080000pt;}
.y33{bottom:18.240000pt;}
.ya7{bottom:21.280000pt;}
.y17{bottom:21.920000pt;}
.y19{bottom:22.080000pt;}
.y4c{bottom:22.240000pt;}
.y6a{bottom:22.280000pt;}
.y65{bottom:22.400000pt;}
.y15{bottom:22.426667pt;}
.y27{bottom:23.360000pt;}
.y35{bottom:23.520000pt;}
.y59{bottom:25.280000pt;}
.y6{bottom:27.072000pt;}
.y44{bottom:28.352000pt;}
.y62{bottom:28.640000pt;}
.y6b{bottom:28.680000pt;}
.y49{bottom:28.800000pt;}
.ya6{bottom:32.186667pt;}
.y26{bottom:33.920000pt;}
.y34{bottom:34.080000pt;}
.y4b{bottom:35.200000pt;}
.y5d{bottom:35.360000pt;}
.y58{bottom:36.640000pt;}
.y61{bottom:41.760000pt;}
.y6e{bottom:41.920000pt;}
.y2e{bottom:44.480000pt;}
.y5{bottom:47.872000pt;}
.y57{bottom:48.000000pt;}
.y72{bottom:54.714667pt;}
.y2d{bottom:55.080000pt;}
.y93{bottom:56.352000pt;}
.y56{bottom:59.360000pt;}
.yb6{bottom:65.952000pt;}
.y4{bottom:68.512000pt;}
.y4f{bottom:70.720000pt;}
.y73{bottom:76.032000pt;}
.yc9{bottom:76.672000pt;}
.yf3{bottom:77.312000pt;}
.y92{bottom:80.832000pt;}
.y55{bottom:82.120000pt;}
.y71{bottom:88.352000pt;}
.yb5{bottom:90.432000pt;}
.y54{bottom:93.480000pt;}
.yc8{bottom:101.152000pt;}
.yf2{bottom:101.792000pt;}
.yd2{bottom:101.952000pt;}
.y53{bottom:105.000000pt;}
.y91{bottom:105.152000pt;}
.y52{bottom:116.360000pt;}
.yc7{bottom:125.472000pt;}
.yf1{bottom:126.112000pt;}
.y51{bottom:127.720000pt;}
.yb4{bottom:130.752000pt;}
.y50{bottom:139.080000pt;}
.y90{bottom:145.626667pt;}
.yc6{bottom:149.786667pt;}
.yf0{bottom:150.426667pt;}
.y70{bottom:153.946667pt;}
.yb3{bottom:155.066667pt;}
.y8f{bottom:169.946667pt;}
.yc5{bottom:174.266667pt;}
.yef{bottom:174.906667pt;}
.yb2{bottom:179.546667pt;}
.y8e{bottom:194.266667pt;}
.yc4{bottom:198.586667pt;}
.yee{bottom:199.546667pt;}
.yb1{bottom:203.866667pt;}
.y6d{bottom:206.586667pt;}
.y1e{bottom:210.906667pt;}
.y8d{bottom:218.746667pt;}
.yc3{bottom:223.066667pt;}
.yed{bottom:223.866667pt;}
.yb0{bottom:228.186667pt;}
.y1d{bottom:235.226667pt;}
.y8c{bottom:243.066667pt;}
.yc2{bottom:247.386667pt;}
.yec{bottom:248.186667pt;}
.yaf{bottom:252.666667pt;}
.y1c{bottom:257.306667pt;}
.y69{bottom:259.386667pt;}
.y8b{bottom:267.426667pt;}
.yeb{bottom:272.706667pt;}
.y1b{bottom:275.106667pt;}
.yae{bottom:277.026667pt;}
.yc1{bottom:286.626667pt;}
.y8a{bottom:291.906667pt;}
.yad{bottom:301.506667pt;}
.yc0{bottom:308.546667pt;}
.y68{bottom:312.066667pt;}
.yea{bottom:313.026667pt;}
.y89{bottom:316.226667pt;}
.yac{bottom:325.826667pt;}
.y1a{bottom:332.386667pt;}
.ye9{bottom:337.506667pt;}
.y88{bottom:340.706667pt;}
.ybf{bottom:344.386667pt;}
.yab{bottom:350.146667pt;}
.ye8{bottom:361.826667pt;}
.y67{bottom:364.706667pt;}
.y87{bottom:365.026667pt;}
.yaa{bottom:374.626667pt;}
.ye7{bottom:386.146667pt;}
.y86{bottom:389.346667pt;}
.y18{bottom:389.666667pt;}
.y40{bottom:408.066667pt;}
.ye6{bottom:410.626667pt;}
.y85{bottom:413.826667pt;}
.y66{bottom:417.346667pt;}
.y3f{bottom:420.386667pt;}
.yd1{bottom:427.906667pt;}
.ye5{bottom:434.946667pt;}
.y84{bottom:438.146667pt;}
.ya9{bottom:443.426667pt;}
.y3e{bottom:444.866667pt;}
.y16{bottom:447.106667pt;}
.ye4{bottom:459.266667pt;}
.y83{bottom:462.466667pt;}
.ya8{bottom:466.466667pt;}
.yd0{bottom:468.386667pt;}
.y3d{bottom:469.346667pt;}
.y64{bottom:469.986667pt;}
.y3c{bottom:483.266667pt;}
.ye3{bottom:483.746667pt;}
.y82{bottom:486.946667pt;}
.ya5{bottom:489.346667pt;}
.ycf{bottom:492.706667pt;}
.y3b{bottom:497.186667pt;}
.y14{bottom:504.386667pt;}
.ye2{bottom:508.066667pt;}
.y81{bottom:511.266667pt;}
.yce{bottom:517.053333pt;}
.y3a{bottom:521.693333pt;}
.y60{bottom:522.813333pt;}
.ye1{bottom:532.573333pt;}
.y80{bottom:535.773333pt;}
.ya2{bottom:536.253333pt;}
.ycd{bottom:541.533333pt;}
.y39{bottom:546.173333pt;}
.ye0{bottom:556.893333pt;}
.y7f{bottom:560.093333pt;}
.ycc{bottom:565.853333pt;}
.y13{bottom:574.333333pt;}
.y5e{bottom:575.453333pt;}
.ydf{bottom:581.213333pt;}
.y7e{bottom:584.413333pt;}
.ya1{bottom:588.573333pt;}
.ycb{bottom:590.333333pt;}
.y38{bottom:591.773333pt;}
.y12{bottom:596.253333pt;}
.ybe{bottom:598.653333pt;}
.ya0{bottom:613.053333pt;}
.yca{bottom:614.653333pt;}
.y32{bottom:616.093333pt;}
.y7d{bottom:619.133333pt;}
.yde{bottom:621.693333pt;}
.y11{bottom:626.173333pt;}
.y5c{bottom:628.733333pt;}
.yf9{bottom:632.093333pt;}
.y9f{bottom:637.373333pt;}
.ybd{bottom:638.973333pt;}
.y7c{bottom:659.453333pt;}
.y31{bottom:661.693333pt;}
.y9e{bottom:661.853333pt;}
.ydd{bottom:662.013333pt;}
.ybc{bottom:663.453333pt;}
.yf8{bottom:672.573333pt;}
.y10{bottom:675.773333pt;}
.y4e{bottom:682.013333pt;}
.y7b{bottom:683.933333pt;}
.y2f{bottom:686.173333pt;}
.ydc{bottom:686.333333pt;}
.y9d{bottom:686.653333pt;}
.ybb{bottom:687.773333pt;}
.y7a{bottom:708.253333pt;}
.y2c{bottom:710.653333pt;}
.ydb{bottom:710.813333pt;}
.y9c{bottom:711.133333pt;}
.yba{bottom:712.093333pt;}
.yf7{bottom:712.893333pt;}
.yf{bottom:727.613333pt;}
.yda{bottom:735.133333pt;}
.y9b{bottom:735.933333pt;}
.yb9{bottom:736.573333pt;}
.y79{bottom:742.973333pt;}
.yf6{bottom:753.373333pt;}
.ye{bottom:757.533333pt;}
.yd9{bottom:759.653333pt;}
.y9a{bottom:760.453333pt;}
.yb8{bottom:760.933333pt;}
.y2b{bottom:777.413333pt;}
.y78{bottom:783.333333pt;}
.yd{bottom:784.613333pt;}
.y99{bottom:784.933333pt;}
.yb7{bottom:785.413333pt;}
.yf5{bottom:793.733333pt;}
.yd8{bottom:798.853333pt;}
.y77{bottom:807.813333pt;}
.y98{bottom:809.733333pt;}
.y2a{bottom:812.453333pt;}
.yf4{bottom:818.053333pt;}
.yd7{bottom:820.773333pt;}
.y48{bottom:830.693333pt;}
.y76{bottom:832.133333pt;}
.y97{bottom:834.053333pt;}
.y24{bottom:836.933333pt;}
.yd6{bottom:842.693333pt;}
.y75{bottom:856.613333pt;}
.y96{bottom:858.533333pt;}
.yd5{bottom:864.613333pt;}
.y21{bottom:882.533333pt;}
.y95{bottom:882.853333pt;}
.yd4{bottom:886.533333pt;}
.y47{bottom:890.053333pt;}
.y74{bottom:891.173333pt;}
.yc{bottom:891.813333pt;}
.y94{bottom:907.173333pt;}
.y46{bottom:907.333333pt;}
.yd3{bottom:908.453333pt;}
.yb{bottom:921.733333pt;}
.y20{bottom:923.813333pt;}
.y43{bottom:931.653333pt;}
.ya{bottom:943.653333pt;}
.y42{bottom:955.973333pt;}
.y1f{bottom:957.573333pt;}
.y9{bottom:965.573333pt;}
.y41{bottom:980.293333pt;}
.y8{bottom:987.653333pt;}
.y3{bottom:1010.720000pt;}
.y2{bottom:1035.040000pt;}
.y7{bottom:1048.000000pt;}
.y45{bottom:1050.720000pt;}
.y1{bottom:1059.520000pt;}
.h17{height:13.280000pt;}
.hd{height:18.880000pt;}
.h24{height:21.920000pt;}
.h14{height:23.680000pt;}
.h11{height:23.840000pt;}
.h16{height:23.872000pt;}
.h10{height:29.825280pt;}
.he{height:32.034560pt;}
.h1d{height:32.517120pt;}
.h12{height:34.400000pt;}
.hb{height:37.005440pt;}
.h1e{height:37.562880pt;}
.h22{height:39.921280pt;}
.h5{height:41.424000pt;}
.h3{height:41.893760pt;}
.h27{height:42.048000pt;}
.h1b{height:42.708480pt;}
.ha{height:43.360000pt;}
.h25{height:43.872000pt;}
.h8{height:44.352000pt;}
.h26{height:44.688000pt;}
.h15{height:44.800000pt;}
.hf{height:44.960000pt;}
.h9{height:45.842560pt;}
.h29{height:46.533120pt;}
.h4{height:46.896000pt;}
.h7{height:47.808000pt;}
.h2{height:51.898240pt;}
.h1a{height:52.000000pt;}
.h1f{height:52.032000pt;}
.h20{height:52.160000pt;}
.h2a{height:52.834688pt;}
.h28{height:52.907520pt;}
.h18{height:54.598989pt;}
.hc{height:55.232000pt;}
.h23{height:55.298750pt;}
.h19{height:58.563750pt;}
.h21{height:64.960000pt;}
.h13{height:66.112000pt;}
.h6{height:138.324480pt;}
.h1c{height:148.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:46.240000pt;}
.w1e{width:47.040000pt;}
.w18{width:65.152000pt;}
.w1b{width:65.792000pt;}
.w19{width:74.272000pt;}
.w12{width:74.432000pt;}
.wd{width:75.072000pt;}
.w1d{width:75.552000pt;}
.wf{width:83.840000pt;}
.wa{width:84.480000pt;}
.w1c{width:85.120000pt;}
.w15{width:103.360000pt;}
.w17{width:116.352000pt;}
.w11{width:120.800000pt;}
.w13{width:121.152000pt;}
.wc{width:121.440000pt;}
.we{width:121.792000pt;}
.w14{width:132.032000pt;}
.w8{width:163.706667pt;}
.w6{width:164.026667pt;}
.w10{width:197.826667pt;}
.wb{width:198.626667pt;}
.w4{width:244.666667pt;}
.w16{width:273.506667pt;}
.w5{width:389.693333pt;}
.w9{width:476.893333pt;}
.w7{width:477.213333pt;}
.w3{width:635.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:1.120000pt;}
.xc{left:6.240000pt;}
.x10{left:7.360000pt;}
.x1e{left:8.360000pt;}
.x3{left:9.279988pt;}
.x2a{left:10.720000pt;}
.x33{left:12.800000pt;}
.x13{left:14.559988pt;}
.x2c{left:18.560000pt;}
.x20{left:23.040000pt;}
.x32{left:24.800000pt;}
.x16{left:27.040000pt;}
.x30{left:30.720000pt;}
.x31{left:32.160000pt;}
.x35{left:33.280000pt;}
.x36{left:35.720000pt;}
.x1d{left:37.480000pt;}
.x21{left:39.840000pt;}
.x15{left:42.234667pt;}
.x34{left:46.080000pt;}
.x1b{left:47.200000pt;}
.x29{left:51.680000pt;}
.x2f{left:58.106667pt;}
.x1a{left:60.800000pt;}
.x24{left:66.074667pt;}
.xf{left:69.152000pt;}
.x1{left:75.551988pt;}
.xa{left:82.751988pt;}
.x14{left:94.912000pt;}
.x18{left:99.240000pt;}
.x22{left:107.231988pt;}
.x23{left:131.231988pt;}
.x17{left:180.026667pt;}
.x25{left:216.066667pt;}
.x11{left:233.186667pt;}
.x8{left:269.666655pt;}
.x9{left:314.146655pt;}
.xb{left:317.826655pt;}
.x26{left:320.066667pt;}
.xd{left:321.666667pt;}
.x19{left:379.293333pt;}
.x2b{left:386.493333pt;}
.xe{left:390.493322pt;}
.x2{left:391.613322pt;}
.x12{left:393.533322pt;}
.x4{left:396.893322pt;}
.x5{left:400.733322pt;}
.x7{left:465.213322pt;}
.x2d{left:471.613333pt;}
.x1c{left:501.373333pt;}
.x2e{left:547.333333pt;}
.x1f{left:577.093333pt;}
.x27{left:594.213333pt;}
.x6{left:718.239988pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  