
    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_5111d83ad948f0f2adde04ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8fcd4a062369aa290e2b5dae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_872df794fe7d538c48cb935d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766000;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_3957ee4d3f28cad228873cad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_b8fa134579fbbbfae0d958af.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_e868faa6c697e147b01a06f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892000;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_a80960aeeebfb501d1e6b7de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_e42a94c764d2e8392d7f5e46.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675000;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_1bc4c471064e78ca48486174.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.111000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-34.188000px;}
.v4{vertical-align:-17.358000px;}
.v5{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.542000px;}
.v7{vertical-align:21.702000px;}
.v1{vertical-align:28.212000px;}
.v2{vertical-align:34.188000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.001032px;}
.ls12{letter-spacing:0.001230px;}
.ls2{letter-spacing:0.001500px;}
.ls1{letter-spacing:2.985797px;}
.ls3{letter-spacing:2.988600px;}
.ls4{letter-spacing:2.991797px;}
.lsb{letter-spacing:2.994600px;}
.ls7{letter-spacing:8.367600px;}
.ls5{letter-spacing:10.955674px;}
.ls6{letter-spacing:10.957200px;}
.ls1c{letter-spacing:16.603032px;}
.ls1f{letter-spacing:17.599032px;}
.ls14{letter-spacing:17.748600px;}
.ls17{letter-spacing:17.928600px;}
.lsa{letter-spacing:18.773400px;}
.ls16{letter-spacing:18.846600px;}
.ls1b{letter-spacing:19.590600px;}
.ls22{letter-spacing:19.995308px;}
.ls1e{letter-spacing:20.592600px;}
.lse{letter-spacing:20.808600px;}
.ls1d{letter-spacing:22.122600px;}
.ls1a{letter-spacing:22.362600px;}
.ls10{letter-spacing:22.446600px;}
.lsf{letter-spacing:22.452600px;}
.lsd{letter-spacing:22.818600px;}
.ls8{letter-spacing:22.914600px;}
.ls15{letter-spacing:24.078600px;}
.ls20{letter-spacing:25.818600px;}
.ls21{letter-spacing:26.442600px;}
.ls19{letter-spacing:26.844600px;}
.ls18{letter-spacing:27.654600px;}
.ls13{letter-spacing:32.214600px;}
.ls9{letter-spacing:46.328600px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-64.904742px;}
.ws4c{word-spacing:-14.943900px;}
.ws11{word-spacing:-13.449600px;}
.ws5{word-spacing:-11.955150px;}
.ws52{word-spacing:-10.460700px;}
.ws7{word-spacing:-5.487426px;}
.ws10{word-spacing:-5.057050px;}
.ws12{word-spacing:-3.586545px;}
.ws3f{word-spacing:-0.777083px;}
.ws75{word-spacing:-0.358654px;}
.ws80{word-spacing:-0.239102px;}
.ws58{word-spacing:-0.179327px;}
.ws3{word-spacing:-0.095641px;}
.ws4b{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053200px;}
.ws57{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws7a{word-spacing:0.059776px;}
.ws36{word-spacing:0.119551px;}
.ws50{word-spacing:0.836858px;}
.ws5c{word-spacing:0.896634px;}
.ws68{word-spacing:0.956410px;}
.ws20{word-spacing:1.340063px;}
.ws3a{word-spacing:1.374839px;}
.ws53{word-spacing:1.793268px;}
.ws40{word-spacing:1.853044px;}
.ws6{word-spacing:2.008474px;}
.ws3e{word-spacing:2.211697px;}
.ws5d{word-spacing:2.630126px;}
.ws65{word-spacing:2.689902px;}
.ws95{word-spacing:2.725774px;}
.ws66{word-spacing:2.749678px;}
.ws79{word-spacing:2.809453px;}
.ws49{word-spacing:2.869229px;}
.ws2f{word-spacing:2.929004px;}
.ws54{word-spacing:2.988780px;}
.ws70{word-spacing:3.048556px;}
.ws5a{word-spacing:3.108331px;}
.ws2e{word-spacing:3.168107px;}
.ws74{word-spacing:3.227882px;}
.ws3d{word-spacing:3.287658px;}
.ws18{word-spacing:3.347434px;}
.wsa{word-spacing:3.389299px;}
.ws1a{word-spacing:3.407209px;}
.ws19{word-spacing:3.526760px;}
.ws71{word-spacing:3.945190px;}
.ws30{word-spacing:4.064741px;}
.ws26{word-spacing:4.124516px;}
.ws22{word-spacing:4.160392px;}
.ws62{word-spacing:4.184292px;}
.ws25{word-spacing:4.244068px;}
.ws7d{word-spacing:4.303843px;}
.ws61{word-spacing:4.423394px;}
.ws4d{word-spacing:4.483170px;}
.ws38{word-spacing:4.542946px;}
.ws2c{word-spacing:4.602721px;}
.ws94{word-spacing:4.638598px;}
.ws82{word-spacing:4.722272px;}
.ws41{word-spacing:4.901599px;}
.ws1b{word-spacing:4.961375px;}
.ws37{word-spacing:4.983000px;}
.ws6c{word-spacing:5.140702px;}
.ws88{word-spacing:5.212445px;}
.ws15{word-spacing:5.379804px;}
.ws63{word-spacing:5.439580px;}
.ws45{word-spacing:5.499355px;}
.ws29{word-spacing:5.618906px;}
.ws92{word-spacing:5.642831px;}
.ws8d{word-spacing:5.690651px;}
.ws9b{word-spacing:5.786293px;}
.ws2a{word-spacing:5.858009px;}
.ws46{word-spacing:5.917784px;}
.ws89{word-spacing:5.929754px;}
.ws7f{word-spacing:6.037336px;}
.ws5b{word-spacing:6.156887px;}
.ws27{word-spacing:6.395989px;}
.ws81{word-spacing:6.455765px;}
.wsf{word-spacing:6.455808px;}
.ws9c{word-spacing:6.503602px;}
.ws4e{word-spacing:6.635092px;}
.ws60{word-spacing:6.694867px;}
.ws77{word-spacing:6.754643px;}
.ws21{word-spacing:6.838346px;}
.ws3b{word-spacing:6.874194px;}
.ws59{word-spacing:6.993745px;}
.ws7e{word-spacing:7.292623px;}
.ws39{word-spacing:7.352399px;}
.wse{word-spacing:7.424179px;}
.ws1e{word-spacing:7.460014px;}
.ws72{word-spacing:7.531726px;}
.ws67{word-spacing:7.882454px;}
.ws35{word-spacing:7.890379px;}
.wsb{word-spacing:7.908365px;}
.ws87{word-spacing:7.938220px;}
.ws31{word-spacing:7.950155px;}
.ws4{word-spacing:7.986040px;}
.ws16{word-spacing:8.009930px;}
.ws84{word-spacing:8.032809px;}
.ws85{word-spacing:8.033861px;}
.ws17{word-spacing:8.069706px;}
.ws83{word-spacing:8.129482px;}
.ws3c{word-spacing:8.189257px;}
.ws48{word-spacing:8.488135px;}
.ws8b{word-spacing:8.559887px;}
.ws1c{word-spacing:8.607686px;}
.ws86{word-spacing:8.751170px;}
.ws7c{word-spacing:8.787013px;}
.wsd{word-spacing:8.822938px;}
.ws9d{word-spacing:8.846811px;}
.ws5f{word-spacing:8.906564px;}
.ws69{word-spacing:8.966340px;}
.ws6a{word-spacing:9.324994px;}
.ws6d{word-spacing:9.384769px;}
.ws47{word-spacing:9.504320px;}
.ws76{word-spacing:9.623872px;}
.ws5e{word-spacing:9.743423px;}
.ws99{word-spacing:9.755402px;}
.ws34{word-spacing:9.803198px;}
.ws33{word-spacing:9.852600px;}
.ws32{word-spacing:9.862974px;}
.ws28{word-spacing:9.922750px;}
.ws6e{word-spacing:9.982525px;}
.wsc{word-spacing:10.114099px;}
.ws9e{word-spacing:10.137967px;}
.ws8c{word-spacing:10.185788px;}
.ws4a{word-spacing:10.348500px;}
.ws93{word-spacing:10.424891px;}
.ws55{word-spacing:10.432500px;}
.ws43{word-spacing:10.580281px;}
.ws97{word-spacing:10.807456px;}
.ws42{word-spacing:10.819384px;}
.ws6b{word-spacing:10.879159px;}
.ws98{word-spacing:11.142200px;}
.ws44{word-spacing:11.178037px;}
.ws96{word-spacing:11.237841px;}
.ws78{word-spacing:11.476915px;}
.ws4f{word-spacing:11.596466px;}
.ws91{word-spacing:11.763868px;}
.ws13{word-spacing:11.907221px;}
.ws9{word-spacing:11.907329px;}
.ws2d{word-spacing:12.194222px;}
.ws1d{word-spacing:13.031081px;}
.ws73{word-spacing:13.449510px;}
.ws56{word-spacing:13.688612px;}
.ws51{word-spacing:14.286368px;}
.ws9a{word-spacing:14.346180px;}
.ws7b{word-spacing:14.465695px;}
.ws8e{word-spacing:15.541695px;}
.ws90{word-spacing:16.402466px;}
.ws64{word-spacing:16.796944px;}
.ws6f{word-spacing:17.470500px;}
.ws8a{word-spacing:17.932725px;}
.ws1f{word-spacing:19.367343px;}
.ws2b{word-spacing:19.845499px;}
.ws24{word-spacing:19.893370px;}
.ws1{word-spacing:19.896875px;}
.ws14{word-spacing:29.828024px;}
.ws8f{word-spacing:31.800699px;}
.ws23{word-spacing:573.121950px;}
._5{margin-left:-6.121080px;}
._4{margin-left:-4.782115px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.099891px;}
._6{width:1.966613px;}
._3{width:3.634366px;}
._d{width:13.114787px;}
._e{width:15.756862px;}
._8{width:17.119757px;}
._12{width:20.897546px;}
._10{width:23.177396px;}
._c{width:28.154442px;}
._b{width:29.887800px;}
._11{width:36.339966px;}
._7{width:39.223025px;}
._a{width:40.683270px;}
._9{width:42.918881px;}
._f{width:585.723866px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs10{font-size:40.647600px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.200200px;}
.fse{font-size:53.798400px;}
.fsc{font-size:59.058000px;}
.fsf{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.708400px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:95.641200px;}
.fs9{font-size:101.619000px;}
.y0{bottom:0.000000px;}
.y6{bottom:50.595005px;}
.y4e{bottom:53.050500px;}
.y4d{bottom:67.995000px;}
.y5{bottom:75.795004px;}
.y4c{bottom:87.421500px;}
.ya1{bottom:88.168500px;}
.y80{bottom:88.170000px;}
.y4{bottom:100.995005px;}
.y4b{bottom:102.366000px;}
.ycf{bottom:105.745500px;}
.yb0{bottom:105.969000px;}
.ya0{bottom:106.039500px;}
.y7f{bottom:106.129500px;}
.y4a{bottom:117.310500px;}
.yce{bottom:123.321000px;}
.yaf{bottom:123.768000px;}
.y9f{bottom:123.910500px;}
.y7e{bottom:124.089000px;}
.y23{bottom:139.264499px;}
.ycd{bottom:140.898000px;}
.yae{bottom:141.567000px;}
.y9e{bottom:141.781500px;}
.y7d{bottom:142.048500px;}
.y49{bottom:144.957000px;}
.ycc{bottom:158.473500px;}
.yad{bottom:159.366000px;}
.y9d{bottom:159.652500px;}
.y7c{bottom:160.008000px;}
.y105{bottom:162.085500px;}
.y48{bottom:163.717500px;}
.ycb{bottom:176.050500px;}
.y104{bottom:177.028500px;}
.yac{bottom:177.165000px;}
.y9c{bottom:177.523500px;}
.y7b{bottom:177.967500px;}
.y47{bottom:188.854500px;}
.y103{bottom:191.973000px;}
.yab{bottom:194.964000px;}
.y9b{bottom:195.394500px;}
.y1a{bottom:196.933500px;}
.yca{bottom:201.879000px;}
.y7a{bottom:205.053000px;}
.y46{bottom:206.719500px;}
.y102{bottom:206.917500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yaa{bottom:212.763000px;}
.y9a{bottom:213.265500px;}
.y101{bottom:221.860500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y45{bottom:224.586000px;}
.ya9{bottom:230.562000px;}
.y99{bottom:231.136500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.yc9{bottom:235.605000px;}
.y100{bottom:236.805000px;}
.y79{bottom:241.237500px;}
.y44{bottom:242.451000px;}
.ya8{bottom:248.361000px;}
.y98{bottom:249.007500px;}
.yff{bottom:251.749500px;}
.yc8{bottom:253.180500px;}
.y78{bottom:259.197000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y43{bottom:260.317500px;}
.ya7{bottom:266.160000px;}
.yfe{bottom:266.692500px;}
.y97{bottom:266.878500px;}
.yc7{bottom:270.757500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y77{bottom:277.156500px;}
.y42{bottom:278.182500px;}
.yfd{bottom:281.637000px;}
.y96{bottom:284.749500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yc6{bottom:288.333000px;}
.ya6{bottom:292.657500px;}
.y76{bottom:295.116000px;}
.y41{bottom:296.047500px;}
.yfc{bottom:296.581500px;}
.y95{bottom:302.620500px;}
.yc5{bottom:305.908500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yfb{bottom:311.524500px;}
.y75{bottom:313.075500px;}
.y40{bottom:313.914000px;}
.y94{bottom:320.491500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yc4{bottom:323.485500px;}
.yfa{bottom:326.469000px;}
.ya5{bottom:327.720000px;}
.y74{bottom:331.035000px;}
.y93{bottom:338.362500px;}
.y3f{bottom:340.611000px;}
.yc3{bottom:341.061000px;}
.yf9{bottom:341.413500px;}
.ya4{bottom:345.519000px;}
.y11{bottom:348.133500px;}
.y73{bottom:348.994500px;}
.y92{bottom:356.233500px;}
.yf8{bottom:356.356500px;}
.yc2{bottom:358.638000px;}
.ya3{bottom:363.319500px;}
.y72{bottom:366.954000px;}
.yf7{bottom:371.301000px;}
.y91{bottom:374.104500px;}
.yc1{bottom:376.213500px;}
.y71{bottom:384.913500px;}
.yf6{bottom:386.244000px;}
.y10{bottom:386.785499px;}
.y90{bottom:391.975500px;}
.yc0{bottom:393.789000px;}
.y3e{bottom:399.718500px;}
.yf5{bottom:401.188500px;}
.y70{bottom:402.871500px;}
.yf{bottom:408.044999px;}
.y8f{bottom:409.846500px;}
.ybf{bottom:411.366000px;}
.ya2{bottom:414.127500px;}
.yf4{bottom:416.133000px;}
.y6f{bottom:420.831000px;}
.ybe{bottom:428.941500px;}
.yf3{bottom:431.076000px;}
.y8e{bottom:436.560000px;}
.y6e{bottom:438.790500px;}
.y3d{bottom:443.536500px;}
.yf2{bottom:446.020500px;}
.ybd{bottom:446.518500px;}
.y6d{bottom:456.750000px;}
.yf1{bottom:460.965000px;}
.ybc{bottom:464.094000px;}
.y3c{bottom:468.942000px;}
.y8d{bottom:472.054500px;}
.y6c{bottom:474.709500px;}
.yf0{bottom:475.908000px;}
.ybb{bottom:481.669500px;}
.ye{bottom:484.864502px;}
.y3b{bottom:485.380500px;}
.y3a{bottom:485.812500px;}
.y8c{bottom:489.925500px;}
.yef{bottom:490.852500px;}
.y6b{bottom:492.669000px;}
.yba{bottom:499.246500px;}
.y39{bottom:501.819000px;}
.yd{bottom:502.864502px;}
.yee{bottom:505.797000px;}
.y8b{bottom:507.796500px;}
.y6a{bottom:510.628500px;}
.yb9{bottom:516.822000px;}
.y38{bottom:518.256000px;}
.yed{bottom:520.740000px;}
.yc{bottom:520.864502px;}
.y8a{bottom:525.667500px;}
.y69{bottom:528.588000px;}
.yb8{bottom:534.399000px;}
.y37{bottom:534.694500px;}
.yec{bottom:535.684500px;}
.yb{bottom:538.864499px;}
.y89{bottom:543.538500px;}
.y68{bottom:546.547500px;}
.yeb{bottom:550.629000px;}
.y36{bottom:551.133000px;}
.yb7{bottom:551.974500px;}
.ya{bottom:556.864499px;}
.y88{bottom:561.409500px;}
.y67{bottom:564.507000px;}
.yea{bottom:565.572000px;}
.y35{bottom:567.571500px;}
.yb6{bottom:569.550000px;}
.y87{bottom:579.280500px;}
.ye9{bottom:580.516500px;}
.y66{bottom:582.466500px;}
.y34{bottom:584.010000px;}
.yb5{bottom:587.127000px;}
.ye8{bottom:595.459500px;}
.y86{bottom:597.151500px;}
.y65{bottom:600.426000px;}
.y33{bottom:600.448500px;}
.yb4{bottom:604.702500px;}
.ye7{bottom:610.404000px;}
.y85{bottom:615.022500px;}
.y64{bottom:618.385500px;}
.yb3{bottom:622.279500px;}
.ye6{bottom:625.348500px;}
.y32{bottom:625.852500px;}
.y84{bottom:632.893500px;}
.y63{bottom:636.343500px;}
.yb2{bottom:639.855000px;}
.ye5{bottom:640.291500px;}
.y9{bottom:645.510000px;}
.y83{bottom:650.764500px;}
.y62{bottom:654.303000px;}
.ye4{bottom:655.236000px;}
.y8{bottom:666.771000px;}
.y82{bottom:668.635500px;}
.ye3{bottom:670.180500px;}
.y61{bottom:672.262500px;}
.y31{bottom:683.205000px;}
.ye2{bottom:685.123500px;}
.y60{bottom:690.222000px;}
.yb1{bottom:690.664500px;}
.y30{bottom:698.148000px;}
.ye1{bottom:700.068000px;}
.y5f{bottom:708.181500px;}
.ye0{bottom:715.012500px;}
.y81{bottom:719.445000px;}
.y2f{bottom:723.409500px;}
.y5e{bottom:726.141000px;}
.y7{bottom:726.298500px;}
.ydf{bottom:729.955500px;}
.y2e{bottom:738.354000px;}
.y5d{bottom:744.100500px;}
.yde{bottom:744.900000px;}
.y3{bottom:752.599495px;}
.y2d{bottom:759.717000px;}
.ydd{bottom:759.844500px;}
.y5c{bottom:762.060000px;}
.ydc{bottom:774.787500px;}
.y5b{bottom:780.019500px;}
.ydb{bottom:789.732000px;}
.y2c{bottom:791.403000px;}
.y5a{bottom:797.979000px;}
.yda{bottom:804.675000px;}
.y59{bottom:815.938500px;}
.yd9{bottom:819.619500px;}
.y2b{bottom:821.290500px;}
.yd8{bottom:834.564000px;}
.y58{bottom:843.024000px;}
.yd7{bottom:849.507000px;}
.y2a{bottom:851.179500px;}
.yd6{bottom:864.451500px;}
.y57{bottom:879.208500px;}
.y2{bottom:879.369000px;}
.yd5{bottom:879.396000px;}
.y29{bottom:887.229000px;}
.yd4{bottom:894.339000px;}
.y56{bottom:897.168000px;}
.y28{bottom:905.161500px;}
.yd3{bottom:909.283500px;}
.y55{bottom:915.127500px;}
.y54{bottom:933.087000px;}
.yd2{bottom:933.193500px;}
.y27{bottom:941.653500px;}
.y53{bottom:951.046500px;}
.y26{bottom:956.596500px;}
.y1{bottom:966.726000px;}
.y52{bottom:969.006000px;}
.yd1{bottom:969.060000px;}
.y51{bottom:986.965500px;}
.yd0{bottom:986.992500px;}
.y50{bottom:1004.925000px;}
.y25{bottom:1009.275000px;}
.y24{bottom:1035.292500px;}
.y4f{bottom:1037.802000px;}
.h10{height:24.675533px;}
.h15{height:27.599720px;}
.h7{height:32.130000px;}
.hc{height:32.900573px;}
.h1a{height:33.044035px;}
.h1b{height:33.374573px;}
.h16{height:34.442573px;}
.h12{height:37.013299px;}
.h11{height:37.174694px;}
.ha{height:38.782946px;}
.h14{height:41.125613px;}
.h13{height:41.304940px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hd{height:49.351066px;}
.h17{height:50.113261px;}
.h19{height:50.483846px;}
.h18{height:50.489846px;}
.h2{height:55.080000px;}
.h5{height:64.260000px;}
.he{height:69.913872px;}
.hb{height:72.113465px;}
.hf{height:74.288382px;}
.h4{height:119.055004px;}
.h9{height:1113.750000px;}
.h8{height:1114.015500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:816.378000px;}
.w4{width:816.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:55.666500px;}
.x12{left:59.406000px;}
.x15{left:61.644000px;}
.x1e{left:63.628500px;}
.x9{left:64.888500px;}
.xa{left:66.676500px;}
.x1b{left:69.606000px;}
.xc{left:72.888000px;}
.x13{left:78.082500px;}
.x16{left:79.576500px;}
.x1c{left:91.017000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x14{left:110.791500px;}
.x1a{left:163.426500px;}
.xd{left:176.457000px;}
.x18{left:193.413000px;}
.xe{left:199.213500px;}
.x4{left:203.484001px;}
.x17{left:219.868500px;}
.x19{left:222.031500px;}
.x1d{left:228.442500px;}
.x5{left:254.913000px;}
.xb{left:257.457000px;}
.xf{left:272.982000px;}
.x7{left:295.593000px;}
.x6{left:311.635500px;}
.x10{left:318.645000px;}
.x3{left:454.959000px;}
.x8{left:612.810000px;}
@media print{
.v3{vertical-align:-30.389333pt;}
.v4{vertical-align:-15.429333pt;}
.v5{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.370667pt;}
.v7{vertical-align:19.290667pt;}
.v1{vertical-align:25.077333pt;}
.v2{vertical-align:30.389333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.000917pt;}
.ls12{letter-spacing:0.001093pt;}
.ls2{letter-spacing:0.001333pt;}
.ls1{letter-spacing:2.654042pt;}
.ls3{letter-spacing:2.656533pt;}
.ls4{letter-spacing:2.659375pt;}
.lsb{letter-spacing:2.661867pt;}
.ls7{letter-spacing:7.437867pt;}
.ls5{letter-spacing:9.738377pt;}
.ls6{letter-spacing:9.739733pt;}
.ls1c{letter-spacing:14.758251pt;}
.ls1f{letter-spacing:15.643584pt;}
.ls14{letter-spacing:15.776533pt;}
.ls17{letter-spacing:15.936533pt;}
.lsa{letter-spacing:16.687467pt;}
.ls16{letter-spacing:16.752533pt;}
.ls1b{letter-spacing:17.413867pt;}
.ls22{letter-spacing:17.773607pt;}
.ls1e{letter-spacing:18.304533pt;}
.lse{letter-spacing:18.496533pt;}
.ls1d{letter-spacing:19.664533pt;}
.ls1a{letter-spacing:19.877867pt;}
.ls10{letter-spacing:19.952533pt;}
.lsf{letter-spacing:19.957867pt;}
.lsd{letter-spacing:20.283200pt;}
.ls8{letter-spacing:20.368533pt;}
.ls15{letter-spacing:21.403200pt;}
.ls20{letter-spacing:22.949867pt;}
.ls21{letter-spacing:23.504533pt;}
.ls19{letter-spacing:23.861867pt;}
.ls18{letter-spacing:24.581867pt;}
.ls13{letter-spacing:28.635200pt;}
.ls9{letter-spacing:41.180978pt;}
.ws8{word-spacing:-57.693104pt;}
.ws4c{word-spacing:-13.283467pt;}
.ws11{word-spacing:-11.955200pt;}
.ws5{word-spacing:-10.626800pt;}
.ws52{word-spacing:-9.298400pt;}
.ws7{word-spacing:-4.877712pt;}
.ws10{word-spacing:-4.495155pt;}
.ws12{word-spacing:-3.188040pt;}
.ws3f{word-spacing:-0.690740pt;}
.ws75{word-spacing:-0.318803pt;}
.ws80{word-spacing:-0.212535pt;}
.ws58{word-spacing:-0.159402pt;}
.ws3{word-spacing:-0.085014pt;}
.ws4b{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047289pt;}
.ws57{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.053134pt;}
.ws36{word-spacing:0.106268pt;}
.ws50{word-spacing:0.743874pt;}
.ws5c{word-spacing:0.797008pt;}
.ws68{word-spacing:0.850142pt;}
.ws20{word-spacing:1.191167pt;}
.ws3a{word-spacing:1.222079pt;}
.ws53{word-spacing:1.594016pt;}
.ws40{word-spacing:1.647150pt;}
.ws6{word-spacing:1.785310pt;}
.ws3e{word-spacing:1.965953pt;}
.ws5d{word-spacing:2.337890pt;}
.ws65{word-spacing:2.391024pt;}
.ws95{word-spacing:2.422910pt;}
.ws66{word-spacing:2.444158pt;}
.ws79{word-spacing:2.497292pt;}
.ws49{word-spacing:2.550426pt;}
.ws2f{word-spacing:2.603559pt;}
.ws54{word-spacing:2.656693pt;}
.ws70{word-spacing:2.709827pt;}
.ws5a{word-spacing:2.762961pt;}
.ws2e{word-spacing:2.816095pt;}
.ws74{word-spacing:2.869229pt;}
.ws3d{word-spacing:2.922363pt;}
.ws18{word-spacing:2.975497pt;}
.wsa{word-spacing:3.012710pt;}
.ws1a{word-spacing:3.028630pt;}
.ws19{word-spacing:3.134898pt;}
.ws71{word-spacing:3.506835pt;}
.ws30{word-spacing:3.613103pt;}
.ws26{word-spacing:3.666237pt;}
.ws22{word-spacing:3.698126pt;}
.ws62{word-spacing:3.719371pt;}
.ws25{word-spacing:3.772505pt;}
.ws7d{word-spacing:3.825638pt;}
.ws61{word-spacing:3.931906pt;}
.ws4d{word-spacing:3.985040pt;}
.ws38{word-spacing:4.038174pt;}
.ws2c{word-spacing:4.091308pt;}
.ws94{word-spacing:4.123198pt;}
.ws82{word-spacing:4.197575pt;}
.ws41{word-spacing:4.356977pt;}
.ws1b{word-spacing:4.410111pt;}
.ws37{word-spacing:4.429333pt;}
.ws6c{word-spacing:4.569513pt;}
.ws88{word-spacing:4.633285pt;}
.ws15{word-spacing:4.782048pt;}
.ws63{word-spacing:4.835182pt;}
.ws45{word-spacing:4.888316pt;}
.ws29{word-spacing:4.994583pt;}
.ws92{word-spacing:5.015850pt;}
.ws8d{word-spacing:5.058357pt;}
.ws9b{word-spacing:5.143371pt;}
.ws2a{word-spacing:5.207119pt;}
.ws46{word-spacing:5.260253pt;}
.ws89{word-spacing:5.270893pt;}
.ws7f{word-spacing:5.366521pt;}
.ws5b{word-spacing:5.472788pt;}
.ws27{word-spacing:5.685324pt;}
.ws81{word-spacing:5.738458pt;}
.wsf{word-spacing:5.738496pt;}
.ws9c{word-spacing:5.780979pt;}
.ws4e{word-spacing:5.897859pt;}
.ws60{word-spacing:5.950993pt;}
.ws77{word-spacing:6.004127pt;}
.ws21{word-spacing:6.078530pt;}
.ws3b{word-spacing:6.110395pt;}
.ws59{word-spacing:6.216662pt;}
.ws7e{word-spacing:6.482332pt;}
.ws39{word-spacing:6.535466pt;}
.wse{word-spacing:6.599270pt;}
.ws1e{word-spacing:6.631123pt;}
.ws72{word-spacing:6.694867pt;}
.ws67{word-spacing:7.006626pt;}
.ws35{word-spacing:7.013670pt;}
.wsb{word-spacing:7.029658pt;}
.ws87{word-spacing:7.056195pt;}
.ws31{word-spacing:7.066804pt;}
.ws4{word-spacing:7.098702pt;}
.ws16{word-spacing:7.119938pt;}
.ws84{word-spacing:7.140275pt;}
.ws85{word-spacing:7.141210pt;}
.ws17{word-spacing:7.173072pt;}
.ws83{word-spacing:7.226206pt;}
.ws3c{word-spacing:7.279340pt;}
.ws48{word-spacing:7.545009pt;}
.ws8b{word-spacing:7.608789pt;}
.ws1c{word-spacing:7.651277pt;}
.ws86{word-spacing:7.778818pt;}
.ws7c{word-spacing:7.810678pt;}
.wsd{word-spacing:7.842611pt;}
.ws9d{word-spacing:7.863832pt;}
.ws5f{word-spacing:7.916946pt;}
.ws69{word-spacing:7.970080pt;}
.ws6a{word-spacing:8.288883pt;}
.ws6d{word-spacing:8.342017pt;}
.ws47{word-spacing:8.448285pt;}
.ws76{word-spacing:8.554553pt;}
.ws5e{word-spacing:8.660820pt;}
.ws99{word-spacing:8.671469pt;}
.ws34{word-spacing:8.713954pt;}
.ws33{word-spacing:8.757867pt;}
.ws32{word-spacing:8.767088pt;}
.ws28{word-spacing:8.820222pt;}
.ws6e{word-spacing:8.873356pt;}
.wsc{word-spacing:8.990310pt;}
.ws9e{word-spacing:9.011526pt;}
.ws8c{word-spacing:9.054034pt;}
.ws4a{word-spacing:9.198667pt;}
.ws93{word-spacing:9.266570pt;}
.ws55{word-spacing:9.273333pt;}
.ws43{word-spacing:9.404694pt;}
.ws97{word-spacing:9.606627pt;}
.ws42{word-spacing:9.617230pt;}
.ws6b{word-spacing:9.670364pt;}
.ws98{word-spacing:9.904178pt;}
.ws44{word-spacing:9.936033pt;}
.ws96{word-spacing:9.989192pt;}
.ws78{word-spacing:10.201702pt;}
.ws4f{word-spacing:10.307970pt;}
.ws91{word-spacing:10.456771pt;}
.ws13{word-spacing:10.584196pt;}
.ws9{word-spacing:10.584293pt;}
.ws2d{word-spacing:10.839309pt;}
.ws1d{word-spacing:11.583183pt;}
.ws73{word-spacing:11.955120pt;}
.ws56{word-spacing:12.167655pt;}
.ws51{word-spacing:12.698994pt;}
.ws9a{word-spacing:12.752160pt;}
.ws7b{word-spacing:12.858396pt;}
.ws8e{word-spacing:13.814840pt;}
.ws90{word-spacing:14.579970pt;}
.ws64{word-spacing:14.930617pt;}
.ws6f{word-spacing:15.529333pt;}
.ws8a{word-spacing:15.940200pt;}
.ws1f{word-spacing:17.215416pt;}
.ws2b{word-spacing:17.640444pt;}
.ws24{word-spacing:17.682995pt;}
.ws1{word-spacing:17.686111pt;}
.ws14{word-spacing:26.513799pt;}
.ws8f{word-spacing:28.267288pt;}
.ws23{word-spacing:509.441733pt;}
._5{margin-left:-5.440960pt;}
._4{margin-left:-4.250769pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.977681pt;}
._6{width:1.748100pt;}
._3{width:3.230547pt;}
._d{width:11.657588pt;}
._e{width:14.006099pt;}
._8{width:15.217562pt;}
._12{width:18.575597pt;}
._10{width:20.602130pt;}
._c{width:25.026171pt;}
._b{width:26.566933pt;}
._11{width:32.302192pt;}
._7{width:34.864911pt;}
._a{width:36.162907pt;}
._9{width:38.150116pt;}
._f{width:520.643437pt;}
.fsd{font-size:31.880533pt;}
.fs10{font-size:36.131200pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.289067pt;}
.fse{font-size:47.820800pt;}
.fsc{font-size:52.496000pt;}
.fsf{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.074133pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:85.014400pt;}
.fs9{font-size:90.328000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:44.973338pt;}
.y4e{bottom:47.156000pt;}
.y4d{bottom:60.440000pt;}
.y5{bottom:67.373337pt;}
.y4c{bottom:77.708000pt;}
.ya1{bottom:78.372000pt;}
.y80{bottom:78.373333pt;}
.y4{bottom:89.773337pt;}
.y4b{bottom:90.992000pt;}
.ycf{bottom:93.996000pt;}
.yb0{bottom:94.194667pt;}
.ya0{bottom:94.257333pt;}
.y7f{bottom:94.337333pt;}
.y4a{bottom:104.276000pt;}
.yce{bottom:109.618667pt;}
.yaf{bottom:110.016000pt;}
.y9f{bottom:110.142667pt;}
.y7e{bottom:110.301333pt;}
.y23{bottom:123.790666pt;}
.ycd{bottom:125.242667pt;}
.yae{bottom:125.837333pt;}
.y9e{bottom:126.028000pt;}
.y7d{bottom:126.265333pt;}
.y49{bottom:128.850667pt;}
.ycc{bottom:140.865333pt;}
.yad{bottom:141.658667pt;}
.y9d{bottom:141.913333pt;}
.y7c{bottom:142.229333pt;}
.y105{bottom:144.076000pt;}
.y48{bottom:145.526667pt;}
.ycb{bottom:156.489333pt;}
.y104{bottom:157.358667pt;}
.yac{bottom:157.480000pt;}
.y9c{bottom:157.798667pt;}
.y7b{bottom:158.193333pt;}
.y47{bottom:167.870667pt;}
.y103{bottom:170.642667pt;}
.yab{bottom:173.301333pt;}
.y9b{bottom:173.684000pt;}
.y1a{bottom:175.052000pt;}
.yca{bottom:179.448000pt;}
.y7a{bottom:182.269333pt;}
.y46{bottom:183.750667pt;}
.y102{bottom:183.926667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yaa{bottom:189.122667pt;}
.y9a{bottom:189.569333pt;}
.y101{bottom:197.209333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y45{bottom:199.632000pt;}
.ya9{bottom:204.944000pt;}
.y99{bottom:205.454667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.yc9{bottom:209.426667pt;}
.y100{bottom:210.493333pt;}
.y79{bottom:214.433333pt;}
.y44{bottom:215.512000pt;}
.ya8{bottom:220.765333pt;}
.y98{bottom:221.340000pt;}
.yff{bottom:223.777333pt;}
.yc8{bottom:225.049333pt;}
.y78{bottom:230.397333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y43{bottom:231.393333pt;}
.ya7{bottom:236.586667pt;}
.yfe{bottom:237.060000pt;}
.y97{bottom:237.225333pt;}
.yc7{bottom:240.673333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y77{bottom:246.361333pt;}
.y42{bottom:247.273333pt;}
.yfd{bottom:250.344000pt;}
.y96{bottom:253.110667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yc6{bottom:256.296000pt;}
.ya6{bottom:260.140000pt;}
.y76{bottom:262.325333pt;}
.y41{bottom:263.153333pt;}
.yfc{bottom:263.628000pt;}
.y95{bottom:268.996000pt;}
.yc5{bottom:271.918667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yfb{bottom:276.910667pt;}
.y75{bottom:278.289333pt;}
.y40{bottom:279.034667pt;}
.y94{bottom:284.881333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yc4{bottom:287.542667pt;}
.yfa{bottom:290.194667pt;}
.ya5{bottom:291.306667pt;}
.y74{bottom:294.253333pt;}
.y93{bottom:300.766667pt;}
.y3f{bottom:302.765333pt;}
.yc3{bottom:303.165333pt;}
.yf9{bottom:303.478667pt;}
.ya4{bottom:307.128000pt;}
.y11{bottom:309.452000pt;}
.y73{bottom:310.217333pt;}
.y92{bottom:316.652000pt;}
.yf8{bottom:316.761333pt;}
.yc2{bottom:318.789333pt;}
.ya3{bottom:322.950667pt;}
.y72{bottom:326.181333pt;}
.yf7{bottom:330.045333pt;}
.y91{bottom:332.537333pt;}
.yc1{bottom:334.412000pt;}
.y71{bottom:342.145333pt;}
.yf6{bottom:343.328000pt;}
.y10{bottom:343.809333pt;}
.y90{bottom:348.422667pt;}
.yc0{bottom:350.034667pt;}
.y3e{bottom:355.305333pt;}
.yf5{bottom:356.612000pt;}
.y70{bottom:358.108000pt;}
.yf{bottom:362.706666pt;}
.y8f{bottom:364.308000pt;}
.ybf{bottom:365.658667pt;}
.ya2{bottom:368.113333pt;}
.yf4{bottom:369.896000pt;}
.y6f{bottom:374.072000pt;}
.ybe{bottom:381.281333pt;}
.yf3{bottom:383.178667pt;}
.y8e{bottom:388.053333pt;}
.y6e{bottom:390.036000pt;}
.y3d{bottom:394.254667pt;}
.yf2{bottom:396.462667pt;}
.ybd{bottom:396.905333pt;}
.y6d{bottom:406.000000pt;}
.yf1{bottom:409.746667pt;}
.ybc{bottom:412.528000pt;}
.y3c{bottom:416.837333pt;}
.y8d{bottom:419.604000pt;}
.y6c{bottom:421.964000pt;}
.yf0{bottom:423.029333pt;}
.ybb{bottom:428.150667pt;}
.ye{bottom:430.990669pt;}
.y3b{bottom:431.449333pt;}
.y3a{bottom:431.833333pt;}
.y8c{bottom:435.489333pt;}
.yef{bottom:436.313333pt;}
.y6b{bottom:437.928000pt;}
.yba{bottom:443.774667pt;}
.y39{bottom:446.061333pt;}
.yd{bottom:446.990669pt;}
.yee{bottom:449.597333pt;}
.y8b{bottom:451.374667pt;}
.y6a{bottom:453.892000pt;}
.yb9{bottom:459.397333pt;}
.y38{bottom:460.672000pt;}
.yed{bottom:462.880000pt;}
.yc{bottom:462.990669pt;}
.y8a{bottom:467.260000pt;}
.y69{bottom:469.856000pt;}
.yb8{bottom:475.021333pt;}
.y37{bottom:475.284000pt;}
.yec{bottom:476.164000pt;}
.yb{bottom:478.990666pt;}
.y89{bottom:483.145333pt;}
.y68{bottom:485.820000pt;}
.yeb{bottom:489.448000pt;}
.y36{bottom:489.896000pt;}
.yb7{bottom:490.644000pt;}
.ya{bottom:494.990666pt;}
.y88{bottom:499.030667pt;}
.y67{bottom:501.784000pt;}
.yea{bottom:502.730667pt;}
.y35{bottom:504.508000pt;}
.yb6{bottom:506.266667pt;}
.y87{bottom:514.916000pt;}
.ye9{bottom:516.014667pt;}
.y66{bottom:517.748000pt;}
.y34{bottom:519.120000pt;}
.yb5{bottom:521.890667pt;}
.ye8{bottom:529.297333pt;}
.y86{bottom:530.801333pt;}
.y65{bottom:533.712000pt;}
.y33{bottom:533.732000pt;}
.yb4{bottom:537.513333pt;}
.ye7{bottom:542.581333pt;}
.y85{bottom:546.686667pt;}
.y64{bottom:549.676000pt;}
.yb3{bottom:553.137333pt;}
.ye6{bottom:555.865333pt;}
.y32{bottom:556.313333pt;}
.y84{bottom:562.572000pt;}
.y63{bottom:565.638667pt;}
.yb2{bottom:568.760000pt;}
.ye5{bottom:569.148000pt;}
.y9{bottom:573.786667pt;}
.y83{bottom:578.457333pt;}
.y62{bottom:581.602667pt;}
.ye4{bottom:582.432000pt;}
.y8{bottom:592.685334pt;}
.y82{bottom:594.342667pt;}
.ye3{bottom:595.716000pt;}
.y61{bottom:597.566667pt;}
.y31{bottom:607.293333pt;}
.ye2{bottom:608.998667pt;}
.y60{bottom:613.530667pt;}
.yb1{bottom:613.924000pt;}
.y30{bottom:620.576000pt;}
.ye1{bottom:622.282667pt;}
.y5f{bottom:629.494667pt;}
.ye0{bottom:635.566667pt;}
.y81{bottom:639.506667pt;}
.y2f{bottom:643.030667pt;}
.y5e{bottom:645.458667pt;}
.y7{bottom:645.598667pt;}
.ydf{bottom:648.849333pt;}
.y2e{bottom:656.314667pt;}
.y5d{bottom:661.422667pt;}
.yde{bottom:662.133333pt;}
.y3{bottom:668.977329pt;}
.y2d{bottom:675.304000pt;}
.ydd{bottom:675.417333pt;}
.y5c{bottom:677.386667pt;}
.ydc{bottom:688.700000pt;}
.y5b{bottom:693.350667pt;}
.ydb{bottom:701.984000pt;}
.y2c{bottom:703.469333pt;}
.y5a{bottom:709.314667pt;}
.yda{bottom:715.266667pt;}
.y59{bottom:725.278667pt;}
.yd9{bottom:728.550667pt;}
.y2b{bottom:730.036000pt;}
.yd8{bottom:741.834667pt;}
.y58{bottom:749.354667pt;}
.yd7{bottom:755.117333pt;}
.y2a{bottom:756.604000pt;}
.yd6{bottom:768.401333pt;}
.y57{bottom:781.518667pt;}
.y2{bottom:781.661334pt;}
.yd5{bottom:781.685333pt;}
.y29{bottom:788.648000pt;}
.yd4{bottom:794.968000pt;}
.y56{bottom:797.482667pt;}
.y28{bottom:804.588000pt;}
.yd3{bottom:808.252000pt;}
.y55{bottom:813.446667pt;}
.y54{bottom:829.410667pt;}
.yd2{bottom:829.505333pt;}
.y27{bottom:837.025333pt;}
.y53{bottom:845.374667pt;}
.y26{bottom:850.308000pt;}
.y1{bottom:859.312000pt;}
.y52{bottom:861.338667pt;}
.yd1{bottom:861.386667pt;}
.y51{bottom:877.302667pt;}
.yd0{bottom:877.326667pt;}
.y50{bottom:893.266667pt;}
.y25{bottom:897.133333pt;}
.y24{bottom:920.260000pt;}
.y4f{bottom:922.490667pt;}
.h10{height:21.933807pt;}
.h15{height:24.533085pt;}
.h7{height:28.560000pt;}
.hc{height:29.244954pt;}
.h1a{height:29.372475pt;}
.h1b{height:29.666287pt;}
.h16{height:30.615620pt;}
.h12{height:32.900710pt;}
.h11{height:33.044173pt;}
.ha{height:34.473730pt;}
.h14{height:36.556100pt;}
.h13{height:36.715502pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hd{height:43.867614pt;}
.h17{height:44.545121pt;}
.h19{height:44.874530pt;}
.h18{height:44.879863pt;}
.h2{height:48.960000pt;}
.h5{height:57.120000pt;}
.he{height:62.145664pt;}
.hb{height:64.100858pt;}
.hf{height:66.034117pt;}
.h4{height:105.826671pt;}
.h9{height:990.000000pt;}
.h8{height:990.236000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:725.669333pt;}
.w4{width:726.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:49.481333pt;}
.x12{left:52.805333pt;}
.x15{left:54.794667pt;}
.x1e{left:56.558667pt;}
.x9{left:57.678667pt;}
.xa{left:59.268000pt;}
.x1b{left:61.872000pt;}
.xc{left:64.789333pt;}
.x13{left:69.406667pt;}
.x16{left:70.734667pt;}
.x1c{left:80.904000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x14{left:98.481333pt;}
.x1a{left:145.268000pt;}
.xd{left:156.850667pt;}
.x18{left:171.922667pt;}
.xe{left:177.078667pt;}
.x4{left:180.874667pt;}
.x17{left:195.438667pt;}
.x19{left:197.361333pt;}
.x1d{left:203.060000pt;}
.x5{left:226.589333pt;}
.xb{left:228.850667pt;}
.xf{left:242.650667pt;}
.x7{left:262.749333pt;}
.x6{left:277.009333pt;}
.x10{left:283.240000pt;}
.x3{left:404.408000pt;}
.x8{left:544.720000pt;}
}




    .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; }
  