
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_d836c3895a787d83776cc3f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_1caffbe218280b096f236a4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.801000;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_896a608faad8e9ac0250bdbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_294fd99f44617e5d190f34e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_53c34d35c8b7eb39bcb6f873.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_9c6273b19e030ad375dc38da.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_97227e8e742f9b7930cdbd9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.331543;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_c87a20d9bd7b96f1f4886e42.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_46448410d19f8472eca100d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_2008194cd18e33d89e441bc4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_86ccad3cb83d65deb27c4170.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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_c87a20d9bd7b96f1f4886e42.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v3{vertical-align:-79.200000px;}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.ls49{letter-spacing:-1.422000px;}
.ls47{letter-spacing:-1.206000px;}
.ls3a{letter-spacing:-0.972000px;}
.ls24{letter-spacing:-0.853806px;}
.ls21{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.714668px;}
.ls2e{letter-spacing:-0.630000px;}
.ls46{letter-spacing:-0.507000px;}
.ls48{letter-spacing:-0.466800px;}
.ls22{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.349112px;}
.ls3c{letter-spacing:-0.316800px;}
.ls30{letter-spacing:-0.313800px;}
.ls2c{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.234006px;}
.ls1f{letter-spacing:-0.190200px;}
.ls44{letter-spacing:-0.172800px;}
.ls45{letter-spacing:-0.152400px;}
.ls20{letter-spacing:-0.089400px;}
.ls2d{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.020160px;}
.ls39{letter-spacing:0.097800px;}
.ls37{letter-spacing:0.129600px;}
.ls3d{letter-spacing:0.135600px;}
.ls40{letter-spacing:0.140160px;}
.ls3b{letter-spacing:0.150000px;}
.ls41{letter-spacing:0.195600px;}
.ls35{letter-spacing:0.195840px;}
.ls19{letter-spacing:0.233280px;}
.ls2a{letter-spacing:0.233400px;}
.lsd{letter-spacing:0.242860px;}
.ls28{letter-spacing:0.303576px;}
.ls26{letter-spacing:0.382632px;}
.ls3f{letter-spacing:0.423360px;}
.ls1{letter-spacing:0.466560px;}
.ls0{letter-spacing:0.466800px;}
.ls25{letter-spacing:0.485721px;}
.ls4a{letter-spacing:0.486600px;}
.ls2b{letter-spacing:0.618000px;}
.ls3e{letter-spacing:0.636000px;}
.lsb{letter-spacing:0.661795px;}
.ls23{letter-spacing:0.664072px;}
.ls2{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.738000px;}
.ls10{letter-spacing:0.788285px;}
.ls18{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.906560px;}
.lse{letter-spacing:2.179673px;}
.ls11{letter-spacing:2.369408px;}
.ls16{letter-spacing:3.346560px;}
.ls32{letter-spacing:3.466560px;}
.ls36{letter-spacing:3.490560px;}
.ls34{letter-spacing:3.526560px;}
.ls9{letter-spacing:3.697551px;}
.lsa{letter-spacing:3.824041px;}
.ls17{letter-spacing:4.786560px;}
.ls8{letter-spacing:5.215429px;}
.ls15{letter-spacing:6.226560px;}
.lsf{letter-spacing:6.733307px;}
.ls14{letter-spacing:7.666560px;}
.ls7{letter-spacing:8.251185px;}
.ls12{letter-spacing:9.769063px;}
.ls13{letter-spacing:11.286942px;}
.ls1b{letter-spacing:14.322698px;}
.ls1c{letter-spacing:14.449188px;}
.lsc{letter-spacing:15.840576px;}
.ls3{letter-spacing:17.358454px;}
.ls6{letter-spacing:17.484944px;}
.ls5{letter-spacing:18.876332px;}
.ls4{letter-spacing:19.002822px;}
.ls43{letter-spacing:19.186560px;}
.ls38{letter-spacing:30.706560px;}
.ls1a{letter-spacing:36.466560px;}
.ls42{letter-spacing:40.786560px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(227,108,10);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.218560px;}
.wsa{word-spacing:-19.293120px;}
.wsd{word-spacing:-18.399718px;}
.ws14{word-spacing:-17.449440px;}
.ws8{word-spacing:-17.431440px;}
.ws19{word-spacing:-17.300040px;}
.ws7{word-spacing:-17.046840px;}
.ws11{word-spacing:-16.963440px;}
.ws13{word-spacing:-16.949040px;}
.ws10{word-spacing:-16.911240px;}
.ws3{word-spacing:-16.813440px;}
.ws16{word-spacing:-16.661040px;}
.ws15{word-spacing:-16.640640px;}
.ws18{word-spacing:-16.623240px;}
.ws9{word-spacing:-16.525440px;}
.ws12{word-spacing:-16.496640px;}
.ws17{word-spacing:-16.306440px;}
.ws0{word-spacing:-15.120000px;}
.wse{word-spacing:-13.366200px;}
.wsc{word-spacing:-13.050000px;}
.ws4{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.808640px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsb{word-spacing:-8.928000px;}
.wsf{word-spacing:0.000000px;}
._6{margin-left:-9.540960px;}
._8{margin-left:-7.770194px;}
._e{margin-left:-5.370233px;}
._5{margin-left:-4.188240px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._c{width:4.932960px;}
._b{width:6.058839px;}
._9{width:7.555997px;}
._7{width:8.588160px;}
._d{width:10.236589px;}
._f{width:11.356211px;}
._11{width:12.540000px;}
._10{width:13.740480px;}
._a{width:15.379858px;}
._16{width:18.446400px;}
._13{width:19.658880px;}
._12{width:20.687040px;}
._14{width:22.314240px;}
._15{width:23.765280px;}
.fc4{color:rgb(227,108,10);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:5.760000px;}
.fs7{font-size:18.720000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsb{font-size:54.720000px;}
.fs9{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.595500px;}
.y5{bottom:3.960000px;}
.y83{bottom:4.305000px;}
.y68{bottom:4.320000px;}
.ya6{bottom:4.335000px;}
.y4f{bottom:5.370000px;}
.y37{bottom:6.840000px;}
.y87{bottom:7.185000px;}
.y63{bottom:7.200000px;}
.y6f{bottom:7.560000px;}
.y2{bottom:7.920000px;}
.y9a{bottom:10.080000px;}
.y40{bottom:12.235500px;}
.y67{bottom:14.040000px;}
.ya1{bottom:14.400000px;}
.y4{bottom:21.240000px;}
.y4b{bottom:22.354500px;}
.y65{bottom:24.120000px;}
.y9f{bottom:24.480000px;}
.y9b{bottom:33.120000px;}
.y99{bottom:33.480000px;}
.y66{bottom:34.200000px;}
.y9d{bottom:34.560000px;}
.y3f{bottom:41.794500px;}
.y36{bottom:42.120000px;}
.y3{bottom:44.280000px;}
.y4a{bottom:44.314500px;}
.y9e{bottom:44.640000px;}
.y3e{bottom:53.674500px;}
.ya0{bottom:54.720000px;}
.y7{bottom:57.636000px;}
.y49{bottom:63.754500px;}
.ya2{bottom:64.800000px;}
.y3d{bottom:66.994500px;}
.y35{bottom:68.400000px;}
.y3c{bottom:79.954500px;}
.y48{bottom:87.154500px;}
.y7b{bottom:90.756000px;}
.y34{bottom:94.365000px;}
.yae{bottom:97.236000px;}
.y3b{bottom:99.754500px;}
.y4d{bottom:100.116000px;}
.y47{bottom:104.794500px;}
.y46{bottom:110.914500px;}
.y7a{bottom:112.356000px;}
.yad{bottom:118.836000px;}
.y33{bottom:120.645000px;}
.yd9{bottom:123.516000px;}
.y45{bottom:126.754500px;}
.y38{bottom:128.920500px;}
.y79{bottom:133.956000px;}
.yac{bottom:140.796000px;}
.y44{bottom:142.234500px;}
.yd8{bottom:149.472000px;}
.y32{bottom:155.565000px;}
.y43{bottom:157.744500px;}
.y3a{bottom:161.704500px;}
.yab{bottom:162.435000px;}
.y78{bottom:164.955000px;}
.y39{bottom:172.504500px;}
.y42{bottom:173.584500px;}
.yd7{bottom:175.755000px;}
.y31{bottom:181.845000px;}
.yaa{bottom:184.035000px;}
.y77{bottom:186.555000px;}
.y41{bottom:188.704500px;}
.yd6{bottom:199.155000px;}
.ya9{bottom:200.970000px;}
.y30{bottom:208.155000px;}
.yd5{bottom:221.835000px;}
.ya8{bottom:227.970000px;}
.y76{bottom:229.755000px;}
.y2f{bottom:234.075000px;}
.yd4{bottom:248.115000px;}
.ya7{bottom:248.850000px;}
.y1f{bottom:251.715000px;}
.y2e{bottom:260.355000px;}
.ya5{bottom:269.730000px;}
.y75{bottom:273.345000px;}
.yd3{bottom:274.425000px;}
.y1e{bottom:275.835000px;}
.y2d{bottom:283.755000px;}
.ya4{bottom:290.625000px;}
.y74{bottom:294.945000px;}
.y1d{bottom:299.955000px;}
.yd2{bottom:300.345000px;}
.ya3{bottom:311.505000px;}
.y2c{bottom:315.075000px;}
.y73{bottom:316.545000px;}
.y1c{bottom:324.075000px;}
.yd1{bottom:326.625000px;}
.yf{bottom:330.945000px;}
.y9c{bottom:332.025000px;}
.y2b{bottom:338.505000px;}
.y1b{bottom:348.225000px;}
.yd0{bottom:352.545000px;}
.y72{bottom:360.105000px;}
.y2a{bottom:362.265000px;}
.y1a{bottom:372.345000px;}
.ycf{bottom:378.825000px;}
.y71{bottom:381.705000px;}
.y29{bottom:385.665000px;}
.y19{bottom:396.465000px;}
.yce{bottom:405.150000px;}
.y28{bottom:409.065000px;}
.y70{bottom:412.350000px;}
.y98{bottom:413.430000px;}
.y18{bottom:420.585000px;}
.y6e{bottom:429.270000px;}
.ycd{bottom:431.070000px;}
.y27{bottom:432.825000px;}
.y17{bottom:444.705000px;}
.ycc{bottom:454.110000px;}
.y26{bottom:456.225000px;}
.y6d{bottom:456.270000px;}
.y16{bottom:468.825000px;}
.y97{bottom:470.670000px;}
.y6c{bottom:477.150000px;}
.y25{bottom:479.670000px;}
.ycb{bottom:480.390000px;}
.y96{bottom:490.830000px;}
.y15{bottom:492.990000px;}
.y6b{bottom:498.030000px;}
.y24{bottom:503.430000px;}
.yca{bottom:506.310000px;}
.y14{bottom:517.470000px;}
.y6a{bottom:518.910000px;}
.y95{bottom:519.990000px;}
.y23{bottom:526.830000px;}
.yc9{bottom:532.590000px;}
.y69{bottom:539.820000px;}
.y13{bottom:541.590000px;}
.y22{bottom:550.230000px;}
.yc8{bottom:556.020000px;}
.y64{bottom:560.700000px;}
.y94{bottom:562.860000px;}
.y12{bottom:565.710000px;}
.y21{bottom:573.990000px;}
.yc7{bottom:585.180000px;}
.y11{bottom:589.830000px;}
.y93{bottom:595.260000px;}
.y20{bottom:597.390000px;}
.yc6{bottom:605.340000px;}
.y10{bottom:613.980000px;}
.y92{bottom:615.420000px;}
.y62{bottom:621.540000px;}
.yc5{bottom:625.140000px;}
.y91{bottom:635.220000px;}
.yc4{bottom:645.300000px;}
.y61{bottom:652.860000px;}
.y90{bottom:655.380000px;}
.yc3{bottom:665.460000px;}
.y8f{bottom:678.450000px;}
.yc2{bottom:685.650000px;}
.y60{bottom:692.850000px;}
.y8e{bottom:701.850000px;}
.yc1{bottom:705.810000px;}
.y5f{bottom:713.010000px;}
.y8d{bottom:722.010000px;}
.yc0{bottom:725.970000px;}
.y5e{bottom:733.170000px;}
.y8c{bottom:741.810000px;}
.ybf{bottom:745.770000px;}
.y5d{bottom:756.210000px;}
.y8b{bottom:761.970000px;}
.ybe{bottom:776.370000px;}
.y8a{bottom:782.130000px;}
.y5c{bottom:791.130000px;}
.ybd{bottom:797.970000px;}
.y89{bottom:802.335000px;}
.y5b{bottom:817.455000px;}
.ybc{bottom:819.615000px;}
.y88{bottom:832.575000px;}
.ybb{bottom:841.215000px;}
.y5a{bottom:843.375000px;}
.y86{bottom:849.510000px;}
.yba{bottom:863.175000px;}
.y59{bottom:869.655000px;}
.y85{bottom:876.510000px;}
.yb9{bottom:884.775000px;}
.y58{bottom:895.935000px;}
.y84{bottom:897.390000px;}
.yb8{bottom:906.375000px;}
.y82{bottom:918.270000px;}
.y57{bottom:921.855000px;}
.yb7{bottom:927.975000px;}
.y81{bottom:939.165000px;}
.y56{bottom:948.165000px;}
.yb6{bottom:949.965000px;}
.ye{bottom:957.885000px;}
.y80{bottom:959.685000px;}
.yd{bottom:966.525000px;}
.yb5{bottom:971.565000px;}
.y55{bottom:980.565000px;}
.yc{bottom:990.285000px;}
.yb4{bottom:993.165000px;}
.y54{bottom:1000.365000px;}
.y7f{bottom:1001.445000px;}
.yb3{bottom:1014.765000px;}
.yb{bottom:1016.565000px;}
.y53{bottom:1020.525000px;}
.y7e{bottom:1026.645000px;}
.yb2{bottom:1036.725000px;}
.ya{bottom:1039.245000px;}
.y52{bottom:1040.685000px;}
.y7d{bottom:1046.805000px;}
.yb1{bottom:1058.325000px;}
.y9{bottom:1064.085000px;}
.y51{bottom:1072.770000px;}
.y7c{bottom:1076.010000px;}
.yb0{bottom:1079.970000px;}
.y8{bottom:1086.450000px;}
.y4e{bottom:1089.720000px;}
.y50{bottom:1098.690000px;}
.yaf{bottom:1101.570000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.h16{height:5.650313px;}
.hc{height:13.537266px;}
.h1f{height:19.785000px;}
.h1d{height:20.145000px;}
.h1b{height:20.160000px;}
.h1c{height:20.190000px;}
.h1e{height:26.265000px;}
.h19{height:26.280000px;}
.h17{height:27.720000px;}
.h13{height:29.678906px;}
.h6{height:30.077578px;}
.h12{height:35.332031px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.ha{height:49.712344px;}
.h20{height:52.185000px;}
.h14{height:53.677969px;}
.h15{height:55.147500px;}
.h5{height:59.357813px;}
.h1a{height:60.120000px;}
.hb{height:60.952500px;}
.h10{height:61.143509px;}
.h18{height:63.455625px;}
.h9{height:64.112344px;}
.h3{height:65.884219px;}
.h7{height:77.280480px;}
.h21{height:80.670000px;}
.h2{height:81.390000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h11{height:201.285000px;}
.hd{height:623.325000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w16{width:58.305000px;}
.w1c{width:61.200000px;}
.w1e{width:62.310000px;}
.w1d{width:68.745000px;}
.w15{width:68.782500px;}
.w18{width:69.870000px;}
.w17{width:72.000000px;}
.w19{width:74.550000px;}
.w1a{width:77.436000px;}
.w9{width:79.200000px;}
.w1b{width:88.581000px;}
.wd{width:89.670000px;}
.w8{width:99.382500px;}
.w2{width:103.702500px;}
.wb{width:105.912000px;}
.w12{width:116.280000px;}
.w10{width:116.310000px;}
.w11{width:116.352000px;}
.wc{width:119.541000px;}
.wa{width:120.270000px;}
.w4{width:132.502500px;}
.wf{width:147.645000px;}
.w6{width:163.080000px;}
.w13{width:271.170000px;}
.w14{width:436.485000px;}
.we{width:498.780000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w7{width:697.590000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.876000px;}
.x18{left:8.266500px;}
.x42{left:10.080000px;}
.x43{left:11.160000px;}
.x4{left:13.305000px;}
.x16{left:14.746500px;}
.x46{left:16.185000px;}
.x1c{left:18.346500px;}
.x5{left:19.425000px;}
.x2f{left:20.505000px;}
.x4c{left:21.960000px;}
.x32{left:23.025000px;}
.x2b{left:24.870000px;}
.x17{left:26.626500px;}
.x4a{left:27.720000px;}
.x1e{left:29.146500px;}
.x2d{left:30.585000px;}
.x33{left:31.710000px;}
.x4b{left:34.545000px;}
.x6{left:38.145000px;}
.x3a{left:41.760000px;}
.x10{left:43.906500px;}
.x31{left:45.765000px;}
.x1d{left:47.542500px;}
.x39{left:48.600000px;}
.x11{left:50.782500px;}
.x15{left:54.022500px;}
.xf{left:55.102500px;}
.x20{left:57.262500px;}
.x1a{left:62.295000px;}
.x1f{left:66.265500px;}
.x14{left:73.105500px;}
.x13{left:75.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x3d{left:92.569500px;}
.x2{left:95.425500px;}
.x27{left:97.969500px;}
.xb{left:103.356000px;}
.x1b{left:106.945500px;}
.x3b{left:113.436000px;}
.x12{left:124.585500px;}
.x25{left:140.472000px;}
.x3f{left:162.090000px;}
.x3{left:182.250000px;}
.x28{left:198.090000px;}
.x3c{left:203.835000px;}
.x26{left:208.155000px;}
.x19{left:218.970000px;}
.x40{left:221.130000px;}
.x21{left:267.930000px;}
.x29{left:278.025000px;}
.x41{left:293.865000px;}
.x35{left:297.825000px;}
.x22{left:314.040000px;}
.xc{left:321.630000px;}
.x36{left:345.750000px;}
.x3e{left:364.470000px;}
.x2a{left:399.030000px;}
.x34{left:417.420000px;}
.x44{left:439.740000px;}
.x37{left:462.780000px;}
.x2c{left:505.665000px;}
.xa{left:514.650000px;}
.x45{left:517.905000px;}
.x23{left:521.835000px;}
.x38{left:579.870000px;}
.xd{left:583.095000px;}
.x47{left:607.230000px;}
.x2e{left:625.950000px;}
.x48{left:669.165000px;}
.x30{left:705.885000px;}
.x49{left:738.645000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xe{left:807.090000px;}
@media print{
.v3{vertical-align:-70.400000pt;}
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.ls49{letter-spacing:-1.264000pt;}
.ls47{letter-spacing:-1.072000pt;}
.ls3a{letter-spacing:-0.864000pt;}
.ls24{letter-spacing:-0.758939pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.635260pt;}
.ls2e{letter-spacing:-0.560000pt;}
.ls46{letter-spacing:-0.450667pt;}
.ls48{letter-spacing:-0.414933pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.310322pt;}
.ls3c{letter-spacing:-0.281600pt;}
.ls30{letter-spacing:-0.278933pt;}
.ls2c{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.208006pt;}
.ls1f{letter-spacing:-0.169067pt;}
.ls44{letter-spacing:-0.153600pt;}
.ls45{letter-spacing:-0.135467pt;}
.ls20{letter-spacing:-0.079467pt;}
.ls2d{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.017920pt;}
.ls39{letter-spacing:0.086933pt;}
.ls37{letter-spacing:0.115200pt;}
.ls3d{letter-spacing:0.120533pt;}
.ls40{letter-spacing:0.124587pt;}
.ls3b{letter-spacing:0.133333pt;}
.ls41{letter-spacing:0.173867pt;}
.ls35{letter-spacing:0.174080pt;}
.ls19{letter-spacing:0.207360pt;}
.ls2a{letter-spacing:0.207467pt;}
.lsd{letter-spacing:0.215876pt;}
.ls28{letter-spacing:0.269845pt;}
.ls26{letter-spacing:0.340117pt;}
.ls3f{letter-spacing:0.376320pt;}
.ls1{letter-spacing:0.414720pt;}
.ls0{letter-spacing:0.414933pt;}
.ls25{letter-spacing:0.431752pt;}
.ls4a{letter-spacing:0.432533pt;}
.ls2b{letter-spacing:0.549333pt;}
.ls3e{letter-spacing:0.565333pt;}
.lsb{letter-spacing:0.588262pt;}
.ls23{letter-spacing:0.590286pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.656000pt;}
.ls10{letter-spacing:0.700698pt;}
.ls18{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.694720pt;}
.lse{letter-spacing:1.937487pt;}
.ls11{letter-spacing:2.106140pt;}
.ls16{letter-spacing:2.974720pt;}
.ls32{letter-spacing:3.081387pt;}
.ls36{letter-spacing:3.102720pt;}
.ls34{letter-spacing:3.134720pt;}
.ls9{letter-spacing:3.286712pt;}
.lsa{letter-spacing:3.399147pt;}
.ls17{letter-spacing:4.254720pt;}
.ls8{letter-spacing:4.635937pt;}
.ls15{letter-spacing:5.534720pt;}
.lsf{letter-spacing:5.985162pt;}
.ls14{letter-spacing:6.814720pt;}
.ls7{letter-spacing:7.334387pt;}
.ls12{letter-spacing:8.683612pt;}
.ls13{letter-spacing:10.032837pt;}
.ls1b{letter-spacing:12.731287pt;}
.ls1c{letter-spacing:12.843722pt;}
.lsc{letter-spacing:14.080512pt;}
.ls3{letter-spacing:15.429737pt;}
.ls6{letter-spacing:15.542172pt;}
.ls5{letter-spacing:16.778962pt;}
.ls4{letter-spacing:16.891397pt;}
.ls43{letter-spacing:17.054720pt;}
.ls38{letter-spacing:27.294720pt;}
.ls1a{letter-spacing:32.414720pt;}
.ls42{letter-spacing:36.254720pt;}
.ws1{word-spacing:-20.638720pt;}
.wsa{word-spacing:-17.149440pt;}
.wsd{word-spacing:-16.355305pt;}
.ws14{word-spacing:-15.510613pt;}
.ws8{word-spacing:-15.494613pt;}
.ws19{word-spacing:-15.377813pt;}
.ws7{word-spacing:-15.152747pt;}
.ws11{word-spacing:-15.078613pt;}
.ws13{word-spacing:-15.065813pt;}
.ws10{word-spacing:-15.032213pt;}
.ws3{word-spacing:-14.945280pt;}
.ws16{word-spacing:-14.809813pt;}
.ws15{word-spacing:-14.791680pt;}
.ws18{word-spacing:-14.776213pt;}
.ws9{word-spacing:-14.689280pt;}
.ws12{word-spacing:-14.663680pt;}
.ws17{word-spacing:-14.494613pt;}
.ws0{word-spacing:-13.440000pt;}
.wse{word-spacing:-11.881067pt;}
.wsc{word-spacing:-11.600000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.607680pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsb{word-spacing:-7.936000pt;}
.wsf{word-spacing:0.000000pt;}
._6{margin-left:-8.480853pt;}
._8{margin-left:-6.906839pt;}
._e{margin-left:-4.773540pt;}
._5{margin-left:-3.722880pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._c{width:4.384853pt;}
._b{width:5.385635pt;}
._9{width:6.716442pt;}
._7{width:7.633920pt;}
._d{width:9.099191pt;}
._f{width:10.094409pt;}
._11{width:11.146667pt;}
._10{width:12.213760pt;}
._a{width:13.670985pt;}
._16{width:16.396800pt;}
._13{width:17.474560pt;}
._12{width:18.388480pt;}
._14{width:19.834880pt;}
._15{width:21.124693pt;}
.fsc{font-size:5.120000pt;}
.fs7{font-size:16.640000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsb{font-size:48.640000pt;}
.fs9{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.196000pt;}
.y5{bottom:3.520000pt;}
.y83{bottom:3.826667pt;}
.y68{bottom:3.840000pt;}
.ya6{bottom:3.853333pt;}
.y4f{bottom:4.773333pt;}
.y37{bottom:6.080000pt;}
.y87{bottom:6.386667pt;}
.y63{bottom:6.400000pt;}
.y6f{bottom:6.720000pt;}
.y2{bottom:7.040000pt;}
.y9a{bottom:8.960000pt;}
.y40{bottom:10.876000pt;}
.y67{bottom:12.480000pt;}
.ya1{bottom:12.800000pt;}
.y4{bottom:18.880000pt;}
.y4b{bottom:19.870667pt;}
.y65{bottom:21.440000pt;}
.y9f{bottom:21.760000pt;}
.y9b{bottom:29.440000pt;}
.y99{bottom:29.760000pt;}
.y66{bottom:30.400000pt;}
.y9d{bottom:30.720000pt;}
.y3f{bottom:37.150667pt;}
.y36{bottom:37.440000pt;}
.y3{bottom:39.360000pt;}
.y4a{bottom:39.390667pt;}
.y9e{bottom:39.680000pt;}
.y3e{bottom:47.710667pt;}
.ya0{bottom:48.640000pt;}
.y7{bottom:51.232000pt;}
.y49{bottom:56.670667pt;}
.ya2{bottom:57.600000pt;}
.y3d{bottom:59.550667pt;}
.y35{bottom:60.800000pt;}
.y3c{bottom:71.070667pt;}
.y48{bottom:77.470667pt;}
.y7b{bottom:80.672000pt;}
.y34{bottom:83.880000pt;}
.yae{bottom:86.432000pt;}
.y3b{bottom:88.670667pt;}
.y4d{bottom:88.992000pt;}
.y47{bottom:93.150667pt;}
.y46{bottom:98.590667pt;}
.y7a{bottom:99.872000pt;}
.yad{bottom:105.632000pt;}
.y33{bottom:107.240000pt;}
.yd9{bottom:109.792000pt;}
.y45{bottom:112.670667pt;}
.y38{bottom:114.596000pt;}
.y79{bottom:119.072000pt;}
.yac{bottom:125.152000pt;}
.y44{bottom:126.430667pt;}
.yd8{bottom:132.864000pt;}
.y32{bottom:138.280000pt;}
.y43{bottom:140.217333pt;}
.y3a{bottom:143.737333pt;}
.yab{bottom:144.386667pt;}
.y78{bottom:146.626667pt;}
.y39{bottom:153.337333pt;}
.y42{bottom:154.297333pt;}
.yd7{bottom:156.226667pt;}
.y31{bottom:161.640000pt;}
.yaa{bottom:163.586667pt;}
.y77{bottom:165.826667pt;}
.y41{bottom:167.737333pt;}
.yd6{bottom:177.026667pt;}
.ya9{bottom:178.640000pt;}
.y30{bottom:185.026667pt;}
.yd5{bottom:197.186667pt;}
.ya8{bottom:202.640000pt;}
.y76{bottom:204.226667pt;}
.y2f{bottom:208.066667pt;}
.yd4{bottom:220.546667pt;}
.ya7{bottom:221.200000pt;}
.y1f{bottom:223.746667pt;}
.y2e{bottom:231.426667pt;}
.ya5{bottom:239.760000pt;}
.y75{bottom:242.973333pt;}
.yd3{bottom:243.933333pt;}
.y1e{bottom:245.186667pt;}
.y2d{bottom:252.226667pt;}
.ya4{bottom:258.333333pt;}
.y74{bottom:262.173333pt;}
.y1d{bottom:266.626667pt;}
.yd2{bottom:266.973333pt;}
.ya3{bottom:276.893333pt;}
.y2c{bottom:280.066667pt;}
.y73{bottom:281.373333pt;}
.y1c{bottom:288.066667pt;}
.yd1{bottom:290.333333pt;}
.yf{bottom:294.173333pt;}
.y9c{bottom:295.133333pt;}
.y2b{bottom:300.893333pt;}
.y1b{bottom:309.533333pt;}
.yd0{bottom:313.373333pt;}
.y72{bottom:320.093333pt;}
.y2a{bottom:322.013333pt;}
.y1a{bottom:330.973333pt;}
.ycf{bottom:336.733333pt;}
.y71{bottom:339.293333pt;}
.y29{bottom:342.813333pt;}
.y19{bottom:352.413333pt;}
.yce{bottom:360.133333pt;}
.y28{bottom:363.613333pt;}
.y70{bottom:366.533333pt;}
.y98{bottom:367.493333pt;}
.y18{bottom:373.853333pt;}
.y6e{bottom:381.573333pt;}
.ycd{bottom:383.173333pt;}
.y27{bottom:384.733333pt;}
.y17{bottom:395.293333pt;}
.ycc{bottom:403.653333pt;}
.y26{bottom:405.533333pt;}
.y6d{bottom:405.573333pt;}
.y16{bottom:416.733333pt;}
.y97{bottom:418.373333pt;}
.y6c{bottom:424.133333pt;}
.y25{bottom:426.373333pt;}
.ycb{bottom:427.013333pt;}
.y96{bottom:436.293333pt;}
.y15{bottom:438.213333pt;}
.y6b{bottom:442.693333pt;}
.y24{bottom:447.493333pt;}
.yca{bottom:450.053333pt;}
.y14{bottom:459.973333pt;}
.y6a{bottom:461.253333pt;}
.y95{bottom:462.213333pt;}
.y23{bottom:468.293333pt;}
.yc9{bottom:473.413333pt;}
.y69{bottom:479.840000pt;}
.y13{bottom:481.413333pt;}
.y22{bottom:489.093333pt;}
.yc8{bottom:494.240000pt;}
.y64{bottom:498.400000pt;}
.y94{bottom:500.320000pt;}
.y12{bottom:502.853333pt;}
.y21{bottom:510.213333pt;}
.yc7{bottom:520.160000pt;}
.y11{bottom:524.293333pt;}
.y93{bottom:529.120000pt;}
.y20{bottom:531.013333pt;}
.yc6{bottom:538.080000pt;}
.y10{bottom:545.760000pt;}
.y92{bottom:547.040000pt;}
.y62{bottom:552.480000pt;}
.yc5{bottom:555.680000pt;}
.y91{bottom:564.640000pt;}
.yc4{bottom:573.600000pt;}
.y61{bottom:580.320000pt;}
.y90{bottom:582.560000pt;}
.yc3{bottom:591.520000pt;}
.y8f{bottom:603.066667pt;}
.yc2{bottom:609.466667pt;}
.y60{bottom:615.866667pt;}
.y8e{bottom:623.866667pt;}
.yc1{bottom:627.386667pt;}
.y5f{bottom:633.786667pt;}
.y8d{bottom:641.786667pt;}
.yc0{bottom:645.306667pt;}
.y5e{bottom:651.706667pt;}
.y8c{bottom:659.386667pt;}
.ybf{bottom:662.906667pt;}
.y5d{bottom:672.186667pt;}
.y8b{bottom:677.306667pt;}
.ybe{bottom:690.106667pt;}
.y8a{bottom:695.226667pt;}
.y5c{bottom:703.226667pt;}
.ybd{bottom:709.306667pt;}
.y89{bottom:713.186667pt;}
.y5b{bottom:726.626667pt;}
.ybc{bottom:728.546667pt;}
.y88{bottom:740.066667pt;}
.ybb{bottom:747.746667pt;}
.y5a{bottom:749.666667pt;}
.y86{bottom:755.120000pt;}
.yba{bottom:767.266667pt;}
.y59{bottom:773.026667pt;}
.y85{bottom:779.120000pt;}
.yb9{bottom:786.466667pt;}
.y58{bottom:796.386667pt;}
.y84{bottom:797.680000pt;}
.yb8{bottom:805.666667pt;}
.y82{bottom:816.240000pt;}
.y57{bottom:819.426667pt;}
.yb7{bottom:824.866667pt;}
.y81{bottom:834.813333pt;}
.y56{bottom:842.813333pt;}
.yb6{bottom:844.413333pt;}
.ye{bottom:851.453333pt;}
.y80{bottom:853.053333pt;}
.yd{bottom:859.133333pt;}
.yb5{bottom:863.613333pt;}
.y55{bottom:871.613333pt;}
.yc{bottom:880.253333pt;}
.yb4{bottom:882.813333pt;}
.y54{bottom:889.213333pt;}
.y7f{bottom:890.173333pt;}
.yb3{bottom:902.013333pt;}
.yb{bottom:903.613333pt;}
.y53{bottom:907.133333pt;}
.y7e{bottom:912.573333pt;}
.yb2{bottom:921.533333pt;}
.ya{bottom:923.773333pt;}
.y52{bottom:925.053333pt;}
.y7d{bottom:930.493333pt;}
.yb1{bottom:940.733333pt;}
.y9{bottom:945.853333pt;}
.y51{bottom:953.573333pt;}
.y7c{bottom:956.453333pt;}
.yb0{bottom:959.973333pt;}
.y8{bottom:965.733333pt;}
.y4e{bottom:968.640000pt;}
.y50{bottom:976.613333pt;}
.yaf{bottom:979.173333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.h16{height:5.022500pt;}
.hc{height:12.033125pt;}
.h1f{height:17.586667pt;}
.h1d{height:17.906667pt;}
.h1b{height:17.920000pt;}
.h1c{height:17.946667pt;}
.h1e{height:23.346667pt;}
.h19{height:23.360000pt;}
.h17{height:24.640000pt;}
.h13{height:26.381250pt;}
.h6{height:26.735625pt;}
.h12{height:31.406250pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.ha{height:44.188750pt;}
.h20{height:46.386667pt;}
.h14{height:47.713750pt;}
.h15{height:49.020000pt;}
.h5{height:52.762500pt;}
.h1a{height:53.440000pt;}
.hb{height:54.180000pt;}
.h10{height:54.349786pt;}
.h18{height:56.405000pt;}
.h9{height:56.988750pt;}
.h3{height:58.563750pt;}
.h7{height:68.693760pt;}
.h21{height:71.706667pt;}
.h2{height:72.346667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h11{height:178.920000pt;}
.hd{height:554.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w16{width:51.826667pt;}
.w1c{width:54.400000pt;}
.w1e{width:55.386667pt;}
.w1d{width:61.106667pt;}
.w15{width:61.140000pt;}
.w18{width:62.106667pt;}
.w17{width:64.000000pt;}
.w19{width:66.266667pt;}
.w1a{width:68.832000pt;}
.w9{width:70.400000pt;}
.w1b{width:78.738667pt;}
.wd{width:79.706667pt;}
.w8{width:88.340000pt;}
.w2{width:92.180000pt;}
.wb{width:94.144000pt;}
.w12{width:103.360000pt;}
.w10{width:103.386667pt;}
.w11{width:103.424000pt;}
.wc{width:106.258667pt;}
.wa{width:106.906667pt;}
.w4{width:117.780000pt;}
.wf{width:131.240000pt;}
.w6{width:144.960000pt;}
.w13{width:241.040000pt;}
.w14{width:387.986667pt;}
.we{width:443.360000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w7{width:620.080000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.112000pt;}
.x18{left:7.348000pt;}
.x42{left:8.960000pt;}
.x43{left:9.920000pt;}
.x4{left:11.826667pt;}
.x16{left:13.108000pt;}
.x46{left:14.386667pt;}
.x1c{left:16.308000pt;}
.x5{left:17.266667pt;}
.x2f{left:18.226667pt;}
.x4c{left:19.520000pt;}
.x32{left:20.466667pt;}
.x2b{left:22.106667pt;}
.x17{left:23.668000pt;}
.x4a{left:24.640000pt;}
.x1e{left:25.908000pt;}
.x2d{left:27.186667pt;}
.x33{left:28.186667pt;}
.x4b{left:30.706667pt;}
.x6{left:33.906667pt;}
.x3a{left:37.120000pt;}
.x10{left:39.028000pt;}
.x31{left:40.680000pt;}
.x1d{left:42.260000pt;}
.x39{left:43.200000pt;}
.x11{left:45.140000pt;}
.x15{left:48.020000pt;}
.xf{left:48.980000pt;}
.x20{left:50.900000pt;}
.x1a{left:55.373333pt;}
.x1f{left:58.902667pt;}
.x14{left:64.982667pt;}
.x13{left:66.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x3d{left:82.284000pt;}
.x2{left:84.822667pt;}
.x27{left:87.084000pt;}
.xb{left:91.872000pt;}
.x1b{left:95.062667pt;}
.x3b{left:100.832000pt;}
.x12{left:110.742667pt;}
.x25{left:124.864000pt;}
.x3f{left:144.080000pt;}
.x3{left:162.000000pt;}
.x28{left:176.080000pt;}
.x3c{left:181.186667pt;}
.x26{left:185.026667pt;}
.x19{left:194.640000pt;}
.x40{left:196.560000pt;}
.x21{left:238.160000pt;}
.x29{left:247.133333pt;}
.x41{left:261.213333pt;}
.x35{left:264.733333pt;}
.x22{left:279.146667pt;}
.xc{left:285.893333pt;}
.x36{left:307.333333pt;}
.x3e{left:323.973333pt;}
.x2a{left:354.693333pt;}
.x34{left:371.040000pt;}
.x44{left:390.880000pt;}
.x37{left:411.360000pt;}
.x2c{left:449.480000pt;}
.xa{left:457.466667pt;}
.x45{left:460.360000pt;}
.x23{left:463.853333pt;}
.x38{left:515.440000pt;}
.xd{left:518.306667pt;}
.x47{left:539.760000pt;}
.x2e{left:556.400000pt;}
.x48{left:594.813333pt;}
.x30{left:627.453333pt;}
.x49{left:656.573333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xe{left:717.413333pt;}
}




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