
    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_9c4efea4589c71440252c4ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ca485884696f691c3312e3ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b0c95ad9f14b882e471c9271.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_f0c30a5fabf4f76955442e3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_94ffa7be89c02942f69faa78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_6063bdc5ba90cbb97ed298c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_2485fbf97eff1f0dfe83f8b6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_84088cf45f2f621ae9de7d1a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_523284b736da0e815fdcac1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_d67fb89d5a3414ce9d54d6df.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_e5d734dd8d9a00a256241993.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_1d5c82a09498e708fb5b82a3.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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:ff10;src:url('chunks/assets/font_aa308cfb534fbba13ea39165.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_66d5b40e9e68bd574409a438.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_176a223d8607cf41124ecc81.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_91f35e6e020a0740c0293eea.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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:ff14;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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);}
.v8{vertical-align:-66.360000px;}
.v4{vertical-align:-34.320000px;}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-9.480000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:19.020000px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:42.060000px;}
.v5{vertical-align:64.680000px;}
.lsd{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.100200px;}
.ls12{letter-spacing:-0.058320px;}
.lsf{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.085800px;}
.lsb{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls17{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls1b{letter-spacing:16.506720px;}
.ls1a{letter-spacing:46.026720px;}
.ls18{letter-spacing:521.221680px;}
.ls14{letter-spacing:619.741680px;}
.ls19{letter-spacing:650.221680px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.839800px;}
.ws16{word-spacing:-14.733600px;}
.ws1d{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws1e{word-spacing:-14.479800px;}
.ws5{word-spacing:-14.220000px;}
.ws11{word-spacing:-13.538304px;}
.wsb{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws1f{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsd{word-spacing:0.000000px;}
.ws1c{word-spacing:368.523120px;}
.ws15{word-spacing:370.024320px;}
.ws12{word-spacing:384.904320px;}
.ws13{word-spacing:385.852560px;}
.ws14{word-spacing:416.092560px;}
.ws1a{word-spacing:416.103120px;}
.ws18{word-spacing:514.803120px;}
.ws1b{word-spacing:614.992560px;}
._4{margin-left:-5.016000px;}
._3{margin-left:-3.340080px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.086000px;}
._1{width:1.146000px;}
._d{width:2.439600px;}
._c{width:3.585600px;}
._9{width:4.770240px;}
._a{width:6.108480px;}
._7{width:7.171200px;}
._8{width:8.819520px;}
._11{width:10.397760px;}
._10{width:11.624640px;}
._f{width:13.390560px;}
._e{width:17.629200px;}
._5{width:21.579840px;}
._6{width:22.651200px;}
._18{width:23.668800px;}
._b{width:35.138880px;}
._17{width:37.269120px;}
._16{width:51.651360px;}
._15{width:52.732080px;}
._13{width:134.902080px;}
._14{width:137.298000px;}
._12{width:224.246880px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y4b{bottom:3.960000px;}
.y1e{bottom:4.860000px;}
.y8e{bottom:7.200000px;}
.ydd{bottom:8.460000px;}
.ydc{bottom:8.640000px;}
.ye0{bottom:8.820000px;}
.yf{bottom:9.540000px;}
.y49{bottom:10.620000px;}
.y20{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y12a{bottom:15.990000px;}
.y11c{bottom:16.200000px;}
.yaf{bottom:16.230000px;}
.yc1{bottom:16.275000px;}
.yec{bottom:16.305000px;}
.y6{bottom:17.820000px;}
.y3{bottom:20.160000px;}
.y45{bottom:20.340000px;}
.y8a{bottom:20.520000px;}
.y4a{bottom:22.320000px;}
.y48{bottom:25.380000px;}
.y1d{bottom:29.340000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y124{bottom:34.710000px;}
.y116{bottom:34.950000px;}
.yaa{bottom:34.995000px;}
.ye3{bottom:35.025000px;}
.y2{bottom:36.576000px;}
.y44{bottom:37.620000px;}
.y1{bottom:38.880000px;}
.y1c{bottom:45.720000px;}
.yb{bottom:46.440000px;}
.y12c{bottom:52.020000px;}
.y43{bottom:54.900000px;}
.y11e{bottom:56.190000px;}
.yb7{bottom:58.575000px;}
.y125{bottom:59.865000px;}
.y12f{bottom:62.100000px;}
.y1b{bottom:62.280000px;}
.yc3{bottom:62.850000px;}
.ye4{bottom:67.395000px;}
.y12b{bottom:69.660000px;}
.y117{bottom:70.050000px;}
.y120{bottom:70.230000px;}
.y42{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.yee{bottom:76.140000px;}
.y1a{bottom:78.840000px;}
.yab{bottom:80.460000px;}
.y11d{bottom:80.745000px;}
.yc6{bottom:81.360000px;}
.yb8{bottom:82.155000px;}
.y12d{bottom:82.230000px;}
.yb0{bottom:82.800000px;}
.y126{bottom:85.035000px;}
.y41{bottom:89.460000px;}
.y131{bottom:91.410000px;}
.y9{bottom:93.090000px;}
.y19{bottom:95.220000px;}
.ya8{bottom:98.136000px;}
.ye5{bottom:99.720000px;}
.y114{bottom:99.756000px;}
.y12e{bottom:99.870000px;}
.y57{bottom:101.916000px;}
.y118{bottom:105.150000px;}
.yb9{bottom:105.735000px;}
.y40{bottom:106.740000px;}
.yf0{bottom:108.465000px;}
.y91{bottom:109.836000px;}
.y127{bottom:110.190000px;}
.y8{bottom:111.270000px;}
.y18{bottom:111.825000px;}
.ya7{bottom:115.416000px;}
.y113{bottom:117.756000px;}
.y122{bottom:118.080000px;}
.y56{bottom:119.196000px;}
.yb5{bottom:120.315000px;}
.y11f{bottom:122.910000px;}
.y3f{bottom:123.840000px;}
.yb1{bottom:124.350000px;}
.yc4{bottom:124.485000px;}
.yb2{bottom:125.070000px;}
.yac{bottom:125.970000px;}
.y90{bottom:127.116000px;}
.y17{bottom:127.485000px;}
.yba{bottom:129.315000px;}
.ye6{bottom:132.045000px;}
.ya6{bottom:132.696000px;}
.y163{bottom:132.876000px;}
.y130{bottom:135.105000px;}
.y128{bottom:135.390000px;}
.y112{bottom:135.756000px;}
.y55{bottom:136.476000px;}
.y16{bottom:137.925000px;}
.y158{bottom:139.716000px;}
.y119{bottom:140.250000px;}
.y121{bottom:140.430000px;}
.y3e{bottom:141.120000px;}
.yc9{bottom:146.775000px;}
.yb4{bottom:147.450000px;}
.y2f{bottom:149.760000px;}
.ya5{bottom:149.796000px;}
.y162{bottom:149.976000px;}
.y8f{bottom:150.150000px;}
.ybb{bottom:152.895000px;}
.y54{bottom:153.750000px;}
.y15{bottom:156.285000px;}
.yed{bottom:156.960000px;}
.yf2{bottom:156.990000px;}
.y3d{bottom:158.400000px;}
.y129{bottom:160.560000px;}
.yc2{bottom:160.920000px;}
.ye7{bottom:164.370000px;}
.y2e{bottom:165.060000px;}
.ya4{bottom:167.070000px;}
.y161{bottom:167.250000px;}
.y53{bottom:171.030000px;}
.yad{bottom:171.465000px;}
.y111{bottom:171.750000px;}
.yc8{bottom:173.910000px;}
.y157{bottom:174.090000px;}
.y14{bottom:175.365000px;}
.y11a{bottom:175.395000px;}
.y3c{bottom:175.680000px;}
.ybc{bottom:176.430000px;}
.y2d{bottom:182.700000px;}
.yf1{bottom:184.110000px;}
.ya3{bottom:184.350000px;}
.y160{bottom:184.530000px;}
.y8d{bottom:187.770000px;}
.y52{bottom:188.130000px;}
.y110{bottom:189.750000px;}
.y156{bottom:191.370000px;}
.y3b{bottom:192.960000px;}
.ye8{bottom:196.740000px;}
.y2c{bottom:199.800000px;}
.ybd{bottom:200.010000px;}
.y13{bottom:201.105000px;}
.ya2{bottom:201.630000px;}
.y15f{bottom:201.810000px;}
.y51{bottom:205.410000px;}
.yc7{bottom:206.640000px;}
.yb3{bottom:206.745000px;}
.y10f{bottom:207.750000px;}
.y155{bottom:208.650000px;}
.y3a{bottom:210.240000px;}
.y11b{bottom:210.495000px;}
.yae{bottom:216.975000px;}
.y2b{bottom:217.080000px;}
.ya1{bottom:218.910000px;}
.y15e{bottom:219.090000px;}
.y50{bottom:222.690000px;}
.ybe{bottom:223.590000px;}
.y8c{bottom:225.570000px;}
.y10e{bottom:225.750000px;}
.y154{bottom:225.930000px;}
.y12{bottom:226.845000px;}
.y39{bottom:227.340000px;}
.ye9{bottom:229.065000px;}
.y2a{bottom:234.900000px;}
.ya0{bottom:236.010000px;}
.y15d{bottom:236.370000px;}
.y4f{bottom:239.970000px;}
.y153{bottom:243.210000px;}
.y10d{bottom:243.750000px;}
.y38{bottom:244.620000px;}
.ybf{bottom:247.170000px;}
.y11{bottom:251.145000px;}
.y29{bottom:251.640000px;}
.y9f{bottom:253.290000px;}
.y15c{bottom:253.470000px;}
.y4e{bottom:257.250000px;}
.ye1{bottom:258.330000px;}
.y8b{bottom:259.230000px;}
.y152{bottom:260.490000px;}
.yea{bottom:261.390000px;}
.y37{bottom:261.930000px;}
.y10c{bottom:264.990000px;}
.y28{bottom:268.050000px;}
.y9e{bottom:270.570000px;}
.yc0{bottom:270.750000px;}
.ydf{bottom:273.090000px;}
.y4d{bottom:274.530000px;}
.y151{bottom:277.590000px;}
.yc5{bottom:278.460000px;}
.y36{bottom:279.210000px;}
.y10b{bottom:282.270000px;}
.y9d{bottom:284.610000px;}
.yb6{bottom:284.760000px;}
.y27{bottom:285.150000px;}
.y15b{bottom:288.030000px;}
.y4c{bottom:291.630000px;}
.y89{bottom:293.070000px;}
.yeb{bottom:293.730000px;}
.y150{bottom:294.870000px;}
.y35{bottom:296.490000px;}
.yde{bottom:296.670000px;}
.y10a{bottom:299.550000px;}
.y26{bottom:302.430000px;}
.yef{bottom:302.475000px;}
.y15a{bottom:305.310000px;}
.y47{bottom:305.670000px;}
.y14f{bottom:312.150000px;}
.y34{bottom:313.590000px;}
.y123{bottom:313.740000px;}
.y25{bottom:319.890000px;}
.y159{bottom:322.590000px;}
.y14e{bottom:329.430000px;}
.y33{bottom:330.870000px;}
.y88{bottom:339.915000px;}
.y24{bottom:340.230000px;}
.y21{bottom:342.435000px;}
.ydb{bottom:343.155000px;}
.y14d{bottom:346.755000px;}
.y32{bottom:348.150000px;}
.y87{bottom:357.015000px;}
.y14c{bottom:364.035000px;}
.y31{bottom:365.430000px;}
.yda{bottom:366.555000px;}
.y23{bottom:367.590000px;}
.y86{bottom:374.295000px;}
.y14b{bottom:381.135000px;}
.y30{bottom:382.710000px;}
.y22{bottom:385.410000px;}
.yd9{bottom:387.795000px;}
.y85{bottom:391.575000px;}
.y14a{bottom:398.415000px;}
.yd8{bottom:404.895000px;}
.y84{bottom:408.855000px;}
.y149{bottom:415.695000px;}
.yd7{bottom:422.175000px;}
.y83{bottom:426.135000px;}
.y148{bottom:432.975000px;}
.yd6{bottom:439.455000px;}
.y82{bottom:443.415000px;}
.y147{bottom:450.255000px;}
.yd5{bottom:456.735000px;}
.y81{bottom:460.515000px;}
.y146{bottom:467.355000px;}
.yd4{bottom:474.015000px;}
.y80{bottom:477.795000px;}
.y145{bottom:484.635000px;}
.yd3{bottom:491.295000px;}
.y7f{bottom:495.075000px;}
.y144{bottom:501.915000px;}
.yd2{bottom:508.395000px;}
.y7e{bottom:512.355000px;}
.y143{bottom:519.195000px;}
.yd1{bottom:525.675000px;}
.y7d{bottom:529.635000px;}
.y109{bottom:535.575000px;}
.y142{bottom:536.475000px;}
.yd0{bottom:542.955000px;}
.y7c{bottom:546.735000px;}
.y141{bottom:553.755000px;}
.y108{bottom:558.615000px;}
.ycf{bottom:560.235000px;}
.y7b{bottom:564.015000px;}
.y140{bottom:570.855000px;}
.yce{bottom:577.515000px;}
.y7a{bottom:581.295000px;}
.y13f{bottom:588.135000px;}
.y107{bottom:592.275000px;}
.ycd{bottom:594.615000px;}
.y79{bottom:598.575000px;}
.y13e{bottom:605.445000px;}
.ycc{bottom:608.685000px;}
.ye2{bottom:610.020000px;}
.y78{bottom:615.885000px;}
.y9c{bottom:617.325000px;}
.y13d{bottom:622.725000px;}
.y106{bottom:626.145000px;}
.y77{bottom:633.165000px;}
.y9b{bottom:634.605000px;}
.y13c{bottom:640.005000px;}
.y76{bottom:650.265000px;}
.y13b{bottom:657.285000px;}
.y9a{bottom:657.645000px;}
.y105{bottom:659.805000px;}
.y75{bottom:667.545000px;}
.y13a{bottom:674.385000px;}
.y74{bottom:684.825000px;}
.y99{bottom:691.305000px;}
.y139{bottom:691.665000px;}
.y104{bottom:693.645000px;}
.y73{bottom:702.105000px;}
.y138{bottom:705.705000px;}
.y72{bottom:719.385000px;}
.y103{bottom:722.985000px;}
.y98{bottom:725.145000px;}
.y71{bottom:736.665000px;}
.y1f{bottom:739.185000px;}
.y102{bottom:740.265000px;}
.y70{bottom:753.765000px;}
.y101{bottom:757.545000px;}
.y97{bottom:758.805000px;}
.y10{bottom:768.705000px;}
.y6f{bottom:771.045000px;}
.y100{bottom:774.825000px;}
.y6e{bottom:788.325000px;}
.yff{bottom:792.105000px;}
.y96{bottom:792.645000px;}
.y6d{bottom:805.605000px;}
.yfe{bottom:809.385000px;}
.y6c{bottom:822.885000px;}
.yfd{bottom:826.485000px;}
.y6b{bottom:839.985000px;}
.yfc{bottom:843.765000px;}
.y95{bottom:856.545000px;}
.y6a{bottom:857.265000px;}
.yfb{bottom:861.045000px;}
.y94{bottom:873.870000px;}
.y69{bottom:874.590000px;}
.yfa{bottom:878.370000px;}
.y93{bottom:891.150000px;}
.y68{bottom:891.870000px;}
.yf9{bottom:895.650000px;}
.y92{bottom:905.010000px;}
.ya9{bottom:905.580000px;}
.y67{bottom:909.150000px;}
.yf8{bottom:909.510000px;}
.y115{bottom:910.080000px;}
.y66{bottom:926.430000px;}
.y65{bottom:943.530000px;}
.y64{bottom:960.810000px;}
.ycb{bottom:962.970000px;}
.y63{bottom:978.090000px;}
.yca{bottom:980.250000px;}
.y62{bottom:995.370000px;}
.yf7{bottom:1003.290000px;}
.y61{bottom:1012.650000px;}
.y60{bottom:1029.930000px;}
.ye{bottom:1034.970000px;}
.yf6{bottom:1036.950000px;}
.y5f{bottom:1047.030000px;}
.y7{bottom:1060.350000px;}
.y5e{bottom:1064.310000px;}
.yf5{bottom:1070.790000px;}
.y137{bottom:1077.090000px;}
.y5d{bottom:1081.590000px;}
.y136{bottom:1091.850000px;}
.y5c{bottom:1098.870000px;}
.yf4{bottom:1104.450000px;}
.y135{bottom:1109.850000px;}
.y5b{bottom:1116.150000px;}
.y134{bottom:1127.850000px;}
.y5a{bottom:1133.430000px;}
.yf3{bottom:1138.320000px;}
.y133{bottom:1145.880000px;}
.y59{bottom:1150.560000px;}
.y132{bottom:1163.880000px;}
.y58{bottom:1167.840000px;}
.h26{height:17.100000px;}
.h23{height:17.280000px;}
.h2f{height:17.316000px;}
.h24{height:21.240000px;}
.h2a{height:22.500000px;}
.h2b{height:22.536000px;}
.h2c{height:22.860000px;}
.hd{height:25.020000px;}
.h14{height:28.968750px;}
.h15{height:29.520000px;}
.h22{height:34.560000px;}
.h13{height:35.806641px;}
.ha{height:36.180000px;}
.h20{height:36.756000px;}
.h1d{height:38.818125px;}
.h1a{height:40.243711px;}
.h1f{height:41.726953px;}
.h1e{height:42.164648px;}
.h1c{height:42.281367px;}
.h5{height:43.453125px;}
.h34{height:43.506914px;}
.hf{height:44.002969px;}
.hc{height:44.820000px;}
.h1b{height:45.770625px;}
.h18{height:47.980898px;}
.h35{height:48.027656px;}
.h21{height:48.088125px;}
.h2{height:49.536000px;}
.h25{height:51.660000px;}
.h4{height:53.709961px;}
.hb{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h11{height:59.439023px;}
.h28{height:59.582250px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h7{height:65.884219px;}
.h6{height:67.824844px;}
.h9{height:71.613281px;}
.h16{height:73.722656px;}
.h32{height:78.459023px;}
.h31{height:101.499023px;}
.h8{height:121.536000px;}
.h2e{height:124.119023px;}
.h33{height:218.700000px;}
.he{height:266.250000px;}
.h30{height:271.800000px;}
.h27{height:276.300000px;}
.h29{height:329.400000px;}
.h2d{height:349.740000px;}
.h17{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w18{width:128.196000px;}
.w11{width:145.980000px;}
.w5{width:151.950000px;}
.wc{width:162.030000px;}
.w15{width:165.060000px;}
.w1c{width:165.630000px;}
.wa{width:180.930000px;}
.wb{width:181.110000px;}
.wd{width:183.630000px;}
.w1b{width:187.230000px;}
.we{width:194.430000px;}
.w8{width:223.455000px;}
.w19{width:254.415000px;}
.w12{width:264.135000px;}
.w17{width:275.070000px;}
.w16{width:284.655000px;}
.w13{width:309.810000px;}
.w1a{width:342.570000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w14{width:696.420000px;}
.wf{width:707.040000px;}
.w10{width:712.260000px;}
.w1e{width:713.700000px;}
.w7{width:731.130000px;}
.w1d{width:733.140000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:6.876000px;}
.x2{left:8.676000px;}
.x16{left:12.600000px;}
.x31{left:18.864000px;}
.x3e{left:23.832000px;}
.x30{left:26.460000px;}
.x28{left:29.700000px;}
.x3d{left:31.428000px;}
.x4f{left:34.812000px;}
.x27{left:37.296000px;}
.xb{left:39.636000px;}
.x2f{left:41.688000px;}
.x54{left:45.324000px;}
.x53{left:52.920000px;}
.x26{left:60.120000px;}
.xd{left:75.270000px;}
.xc{left:79.050000px;}
.x1{left:81.000000px;}
.x18{left:82.440000px;}
.x2e{left:89.820000px;}
.x25{left:93.060000px;}
.x4{left:98.130000px;}
.x12{left:99.390000px;}
.x43{left:100.656000px;}
.x5c{left:108.035987px;}
.x32{left:111.240000px;}
.x48{left:116.135987px;}
.xf{left:117.390000px;}
.x3f{left:119.085000px;}
.xe{left:121.530000px;}
.x10{left:122.790000px;}
.x33{left:128.130000px;}
.x11{left:131.250000px;}
.x47{left:136.835987px;}
.x50{left:139.470000px;}
.x24{left:141.155987px;}
.x55{left:142.740000px;}
.x39{left:143.855987px;}
.x29{left:145.005000px;}
.x57{left:146.520000px;}
.x2b{left:148.785000px;}
.x13{left:156.270000px;}
.x1f{left:160.769987px;}
.x40{left:165.675000px;}
.x4b{left:201.809987px;}
.x49{left:212.070000px;}
.x14{left:215.175000px;}
.x5{left:232.950000px;}
.x3b{left:238.890000px;}
.x20{left:245.910000px;}
.x34{left:254.490000px;}
.x36{left:262.050000px;}
.x1a{left:264.810000px;}
.x44{left:267.330000px;}
.x4c{left:269.670000px;}
.x8{left:272.235000px;}
.x1e{left:277.049987px;}
.x17{left:280.874987px;}
.x15{left:304.455000px;}
.x41{left:328.170000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x35{left:380.880000px;}
.x37{left:384.660000px;}
.x56{left:394.635000px;}
.x5b{left:396.074987px;}
.x58{left:398.415000px;}
.x2a{left:401.370000px;}
.x2c{left:408.930000px;}
.x51{left:415.185000px;}
.x21{left:430.995000px;}
.x9{left:439.500000px;}
.x1b{left:447.195000px;}
.x4d{left:457.815000px;}
.x4a{left:468.105000px;}
.x3c{left:503.745000px;}
.x38{left:532.515000px;}
.x45{left:553.605000px;}
.x59{left:568.545000px;}
.x2d{left:573.915000px;}
.x52{left:587.415000px;}
.x22{left:626.865000px;}
.x1c{left:629.565000px;}
.x42{left:632.130000px;}
.x4e{left:645.765000px;}
.x3{left:739.050000px;}
.x3a{left:795.389987px;}
.x5a{left:798.629987px;}
.x1d{left:802.049987px;}
.x23{left:805.469987px;}
.x46{left:819.149987px;}
@media print{
.v8{vertical-align:-58.986667pt;}
.v4{vertical-align:-30.506667pt;}
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-8.426667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:16.906667pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:37.386667pt;}
.v5{vertical-align:57.493333pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.089067pt;}
.ls12{letter-spacing:-0.051840pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.076267pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls17{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:40.912640pt;}
.ls18{letter-spacing:463.308160pt;}
.ls14{letter-spacing:550.881493pt;}
.ls19{letter-spacing:577.974827pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.190933pt;}
.ws16{word-spacing:-13.096533pt;}
.ws1d{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws1e{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.640000pt;}
.ws11{word-spacing:-12.034048pt;}
.wsb{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws1f{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsd{word-spacing:0.000000pt;}
.ws1c{word-spacing:327.576107pt;}
.ws15{word-spacing:328.910507pt;}
.ws12{word-spacing:342.137173pt;}
.ws13{word-spacing:342.980053pt;}
.ws14{word-spacing:369.860053pt;}
.ws1a{word-spacing:369.869440pt;}
.ws18{word-spacing:457.602773pt;}
.ws1b{word-spacing:546.660053pt;}
._4{margin-left:-4.458667pt;}
._3{margin-left:-2.968960pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-0.965333pt;}
._1{width:1.018667pt;}
._d{width:2.168533pt;}
._c{width:3.187200pt;}
._9{width:4.240213pt;}
._a{width:5.429760pt;}
._7{width:6.374400pt;}
._8{width:7.839573pt;}
._11{width:9.242453pt;}
._10{width:10.333013pt;}
._f{width:11.902720pt;}
._e{width:15.670400pt;}
._5{width:19.182080pt;}
._6{width:20.134400pt;}
._18{width:21.038933pt;}
._b{width:31.234560pt;}
._17{width:33.128107pt;}
._16{width:45.912320pt;}
._15{width:46.872960pt;}
._13{width:119.912960pt;}
._14{width:122.042667pt;}
._12{width:199.330560pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y4b{bottom:3.520000pt;}
.y1e{bottom:4.320000pt;}
.y8e{bottom:6.400000pt;}
.ydd{bottom:7.520000pt;}
.ydc{bottom:7.680000pt;}
.ye0{bottom:7.840000pt;}
.yf{bottom:8.480000pt;}
.y49{bottom:9.440000pt;}
.y20{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y12a{bottom:14.213333pt;}
.y11c{bottom:14.400000pt;}
.yaf{bottom:14.426667pt;}
.yc1{bottom:14.466667pt;}
.yec{bottom:14.493333pt;}
.y6{bottom:15.840000pt;}
.y3{bottom:17.920000pt;}
.y45{bottom:18.080000pt;}
.y8a{bottom:18.240000pt;}
.y4a{bottom:19.840000pt;}
.y48{bottom:22.560000pt;}
.y1d{bottom:26.080000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y124{bottom:30.853333pt;}
.y116{bottom:31.066667pt;}
.yaa{bottom:31.106667pt;}
.ye3{bottom:31.133333pt;}
.y2{bottom:32.512000pt;}
.y44{bottom:33.440000pt;}
.y1{bottom:34.560000pt;}
.y1c{bottom:40.640000pt;}
.yb{bottom:41.280000pt;}
.y12c{bottom:46.240000pt;}
.y43{bottom:48.800000pt;}
.y11e{bottom:49.946667pt;}
.yb7{bottom:52.066667pt;}
.y125{bottom:53.213333pt;}
.y12f{bottom:55.200000pt;}
.y1b{bottom:55.360000pt;}
.yc3{bottom:55.866667pt;}
.ye4{bottom:59.906667pt;}
.y12b{bottom:61.920000pt;}
.y117{bottom:62.266667pt;}
.y120{bottom:62.426667pt;}
.y42{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.yee{bottom:67.680000pt;}
.y1a{bottom:70.080000pt;}
.yab{bottom:71.520000pt;}
.y11d{bottom:71.773333pt;}
.yc6{bottom:72.320000pt;}
.yb8{bottom:73.026667pt;}
.y12d{bottom:73.093333pt;}
.yb0{bottom:73.600000pt;}
.y126{bottom:75.586667pt;}
.y41{bottom:79.520000pt;}
.y131{bottom:81.253333pt;}
.y9{bottom:82.746667pt;}
.y19{bottom:84.640000pt;}
.ya8{bottom:87.232000pt;}
.ye5{bottom:88.640000pt;}
.y114{bottom:88.672000pt;}
.y12e{bottom:88.773333pt;}
.y57{bottom:90.592000pt;}
.y118{bottom:93.466667pt;}
.yb9{bottom:93.986667pt;}
.y40{bottom:94.880000pt;}
.yf0{bottom:96.413333pt;}
.y91{bottom:97.632000pt;}
.y127{bottom:97.946667pt;}
.y8{bottom:98.906667pt;}
.y18{bottom:99.400000pt;}
.ya7{bottom:102.592000pt;}
.y113{bottom:104.672000pt;}
.y122{bottom:104.960000pt;}
.y56{bottom:105.952000pt;}
.yb5{bottom:106.946667pt;}
.y11f{bottom:109.253333pt;}
.y3f{bottom:110.080000pt;}
.yb1{bottom:110.533333pt;}
.yc4{bottom:110.653333pt;}
.yb2{bottom:111.173333pt;}
.yac{bottom:111.973333pt;}
.y90{bottom:112.992000pt;}
.y17{bottom:113.320000pt;}
.yba{bottom:114.946667pt;}
.ye6{bottom:117.373333pt;}
.ya6{bottom:117.952000pt;}
.y163{bottom:118.112000pt;}
.y130{bottom:120.093333pt;}
.y128{bottom:120.346667pt;}
.y112{bottom:120.672000pt;}
.y55{bottom:121.312000pt;}
.y16{bottom:122.600000pt;}
.y158{bottom:124.192000pt;}
.y119{bottom:124.666667pt;}
.y121{bottom:124.826667pt;}
.y3e{bottom:125.440000pt;}
.yc9{bottom:130.466667pt;}
.yb4{bottom:131.066667pt;}
.y2f{bottom:133.120000pt;}
.ya5{bottom:133.152000pt;}
.y162{bottom:133.312000pt;}
.y8f{bottom:133.466667pt;}
.ybb{bottom:135.906667pt;}
.y54{bottom:136.666667pt;}
.y15{bottom:138.920000pt;}
.yed{bottom:139.520000pt;}
.yf2{bottom:139.546667pt;}
.y3d{bottom:140.800000pt;}
.y129{bottom:142.720000pt;}
.yc2{bottom:143.040000pt;}
.ye7{bottom:146.106667pt;}
.y2e{bottom:146.720000pt;}
.ya4{bottom:148.506667pt;}
.y161{bottom:148.666667pt;}
.y53{bottom:152.026667pt;}
.yad{bottom:152.413333pt;}
.y111{bottom:152.666667pt;}
.yc8{bottom:154.586667pt;}
.y157{bottom:154.746667pt;}
.y14{bottom:155.880000pt;}
.y11a{bottom:155.906667pt;}
.y3c{bottom:156.160000pt;}
.ybc{bottom:156.826667pt;}
.y2d{bottom:162.400000pt;}
.yf1{bottom:163.653333pt;}
.ya3{bottom:163.866667pt;}
.y160{bottom:164.026667pt;}
.y8d{bottom:166.906667pt;}
.y52{bottom:167.226667pt;}
.y110{bottom:168.666667pt;}
.y156{bottom:170.106667pt;}
.y3b{bottom:171.520000pt;}
.ye8{bottom:174.880000pt;}
.y2c{bottom:177.600000pt;}
.ybd{bottom:177.786667pt;}
.y13{bottom:178.760000pt;}
.ya2{bottom:179.226667pt;}
.y15f{bottom:179.386667pt;}
.y51{bottom:182.586667pt;}
.yc7{bottom:183.680000pt;}
.yb3{bottom:183.773333pt;}
.y10f{bottom:184.666667pt;}
.y155{bottom:185.466667pt;}
.y3a{bottom:186.880000pt;}
.y11b{bottom:187.106667pt;}
.yae{bottom:192.866667pt;}
.y2b{bottom:192.960000pt;}
.ya1{bottom:194.586667pt;}
.y15e{bottom:194.746667pt;}
.y50{bottom:197.946667pt;}
.ybe{bottom:198.746667pt;}
.y8c{bottom:200.506667pt;}
.y10e{bottom:200.666667pt;}
.y154{bottom:200.826667pt;}
.y12{bottom:201.640000pt;}
.y39{bottom:202.080000pt;}
.ye9{bottom:203.613333pt;}
.y2a{bottom:208.800000pt;}
.ya0{bottom:209.786667pt;}
.y15d{bottom:210.106667pt;}
.y4f{bottom:213.306667pt;}
.y153{bottom:216.186667pt;}
.y10d{bottom:216.666667pt;}
.y38{bottom:217.440000pt;}
.ybf{bottom:219.706667pt;}
.y11{bottom:223.240000pt;}
.y29{bottom:223.680000pt;}
.y9f{bottom:225.146667pt;}
.y15c{bottom:225.306667pt;}
.y4e{bottom:228.666667pt;}
.ye1{bottom:229.626667pt;}
.y8b{bottom:230.426667pt;}
.y152{bottom:231.546667pt;}
.yea{bottom:232.346667pt;}
.y37{bottom:232.826667pt;}
.y10c{bottom:235.546667pt;}
.y28{bottom:238.266667pt;}
.y9e{bottom:240.506667pt;}
.yc0{bottom:240.666667pt;}
.ydf{bottom:242.746667pt;}
.y4d{bottom:244.026667pt;}
.y151{bottom:246.746667pt;}
.yc5{bottom:247.520000pt;}
.y36{bottom:248.186667pt;}
.y10b{bottom:250.906667pt;}
.y9d{bottom:252.986667pt;}
.yb6{bottom:253.120000pt;}
.y27{bottom:253.466667pt;}
.y15b{bottom:256.026667pt;}
.y4c{bottom:259.226667pt;}
.y89{bottom:260.506667pt;}
.yeb{bottom:261.093333pt;}
.y150{bottom:262.106667pt;}
.y35{bottom:263.546667pt;}
.yde{bottom:263.706667pt;}
.y10a{bottom:266.266667pt;}
.y26{bottom:268.826667pt;}
.yef{bottom:268.866667pt;}
.y15a{bottom:271.386667pt;}
.y47{bottom:271.706667pt;}
.y14f{bottom:277.466667pt;}
.y34{bottom:278.746667pt;}
.y123{bottom:278.880000pt;}
.y25{bottom:284.346667pt;}
.y159{bottom:286.746667pt;}
.y14e{bottom:292.826667pt;}
.y33{bottom:294.106667pt;}
.y88{bottom:302.146667pt;}
.y24{bottom:302.426667pt;}
.y21{bottom:304.386667pt;}
.ydb{bottom:305.026667pt;}
.y14d{bottom:308.226667pt;}
.y32{bottom:309.466667pt;}
.y87{bottom:317.346667pt;}
.y14c{bottom:323.586667pt;}
.y31{bottom:324.826667pt;}
.yda{bottom:325.826667pt;}
.y23{bottom:326.746667pt;}
.y86{bottom:332.706667pt;}
.y14b{bottom:338.786667pt;}
.y30{bottom:340.186667pt;}
.y22{bottom:342.586667pt;}
.yd9{bottom:344.706667pt;}
.y85{bottom:348.066667pt;}
.y14a{bottom:354.146667pt;}
.yd8{bottom:359.906667pt;}
.y84{bottom:363.426667pt;}
.y149{bottom:369.506667pt;}
.yd7{bottom:375.266667pt;}
.y83{bottom:378.786667pt;}
.y148{bottom:384.866667pt;}
.yd6{bottom:390.626667pt;}
.y82{bottom:394.146667pt;}
.y147{bottom:400.226667pt;}
.yd5{bottom:405.986667pt;}
.y81{bottom:409.346667pt;}
.y146{bottom:415.426667pt;}
.yd4{bottom:421.346667pt;}
.y80{bottom:424.706667pt;}
.y145{bottom:430.786667pt;}
.yd3{bottom:436.706667pt;}
.y7f{bottom:440.066667pt;}
.y144{bottom:446.146667pt;}
.yd2{bottom:451.906667pt;}
.y7e{bottom:455.426667pt;}
.y143{bottom:461.506667pt;}
.yd1{bottom:467.266667pt;}
.y7d{bottom:470.786667pt;}
.y109{bottom:476.066667pt;}
.y142{bottom:476.866667pt;}
.yd0{bottom:482.626667pt;}
.y7c{bottom:485.986667pt;}
.y141{bottom:492.226667pt;}
.y108{bottom:496.546667pt;}
.ycf{bottom:497.986667pt;}
.y7b{bottom:501.346667pt;}
.y140{bottom:507.426667pt;}
.yce{bottom:513.346667pt;}
.y7a{bottom:516.706667pt;}
.y13f{bottom:522.786667pt;}
.y107{bottom:526.466667pt;}
.ycd{bottom:528.546667pt;}
.y79{bottom:532.066667pt;}
.y13e{bottom:538.173333pt;}
.ycc{bottom:541.053333pt;}
.ye2{bottom:542.240000pt;}
.y78{bottom:547.453333pt;}
.y9c{bottom:548.733333pt;}
.y13d{bottom:553.533333pt;}
.y106{bottom:556.573333pt;}
.y77{bottom:562.813333pt;}
.y9b{bottom:564.093333pt;}
.y13c{bottom:568.893333pt;}
.y76{bottom:578.013333pt;}
.y13b{bottom:584.253333pt;}
.y9a{bottom:584.573333pt;}
.y105{bottom:586.493333pt;}
.y75{bottom:593.373333pt;}
.y13a{bottom:599.453333pt;}
.y74{bottom:608.733333pt;}
.y99{bottom:614.493333pt;}
.y139{bottom:614.813333pt;}
.y104{bottom:616.573333pt;}
.y73{bottom:624.093333pt;}
.y138{bottom:627.293333pt;}
.y72{bottom:639.453333pt;}
.y103{bottom:642.653333pt;}
.y98{bottom:644.573333pt;}
.y71{bottom:654.813333pt;}
.y1f{bottom:657.053333pt;}
.y102{bottom:658.013333pt;}
.y70{bottom:670.013333pt;}
.y101{bottom:673.373333pt;}
.y97{bottom:674.493333pt;}
.y10{bottom:683.293333pt;}
.y6f{bottom:685.373333pt;}
.y100{bottom:688.733333pt;}
.y6e{bottom:700.733333pt;}
.yff{bottom:704.093333pt;}
.y96{bottom:704.573333pt;}
.y6d{bottom:716.093333pt;}
.yfe{bottom:719.453333pt;}
.y6c{bottom:731.453333pt;}
.yfd{bottom:734.653333pt;}
.y6b{bottom:746.653333pt;}
.yfc{bottom:750.013333pt;}
.y95{bottom:761.373333pt;}
.y6a{bottom:762.013333pt;}
.yfb{bottom:765.373333pt;}
.y94{bottom:776.773333pt;}
.y69{bottom:777.413333pt;}
.yfa{bottom:780.773333pt;}
.y93{bottom:792.133333pt;}
.y68{bottom:792.773333pt;}
.yf9{bottom:796.133333pt;}
.y92{bottom:804.453333pt;}
.ya9{bottom:804.960000pt;}
.y67{bottom:808.133333pt;}
.yf8{bottom:808.453333pt;}
.y115{bottom:808.960000pt;}
.y66{bottom:823.493333pt;}
.y65{bottom:838.693333pt;}
.y64{bottom:854.053333pt;}
.ycb{bottom:855.973333pt;}
.y63{bottom:869.413333pt;}
.yca{bottom:871.333333pt;}
.y62{bottom:884.773333pt;}
.yf7{bottom:891.813333pt;}
.y61{bottom:900.133333pt;}
.y60{bottom:915.493333pt;}
.ye{bottom:919.973333pt;}
.yf6{bottom:921.733333pt;}
.y5f{bottom:930.693333pt;}
.y7{bottom:942.533333pt;}
.y5e{bottom:946.053333pt;}
.yf5{bottom:951.813333pt;}
.y137{bottom:957.413333pt;}
.y5d{bottom:961.413333pt;}
.y136{bottom:970.533333pt;}
.y5c{bottom:976.773333pt;}
.yf4{bottom:981.733333pt;}
.y135{bottom:986.533333pt;}
.y5b{bottom:992.133333pt;}
.y134{bottom:1002.533333pt;}
.y5a{bottom:1007.493333pt;}
.yf3{bottom:1011.840000pt;}
.y133{bottom:1018.560000pt;}
.y59{bottom:1022.720000pt;}
.y132{bottom:1034.560000pt;}
.y58{bottom:1038.080000pt;}
.h26{height:15.200000pt;}
.h23{height:15.360000pt;}
.h2f{height:15.392000pt;}
.h24{height:18.880000pt;}
.h2a{height:20.000000pt;}
.h2b{height:20.032000pt;}
.h2c{height:20.320000pt;}
.hd{height:22.240000pt;}
.h14{height:25.750000pt;}
.h15{height:26.240000pt;}
.h22{height:30.720000pt;}
.h13{height:31.828125pt;}
.ha{height:32.160000pt;}
.h20{height:32.672000pt;}
.h1d{height:34.505000pt;}
.h1a{height:35.772188pt;}
.h1f{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h1c{height:37.583438pt;}
.h5{height:38.625000pt;}
.h34{height:38.672812pt;}
.hf{height:39.113750pt;}
.hc{height:39.840000pt;}
.h1b{height:40.685000pt;}
.h18{height:42.649687pt;}
.h35{height:42.691250pt;}
.h21{height:42.745000pt;}
.h2{height:44.032000pt;}
.h25{height:45.920000pt;}
.h4{height:47.742188pt;}
.hb{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h11{height:52.834688pt;}
.h28{height:52.962000pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h7{height:58.563750pt;}
.h6{height:60.288750pt;}
.h9{height:63.656250pt;}
.h16{height:65.531250pt;}
.h32{height:69.741354pt;}
.h31{height:90.221354pt;}
.h8{height:108.032000pt;}
.h2e{height:110.328021pt;}
.h33{height:194.400000pt;}
.he{height:236.666667pt;}
.h30{height:241.600000pt;}
.h27{height:245.600000pt;}
.h29{height:292.800000pt;}
.h2d{height:310.880000pt;}
.h17{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w18{width:113.952000pt;}
.w11{width:129.760000pt;}
.w5{width:135.066667pt;}
.wc{width:144.026667pt;}
.w15{width:146.720000pt;}
.w1c{width:147.226667pt;}
.wa{width:160.826667pt;}
.wb{width:160.986667pt;}
.wd{width:163.226667pt;}
.w1b{width:166.426667pt;}
.we{width:172.826667pt;}
.w8{width:198.626667pt;}
.w19{width:226.146667pt;}
.w12{width:234.786667pt;}
.w17{width:244.506667pt;}
.w16{width:253.026667pt;}
.w13{width:275.386667pt;}
.w1a{width:304.506667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w14{width:619.040000pt;}
.wf{width:628.480000pt;}
.w10{width:633.120000pt;}
.w1e{width:634.400000pt;}
.w7{width:649.893333pt;}
.w1d{width:651.680000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.112000pt;}
.x2{left:7.712000pt;}
.x16{left:11.200000pt;}
.x31{left:16.768000pt;}
.x3e{left:21.184000pt;}
.x30{left:23.520000pt;}
.x28{left:26.400000pt;}
.x3d{left:27.936000pt;}
.x4f{left:30.944000pt;}
.x27{left:33.152000pt;}
.xb{left:35.232000pt;}
.x2f{left:37.056000pt;}
.x54{left:40.288000pt;}
.x53{left:47.040000pt;}
.x26{left:53.440000pt;}
.xd{left:66.906667pt;}
.xc{left:70.266667pt;}
.x1{left:72.000000pt;}
.x18{left:73.280000pt;}
.x2e{left:79.840000pt;}
.x25{left:82.720000pt;}
.x4{left:87.226667pt;}
.x12{left:88.346667pt;}
.x43{left:89.472000pt;}
.x5c{left:96.031988pt;}
.x32{left:98.880000pt;}
.x48{left:103.231988pt;}
.xf{left:104.346667pt;}
.x3f{left:105.853333pt;}
.xe{left:108.026667pt;}
.x10{left:109.146667pt;}
.x33{left:113.893333pt;}
.x11{left:116.666667pt;}
.x47{left:121.631988pt;}
.x50{left:123.973333pt;}
.x24{left:125.471988pt;}
.x55{left:126.880000pt;}
.x39{left:127.871988pt;}
.x29{left:128.893333pt;}
.x57{left:130.240000pt;}
.x2b{left:132.253333pt;}
.x13{left:138.906667pt;}
.x1f{left:142.906655pt;}
.x40{left:147.266667pt;}
.x4b{left:179.386655pt;}
.x49{left:188.506667pt;}
.x14{left:191.266667pt;}
.x5{left:207.066667pt;}
.x3b{left:212.346667pt;}
.x20{left:218.586667pt;}
.x34{left:226.213333pt;}
.x36{left:232.933333pt;}
.x1a{left:235.386667pt;}
.x44{left:237.626667pt;}
.x4c{left:239.706667pt;}
.x8{left:241.986667pt;}
.x1e{left:246.266655pt;}
.x17{left:249.666655pt;}
.x15{left:270.626667pt;}
.x41{left:291.706667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x35{left:338.560000pt;}
.x37{left:341.920000pt;}
.x56{left:350.786667pt;}
.x5b{left:352.066655pt;}
.x58{left:354.146667pt;}
.x2a{left:356.773333pt;}
.x2c{left:363.493333pt;}
.x51{left:369.053333pt;}
.x21{left:383.106667pt;}
.x9{left:390.666667pt;}
.x1b{left:397.506667pt;}
.x4d{left:406.946667pt;}
.x4a{left:416.093333pt;}
.x3c{left:447.773333pt;}
.x38{left:473.346667pt;}
.x45{left:492.093333pt;}
.x59{left:505.373333pt;}
.x2d{left:510.146667pt;}
.x52{left:522.146667pt;}
.x22{left:557.213333pt;}
.x1c{left:559.613333pt;}
.x42{left:561.893333pt;}
.x4e{left:574.013333pt;}
.x3{left:656.933333pt;}
.x3a{left:707.013322pt;}
.x5a{left:709.893322pt;}
.x1d{left:712.933322pt;}
.x23{left:715.973322pt;}
.x46{left:728.133322pt;}
}




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