
    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_9a2e070b96b4f1000c8f5640.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_e066256b71b5d0678ae0423a.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_2e4b6b3b24fed2557617e279.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_e08abb5de77eb48a39ce223f.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_9555f3d3271594c8ed0ca7be.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_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d91c95443feb3ae1d895cbb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.792969;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_10db15e9b14b5d56bb0d3628.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b1d60fe20f42c93d964cb936.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b42510faa69792413ae0a709.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0425ac03ac6291b1a832b1ec.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5b46dfc7fc976eea4ec7afe8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5ff792d6b42aa5955e6c394a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3146e645b039a408d203bcca.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff10{font-family:ff10;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);}
.v4{vertical-align:-53.580000px;}
.v3{vertical-align:-47.640000px;}
.v2{vertical-align:-15.120000px;}
.v5{vertical-align:-5.940000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:52.560000px;}
.lsa{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.131400px;}
.ls9{letter-spacing:-0.127200px;}
.ls13{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.064200px;}
.lsb{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.085800px;}
.lsc{letter-spacing:0.087600px;}
.lsd{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.894240px;}
.ls16{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls10{letter-spacing:630.168672px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.wsd{word-spacing:-24.440544px;}
.wse{word-spacing:-24.408000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:101.974800px;}
.wsb{word-spacing:541.672560px;}
.wsa{word-spacing:541.792560px;}
.wsc{word-spacing:541.852560px;}
.wsf{word-spacing:601.732560px;}
.ws13{word-spacing:840.536040px;}
.ws14{word-spacing:853.916040px;}
.ws15{word-spacing:871.376040px;}
.ws12{word-spacing:892.256040px;}
._25{margin-left:-9.624816px;}
._20{margin-left:-5.940000px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.134000px;}
._1{width:1.056000px;}
._6{width:2.091600px;}
._e{width:3.127200px;}
._5{width:4.281600px;}
._4{width:5.517600px;}
._c{width:6.757680px;}
._d{width:7.800720px;}
._9{width:9.015360px;}
._14{width:10.438320px;}
._a{width:12.270480px;}
._b{width:13.306800px;}
._15{width:15.972000px;}
._8{width:17.254560px;}
._13{width:18.326640px;}
._12{width:20.158800px;}
._f{width:21.573360px;}
._11{width:22.924080px;}
._3{width:24.115200px;}
._10{width:25.457760px;}
._16{width:27.028320px;}
._7{width:28.505520px;}
._27{width:29.778720px;}
._26{width:30.895920px;}
._17{width:33.494880px;}
._18{width:49.182480px;}
._1c{width:73.417680px;}
._1a{width:110.556000px;}
._19{width:111.631680px;}
._1d{width:146.665440px;}
._21{width:184.869840px;}
._22{width:204.686880px;}
._1b{width:242.794800px;}
._1f{width:254.367360px;}
._1e{width:327.274800px;}
._23{width:472.563360px;}
._24{width:555.783360px;}
.fc5{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fsb{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.240000px;}
.y9a{bottom:3.285000px;}
.y4{bottom:3.600000px;}
.y55{bottom:3.960000px;}
.y20{bottom:4.500000px;}
.yf7{bottom:5.220000px;}
.ya6{bottom:5.400000px;}
.ya8{bottom:5.445000px;}
.yb8{bottom:5.580000px;}
.yda{bottom:5.760000px;}
.yaa{bottom:5.940000px;}
.yac{bottom:6.120000px;}
.yb6{bottom:6.300000px;}
.ybb{bottom:6.345000px;}
.y106{bottom:6.480000px;}
.yf9{bottom:6.840000px;}
.y53{bottom:10.620000px;}
.yf{bottom:10.800000px;}
.y11c{bottom:13.530000px;}
.yec{bottom:13.575000px;}
.y116{bottom:13.605000px;}
.yc1{bottom:13.710000px;}
.y110{bottom:13.755000px;}
.yd{bottom:13.860000px;}
.y6{bottom:17.820000px;}
.y104{bottom:19.620000px;}
.y141{bottom:19.650000px;}
.y121{bottom:19.800000px;}
.y3{bottom:20.160000px;}
.y4f{bottom:20.520000px;}
.y54{bottom:22.134000px;}
.y1f{bottom:23.760000px;}
.y52{bottom:25.194000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.y9f{bottom:37.620000px;}
.y4e{bottom:37.800000px;}
.y1{bottom:38.880000px;}
.y1e{bottom:43.920000px;}
.yb{bottom:46.440000px;}
.y4d{bottom:55.080000px;}
.y1d{bottom:56.700000px;}
.y10e{bottom:59.655000px;}
.y10c{bottom:70.995000px;}
.y4c{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.y115{bottom:75.705000px;}
.y1c{bottom:76.860000px;}
.ydf{bottom:89.430000px;}
.y4b{bottom:89.460000px;}
.y1b{bottom:89.640000px;}
.y171{bottom:92.880000px;}
.y9{bottom:93.090000px;}
.y10f{bottom:93.630000px;}
.y11b{bottom:95.970000px;}
.y16f{bottom:97.776000px;}
.y10d{bottom:104.970000px;}
.y57{bottom:105.336000px;}
.y4a{bottom:106.740000px;}
.ye8{bottom:107.385000px;}
.ya4{bottom:108.036000px;}
.ye2{bottom:108.105000px;}
.y1a{bottom:109.980000px;}
.y10a{bottom:110.916000px;}
.y8{bottom:111.270000px;}
.y13c{bottom:111.630000px;}
.y134{bottom:113.976000px;}
.y16e{bottom:115.056000px;}
.y95{bottom:115.596000px;}
.ye0{bottom:119.340000px;}
.y114{bottom:121.575000px;}
.y19{bottom:122.580000px;}
.y56{bottom:122.616000px;}
.y49{bottom:124.020000px;}
.ya3{bottom:125.316000px;}
.ye3{bottom:126.825000px;}
.yea{bottom:127.110000px;}
.y109{bottom:128.196000px;}
.y133{bottom:131.256000px;}
.y16d{bottom:132.336000px;}
.y94{bottom:132.876000px;}
.y51{bottom:136.656000px;}
.yc0{bottom:137.490000px;}
.y48{bottom:141.300000px;}
.ye1{bottom:141.765000px;}
.y108{bottom:142.236000px;}
.y119{bottom:142.560000px;}
.ya2{bottom:142.596000px;}
.y18{bottom:142.965000px;}
.y11a{bottom:143.820000px;}
.yde{bottom:145.515000px;}
.y112{bottom:148.290000px;}
.y132{bottom:148.536000px;}
.y172{bottom:148.575000px;}
.y16c{bottom:149.616000px;}
.y93{bottom:149.976000px;}
.ye9{bottom:153.435000px;}
.y118{bottom:154.905000px;}
.ya1{bottom:157.350000px;}
.y47{bottom:158.580000px;}
.y17{bottom:158.625000px;}
.ybf{bottom:159.765000px;}
.ybe{bottom:161.280000px;}
.y131{bottom:165.810000px;}
.yeb{bottom:166.605000px;}
.y16b{bottom:166.890000px;}
.y92{bottom:167.250000px;}
.y136{bottom:167.325000px;}
.y16{bottom:169.065000px;}
.y11e{bottom:169.455000px;}
.y22{bottom:173.190000px;}
.y174{bottom:174.705000px;}
.ya0{bottom:175.350000px;}
.ye6{bottom:175.470000px;}
.y46{bottom:175.725000px;}
.yc4{bottom:182.190000px;}
.y130{bottom:182.910000px;}
.y16a{bottom:183.990000px;}
.y91{bottom:184.530000px;}
.y111{bottom:184.575000px;}
.y15{bottom:187.425000px;}
.y117{bottom:191.160000px;}
.y45{bottom:193.005000px;}
.y9e{bottom:193.350000px;}
.yee{bottom:194.760000px;}
.y137{bottom:195.300000px;}
.y13b{bottom:196.305000px;}
.y12f{bottom:200.190000px;}
.y169{bottom:201.270000px;}
.y90{bottom:201.810000px;}
.y11d{bottom:205.740000px;}
.y14{bottom:206.505000px;}
.y44{bottom:210.285000px;}
.y173{bottom:210.990000px;}
.ye5{bottom:211.755000px;}
.y12e{bottom:214.230000px;}
.y13a{bottom:214.560000px;}
.yc3{bottom:218.520000px;}
.y168{bottom:218.550000px;}
.y8f{bottom:219.090000px;}
.y43{bottom:227.565000px;}
.yed{bottom:231.045000px;}
.y13{bottom:232.245000px;}
.y13e{bottom:232.455000px;}
.y167{bottom:235.830000px;}
.y8e{bottom:236.370000px;}
.y139{bottom:238.290000px;}
.ye4{bottom:244.695000px;}
.y42{bottom:244.845000px;}
.ydc{bottom:247.350000px;}
.y9d{bottom:248.970000px;}
.yc2{bottom:251.460000px;}
.y166{bottom:253.110000px;}
.y8d{bottom:253.470000px;}
.y12{bottom:257.985000px;}
.y41{bottom:261.945000px;}
.ydb{bottom:262.110000px;}
.y9c{bottom:266.250000px;}
.y13d{bottom:268.740000px;}
.y165{bottom:270.390000px;}
.y31{bottom:270.405000px;}
.y8c{bottom:270.750000px;}
.y138{bottom:274.575000px;}
.y40{bottom:279.225000px;}
.y9b{bottom:281.010000px;}
.y11{bottom:282.285000px;}
.yd9{bottom:283.170000px;}
.y30{bottom:285.705000px;}
.y164{bottom:287.490000px;}
.y8b{bottom:288.030000px;}
.y3f{bottom:296.505000px;}
.y2f{bottom:303.345000px;}
.yd8{bottom:303.690000px;}
.y163{bottom:304.770000px;}
.y8a{bottom:305.310000px;}
.y3e{bottom:313.785000px;}
.ybc{bottom:316.470000px;}
.y2e{bottom:320.625000px;}
.y162{bottom:322.050000px;}
.y89{bottom:322.590000px;}
.yd7{bottom:327.270000px;}
.y3d{bottom:331.065000px;}
.yba{bottom:331.230000px;}
.y99{bottom:333.570000px;}
.y2d{bottom:337.905000px;}
.y161{bottom:339.375000px;}
.y88{bottom:339.915000px;}
.yd6{bottom:344.595000px;}
.y3c{bottom:348.345000px;}
.yb9{bottom:352.335000px;}
.y98{bottom:354.855000px;}
.y2c{bottom:355.545000px;}
.y160{bottom:356.655000px;}
.y87{bottom:357.015000px;}
.yd5{bottom:361.875000px;}
.y3b{bottom:365.445000px;}
.y97{bottom:369.615000px;}
.y2b{bottom:372.285000px;}
.yb7{bottom:372.495000px;}
.y15f{bottom:373.935000px;}
.y86{bottom:374.295000px;}
.yd4{bottom:379.155000px;}
.y3a{bottom:382.725000px;}
.y107{bottom:388.515000px;}
.y2a{bottom:388.665000px;}
.y15e{bottom:391.035000px;}
.y85{bottom:391.575000px;}
.yb5{bottom:392.835000px;}
.yd3{bottom:396.255000px;}
.y39{bottom:400.005000px;}
.y105{bottom:403.275000px;}
.y29{bottom:405.765000px;}
.y15d{bottom:408.315000px;}
.y84{bottom:408.855000px;}
.yd2{bottom:413.535000px;}
.yb4{bottom:417.135000px;}
.y38{bottom:417.285000px;}
.y96{bottom:422.175000px;}
.y28{bottom:423.225000px;}
.y103{bottom:424.515000px;}
.y15c{bottom:425.595000px;}
.y83{bottom:426.135000px;}
.yd1{bottom:427.575000px;}
.ye7{bottom:427.860000px;}
.yb3{bottom:434.415000px;}
.y37{bottom:434.595000px;}
.y27{bottom:440.535000px;}
.y15b{bottom:442.875000px;}
.y82{bottom:443.415000px;}
.y102{bottom:444.855000px;}
.yb2{bottom:451.695000px;}
.y36{bottom:451.875000px;}
.y26{bottom:457.995000px;}
.y15a{bottom:460.155000px;}
.y81{bottom:460.515000px;}
.y101{bottom:468.435000px;}
.yb1{bottom:468.795000px;}
.y35{bottom:468.975000px;}
.y159{bottom:477.435000px;}
.y80{bottom:477.795000px;}
.y25{bottom:478.335000px;}
.y100{bottom:485.715000px;}
.yb0{bottom:486.075000px;}
.y34{bottom:486.255000px;}
.y158{bottom:494.535000px;}
.y7f{bottom:495.075000px;}
.yff{bottom:502.995000px;}
.yaf{bottom:503.355000px;}
.y33{bottom:503.535000px;}
.y24{bottom:505.695000px;}
.y157{bottom:511.815000px;}
.y7e{bottom:512.355000px;}
.yae{bottom:517.395000px;}
.ybd{bottom:517.500000px;}
.yfe{bottom:520.275000px;}
.y32{bottom:520.815000px;}
.y23{bottom:523.515000px;}
.y156{bottom:529.095000px;}
.y7d{bottom:529.635000px;}
.yfd{bottom:537.555000px;}
.y12d{bottom:538.275000px;}
.y155{bottom:546.375000px;}
.y7c{bottom:546.735000px;}
.yfc{bottom:554.655000px;}
.y12c{bottom:559.515000px;}
.y154{bottom:563.655000px;}
.y7b{bottom:564.015000px;}
.yfb{bottom:568.695000px;}
.y113{bottom:568.980000px;}
.y12b{bottom:580.035000px;}
.y153{bottom:580.755000px;}
.y7a{bottom:581.295000px;}
.y152{bottom:598.035000px;}
.y79{bottom:598.575000px;}
.y12a{bottom:603.825000px;}
.y151{bottom:615.345000px;}
.y78{bottom:615.885000px;}
.y129{bottom:621.105000px;}
.y150{bottom:632.625000px;}
.y77{bottom:633.165000px;}
.y128{bottom:638.385000px;}
.y14f{bottom:649.905000px;}
.y76{bottom:650.265000px;}
.y127{bottom:655.485000px;}
.y14e{bottom:667.185000px;}
.y75{bottom:667.545000px;}
.y126{bottom:672.765000px;}
.y14d{bottom:684.285000px;}
.y74{bottom:684.825000px;}
.y125{bottom:690.045000px;}
.yd0{bottom:699.045000px;}
.y14c{bottom:701.565000px;}
.y73{bottom:702.105000px;}
.y124{bottom:704.085000px;}
.y135{bottom:704.160000px;}
.y21{bottom:708.045000px;}
.ycf{bottom:713.805000px;}
.y14b{bottom:718.845000px;}
.y72{bottom:719.385000px;}
.yce{bottom:734.685000px;}
.y14a{bottom:736.125000px;}
.y71{bottom:736.665000px;}
.y10{bottom:737.565000px;}
.y149{bottom:753.405000px;}
.y70{bottom:753.765000px;}
.ycd{bottom:755.565000px;}
.y148{bottom:770.685000px;}
.y6f{bottom:771.045000px;}
.ycc{bottom:776.445000px;}
.y147{bottom:787.785000px;}
.y6e{bottom:788.325000px;}
.ycb{bottom:799.845000px;}
.yfa{bottom:800.385000px;}
.y146{bottom:805.065000px;}
.y6d{bottom:805.605000px;}
.yad{bottom:809.205000px;}
.yf8{bottom:815.145000px;}
.yca{bottom:816.945000px;}
.y145{bottom:822.345000px;}
.y6c{bottom:822.885000px;}
.yab{bottom:823.965000px;}
.yc9{bottom:834.225000px;}
.y144{bottom:836.385000px;}
.y170{bottom:836.460000px;}
.yf6{bottom:836.745000px;}
.y6b{bottom:839.985000px;}
.ya9{bottom:844.845000px;}
.yc8{bottom:851.505000px;}
.y6a{bottom:857.265000px;}
.yf5{bottom:859.965000px;}
.ya7{bottom:865.545000px;}
.yc7{bottom:868.785000px;}
.y69{bottom:874.590000px;}
.yf4{bottom:877.290000px;}
.ya5{bottom:885.750000px;}
.yc6{bottom:886.110000px;}
.y68{bottom:891.870000px;}
.yf3{bottom:894.390000px;}
.yc5{bottom:900.150000px;}
.ydd{bottom:900.180000px;}
.y67{bottom:909.150000px;}
.yf2{bottom:911.670000px;}
.y66{bottom:926.430000px;}
.yf1{bottom:928.950000px;}
.y65{bottom:943.530000px;}
.yf0{bottom:946.230000px;}
.yef{bottom:960.270000px;}
.y10b{bottom:960.300000px;}
.y64{bottom:960.810000px;}
.y63{bottom:978.090000px;}
.y62{bottom:995.370000px;}
.y61{bottom:1012.650000px;}
.y123{bottom:1018.950000px;}
.y60{bottom:1029.930000px;}
.y122{bottom:1033.710000px;}
.ye{bottom:1034.970000px;}
.y5f{bottom:1047.030000px;}
.y120{bottom:1054.410000px;}
.y7{bottom:1060.350000px;}
.y5e{bottom:1064.310000px;}
.y11f{bottom:1074.930000px;}
.y5d{bottom:1081.590000px;}
.y143{bottom:1087.710000px;}
.y5c{bottom:1098.870000px;}
.y142{bottom:1102.470000px;}
.y5b{bottom:1116.150000px;}
.y140{bottom:1123.710000px;}
.y5a{bottom:1133.430000px;}
.y13f{bottom:1144.080000px;}
.y59{bottom:1150.560000px;}
.y58{bottom:1167.840000px;}
.h22{height:17.100000px;}
.h26{height:17.280000px;}
.h24{height:17.316000px;}
.h30{height:19.260000px;}
.h27{height:19.440000px;}
.h28{height:19.476000px;}
.h2b{height:19.620000px;}
.h3f{height:19.656000px;}
.h32{height:19.800000px;}
.h29{height:19.980000px;}
.h31{height:20.160000px;}
.h2a{height:20.340000px;}
.h2c{height:20.376000px;}
.h3c{height:20.520000px;}
.h38{height:20.880000px;}
.hd{height:25.020000px;}
.h15{height:28.968750px;}
.h16{height:29.520000px;}
.h14{height:35.806641px;}
.h9{height:36.180000px;}
.h20{height:36.540000px;}
.h1d{height:38.818125px;}
.h1a{height:40.243711px;}
.h1f{height:41.726953px;}
.h1e{height:42.164648px;}
.h1c{height:42.281367px;}
.h5{height:43.453125px;}
.h40{height:43.506914px;}
.h10{height:44.002969px;}
.hb{height:44.820000px;}
.h1b{height:45.770625px;}
.h18{height:47.980898px;}
.h21{height:48.088125px;}
.h2{height:49.536000px;}
.he{height:49.680000px;}
.h23{height:51.660000px;}
.h25{height:51.840000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h12{height:59.439023px;}
.h34{height:59.582250px;}
.h13{height:61.189805px;}
.h11{height:62.028281px;}
.h7{height:65.884219px;}
.h6{height:67.824844px;}
.hc{height:71.613281px;}
.h2e{height:110.583984px;}
.h2f{height:110.731430px;}
.h36{height:111.999023px;}
.h37{height:112.179023px;}
.h8{height:121.536000px;}
.h39{height:221.580000px;}
.h3a{height:228.240000px;}
.h3b{height:242.820000px;}
.h41{height:248.040000px;}
.h35{height:268.020000px;}
.h33{height:281.700000px;}
.h2d{height:288.540000px;}
.hf{height:297.390000px;}
.h3e{height:305.820000px;}
.h3d{height:311.580000px;}
.h17{height:534.855000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w18{width:85.500000px;}
.w10{width:86.040000px;}
.w14{width:91.980000px;}
.w1c{width:106.380000px;}
.w22{width:107.460000px;}
.w2c{width:139.536000px;}
.w2e{width:151.560000px;}
.w5{width:151.950000px;}
.w11{width:165.450000px;}
.w23{width:172.110000px;}
.w1f{width:177.870000px;}
.w19{width:183.990000px;}
.w25{width:186.870000px;}
.w31{width:196.050000px;}
.wd{width:203.070000px;}
.w16{width:206.895000px;}
.w29{width:207.975000px;}
.w33{width:212.790000px;}
.w8{width:223.275000px;}
.w2b{width:225.750000px;}
.w17{width:225.930000px;}
.w1b{width:227.010000px;}
.w1a{width:227.055000px;}
.wf{width:227.550000px;}
.we{width:227.595000px;}
.w21{width:229.530000px;}
.w20{width:229.575000px;}
.w13{width:243.390000px;}
.w12{width:243.615000px;}
.wc{width:248.250000px;}
.wb{width:248.430000px;}
.wa{width:248.475000px;}
.w32{width:293.655000px;}
.w2a{width:311.250000px;}
.w24{width:356.835000px;}
.w2d{width:454.065000px;}
.w26{width:484.920000px;}
.w2f{width:492.840000px;}
.w15{width:494.640000px;}
.w30{width:499.500000px;}
.w1d{width:503.100000px;}
.w34{width:508.320000px;}
.w28{width:518.760000px;}
.w9{width:524.055000px;}
.w27{width:526.500000px;}
.w1e{width:539.640000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.605000px;}
.x2{left:8.640000px;}
.x10{left:11.160000px;}
.x15{left:12.600000px;}
.xd{left:17.676000px;}
.xc{left:30.816000px;}
.x3d{left:45.975000px;}
.x26{left:57.315000px;}
.xe{left:58.716000px;}
.x23{left:60.375000px;}
.x25{left:68.115000px;}
.x36{left:69.630000px;}
.x1{left:72.360000px;}
.x4e{left:75.885000px;}
.x64{left:77.730000px;}
.x4{left:80.999987px;}
.x37{left:84.030000px;}
.x54{left:86.370000px;}
.x4a{left:88.125000px;}
.xf{left:90.570000px;}
.x5{left:98.130000px;}
.x28{left:101.415000px;}
.x5b{left:102.630000px;}
.x38{left:105.735000px;}
.x6b{left:108.035987px;}
.x24{left:111.675000px;}
.x33{left:113.550000px;}
.x3b{left:121.680000px;}
.x3e{left:124.455000px;}
.x67{left:125.715000px;}
.x58{left:126.750000px;}
.x5a{left:130.170000px;}
.x52{left:136.230000px;}
.x4f{left:157.575000px;}
.x55{left:159.090000px;}
.x50{left:162.105000px;}
.x4c{left:163.440000px;}
.x39{left:176.580000px;}
.x51{left:183.060000px;}
.x57{left:187.020000px;}
.x6c{left:192.240000px;}
.x31{left:194.760000px;}
.x66{left:196.560000px;}
.x22{left:199.080000px;}
.x49{left:203.940000px;}
.x60{left:213.510000px;}
.x13{left:215.175000px;}
.x27{left:217.725000px;}
.x5c{left:219.705000px;}
.x65{left:222.510000px;}
.x6{left:224.850000px;}
.x56{left:229.320000px;}
.x1f{left:239.430000px;}
.x46{left:246.090000px;}
.x41{left:251.850000px;}
.x2e{left:257.970000px;}
.x12{left:264.675000px;}
.x34{left:270.285000px;}
.x18{left:273.269987px;}
.x19{left:277.230000px;}
.x2b{left:280.875000px;}
.x5e{left:281.955000px;}
.x11{left:287.175000px;}
.x9{left:288.435000px;}
.x14{left:296.175000px;}
.x45{left:309.134987px;}
.x4b{left:310.320000px;}
.x1e{left:313.454987px;}
.x5d{left:320.834987px;}
.x16{left:322.455000px;}
.x2a{left:333.614987px;}
.x7{left:348.195000px;}
.x63{left:354.030000px;}
.x40{left:356.114987px;}
.x68{left:362.775000px;}
.x8{left:367.455000px;}
.x59{left:369.615000px;}
.xb{left:373.575000px;}
.x32{left:374.760000px;}
.x53{left:383.040000px;}
.x4d{left:389.415000px;}
.x3a{left:403.230000px;}
.x35{left:426.990000px;}
.xa{left:455.700000px;}
.x3c{left:459.540000px;}
.x42{left:482.145000px;}
.x20{left:483.765000px;}
.x2f{left:485.745000px;}
.x1b{left:505.545000px;}
.x2c{left:507.705000px;}
.x69{left:564.405000px;}
.x17{left:571.605000px;}
.x5f{left:594.105000px;}
.x47{left:603.645000px;}
.x61{left:668.310000px;}
.x3f{left:689.009987px;}
.x1d{left:693.869987px;}
.x62{left:696.389987px;}
.x29{left:698.189987px;}
.x6a{left:700.709987px;}
.x48{left:705.929987px;}
.x44{left:709.889987px;}
.x43{left:712.410000px;}
.x30{left:713.490000px;}
.x2d{left:716.369987px;}
.x21{left:727.890000px;}
.x1c{left:733.830000px;}
.x3{left:745.890000px;}
@media print{
.v4{vertical-align:-47.626667pt;}
.v3{vertical-align:-42.346667pt;}
.v2{vertical-align:-13.440000pt;}
.v5{vertical-align:-5.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:46.720000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.116800pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls13{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.057067pt;}
.lsb{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.076267pt;}
.lsc{letter-spacing:0.077867pt;}
.lsd{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.794880pt;}
.ls16{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls10{letter-spacing:560.149931pt;}
.ws5{word-spacing:-48.000000pt;}
.wsd{word-spacing:-21.724928pt;}
.wse{word-spacing:-21.696000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.185067pt;}
.ws16{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:90.644267pt;}
.wsb{word-spacing:481.486720pt;}
.wsa{word-spacing:481.593387pt;}
.wsc{word-spacing:481.646720pt;}
.wsf{word-spacing:534.873387pt;}
.ws13{word-spacing:747.143147pt;}
.ws14{word-spacing:759.036480pt;}
.ws15{word-spacing:774.556480pt;}
.ws12{word-spacing:793.116480pt;}
._25{margin-left:-8.555392pt;}
._20{margin-left:-5.280000pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.938667pt;}
._6{width:1.859200pt;}
._e{width:2.779733pt;}
._5{width:3.805867pt;}
._4{width:4.904533pt;}
._c{width:6.006827pt;}
._d{width:6.933973pt;}
._9{width:8.013653pt;}
._14{width:9.278507pt;}
._a{width:10.907093pt;}
._b{width:11.828267pt;}
._15{width:14.197333pt;}
._8{width:15.337387pt;}
._13{width:16.290347pt;}
._12{width:17.918933pt;}
._f{width:19.176320pt;}
._11{width:20.376960pt;}
._3{width:21.435733pt;}
._10{width:22.629120pt;}
._16{width:24.025173pt;}
._7{width:25.338240pt;}
._27{width:26.469973pt;}
._26{width:27.463040pt;}
._17{width:29.773227pt;}
._18{width:43.717760pt;}
._1c{width:65.260160pt;}
._1a{width:98.272000pt;}
._19{width:99.228160pt;}
._1d{width:130.369280pt;}
._21{width:164.328747pt;}
._22{width:181.943893pt;}
._1b{width:215.817600pt;}
._1f{width:226.104320pt;}
._1e{width:290.910933pt;}
._23{width:420.056320pt;}
._24{width:494.029653pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fsb{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.880000pt;}
.y9a{bottom:2.920000pt;}
.y4{bottom:3.200000pt;}
.y55{bottom:3.520000pt;}
.y20{bottom:4.000000pt;}
.yf7{bottom:4.640000pt;}
.ya6{bottom:4.800000pt;}
.ya8{bottom:4.840000pt;}
.yb8{bottom:4.960000pt;}
.yda{bottom:5.120000pt;}
.yaa{bottom:5.280000pt;}
.yac{bottom:5.440000pt;}
.yb6{bottom:5.600000pt;}
.ybb{bottom:5.640000pt;}
.y106{bottom:5.760000pt;}
.yf9{bottom:6.080000pt;}
.y53{bottom:9.440000pt;}
.yf{bottom:9.600000pt;}
.y11c{bottom:12.026667pt;}
.yec{bottom:12.066667pt;}
.y116{bottom:12.093333pt;}
.yc1{bottom:12.186667pt;}
.y110{bottom:12.226667pt;}
.yd{bottom:12.320000pt;}
.y6{bottom:15.840000pt;}
.y104{bottom:17.440000pt;}
.y141{bottom:17.466667pt;}
.y121{bottom:17.600000pt;}
.y3{bottom:17.920000pt;}
.y4f{bottom:18.240000pt;}
.y54{bottom:19.674667pt;}
.y1f{bottom:21.120000pt;}
.y52{bottom:22.394667pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.y9f{bottom:33.440000pt;}
.y4e{bottom:33.600000pt;}
.y1{bottom:34.560000pt;}
.y1e{bottom:39.040000pt;}
.yb{bottom:41.280000pt;}
.y4d{bottom:48.960000pt;}
.y1d{bottom:50.400000pt;}
.y10e{bottom:53.026667pt;}
.y10c{bottom:63.106667pt;}
.y4c{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.y115{bottom:67.293333pt;}
.y1c{bottom:68.320000pt;}
.ydf{bottom:79.493333pt;}
.y4b{bottom:79.520000pt;}
.y1b{bottom:79.680000pt;}
.y171{bottom:82.560000pt;}
.y9{bottom:82.746667pt;}
.y10f{bottom:83.226667pt;}
.y11b{bottom:85.306667pt;}
.y16f{bottom:86.912000pt;}
.y10d{bottom:93.306667pt;}
.y57{bottom:93.632000pt;}
.y4a{bottom:94.880000pt;}
.ye8{bottom:95.453333pt;}
.ya4{bottom:96.032000pt;}
.ye2{bottom:96.093333pt;}
.y1a{bottom:97.760000pt;}
.y10a{bottom:98.592000pt;}
.y8{bottom:98.906667pt;}
.y13c{bottom:99.226667pt;}
.y134{bottom:101.312000pt;}
.y16e{bottom:102.272000pt;}
.y95{bottom:102.752000pt;}
.ye0{bottom:106.080000pt;}
.y114{bottom:108.066667pt;}
.y19{bottom:108.960000pt;}
.y56{bottom:108.992000pt;}
.y49{bottom:110.240000pt;}
.ya3{bottom:111.392000pt;}
.ye3{bottom:112.733333pt;}
.yea{bottom:112.986667pt;}
.y109{bottom:113.952000pt;}
.y133{bottom:116.672000pt;}
.y16d{bottom:117.632000pt;}
.y94{bottom:118.112000pt;}
.y51{bottom:121.472000pt;}
.yc0{bottom:122.213333pt;}
.y48{bottom:125.600000pt;}
.ye1{bottom:126.013333pt;}
.y108{bottom:126.432000pt;}
.y119{bottom:126.720000pt;}
.ya2{bottom:126.752000pt;}
.y18{bottom:127.080000pt;}
.y11a{bottom:127.840000pt;}
.yde{bottom:129.346667pt;}
.y112{bottom:131.813333pt;}
.y132{bottom:132.032000pt;}
.y172{bottom:132.066667pt;}
.y16c{bottom:132.992000pt;}
.y93{bottom:133.312000pt;}
.ye9{bottom:136.386667pt;}
.y118{bottom:137.693333pt;}
.ya1{bottom:139.866667pt;}
.y47{bottom:140.960000pt;}
.y17{bottom:141.000000pt;}
.ybf{bottom:142.013333pt;}
.ybe{bottom:143.360000pt;}
.y131{bottom:147.386667pt;}
.yeb{bottom:148.093333pt;}
.y16b{bottom:148.346667pt;}
.y92{bottom:148.666667pt;}
.y136{bottom:148.733333pt;}
.y16{bottom:150.280000pt;}
.y11e{bottom:150.626667pt;}
.y22{bottom:153.946667pt;}
.y174{bottom:155.293333pt;}
.ya0{bottom:155.866667pt;}
.ye6{bottom:155.973333pt;}
.y46{bottom:156.200000pt;}
.yc4{bottom:161.946667pt;}
.y130{bottom:162.586667pt;}
.y16a{bottom:163.546667pt;}
.y91{bottom:164.026667pt;}
.y111{bottom:164.066667pt;}
.y15{bottom:166.600000pt;}
.y117{bottom:169.920000pt;}
.y45{bottom:171.560000pt;}
.y9e{bottom:171.866667pt;}
.yee{bottom:173.120000pt;}
.y137{bottom:173.600000pt;}
.y13b{bottom:174.493333pt;}
.y12f{bottom:177.946667pt;}
.y169{bottom:178.906667pt;}
.y90{bottom:179.386667pt;}
.y11d{bottom:182.880000pt;}
.y14{bottom:183.560000pt;}
.y44{bottom:186.920000pt;}
.y173{bottom:187.546667pt;}
.ye5{bottom:188.226667pt;}
.y12e{bottom:190.426667pt;}
.y13a{bottom:190.720000pt;}
.yc3{bottom:194.240000pt;}
.y168{bottom:194.266667pt;}
.y8f{bottom:194.746667pt;}
.y43{bottom:202.280000pt;}
.yed{bottom:205.373333pt;}
.y13{bottom:206.440000pt;}
.y13e{bottom:206.626667pt;}
.y167{bottom:209.626667pt;}
.y8e{bottom:210.106667pt;}
.y139{bottom:211.813333pt;}
.ye4{bottom:217.506667pt;}
.y42{bottom:217.640000pt;}
.ydc{bottom:219.866667pt;}
.y9d{bottom:221.306667pt;}
.yc2{bottom:223.520000pt;}
.y166{bottom:224.986667pt;}
.y8d{bottom:225.306667pt;}
.y12{bottom:229.320000pt;}
.y41{bottom:232.840000pt;}
.ydb{bottom:232.986667pt;}
.y9c{bottom:236.666667pt;}
.y13d{bottom:238.880000pt;}
.y165{bottom:240.346667pt;}
.y31{bottom:240.360000pt;}
.y8c{bottom:240.666667pt;}
.y138{bottom:244.066667pt;}
.y40{bottom:248.200000pt;}
.y9b{bottom:249.786667pt;}
.y11{bottom:250.920000pt;}
.yd9{bottom:251.706667pt;}
.y30{bottom:253.960000pt;}
.y164{bottom:255.546667pt;}
.y8b{bottom:256.026667pt;}
.y3f{bottom:263.560000pt;}
.y2f{bottom:269.640000pt;}
.yd8{bottom:269.946667pt;}
.y163{bottom:270.906667pt;}
.y8a{bottom:271.386667pt;}
.y3e{bottom:278.920000pt;}
.ybc{bottom:281.306667pt;}
.y2e{bottom:285.000000pt;}
.y162{bottom:286.266667pt;}
.y89{bottom:286.746667pt;}
.yd7{bottom:290.906667pt;}
.y3d{bottom:294.280000pt;}
.yba{bottom:294.426667pt;}
.y99{bottom:296.506667pt;}
.y2d{bottom:300.360000pt;}
.y161{bottom:301.666667pt;}
.y88{bottom:302.146667pt;}
.yd6{bottom:306.306667pt;}
.y3c{bottom:309.640000pt;}
.yb9{bottom:313.186667pt;}
.y98{bottom:315.426667pt;}
.y2c{bottom:316.040000pt;}
.y160{bottom:317.026667pt;}
.y87{bottom:317.346667pt;}
.yd5{bottom:321.666667pt;}
.y3b{bottom:324.840000pt;}
.y97{bottom:328.546667pt;}
.y2b{bottom:330.920000pt;}
.yb7{bottom:331.106667pt;}
.y15f{bottom:332.386667pt;}
.y86{bottom:332.706667pt;}
.yd4{bottom:337.026667pt;}
.y3a{bottom:340.200000pt;}
.y107{bottom:345.346667pt;}
.y2a{bottom:345.480000pt;}
.y15e{bottom:347.586667pt;}
.y85{bottom:348.066667pt;}
.yb5{bottom:349.186667pt;}
.yd3{bottom:352.226667pt;}
.y39{bottom:355.560000pt;}
.y105{bottom:358.466667pt;}
.y29{bottom:360.680000pt;}
.y15d{bottom:362.946667pt;}
.y84{bottom:363.426667pt;}
.yd2{bottom:367.586667pt;}
.yb4{bottom:370.786667pt;}
.y38{bottom:370.920000pt;}
.y96{bottom:375.266667pt;}
.y28{bottom:376.200000pt;}
.y103{bottom:377.346667pt;}
.y15c{bottom:378.306667pt;}
.y83{bottom:378.786667pt;}
.yd1{bottom:380.066667pt;}
.ye7{bottom:380.320000pt;}
.yb3{bottom:386.146667pt;}
.y37{bottom:386.306667pt;}
.y27{bottom:391.586667pt;}
.y15b{bottom:393.666667pt;}
.y82{bottom:394.146667pt;}
.y102{bottom:395.426667pt;}
.yb2{bottom:401.506667pt;}
.y36{bottom:401.666667pt;}
.y26{bottom:407.106667pt;}
.y15a{bottom:409.026667pt;}
.y81{bottom:409.346667pt;}
.y101{bottom:416.386667pt;}
.yb1{bottom:416.706667pt;}
.y35{bottom:416.866667pt;}
.y159{bottom:424.386667pt;}
.y80{bottom:424.706667pt;}
.y25{bottom:425.186667pt;}
.y100{bottom:431.746667pt;}
.yb0{bottom:432.066667pt;}
.y34{bottom:432.226667pt;}
.y158{bottom:439.586667pt;}
.y7f{bottom:440.066667pt;}
.yff{bottom:447.106667pt;}
.yaf{bottom:447.426667pt;}
.y33{bottom:447.586667pt;}
.y24{bottom:449.506667pt;}
.y157{bottom:454.946667pt;}
.y7e{bottom:455.426667pt;}
.yae{bottom:459.906667pt;}
.ybd{bottom:460.000000pt;}
.yfe{bottom:462.466667pt;}
.y32{bottom:462.946667pt;}
.y23{bottom:465.346667pt;}
.y156{bottom:470.306667pt;}
.y7d{bottom:470.786667pt;}
.yfd{bottom:477.826667pt;}
.y12d{bottom:478.466667pt;}
.y155{bottom:485.666667pt;}
.y7c{bottom:485.986667pt;}
.yfc{bottom:493.026667pt;}
.y12c{bottom:497.346667pt;}
.y154{bottom:501.026667pt;}
.y7b{bottom:501.346667pt;}
.yfb{bottom:505.506667pt;}
.y113{bottom:505.760000pt;}
.y12b{bottom:515.586667pt;}
.y153{bottom:516.226667pt;}
.y7a{bottom:516.706667pt;}
.y152{bottom:531.586667pt;}
.y79{bottom:532.066667pt;}
.y12a{bottom:536.733333pt;}
.y151{bottom:546.973333pt;}
.y78{bottom:547.453333pt;}
.y129{bottom:552.093333pt;}
.y150{bottom:562.333333pt;}
.y77{bottom:562.813333pt;}
.y128{bottom:567.453333pt;}
.y14f{bottom:577.693333pt;}
.y76{bottom:578.013333pt;}
.y127{bottom:582.653333pt;}
.y14e{bottom:593.053333pt;}
.y75{bottom:593.373333pt;}
.y126{bottom:598.013333pt;}
.y14d{bottom:608.253333pt;}
.y74{bottom:608.733333pt;}
.y125{bottom:613.373333pt;}
.yd0{bottom:621.373333pt;}
.y14c{bottom:623.613333pt;}
.y73{bottom:624.093333pt;}
.y124{bottom:625.853333pt;}
.y135{bottom:625.920000pt;}
.y21{bottom:629.373333pt;}
.ycf{bottom:634.493333pt;}
.y14b{bottom:638.973333pt;}
.y72{bottom:639.453333pt;}
.yce{bottom:653.053333pt;}
.y14a{bottom:654.333333pt;}
.y71{bottom:654.813333pt;}
.y10{bottom:655.613333pt;}
.y149{bottom:669.693333pt;}
.y70{bottom:670.013333pt;}
.ycd{bottom:671.613333pt;}
.y148{bottom:685.053333pt;}
.y6f{bottom:685.373333pt;}
.ycc{bottom:690.173333pt;}
.y147{bottom:700.253333pt;}
.y6e{bottom:700.733333pt;}
.ycb{bottom:710.973333pt;}
.yfa{bottom:711.453333pt;}
.y146{bottom:715.613333pt;}
.y6d{bottom:716.093333pt;}
.yad{bottom:719.293333pt;}
.yf8{bottom:724.573333pt;}
.yca{bottom:726.173333pt;}
.y145{bottom:730.973333pt;}
.y6c{bottom:731.453333pt;}
.yab{bottom:732.413333pt;}
.yc9{bottom:741.533333pt;}
.y144{bottom:743.453333pt;}
.y170{bottom:743.520000pt;}
.yf6{bottom:743.773333pt;}
.y6b{bottom:746.653333pt;}
.ya9{bottom:750.973333pt;}
.yc8{bottom:756.893333pt;}
.y6a{bottom:762.013333pt;}
.yf5{bottom:764.413333pt;}
.ya7{bottom:769.373333pt;}
.yc7{bottom:772.253333pt;}
.y69{bottom:777.413333pt;}
.yf4{bottom:779.813333pt;}
.ya5{bottom:787.333333pt;}
.yc6{bottom:787.653333pt;}
.y68{bottom:792.773333pt;}
.yf3{bottom:795.013333pt;}
.yc5{bottom:800.133333pt;}
.ydd{bottom:800.160000pt;}
.y67{bottom:808.133333pt;}
.yf2{bottom:810.373333pt;}
.y66{bottom:823.493333pt;}
.yf1{bottom:825.733333pt;}
.y65{bottom:838.693333pt;}
.yf0{bottom:841.093333pt;}
.yef{bottom:853.573333pt;}
.y10b{bottom:853.600000pt;}
.y64{bottom:854.053333pt;}
.y63{bottom:869.413333pt;}
.y62{bottom:884.773333pt;}
.y61{bottom:900.133333pt;}
.y123{bottom:905.733333pt;}
.y60{bottom:915.493333pt;}
.y122{bottom:918.853333pt;}
.ye{bottom:919.973333pt;}
.y5f{bottom:930.693333pt;}
.y120{bottom:937.253333pt;}
.y7{bottom:942.533333pt;}
.y5e{bottom:946.053333pt;}
.y11f{bottom:955.493333pt;}
.y5d{bottom:961.413333pt;}
.y143{bottom:966.853333pt;}
.y5c{bottom:976.773333pt;}
.y142{bottom:979.973333pt;}
.y5b{bottom:992.133333pt;}
.y140{bottom:998.853333pt;}
.y5a{bottom:1007.493333pt;}
.y13f{bottom:1016.960000pt;}
.y59{bottom:1022.720000pt;}
.y58{bottom:1038.080000pt;}
.h22{height:15.200000pt;}
.h26{height:15.360000pt;}
.h24{height:15.392000pt;}
.h30{height:17.120000pt;}
.h27{height:17.280000pt;}
.h28{height:17.312000pt;}
.h2b{height:17.440000pt;}
.h3f{height:17.472000pt;}
.h32{height:17.600000pt;}
.h29{height:17.760000pt;}
.h31{height:17.920000pt;}
.h2a{height:18.080000pt;}
.h2c{height:18.112000pt;}
.h3c{height:18.240000pt;}
.h38{height:18.560000pt;}
.hd{height:22.240000pt;}
.h15{height:25.750000pt;}
.h16{height:26.240000pt;}
.h14{height:31.828125pt;}
.h9{height:32.160000pt;}
.h20{height:32.480000pt;}
.h1d{height:34.505000pt;}
.h1a{height:35.772188pt;}
.h1f{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h1c{height:37.583438pt;}
.h5{height:38.625000pt;}
.h40{height:38.672812pt;}
.h10{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1b{height:40.685000pt;}
.h18{height:42.649687pt;}
.h21{height:42.745000pt;}
.h2{height:44.032000pt;}
.he{height:44.160000pt;}
.h23{height:45.920000pt;}
.h25{height:46.080000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h12{height:52.834688pt;}
.h34{height:52.962000pt;}
.h13{height:54.390938pt;}
.h11{height:55.136250pt;}
.h7{height:58.563750pt;}
.h6{height:60.288750pt;}
.hc{height:63.656250pt;}
.h2e{height:98.296875pt;}
.h2f{height:98.427937pt;}
.h36{height:99.554687pt;}
.h37{height:99.714688pt;}
.h8{height:108.032000pt;}
.h39{height:196.960000pt;}
.h3a{height:202.880000pt;}
.h3b{height:215.840000pt;}
.h41{height:220.480000pt;}
.h35{height:238.240000pt;}
.h33{height:250.400000pt;}
.h2d{height:256.480000pt;}
.hf{height:264.346667pt;}
.h3e{height:271.840000pt;}
.h3d{height:276.960000pt;}
.h17{height:475.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w18{width:76.000000pt;}
.w10{width:76.480000pt;}
.w14{width:81.760000pt;}
.w1c{width:94.560000pt;}
.w22{width:95.520000pt;}
.w2c{width:124.032000pt;}
.w2e{width:134.720000pt;}
.w5{width:135.066667pt;}
.w11{width:147.066667pt;}
.w23{width:152.986667pt;}
.w1f{width:158.106667pt;}
.w19{width:163.546667pt;}
.w25{width:166.106667pt;}
.w31{width:174.266667pt;}
.wd{width:180.506667pt;}
.w16{width:183.906667pt;}
.w29{width:184.866667pt;}
.w33{width:189.146667pt;}
.w8{width:198.466667pt;}
.w2b{width:200.666667pt;}
.w17{width:200.826667pt;}
.w1b{width:201.786667pt;}
.w1a{width:201.826667pt;}
.wf{width:202.266667pt;}
.we{width:202.306667pt;}
.w21{width:204.026667pt;}
.w20{width:204.066667pt;}
.w13{width:216.346667pt;}
.w12{width:216.546667pt;}
.wc{width:220.666667pt;}
.wb{width:220.826667pt;}
.wa{width:220.866667pt;}
.w32{width:261.026667pt;}
.w2a{width:276.666667pt;}
.w24{width:317.186667pt;}
.w2d{width:403.613333pt;}
.w26{width:431.040000pt;}
.w2f{width:438.080000pt;}
.w15{width:439.680000pt;}
.w30{width:444.000000pt;}
.w1d{width:447.200000pt;}
.w34{width:451.840000pt;}
.w28{width:461.120000pt;}
.w9{width:465.826667pt;}
.w27{width:468.000000pt;}
.w1e{width:479.680000pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.760000pt;}
.x2{left:7.680000pt;}
.x10{left:9.920000pt;}
.x15{left:11.200000pt;}
.xd{left:15.712000pt;}
.xc{left:27.392000pt;}
.x3d{left:40.866667pt;}
.x26{left:50.946667pt;}
.xe{left:52.192000pt;}
.x23{left:53.666667pt;}
.x25{left:60.546667pt;}
.x36{left:61.893333pt;}
.x1{left:64.320000pt;}
.x4e{left:67.453333pt;}
.x64{left:69.093333pt;}
.x4{left:71.999988pt;}
.x37{left:74.693333pt;}
.x54{left:76.773333pt;}
.x4a{left:78.333333pt;}
.xf{left:80.506667pt;}
.x5{left:87.226667pt;}
.x28{left:90.146667pt;}
.x5b{left:91.226667pt;}
.x38{left:93.986667pt;}
.x6b{left:96.031988pt;}
.x24{left:99.266667pt;}
.x33{left:100.933333pt;}
.x3b{left:108.160000pt;}
.x3e{left:110.626667pt;}
.x67{left:111.746667pt;}
.x58{left:112.666667pt;}
.x5a{left:115.706667pt;}
.x52{left:121.093333pt;}
.x4f{left:140.066667pt;}
.x55{left:141.413333pt;}
.x50{left:144.093333pt;}
.x4c{left:145.280000pt;}
.x39{left:156.960000pt;}
.x51{left:162.720000pt;}
.x57{left:166.240000pt;}
.x6c{left:170.880000pt;}
.x31{left:173.120000pt;}
.x66{left:174.720000pt;}
.x22{left:176.960000pt;}
.x49{left:181.280000pt;}
.x60{left:189.786667pt;}
.x13{left:191.266667pt;}
.x27{left:193.533333pt;}
.x5c{left:195.293333pt;}
.x65{left:197.786667pt;}
.x6{left:199.866667pt;}
.x56{left:203.840000pt;}
.x1f{left:212.826667pt;}
.x46{left:218.746667pt;}
.x41{left:223.866667pt;}
.x2e{left:229.306667pt;}
.x12{left:235.266667pt;}
.x34{left:240.253333pt;}
.x18{left:242.906655pt;}
.x19{left:246.426667pt;}
.x2b{left:249.666667pt;}
.x5e{left:250.626667pt;}
.x11{left:255.266667pt;}
.x9{left:256.386667pt;}
.x14{left:263.266667pt;}
.x45{left:274.786655pt;}
.x4b{left:275.840000pt;}
.x1e{left:278.626655pt;}
.x5d{left:285.186655pt;}
.x16{left:286.626667pt;}
.x2a{left:296.546655pt;}
.x7{left:309.506667pt;}
.x63{left:314.693333pt;}
.x40{left:316.546655pt;}
.x68{left:322.466667pt;}
.x8{left:326.626667pt;}
.x59{left:328.546667pt;}
.xb{left:332.066667pt;}
.x32{left:333.120000pt;}
.x53{left:340.480000pt;}
.x4d{left:346.146667pt;}
.x3a{left:358.426667pt;}
.x35{left:379.546667pt;}
.xa{left:405.066667pt;}
.x3c{left:408.480000pt;}
.x42{left:428.573333pt;}
.x20{left:430.013333pt;}
.x2f{left:431.773333pt;}
.x1b{left:449.373333pt;}
.x2c{left:451.293333pt;}
.x69{left:501.693333pt;}
.x17{left:508.093333pt;}
.x5f{left:528.093333pt;}
.x47{left:536.573333pt;}
.x61{left:594.053333pt;}
.x3f{left:612.453322pt;}
.x1d{left:616.773322pt;}
.x62{left:619.013322pt;}
.x29{left:620.613322pt;}
.x6a{left:622.853322pt;}
.x48{left:627.493322pt;}
.x44{left:631.013322pt;}
.x43{left:633.253333pt;}
.x30{left:634.213333pt;}
.x2d{left:636.773322pt;}
.x21{left:647.013333pt;}
.x1c{left:652.293333pt;}
.x3{left:663.013333pt;}
}




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