
    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_9746586f7e491c93223fcead.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_39ad58f97b0bcb6807f32f7c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d9c5957b3dc147d70b58f72f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_697f262383a6ebf4a9113ac4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_e14e8c5aaee809874f1418f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8ee76c2337c7278f96ecfbcd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_1b68b5584642df537395d97f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c9578d99c6a5a1bdcda7d07d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dc8f06b8e34c4e92a2b7f284.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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_19b89de9e85f4cb8ad86def2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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);}
.m4{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274200,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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v9{vertical-align:-14.400000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.760000px;}
.v8{vertical-align:15.120000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:31.680000px;}
.ls22{letter-spacing:-1.452000px;}
.ls25{letter-spacing:-1.332000px;}
.ls21{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-1.026000px;}
.ls2e{letter-spacing:-0.972000px;}
.ls12{letter-spacing:-0.924000px;}
.ls2f{letter-spacing:-0.774000px;}
.ls20{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.259800px;}
.ls32{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.152400px;}
.ls30{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls23{letter-spacing:-0.012960px;}
.lsb{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.008640px;}
.lsc{letter-spacing:0.018720px;}
.ls0{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.103680px;}
.ls10{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.113760px;}
.ls34{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.235920px;}
.ls1f{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.283680px;}
.ls2a{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.305400px;}
.ls28{letter-spacing:0.306600px;}
.ls16{letter-spacing:0.311760px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.403920px;}
.ls2d{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.620000px;}
.ls1c{letter-spacing:1.800000px;}
.ls4{letter-spacing:2.340000px;}
.ls27{letter-spacing:5.940000px;}
.lsa{letter-spacing:10.746720px;}
.ls14{letter-spacing:15.066720px;}
.ls2c{letter-spacing:15.786720px;}
.ls2b{letter-spacing:15.930720px;}
.ls31{letter-spacing:18.180000px;}
.ls9{letter-spacing:22.500000px;}
.ls5{letter-spacing:33.066720px;}
.ls29{letter-spacing:45.450720px;}
.ls13{letter-spacing:54.172800px;}
.ls35{letter-spacing:647.400000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-66.240000px;}
.ws1a{word-spacing:-41.760000px;}
.ws2{word-spacing:-23.977440px;}
.ws3{word-spacing:-23.958720px;}
.ws11{word-spacing:-16.865400px;}
.ws1{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.407600px;}
.ws5{word-spacing:-15.534000px;}
.ws8{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.246600px;}
.ws13{word-spacing:-15.199800px;}
.ws18{word-spacing:-15.146400px;}
.ws21{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws1e{word-spacing:-14.833200px;}
.ws1f{word-spacing:-14.686800px;}
.ws12{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws20{word-spacing:-14.426400px;}
.ws1d{word-spacing:-14.166000px;}
.wse{word-spacing:-14.016000px;}
.ws1c{word-spacing:-13.968000px;}
.ws14{word-spacing:-13.860000px;}
.ws19{word-spacing:-13.608000px;}
.wsf{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.440000px;}
.ws15{word-spacing:-9.728640px;}
.ws7{word-spacing:-9.720000px;}
.ws17{word-spacing:-9.707040px;}
.ws16{word-spacing:-8.268000px;}
.ws10{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.951680px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1110.513600px;}
._22{margin-left:-11.917200px;}
._1b{margin-left:-3.313440px;}
._6{margin-left:-2.175360px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._d{width:2.299680px;}
._e{width:3.816720px;}
._c{width:5.232960px;}
._b{width:6.960960px;}
._a{width:8.007840px;}
._8{width:9.186960px;}
._7{width:10.427520px;}
._1e{width:11.444640px;}
._9{width:12.475920px;}
._1a{width:13.733280px;}
._18{width:16.302960px;}
._11{width:17.509680px;}
._12{width:19.454880px;}
._f{width:21.124080px;}
._10{width:22.172160px;}
._1f{width:23.226480px;}
._26{width:24.704880px;}
._20{width:25.756560px;}
._21{width:26.951760px;}
._14{width:28.235520px;}
._13{width:29.342160px;}
._19{width:31.044240px;}
._32{width:32.122080px;}
._33{width:33.164640px;}
._16{width:34.481520px;}
._15{width:35.856000px;}
._23{width:37.051200px;}
._2e{width:38.571840px;}
._2f{width:41.042160px;}
._34{width:42.167520px;}
._1c{width:44.903520px;}
._17{width:46.163520px;}
._31{width:49.540800px;}
._30{width:50.619600px;}
._29{width:55.098720px;}
._2c{width:56.105520px;}
._2b{width:57.161520px;}
._2a{width:58.175280px;}
._2d{width:62.508960px;}
._1d{width:66.063600px;}
._25{width:221.257200px;}
._24{width:224.185920px;}
._27{width:409.926480px;}
._28{width:411.349920px;}
.fc2{color:rgb(4,98,193);}
.fc1{color:rgb(0,78,154);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:5.760000px;}
.fs6{font-size:15.120000px;}
.fs9{font-size:27.360000px;}
.fsa{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsc{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.300000px;}
.y9{bottom:11.520000px;}
.y8{bottom:12.240000px;}
.y5b{bottom:27.360000px;}
.ya{bottom:46.080000px;}
.ycd{bottom:51.120000px;}
.ycc{bottom:51.840000px;}
.y172{bottom:54.540000px;}
.y111{bottom:55.260000px;}
.y110{bottom:56.160000px;}
.y5e{bottom:57.240000px;}
.y5d{bottom:58.140000px;}
.y6{bottom:61.380000px;}
.y171{bottom:69.840000px;}
.y148{bottom:82.980000px;}
.y162{bottom:86.400000px;}
.ye9{bottom:92.880000px;}
.y147{bottom:100.260000px;}
.y161{bottom:103.680000px;}
.ycb{bottom:108.360000px;}
.ye8{bottom:110.160000px;}
.yc1{bottom:115.560000px;}
.y146{bottom:117.360000px;}
.y160{bottom:120.960000px;}
.yca{bottom:125.640000px;}
.ye7{bottom:127.440000px;}
.yc0{bottom:132.840000px;}
.y145{bottom:134.640000px;}
.y15f{bottom:138.060000px;}
.yc9{bottom:142.920000px;}
.ye6{bottom:144.720000px;}
.y3c{bottom:150.840000px;}
.ybf{bottom:151.200000px;}
.y144{bottom:151.920000px;}
.y15e{bottom:155.340000px;}
.y59{bottom:159.660000px;}
.yc8{bottom:160.200000px;}
.ye5{bottom:161.820000px;}
.y10e{bottom:167.220000px;}
.y3b{bottom:167.940000px;}
.ybe{bottom:168.480000px;}
.y143{bottom:169.200000px;}
.y15d{bottom:172.620000px;}
.y58{bottom:176.760000px;}
.yc7{bottom:178.560000px;}
.ye4{bottom:179.100000px;}
.y3a{bottom:185.220000px;}
.y142{bottom:186.480000px;}
.ybd{bottom:186.840000px;}
.y15c{bottom:189.900000px;}
.y57{bottom:194.040000px;}
.yc6{bottom:195.840000px;}
.ye3{bottom:196.380000px;}
.y39{bottom:203.760000px;}
.ybc{bottom:204.120000px;}
.y15b{bottom:207.180000px;}
.y56{bottom:211.350000px;}
.yc5{bottom:214.230000px;}
.y141{bottom:220.890000px;}
.ybb{bottom:221.430000px;}
.y38{bottom:222.690000px;}
.y15a{bottom:224.490000px;}
.y55{bottom:228.630000px;}
.yc4{bottom:231.510000px;}
.y140{bottom:238.170000px;}
.yba{bottom:239.790000px;}
.y37{bottom:239.970000px;}
.y159{bottom:241.590000px;}
.y54{bottom:245.910000px;}
.yc3{bottom:248.790000px;}
.y13f{bottom:255.450000px;}
.yb9{bottom:257.070000px;}
.y36{bottom:258.330000px;}
.y158{bottom:258.870000px;}
.y53{bottom:263.190000px;}
.yc2{bottom:266.070000px;}
.y177{bottom:269.130000px;}
.y13e{bottom:272.730000px;}
.yb8{bottom:274.710000px;}
.y35{bottom:275.610000px;}
.y157{bottom:276.150000px;}
.y52{bottom:280.290000px;}
.y13d{bottom:290.010000px;}
.y34{bottom:292.710000px;}
.y156{bottom:293.430000px;}
.yb3{bottom:296.850000px;}
.yb6{bottom:298.470000px;}
.y51{bottom:299.550000px;}
.yb7{bottom:300.810000px;}
.yb0{bottom:306.030000px;}
.y13c{bottom:307.110000px;}
.yaf{bottom:307.470000px;}
.yb5{bottom:309.090000px;}
.y33{bottom:309.990000px;}
.y155{bottom:310.710000px;}
.yb2{bottom:311.250000px;}
.yb1{bottom:312.690000px;}
.y50{bottom:316.830000px;}
.yb4{bottom:318.090000px;}
.y13b{bottom:325.110000px;}
.yae{bottom:327.090000px;}
.y32{bottom:327.270000px;}
.y154{bottom:327.810000px;}
.y99{bottom:331.050000px;}
.y4f{bottom:334.110000px;}
.yad{bottom:344.370000px;}
.y13a{bottom:345.090000px;}
.y31{bottom:345.630000px;}
.y98{bottom:348.330000px;}
.y4e{bottom:351.390000px;}
.y139{bottom:362.370000px;}
.y30{bottom:363.990000px;}
.y97{bottom:366.690000px;}
.y4d{bottom:368.670000px;}
.yac{bottom:379.290000px;}
.y138{bottom:379.650000px;}
.y2f{bottom:381.270000px;}
.y96{bottom:385.050000px;}
.y4c{bottom:385.950000px;}
.y137{bottom:396.930000px;}
.y2e{bottom:398.550000px;}
.y4b{bottom:403.050000px;}
.y95{bottom:403.410000px;}
.y10d{bottom:407.910000px;}
.y136{bottom:414.210000px;}
.y2d{bottom:415.830000px;}
.y4a{bottom:420.330000px;}
.y94{bottom:420.690000px;}
.y10c{bottom:424.470000px;}
.y153{bottom:431.310000px;}
.y135{bottom:431.490000px;}
.y2c{bottom:433.110000px;}
.y49{bottom:437.610000px;}
.y93{bottom:437.970000px;}
.y10b{bottom:441.570000px;}
.y152{bottom:448.635000px;}
.y134{bottom:448.815000px;}
.y2b{bottom:451.515000px;}
.y48{bottom:454.935000px;}
.y92{bottom:455.295000px;}
.y10a{bottom:458.895000px;}
.y133{bottom:465.915000px;}
.y2a{bottom:468.795000px;}
.y47{bottom:472.215000px;}
.y91{bottom:473.655000px;}
.y109{bottom:476.175000px;}
.y132{bottom:483.195000px;}
.y29{bottom:485.895000px;}
.y46{bottom:489.495000px;}
.y90{bottom:490.755000px;}
.y108{bottom:493.455000px;}
.y131{bottom:500.475000px;}
.y28{bottom:504.255000px;}
.y45{bottom:506.595000px;}
.y8f{bottom:508.035000px;}
.yab{bottom:509.655000px;}
.y107{bottom:510.735000px;}
.y130{bottom:517.755000px;}
.y27{bottom:521.535000px;}
.y44{bottom:523.875000px;}
.y8e{bottom:525.315000px;}
.yaa{bottom:525.855000px;}
.y106{bottom:528.015000px;}
.y176{bottom:534.705000px;}
.y151{bottom:534.855000px;}
.y12f{bottom:535.035000px;}
.y26{bottom:538.815000px;}
.y43{bottom:541.155000px;}
.y8d{bottom:542.595000px;}
.ya9{bottom:544.215000px;}
.y105{bottom:545.115000px;}
.y150{bottom:552.135000px;}
.y12e{bottom:552.315000px;}
.y25{bottom:557.175000px;}
.y42{bottom:558.435000px;}
.y8c{bottom:560.055000px;}
.ya8{bottom:561.315000px;}
.y104{bottom:562.395000px;}
.y175{bottom:564.045000px;}
.y12d{bottom:569.415000px;}
.y24{bottom:575.535000px;}
.y41{bottom:575.715000px;}
.y8b{bottom:577.335000px;}
.ya7{bottom:579.675000px;}
.y12c{bottom:586.695000px;}
.y40{bottom:592.815000px;}
.y23{bottom:594.075000px;}
.y8a{bottom:594.615000px;}
.ya6{bottom:596.955000px;}
.y12b{bottom:603.975000px;}
.y3f{bottom:610.095000px;}
.y22{bottom:611.355000px;}
.y89{bottom:611.895000px;}
.ya5{bottom:614.235000px;}
.y12a{bottom:621.255000px;}
.y3e{bottom:627.375000px;}
.y21{bottom:628.455000px;}
.y88{bottom:629.175000px;}
.ya4{bottom:631.515000px;}
.y103{bottom:637.275000px;}
.y14f{bottom:638.355000px;}
.y129{bottom:638.535000px;}
.y20{bottom:645.735000px;}
.y87{bottom:646.455000px;}
.ya3{bottom:648.795000px;}
.y102{bottom:654.555000px;}
.y14e{bottom:655.635000px;}
.y128{bottom:655.815000px;}
.y1f{bottom:663.015000px;}
.y86{bottom:663.555000px;}
.ya2{bottom:667.155000px;}
.y101{bottom:671.835000px;}
.y127{bottom:672.915000px;}
.y3d{bottom:680.295000px;}
.y85{bottom:680.835000px;}
.y1e{bottom:681.405000px;}
.ya1{bottom:685.545000px;}
.y100{bottom:689.145000px;}
.y126{bottom:690.225000px;}
.y84{bottom:698.145000px;}
.y1d{bottom:698.685000px;}
.ya0{bottom:702.825000px;}
.yff{bottom:706.425000px;}
.y125{bottom:707.505000px;}
.y83{bottom:715.425000px;}
.ye2{bottom:719.205000px;}
.y9f{bottom:721.185000px;}
.y1c{bottom:722.265000px;}
.yfe{bottom:723.705000px;}
.y124{bottom:724.785000px;}
.y82{bottom:732.705000px;}
.ye1{bottom:735.225000px;}
.y1b{bottom:738.285000px;}
.y9e{bottom:738.465000px;}
.yfd{bottom:740.805000px;}
.y123{bottom:742.065000px;}
.y81{bottom:749.985000px;}
.ye0{bottom:752.505000px;}
.y9d{bottom:756.825000px;}
.y1a{bottom:757.725000px;}
.yfc{bottom:758.085000px;}
.y122{bottom:759.345000px;}
.y80{bottom:767.085000px;}
.ydf{bottom:769.605000px;}
.y19{bottom:775.005000px;}
.y9c{bottom:775.185000px;}
.yfb{bottom:775.365000px;}
.y14d{bottom:776.445000px;}
.y121{bottom:776.625000px;}
.y7f{bottom:784.365000px;}
.yde{bottom:786.885000px;}
.y174{bottom:789.630000px;}
.y18{bottom:792.285000px;}
.yfa{bottom:792.645000px;}
.y9b{bottom:793.545000px;}
.y14c{bottom:793.725000px;}
.y120{bottom:793.905000px;}
.y7e{bottom:801.645000px;}
.ydd{bottom:804.165000px;}
.y17{bottom:809.565000px;}
.yf9{bottom:809.925000px;}
.y11f{bottom:811.005000px;}
.y9a{bottom:812.085000px;}
.y173{bottom:817.740000px;}
.y7d{bottom:818.925000px;}
.ydc{bottom:821.445000px;}
.y16{bottom:826.845000px;}
.yf8{bottom:827.205000px;}
.y11e{bottom:828.285000px;}
.y170{bottom:830.340000px;}
.y7c{bottom:834.405000px;}
.ydb{bottom:838.725000px;}
.y7b{bottom:842.685000px;}
.y15{bottom:844.125000px;}
.yf7{bottom:844.305000px;}
.y11d{bottom:845.565000px;}
.y78{bottom:851.865000px;}
.y77{bottom:853.305000px;}
.yda{bottom:855.825000px;}
.y7a{bottom:857.085000px;}
.y79{bottom:858.525000px;}
.y16f{bottom:859.245000px;}
.y14{bottom:861.225000px;}
.yf6{bottom:861.585000px;}
.y14b{bottom:862.665000px;}
.y11c{bottom:862.845000px;}
.y76{bottom:872.025000px;}
.yd9{bottom:873.285000px;}
.y16e{bottom:876.525000px;}
.y13{bottom:878.505000px;}
.yf5{bottom:878.865000px;}
.y14a{bottom:879.945000px;}
.y11b{bottom:880.125000px;}
.y75{bottom:890.385000px;}
.yd8{bottom:890.565000px;}
.y16d{bottom:893.805000px;}
.y12{bottom:895.785000px;}
.yf4{bottom:896.145000px;}
.y149{bottom:897.225000px;}
.y11a{bottom:897.405000px;}
.y74{bottom:907.665000px;}
.y16c{bottom:911.085000px;}
.y11{bottom:913.065000px;}
.yf3{bottom:913.425000px;}
.y119{bottom:914.505000px;}
.y73{bottom:924.990000px;}
.yd7{bottom:926.070000px;}
.y16b{bottom:928.410000px;}
.yf2{bottom:930.750000px;}
.y10{bottom:930.930000px;}
.y118{bottom:931.830000px;}
.yf{bottom:937.950000px;}
.y72{bottom:943.350000px;}
.y16a{bottom:945.510000px;}
.y6b{bottom:947.850000px;}
.y117{bottom:949.110000px;}
.ye{bottom:960.450000px;}
.y71{bottom:960.630000px;}
.y169{bottom:962.790000px;}
.y6a{bottom:965.130000px;}
.yf1{bottom:966.210000px;}
.y116{bottom:966.390000px;}
.y70{bottom:977.910000px;}
.y168{bottom:980.070000px;}
.yd{bottom:981.690000px;}
.y69{bottom:982.410000px;}
.yf0{bottom:983.490000px;}
.y115{bottom:983.670000px;}
.y6f{bottom:995.010000px;}
.yd6{bottom:996.270000px;}
.y167{bottom:997.350000px;}
.y68{bottom:999.690000px;}
.yef{bottom:1000.770000px;}
.y6e{bottom:1013.550000px;}
.y166{bottom:1014.630000px;}
.y67{bottom:1016.970000px;}
.yee{bottom:1018.050000px;}
.yc{bottom:1021.470000px;}
.yd5{bottom:1030.830000px;}
.y6d{bottom:1031.910000px;}
.y66{bottom:1034.070000px;}
.yed{bottom:1035.330000px;}
.yd4{bottom:1048.110000px;}
.y165{bottom:1049.010000px;}
.yb{bottom:1049.190000px;}
.y6c{bottom:1050.270000px;}
.y65{bottom:1051.350000px;}
.yec{bottom:1052.610000px;}
.y164{bottom:1066.290000px;}
.yd3{bottom:1066.470000px;}
.y64{bottom:1068.630000px;}
.yeb{bottom:1069.710000px;}
.y114{bottom:1069.890000px;}
.y5{bottom:1077.630000px;}
.yd2{bottom:1083.570000px;}
.y63{bottom:1085.910000px;}
.yea{bottom:1086.990000px;}
.y113{bottom:1087.170000px;}
.y4{bottom:1096.530000px;}
.y163{bottom:1101.570000px;}
.yd1{bottom:1101.930000px;}
.y62{bottom:1104.270000px;}
.yd0{bottom:1119.210000px;}
.y61{bottom:1121.550000px;}
.y3{bottom:1124.610000px;}
.ycf{bottom:1137.570000px;}
.y60{bottom:1138.830000px;}
.y2{bottom:1152.510000px;}
.yce{bottom:1154.880000px;}
.y5f{bottom:1156.140000px;}
.y112{bottom:1156.320000px;}
.y5a{bottom:1166.940000px;}
.y1{bottom:1180.980000px;}
.y5c{bottom:1208.340000px;}
.y10f{bottom:1215.360000px;}
.hc{height:10.557422px;}
.h19{height:19.103906px;}
.h5{height:21.780000px;}
.h23{height:25.400391px;}
.h14{height:26.995781px;}
.ha{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h1e{height:30.339844px;}
.h15{height:32.767031px;}
.h17{height:35.194219px;}
.h1c{height:35.694141px;}
.h1f{height:37.705078px;}
.hf{height:38.514727px;}
.h13{height:41.493516px;}
.hb{height:41.726953px;}
.hd{height:42.164648px;}
.h10{height:43.506914px;}
.h12{height:43.560000px;}
.he{height:43.681992px;}
.h1a{height:45.024258px;}
.h1d{height:45.459844px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h1b{height:48.027656px;}
.h20{height:50.273438px;}
.h16{height:50.364141px;}
.h9{height:53.224453px;}
.h2{height:54.864844px;}
.h11{height:65.884219px;}
.h8{height:67.565039px;}
.h18{height:73.406953px;}
.h22{height:893.250000px;}
.h21{height:893.340000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:58.176000px;}
.w9{width:79.236000px;}
.w4{width:756.150000px;}
.w5{width:792.180000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.wa{width:1027.050000px;}
.w7{width:1263.000000px;}
.w8{width:1263.059981px;}
.w6{width:1263.060000px;}
.x0{left:0.000000px;}
.x11{left:1.440000px;}
.x2{left:8.100000px;}
.x1{left:53.279987px;}
.x10{left:63.000000px;}
.xd{left:70.199987px;}
.xb{left:79.055987px;}
.x2a{left:80.855987px;}
.x8{left:98.315987px;}
.x28{left:104.255987px;}
.x3{left:111.996000px;}
.x1a{left:129.635987px;}
.x2c{left:133.056000px;}
.xa{left:201.089987px;}
.x9{left:212.069987px;}
.x2b{left:219.089981px;}
.x7{left:404.169000px;}
.x6{left:409.209000px;}
.xc{left:418.244987px;}
.x31{left:421.634981px;}
.x32{left:428.474981px;}
.x5{left:465.414000px;}
.x1b{left:472.244987px;}
.xe{left:473.324987px;}
.x4{left:478.914000px;}
.xf{left:489.524987px;}
.x12{left:491.504987px;}
.x29{left:494.384987px;}
.x1d{left:498.164987px;}
.x13{left:500.144987px;}
.x1e{left:502.664987px;}
.x14{left:504.644987px;}
.x1f{left:517.784987px;}
.x1c{left:524.084987px;}
.x20{left:526.424987px;}
.x21{left:529.844987px;}
.x15{left:531.104987px;}
.x18{left:535.064987px;}
.x16{left:536.864987px;}
.x19{left:538.124987px;}
.x22{left:541.544987px;}
.x17{left:542.804987px;}
.x23{left:558.464987px;}
.x25{left:578.129987px;}
.x26{left:584.069987px;}
.x27{left:589.289987px;}
.x24{left:609.089987px;}
.x30{left:675.069000px;}
.x2f{left:680.109000px;}
.x2e{left:736.314000px;}
.x2d{left:749.814000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v9{vertical-align:-12.800000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.120000pt;}
.v8{vertical-align:13.440000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:28.160000pt;}
.ls22{letter-spacing:-1.290667pt;}
.ls25{letter-spacing:-1.184000pt;}
.ls21{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.912000pt;}
.ls2e{letter-spacing:-0.864000pt;}
.ls12{letter-spacing:-0.821333pt;}
.ls2f{letter-spacing:-0.688000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.230933pt;}
.ls32{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.135467pt;}
.ls30{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls23{letter-spacing:-0.011520pt;}
.lsb{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.007680pt;}
.lsc{letter-spacing:0.016640pt;}
.ls0{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.092160pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.101120pt;}
.ls34{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.209707pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.252160pt;}
.ls2a{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.271467pt;}
.ls28{letter-spacing:0.272533pt;}
.ls16{letter-spacing:0.277120pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.359040pt;}
.ls2d{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.440000pt;}
.ls1c{letter-spacing:1.600000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls27{letter-spacing:5.280000pt;}
.lsa{letter-spacing:9.552640pt;}
.ls14{letter-spacing:13.392640pt;}
.ls2c{letter-spacing:14.032640pt;}
.ls2b{letter-spacing:14.160640pt;}
.ls31{letter-spacing:16.160000pt;}
.ls9{letter-spacing:20.000000pt;}
.ls5{letter-spacing:29.392640pt;}
.ls29{letter-spacing:40.400640pt;}
.ls13{letter-spacing:48.153600pt;}
.ls35{letter-spacing:575.466667pt;}
.ws0{word-spacing:-58.880000pt;}
.ws1a{word-spacing:-37.120000pt;}
.ws2{word-spacing:-21.313280pt;}
.ws3{word-spacing:-21.296640pt;}
.ws11{word-spacing:-14.991467pt;}
.ws1{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.584533pt;}
.ws5{word-spacing:-13.808000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.510933pt;}
.ws18{word-spacing:-13.463467pt;}
.ws21{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws1e{word-spacing:-13.185067pt;}
.ws1f{word-spacing:-13.054933pt;}
.ws12{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws20{word-spacing:-12.823467pt;}
.ws1d{word-spacing:-12.592000pt;}
.wse{word-spacing:-12.458667pt;}
.ws1c{word-spacing:-12.416000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws19{word-spacing:-12.096000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws15{word-spacing:-8.647680pt;}
.ws7{word-spacing:-8.640000pt;}
.ws17{word-spacing:-8.628480pt;}
.ws16{word-spacing:-7.349333pt;}
.ws10{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1399.068160pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-987.123200pt;}
._22{margin-left:-10.593067pt;}
._1b{margin-left:-2.945280pt;}
._6{margin-left:-1.933653pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._d{width:2.044160pt;}
._e{width:3.392640pt;}
._c{width:4.651520pt;}
._b{width:6.187520pt;}
._a{width:7.118080pt;}
._8{width:8.166187pt;}
._7{width:9.268907pt;}
._1e{width:10.173013pt;}
._9{width:11.089707pt;}
._1a{width:12.207360pt;}
._18{width:14.491520pt;}
._11{width:15.564160pt;}
._12{width:17.293227pt;}
._f{width:18.776960pt;}
._10{width:19.708587pt;}
._1f{width:20.645760pt;}
._26{width:21.959893pt;}
._20{width:22.894720pt;}
._21{width:23.957120pt;}
._14{width:25.098240pt;}
._13{width:26.081920pt;}
._19{width:27.594880pt;}
._32{width:28.552960pt;}
._33{width:29.479680pt;}
._16{width:30.650240pt;}
._15{width:31.872000pt;}
._23{width:32.934400pt;}
._2e{width:34.286080pt;}
._2f{width:36.481920pt;}
._34{width:37.482240pt;}
._1c{width:39.914240pt;}
._17{width:41.034240pt;}
._31{width:44.036267pt;}
._30{width:44.995200pt;}
._29{width:48.976640pt;}
._2c{width:49.871573pt;}
._2b{width:50.810240pt;}
._2a{width:51.711360pt;}
._2d{width:55.563520pt;}
._1d{width:58.723200pt;}
._25{width:196.673067pt;}
._24{width:199.276373pt;}
._27{width:364.379093pt;}
._28{width:365.644373pt;}
.fsd{font-size:5.120000pt;}
.fs6{font-size:13.440000pt;}
.fs9{font-size:24.320000pt;}
.fsa{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsc{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:10.240000pt;}
.y8{bottom:10.880000pt;}
.y5b{bottom:24.320000pt;}
.ya{bottom:40.960000pt;}
.ycd{bottom:45.440000pt;}
.ycc{bottom:46.080000pt;}
.y172{bottom:48.480000pt;}
.y111{bottom:49.120000pt;}
.y110{bottom:49.920000pt;}
.y5e{bottom:50.880000pt;}
.y5d{bottom:51.680000pt;}
.y6{bottom:54.560000pt;}
.y171{bottom:62.080000pt;}
.y148{bottom:73.760000pt;}
.y162{bottom:76.800000pt;}
.ye9{bottom:82.560000pt;}
.y147{bottom:89.120000pt;}
.y161{bottom:92.160000pt;}
.ycb{bottom:96.320000pt;}
.ye8{bottom:97.920000pt;}
.yc1{bottom:102.720000pt;}
.y146{bottom:104.320000pt;}
.y160{bottom:107.520000pt;}
.yca{bottom:111.680000pt;}
.ye7{bottom:113.280000pt;}
.yc0{bottom:118.080000pt;}
.y145{bottom:119.680000pt;}
.y15f{bottom:122.720000pt;}
.yc9{bottom:127.040000pt;}
.ye6{bottom:128.640000pt;}
.y3c{bottom:134.080000pt;}
.ybf{bottom:134.400000pt;}
.y144{bottom:135.040000pt;}
.y15e{bottom:138.080000pt;}
.y59{bottom:141.920000pt;}
.yc8{bottom:142.400000pt;}
.ye5{bottom:143.840000pt;}
.y10e{bottom:148.640000pt;}
.y3b{bottom:149.280000pt;}
.ybe{bottom:149.760000pt;}
.y143{bottom:150.400000pt;}
.y15d{bottom:153.440000pt;}
.y58{bottom:157.120000pt;}
.yc7{bottom:158.720000pt;}
.ye4{bottom:159.200000pt;}
.y3a{bottom:164.640000pt;}
.y142{bottom:165.760000pt;}
.ybd{bottom:166.080000pt;}
.y15c{bottom:168.800000pt;}
.y57{bottom:172.480000pt;}
.yc6{bottom:174.080000pt;}
.ye3{bottom:174.560000pt;}
.y39{bottom:181.120000pt;}
.ybc{bottom:181.440000pt;}
.y15b{bottom:184.160000pt;}
.y56{bottom:187.866667pt;}
.yc5{bottom:190.426667pt;}
.y141{bottom:196.346667pt;}
.ybb{bottom:196.826667pt;}
.y38{bottom:197.946667pt;}
.y15a{bottom:199.546667pt;}
.y55{bottom:203.226667pt;}
.yc4{bottom:205.786667pt;}
.y140{bottom:211.706667pt;}
.yba{bottom:213.146667pt;}
.y37{bottom:213.306667pt;}
.y159{bottom:214.746667pt;}
.y54{bottom:218.586667pt;}
.yc3{bottom:221.146667pt;}
.y13f{bottom:227.066667pt;}
.yb9{bottom:228.506667pt;}
.y36{bottom:229.626667pt;}
.y158{bottom:230.106667pt;}
.y53{bottom:233.946667pt;}
.yc2{bottom:236.506667pt;}
.y177{bottom:239.226667pt;}
.y13e{bottom:242.426667pt;}
.yb8{bottom:244.186667pt;}
.y35{bottom:244.986667pt;}
.y157{bottom:245.466667pt;}
.y52{bottom:249.146667pt;}
.y13d{bottom:257.786667pt;}
.y34{bottom:260.186667pt;}
.y156{bottom:260.826667pt;}
.yb3{bottom:263.866667pt;}
.yb6{bottom:265.306667pt;}
.y51{bottom:266.266667pt;}
.yb7{bottom:267.386667pt;}
.yb0{bottom:272.026667pt;}
.y13c{bottom:272.986667pt;}
.yaf{bottom:273.306667pt;}
.yb5{bottom:274.746667pt;}
.y33{bottom:275.546667pt;}
.y155{bottom:276.186667pt;}
.yb2{bottom:276.666667pt;}
.yb1{bottom:277.946667pt;}
.y50{bottom:281.626667pt;}
.yb4{bottom:282.746667pt;}
.y13b{bottom:288.986667pt;}
.yae{bottom:290.746667pt;}
.y32{bottom:290.906667pt;}
.y154{bottom:291.386667pt;}
.y99{bottom:294.266667pt;}
.y4f{bottom:296.986667pt;}
.yad{bottom:306.106667pt;}
.y13a{bottom:306.746667pt;}
.y31{bottom:307.226667pt;}
.y98{bottom:309.626667pt;}
.y4e{bottom:312.346667pt;}
.y139{bottom:322.106667pt;}
.y30{bottom:323.546667pt;}
.y97{bottom:325.946667pt;}
.y4d{bottom:327.706667pt;}
.yac{bottom:337.146667pt;}
.y138{bottom:337.466667pt;}
.y2f{bottom:338.906667pt;}
.y96{bottom:342.266667pt;}
.y4c{bottom:343.066667pt;}
.y137{bottom:352.826667pt;}
.y2e{bottom:354.266667pt;}
.y4b{bottom:358.266667pt;}
.y95{bottom:358.586667pt;}
.y10d{bottom:362.586667pt;}
.y136{bottom:368.186667pt;}
.y2d{bottom:369.626667pt;}
.y4a{bottom:373.626667pt;}
.y94{bottom:373.946667pt;}
.y10c{bottom:377.306667pt;}
.y153{bottom:383.386667pt;}
.y135{bottom:383.546667pt;}
.y2c{bottom:384.986667pt;}
.y49{bottom:388.986667pt;}
.y93{bottom:389.306667pt;}
.y10b{bottom:392.506667pt;}
.y152{bottom:398.786667pt;}
.y134{bottom:398.946667pt;}
.y2b{bottom:401.346667pt;}
.y48{bottom:404.386667pt;}
.y92{bottom:404.706667pt;}
.y10a{bottom:407.906667pt;}
.y133{bottom:414.146667pt;}
.y2a{bottom:416.706667pt;}
.y47{bottom:419.746667pt;}
.y91{bottom:421.026667pt;}
.y109{bottom:423.266667pt;}
.y132{bottom:429.506667pt;}
.y29{bottom:431.906667pt;}
.y46{bottom:435.106667pt;}
.y90{bottom:436.226667pt;}
.y108{bottom:438.626667pt;}
.y131{bottom:444.866667pt;}
.y28{bottom:448.226667pt;}
.y45{bottom:450.306667pt;}
.y8f{bottom:451.586667pt;}
.yab{bottom:453.026667pt;}
.y107{bottom:453.986667pt;}
.y130{bottom:460.226667pt;}
.y27{bottom:463.586667pt;}
.y44{bottom:465.666667pt;}
.y8e{bottom:466.946667pt;}
.yaa{bottom:467.426667pt;}
.y106{bottom:469.346667pt;}
.y176{bottom:475.293333pt;}
.y151{bottom:475.426667pt;}
.y12f{bottom:475.586667pt;}
.y26{bottom:478.946667pt;}
.y43{bottom:481.026667pt;}
.y8d{bottom:482.306667pt;}
.ya9{bottom:483.746667pt;}
.y105{bottom:484.546667pt;}
.y150{bottom:490.786667pt;}
.y12e{bottom:490.946667pt;}
.y25{bottom:495.266667pt;}
.y42{bottom:496.386667pt;}
.y8c{bottom:497.826667pt;}
.ya8{bottom:498.946667pt;}
.y104{bottom:499.906667pt;}
.y175{bottom:501.373333pt;}
.y12d{bottom:506.146667pt;}
.y24{bottom:511.586667pt;}
.y41{bottom:511.746667pt;}
.y8b{bottom:513.186667pt;}
.ya7{bottom:515.266667pt;}
.y12c{bottom:521.506667pt;}
.y40{bottom:526.946667pt;}
.y23{bottom:528.066667pt;}
.y8a{bottom:528.546667pt;}
.ya6{bottom:530.626667pt;}
.y12b{bottom:536.866667pt;}
.y3f{bottom:542.306667pt;}
.y22{bottom:543.426667pt;}
.y89{bottom:543.906667pt;}
.ya5{bottom:545.986667pt;}
.y12a{bottom:552.226667pt;}
.y3e{bottom:557.666667pt;}
.y21{bottom:558.626667pt;}
.y88{bottom:559.266667pt;}
.ya4{bottom:561.346667pt;}
.y103{bottom:566.466667pt;}
.y14f{bottom:567.426667pt;}
.y129{bottom:567.586667pt;}
.y20{bottom:573.986667pt;}
.y87{bottom:574.626667pt;}
.ya3{bottom:576.706667pt;}
.y102{bottom:581.826667pt;}
.y14e{bottom:582.786667pt;}
.y128{bottom:582.946667pt;}
.y1f{bottom:589.346667pt;}
.y86{bottom:589.826667pt;}
.ya2{bottom:593.026667pt;}
.y101{bottom:597.186667pt;}
.y127{bottom:598.146667pt;}
.y3d{bottom:604.706667pt;}
.y85{bottom:605.186667pt;}
.y1e{bottom:605.693333pt;}
.ya1{bottom:609.373333pt;}
.y100{bottom:612.573333pt;}
.y126{bottom:613.533333pt;}
.y84{bottom:620.573333pt;}
.y1d{bottom:621.053333pt;}
.ya0{bottom:624.733333pt;}
.yff{bottom:627.933333pt;}
.y125{bottom:628.893333pt;}
.y83{bottom:635.933333pt;}
.ye2{bottom:639.293333pt;}
.y9f{bottom:641.053333pt;}
.y1c{bottom:642.013333pt;}
.yfe{bottom:643.293333pt;}
.y124{bottom:644.253333pt;}
.y82{bottom:651.293333pt;}
.ye1{bottom:653.533333pt;}
.y1b{bottom:656.253333pt;}
.y9e{bottom:656.413333pt;}
.yfd{bottom:658.493333pt;}
.y123{bottom:659.613333pt;}
.y81{bottom:666.653333pt;}
.ye0{bottom:668.893333pt;}
.y9d{bottom:672.733333pt;}
.y1a{bottom:673.533333pt;}
.yfc{bottom:673.853333pt;}
.y122{bottom:674.973333pt;}
.y80{bottom:681.853333pt;}
.ydf{bottom:684.093333pt;}
.y19{bottom:688.893333pt;}
.y9c{bottom:689.053333pt;}
.yfb{bottom:689.213333pt;}
.y14d{bottom:690.173333pt;}
.y121{bottom:690.333333pt;}
.y7f{bottom:697.213333pt;}
.yde{bottom:699.453333pt;}
.y174{bottom:701.893333pt;}
.y18{bottom:704.253333pt;}
.yfa{bottom:704.573333pt;}
.y9b{bottom:705.373333pt;}
.y14c{bottom:705.533333pt;}
.y120{bottom:705.693333pt;}
.y7e{bottom:712.573333pt;}
.ydd{bottom:714.813333pt;}
.y17{bottom:719.613333pt;}
.yf9{bottom:719.933333pt;}
.y11f{bottom:720.893333pt;}
.y9a{bottom:721.853333pt;}
.y173{bottom:726.880000pt;}
.y7d{bottom:727.933333pt;}
.ydc{bottom:730.173333pt;}
.y16{bottom:734.973333pt;}
.yf8{bottom:735.293333pt;}
.y11e{bottom:736.253333pt;}
.y170{bottom:738.080000pt;}
.y7c{bottom:741.693333pt;}
.ydb{bottom:745.533333pt;}
.y7b{bottom:749.053333pt;}
.y15{bottom:750.333333pt;}
.yf7{bottom:750.493333pt;}
.y11d{bottom:751.613333pt;}
.y78{bottom:757.213333pt;}
.y77{bottom:758.493333pt;}
.yda{bottom:760.733333pt;}
.y7a{bottom:761.853333pt;}
.y79{bottom:763.133333pt;}
.y16f{bottom:763.773333pt;}
.y14{bottom:765.533333pt;}
.yf6{bottom:765.853333pt;}
.y14b{bottom:766.813333pt;}
.y11c{bottom:766.973333pt;}
.y76{bottom:775.133333pt;}
.yd9{bottom:776.253333pt;}
.y16e{bottom:779.133333pt;}
.y13{bottom:780.893333pt;}
.yf5{bottom:781.213333pt;}
.y14a{bottom:782.173333pt;}
.y11b{bottom:782.333333pt;}
.y75{bottom:791.453333pt;}
.yd8{bottom:791.613333pt;}
.y16d{bottom:794.493333pt;}
.y12{bottom:796.253333pt;}
.yf4{bottom:796.573333pt;}
.y149{bottom:797.533333pt;}
.y11a{bottom:797.693333pt;}
.y74{bottom:806.813333pt;}
.y16c{bottom:809.853333pt;}
.y11{bottom:811.613333pt;}
.yf3{bottom:811.933333pt;}
.y119{bottom:812.893333pt;}
.y73{bottom:822.213333pt;}
.yd7{bottom:823.173333pt;}
.y16b{bottom:825.253333pt;}
.yf2{bottom:827.333333pt;}
.y10{bottom:827.493333pt;}
.y118{bottom:828.293333pt;}
.yf{bottom:833.733333pt;}
.y72{bottom:838.533333pt;}
.y16a{bottom:840.453333pt;}
.y6b{bottom:842.533333pt;}
.y117{bottom:843.653333pt;}
.ye{bottom:853.733333pt;}
.y71{bottom:853.893333pt;}
.y169{bottom:855.813333pt;}
.y6a{bottom:857.893333pt;}
.yf1{bottom:858.853333pt;}
.y116{bottom:859.013333pt;}
.y70{bottom:869.253333pt;}
.y168{bottom:871.173333pt;}
.yd{bottom:872.613333pt;}
.y69{bottom:873.253333pt;}
.yf0{bottom:874.213333pt;}
.y115{bottom:874.373333pt;}
.y6f{bottom:884.453333pt;}
.yd6{bottom:885.573333pt;}
.y167{bottom:886.533333pt;}
.y68{bottom:888.613333pt;}
.yef{bottom:889.573333pt;}
.y6e{bottom:900.933333pt;}
.y166{bottom:901.893333pt;}
.y67{bottom:903.973333pt;}
.yee{bottom:904.933333pt;}
.yc{bottom:907.973333pt;}
.yd5{bottom:916.293333pt;}
.y6d{bottom:917.253333pt;}
.y66{bottom:919.173333pt;}
.yed{bottom:920.293333pt;}
.yd4{bottom:931.653333pt;}
.y165{bottom:932.453333pt;}
.yb{bottom:932.613333pt;}
.y6c{bottom:933.573333pt;}
.y65{bottom:934.533333pt;}
.yec{bottom:935.653333pt;}
.y164{bottom:947.813333pt;}
.yd3{bottom:947.973333pt;}
.y64{bottom:949.893333pt;}
.yeb{bottom:950.853333pt;}
.y114{bottom:951.013333pt;}
.y5{bottom:957.893333pt;}
.yd2{bottom:963.173333pt;}
.y63{bottom:965.253333pt;}
.yea{bottom:966.213333pt;}
.y113{bottom:966.373333pt;}
.y4{bottom:974.693333pt;}
.y163{bottom:979.173333pt;}
.yd1{bottom:979.493333pt;}
.y62{bottom:981.573333pt;}
.yd0{bottom:994.853333pt;}
.y61{bottom:996.933333pt;}
.y3{bottom:999.653333pt;}
.ycf{bottom:1011.173333pt;}
.y60{bottom:1012.293333pt;}
.y2{bottom:1024.453333pt;}
.yce{bottom:1026.560000pt;}
.y5f{bottom:1027.680000pt;}
.y112{bottom:1027.840000pt;}
.y5a{bottom:1037.280000pt;}
.y1{bottom:1049.760000pt;}
.y5c{bottom:1074.080000pt;}
.y10f{bottom:1080.320000pt;}
.hc{height:9.384375pt;}
.h19{height:16.981250pt;}
.h5{height:19.360000pt;}
.h23{height:22.578125pt;}
.h14{height:23.996250pt;}
.ha{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h1e{height:26.968750pt;}
.h15{height:29.126250pt;}
.h17{height:31.283750pt;}
.h1c{height:31.728125pt;}
.h1f{height:33.515625pt;}
.hf{height:34.235312pt;}
.h13{height:36.883125pt;}
.hb{height:37.090625pt;}
.hd{height:37.479688pt;}
.h10{height:38.672812pt;}
.h12{height:38.720000pt;}
.he{height:38.828437pt;}
.h1a{height:40.021563pt;}
.h1d{height:40.408750pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h1b{height:42.691250pt;}
.h20{height:44.687500pt;}
.h16{height:44.768125pt;}
.h9{height:47.310625pt;}
.h2{height:48.768750pt;}
.h11{height:58.563750pt;}
.h8{height:60.057813pt;}
.h18{height:65.250625pt;}
.h22{height:794.000000pt;}
.h21{height:794.080000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:51.712000pt;}
.w9{width:70.432000pt;}
.w4{width:672.133333pt;}
.w5{width:704.160000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.wa{width:912.933333pt;}
.w7{width:1122.666667pt;}
.w8{width:1122.719983pt;}
.w6{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x11{left:1.280000pt;}
.x2{left:7.200000pt;}
.x1{left:47.359988pt;}
.x10{left:56.000000pt;}
.xd{left:62.399988pt;}
.xb{left:70.271988pt;}
.x2a{left:71.871988pt;}
.x8{left:87.391988pt;}
.x28{left:92.671988pt;}
.x3{left:99.552000pt;}
.x1a{left:115.231988pt;}
.x2c{left:118.272000pt;}
.xa{left:178.746655pt;}
.x9{left:188.506655pt;}
.x2b{left:194.746650pt;}
.x7{left:359.261333pt;}
.x6{left:363.741333pt;}
.xc{left:371.773321pt;}
.x31{left:374.786650pt;}
.x32{left:380.866650pt;}
.x5{left:413.701333pt;}
.x1b{left:419.773321pt;}
.xe{left:420.733321pt;}
.x4{left:425.701333pt;}
.xf{left:435.133321pt;}
.x12{left:436.893321pt;}
.x29{left:439.453321pt;}
.x1d{left:442.813321pt;}
.x13{left:444.573321pt;}
.x1e{left:446.813321pt;}
.x14{left:448.573321pt;}
.x1f{left:460.253321pt;}
.x1c{left:465.853322pt;}
.x20{left:467.933321pt;}
.x21{left:470.973321pt;}
.x15{left:472.093322pt;}
.x18{left:475.613321pt;}
.x16{left:477.213322pt;}
.x19{left:478.333322pt;}
.x22{left:481.373321pt;}
.x17{left:482.493322pt;}
.x23{left:496.413322pt;}
.x25{left:513.893321pt;}
.x26{left:519.173321pt;}
.x27{left:523.813322pt;}
.x24{left:541.413322pt;}
.x30{left:600.061333pt;}
.x2f{left:604.541333pt;}
.x2e{left:654.501333pt;}
.x2d{left:666.501333pt;}
}




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