
    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_2a1e8a47828c5aaff6afb1be.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_d4225aeb123962e2862dfc31.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_e6c4bd03eec321b37b58b27d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a98b6e4aac77bc3b05f74f84.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_a88f91c8c00923c32180077b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4c3485fc579bbe14517e2828.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_cc435455ec9611405023aef3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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_3eb022cff439eb9008bb162e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_0c0a47acd05cb344e31672fe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.827916;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c76f596afb24e430461b2421.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls28{letter-spacing:-0.960000px;}
.ls43{letter-spacing:-0.660000px;}
.ls3e{letter-spacing:-0.579600px;}
.ls45{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.463800px;}
.ls25{letter-spacing:-0.414000px;}
.lsb{letter-spacing:-0.303000px;}
.ls2c{letter-spacing:-0.302400px;}
.ls2b{letter-spacing:-0.272400px;}
.lse{letter-spacing:-0.240600px;}
.ls16{letter-spacing:-0.214800px;}
.ls44{letter-spacing:-0.208800px;}
.ls7{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.115800px;}
.ls4f{letter-spacing:-0.107400px;}
.ls3a{letter-spacing:-0.078600px;}
.ls3d{letter-spacing:-0.069600px;}
.ls15{letter-spacing:-0.064800px;}
.ls3b{letter-spacing:-0.058320px;}
.ls31{letter-spacing:-0.055440px;}
.ls39{letter-spacing:-0.032400px;}
.lsa{letter-spacing:-0.020160px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.038880px;}
.ls3c{letter-spacing:0.060600px;}
.ls41{letter-spacing:0.100800px;}
.ls30{letter-spacing:0.109200px;}
.ls1e{letter-spacing:0.109440px;}
.lsf{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.150000px;}
.ls50{letter-spacing:0.174000px;}
.ls1c{letter-spacing:0.174240px;}
.ls32{letter-spacing:0.175200px;}
.ls52{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.186600px;}
.ls3f{letter-spacing:0.195000px;}
.ls2f{letter-spacing:0.249000px;}
.ls4d{letter-spacing:0.249120px;}
.ls1{letter-spacing:0.269760px;}
.ls40{letter-spacing:0.274800px;}
.ls18{letter-spacing:0.288600px;}
.ls17{letter-spacing:0.306000px;}
.ls19{letter-spacing:0.314400px;}
.ls23{letter-spacing:0.319680px;}
.ls20{letter-spacing:0.320400px;}
.ls4e{letter-spacing:0.357000px;}
.ls26{letter-spacing:0.393600px;}
.ls29{letter-spacing:0.417600px;}
.ls4c{letter-spacing:0.425520px;}
.ls2{letter-spacing:0.427680px;}
.ls36{letter-spacing:0.439680px;}
.ls2a{letter-spacing:0.447600px;}
.lsc{letter-spacing:0.479400px;}
.ls13{letter-spacing:0.479520px;}
.ls4{letter-spacing:0.617760px;}
.ls35{letter-spacing:0.637200px;}
.ls4a{letter-spacing:0.638400px;}
.ls2d{letter-spacing:0.654000px;}
.ls47{letter-spacing:0.655200px;}
.ls38{letter-spacing:0.661680px;}
.ls49{letter-spacing:0.662400px;}
.ls1f{letter-spacing:0.720000px;}
.ls48{letter-spacing:0.829440px;}
.ls1b{letter-spacing:0.894240px;}
.ls2e{letter-spacing:0.900000px;}
.ls33{letter-spacing:1.026000px;}
.ls24{letter-spacing:1.039680px;}
.ls1d{letter-spacing:1.074240px;}
.ls22{letter-spacing:2.106720px;}
.ls37{letter-spacing:4.266720px;}
.ls1a{letter-spacing:5.706720px;}
.ls4b{letter-spacing:7.374240px;}
.ls53{letter-spacing:12.186720px;}
.ls42{letter-spacing:15.786720px;}
.ls11{letter-spacing:17.226720px;}
.ls12{letter-spacing:20.106720px;}
.ls10{letter-spacing:21.546720px;}
.ls21{letter-spacing:22.986720px;}
.ls46{letter-spacing:24.426720px;}
.ls3{letter-spacing:38.106720px;}
.ls51{letter-spacing:42.570720px;}
.ls34{letter-spacing:52.734240px;}
.ls14{letter-spacing:72.894240px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws10{word-spacing:-13.899360px;}
.ws21{word-spacing:-13.862760px;}
.wsf{word-spacing:-13.820160px;}
.wse{word-spacing:-13.811760px;}
.ws1e{word-spacing:-13.780560px;}
.ws1d{word-spacing:-13.700760px;}
.ws11{word-spacing:-13.692360px;}
.ws16{word-spacing:-13.680960px;}
.wsa{word-spacing:-13.646160px;}
.ws1f{word-spacing:-13.606560px;}
.ws1a{word-spacing:-13.566360px;}
.ws7{word-spacing:-13.505760px;}
.ws17{word-spacing:-13.473360px;}
.ws15{word-spacing:-13.450320px;}
.ws19{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.440960px;}
.ws1c{word-spacing:-13.436160px;}
.ws18{word-spacing:-13.427160px;}
.ws22{word-spacing:-13.398360px;}
.ws8{word-spacing:-13.389960px;}
.ws20{word-spacing:-13.296960px;}
.wsd{word-spacing:-13.290960px;}
.ws9{word-spacing:-13.265160px;}
.ws1b{word-spacing:-13.202760px;}
.ws5{word-spacing:-9.437760px;}
.ws12{word-spacing:-9.204480px;}
.ws6{word-spacing:-8.786880px;}
.ws13{word-spacing:-8.484480px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-532.918560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-190.074240px;}
._25{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.104000px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-109.410240px;}
._1c{margin-left:-102.529440px;}
._22{margin-left:-100.543680px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-31.530240px;}
._38{margin-left:-4.074240px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.176240px;}
._2a{width:2.709840px;}
._2b{width:3.823200px;}
._2f{width:5.617440px;}
._34{width:7.088400px;}
._2d{width:8.426160px;}
._32{width:9.800640px;}
._31{width:10.995840px;}
._2e{width:12.250800px;}
._30{width:14.540640px;}
._2c{width:16.434000px;}
._3b{width:17.648160px;}
._27{width:19.152000px;}
._29{width:20.620080px;}
._35{width:21.812400px;}
._37{width:23.934240px;}
._39{width:46.314000px;}
._36{width:52.734240px;}
._3a{width:54.381600px;}
._3c{width:101.775600px;}
._33{width:2886.360000px;}
.fc2{color:rgb(51,58,63);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:6.480000px;}
.y85{bottom:6.660000px;}
.y10e{bottom:6.690000px;}
.yb0{bottom:6.705000px;}
.y8c{bottom:11.160000px;}
.y83{bottom:11.700000px;}
.yd6{bottom:27.720000px;}
.ya1{bottom:27.750000px;}
.yec{bottom:48.780000px;}
.y127{bottom:48.810000px;}
.y6{bottom:61.416000px;}
.y30{bottom:91.116000px;}
.y189{bottom:91.296000px;}
.y9f{bottom:99.036000px;}
.y125{bottom:102.276000px;}
.y64{bottom:103.356000px;}
.y103{bottom:103.716000px;}
.yd4{bottom:107.856000px;}
.y180{bottom:111.276000px;}
.y188{bottom:112.356000px;}
.y2f{bottom:113.256000px;}
.y81{bottom:114.156000px;}
.y9e{bottom:120.096000px;}
.y124{bottom:123.336000px;}
.y63{bottom:124.416000px;}
.y102{bottom:124.776000px;}
.yd3{bottom:128.916000px;}
.y18a{bottom:129.996000px;}
.y17f{bottom:132.336000px;}
.y187{bottom:133.416000px;}
.y2e{bottom:134.316000px;}
.y80{bottom:135.216000px;}
.y9d{bottom:141.156000px;}
.y123{bottom:144.396000px;}
.y62{bottom:145.476000px;}
.y101{bottom:145.836000px;}
.yd2{bottom:149.976000px;}
.y17e{bottom:153.390000px;}
.y186{bottom:154.470000px;}
.y2d{bottom:155.370000px;}
.y7f{bottom:156.270000px;}
.y9c{bottom:162.210000px;}
.y122{bottom:165.450000px;}
.y61{bottom:166.530000px;}
.y100{bottom:166.890000px;}
.yd1{bottom:171.030000px;}
.y17d{bottom:174.450000px;}
.y185{bottom:175.530000px;}
.y2c{bottom:176.430000px;}
.y7e{bottom:177.330000px;}
.y9b{bottom:183.270000px;}
.y14d{bottom:185.430000px;}
.y121{bottom:186.510000px;}
.y60{bottom:187.590000px;}
.yff{bottom:187.950000px;}
.yd0{bottom:192.090000px;}
.y17c{bottom:195.510000px;}
.y184{bottom:196.590000px;}
.y2b{bottom:197.490000px;}
.y7d{bottom:198.390000px;}
.yfe{bottom:203.430000px;}
.y9a{bottom:204.330000px;}
.y14c{bottom:206.490000px;}
.y120{bottom:207.570000px;}
.y5f{bottom:208.650000px;}
.ycf{bottom:213.150000px;}
.y17b{bottom:216.570000px;}
.y183{bottom:217.650000px;}
.y2a{bottom:218.550000px;}
.y7c{bottom:219.450000px;}
.yfd{bottom:224.490000px;}
.y99{bottom:225.390000px;}
.y11f{bottom:228.630000px;}
.y5e{bottom:229.710000px;}
.yce{bottom:234.210000px;}
.y14b{bottom:234.930000px;}
.y17a{bottom:237.630000px;}
.y182{bottom:238.710000px;}
.y29{bottom:239.610000px;}
.y7b{bottom:240.330000px;}
.yfc{bottom:245.550000px;}
.y98{bottom:246.450000px;}
.y11e{bottom:249.690000px;}
.y5d{bottom:250.770000px;}
.ycd{bottom:255.270000px;}
.y14a{bottom:255.990000px;}
.y179{bottom:258.690000px;}
.y181{bottom:259.770000px;}
.y28{bottom:260.670000px;}
.y7a{bottom:261.390000px;}
.yfb{bottom:266.610000px;}
.y97{bottom:267.510000px;}
.y11d{bottom:270.750000px;}
.ycc{bottom:276.330000px;}
.y149{bottom:277.050000px;}
.y178{bottom:279.750000px;}
.y5c{bottom:280.830000px;}
.y27{bottom:281.730000px;}
.y79{bottom:282.450000px;}
.yfa{bottom:287.670000px;}
.y96{bottom:288.570000px;}
.y11c{bottom:291.810000px;}
.ycb{bottom:297.390000px;}
.y148{bottom:298.110000px;}
.y177{bottom:300.810000px;}
.y5b{bottom:301.890000px;}
.y26{bottom:302.790000px;}
.y78{bottom:303.510000px;}
.yf9{bottom:308.730000px;}
.y95{bottom:309.630000px;}
.y11b{bottom:312.870000px;}
.yca{bottom:318.450000px;}
.y147{bottom:319.170000px;}
.y176{bottom:321.690000px;}
.y5a{bottom:322.950000px;}
.y25{bottom:323.850000px;}
.y77{bottom:324.570000px;}
.yf8{bottom:329.835000px;}
.y94{bottom:330.735000px;}
.y11a{bottom:333.975000px;}
.yc9{bottom:339.555000px;}
.y146{bottom:340.275000px;}
.y175{bottom:342.795000px;}
.y59{bottom:344.055000px;}
.y24{bottom:344.955000px;}
.y76{bottom:345.675000px;}
.yf7{bottom:350.895000px;}
.y93{bottom:351.795000px;}
.y119{bottom:355.035000px;}
.yc8{bottom:360.615000px;}
.y145{bottom:361.335000px;}
.y174{bottom:363.855000px;}
.y58{bottom:365.115000px;}
.y23{bottom:366.015000px;}
.y75{bottom:366.735000px;}
.yf6{bottom:371.955000px;}
.y92{bottom:372.855000px;}
.y118{bottom:376.095000px;}
.yc7{bottom:381.675000px;}
.y144{bottom:382.395000px;}
.y173{bottom:384.915000px;}
.y57{bottom:386.175000px;}
.y22{bottom:387.075000px;}
.y74{bottom:387.795000px;}
.yf5{bottom:393.015000px;}
.y91{bottom:393.915000px;}
.y117{bottom:397.155000px;}
.yc6{bottom:402.735000px;}
.y143{bottom:403.995000px;}
.y172{bottom:405.975000px;}
.y56{bottom:407.235000px;}
.y21{bottom:408.135000px;}
.y73{bottom:408.855000px;}
.yf4{bottom:414.075000px;}
.y90{bottom:414.975000px;}
.y116{bottom:418.215000px;}
.yc5{bottom:423.795000px;}
.y142{bottom:426.495000px;}
.y171{bottom:427.035000px;}
.y55{bottom:428.295000px;}
.y20{bottom:429.195000px;}
.y72{bottom:429.915000px;}
.y8f{bottom:430.095000px;}
.yf3{bottom:435.135000px;}
.y115{bottom:439.275000px;}
.yc4{bottom:444.855000px;}
.y170{bottom:448.095000px;}
.y141{bottom:448.275000px;}
.y54{bottom:449.355000px;}
.y1f{bottom:450.255000px;}
.y8e{bottom:451.155000px;}
.yf2{bottom:456.195000px;}
.y71{bottom:459.975000px;}
.y114{bottom:463.755000px;}
.yc3{bottom:465.915000px;}
.y16f{bottom:469.155000px;}
.y140{bottom:469.335000px;}
.y53{bottom:470.415000px;}
.y1e{bottom:471.315000px;}
.y8d{bottom:472.215000px;}
.yf1{bottom:477.255000px;}
.y70{bottom:481.035000px;}
.y113{bottom:484.815000px;}
.yc2{bottom:486.975000px;}
.y16e{bottom:490.215000px;}
.y13f{bottom:490.395000px;}
.y52{bottom:491.475000px;}
.y1d{bottom:492.375000px;}
.y8b{bottom:493.275000px;}
.yf0{bottom:498.315000px;}
.y6f{bottom:502.095000px;}
.y112{bottom:505.875000px;}
.yc1{bottom:508.035000px;}
.y16d{bottom:511.275000px;}
.y13e{bottom:511.455000px;}
.y51{bottom:512.535000px;}
.y1c{bottom:513.435000px;}
.y8a{bottom:518.835000px;}
.yef{bottom:519.375000px;}
.y6e{bottom:523.155000px;}
.y111{bottom:526.935000px;}
.yc0{bottom:529.095000px;}
.y16c{bottom:532.335000px;}
.y13d{bottom:532.515000px;}
.y50{bottom:533.595000px;}
.y1b{bottom:534.495000px;}
.y89{bottom:539.895000px;}
.yeb{bottom:542.595000px;}
.y6d{bottom:544.215000px;}
.y110{bottom:547.995000px;}
.ybf{bottom:550.155000px;}
.y16b{bottom:553.395000px;}
.y13c{bottom:553.575000px;}
.y4f{bottom:554.655000px;}
.y1a{bottom:555.555000px;}
.y88{bottom:560.955000px;}
.yee{bottom:563.655000px;}
.y6c{bottom:565.275000px;}
.y10f{bottom:569.055000px;}
.ybe{bottom:571.215000px;}
.y16a{bottom:574.455000px;}
.y4e{bottom:575.715000px;}
.y19{bottom:576.615000px;}
.y87{bottom:582.015000px;}
.y13b{bottom:583.635000px;}
.yed{bottom:584.715000px;}
.y6b{bottom:586.335000px;}
.y10d{bottom:590.115000px;}
.ybd{bottom:592.275000px;}
.y169{bottom:595.545000px;}
.y4d{bottom:596.805000px;}
.y18{bottom:597.705000px;}
.y86{bottom:603.105000px;}
.y13a{bottom:604.725000px;}
.y6a{bottom:607.425000px;}
.y10c{bottom:611.205000px;}
.ybc{bottom:613.365000px;}
.yea{bottom:613.725000px;}
.y168{bottom:616.605000px;}
.y4c{bottom:617.865000px;}
.y84{bottom:624.165000px;}
.y139{bottom:625.785000px;}
.y69{bottom:628.485000px;}
.ybb{bottom:628.845000px;}
.y10b{bottom:632.265000px;}
.ye9{bottom:634.785000px;}
.y167{bottom:637.665000px;}
.y4b{bottom:638.925000px;}
.y17{bottom:642.165000px;}
.y138{bottom:646.845000px;}
.y82{bottom:647.385000px;}
.yba{bottom:649.905000px;}
.y109{bottom:655.485000px;}
.ye8{bottom:655.845000px;}
.y68{bottom:658.545000px;}
.y166{bottom:658.725000px;}
.y4a{bottom:659.805000px;}
.y137{bottom:667.905000px;}
.yb9{bottom:670.965000px;}
.y16{bottom:672.045000px;}
.y10a{bottom:676.545000px;}
.ye7{bottom:676.905000px;}
.y67{bottom:679.605000px;}
.y165{bottom:679.785000px;}
.y49{bottom:680.865000px;}
.y136{bottom:688.965000px;}
.yb8{bottom:692.025000px;}
.y15{bottom:693.105000px;}
.ye6{bottom:697.965000px;}
.y66{bottom:700.665000px;}
.y164{bottom:700.845000px;}
.y48{bottom:701.925000px;}
.y108{bottom:704.985000px;}
.y135{bottom:710.025000px;}
.yb7{bottom:713.085000px;}
.y14{bottom:714.165000px;}
.ye5{bottom:719.025000px;}
.y163{bottom:721.905000px;}
.y65{bottom:722.265000px;}
.y47{bottom:722.985000px;}
.y134{bottom:731.085000px;}
.yb6{bottom:734.145000px;}
.y107{bottom:735.045000px;}
.y13{bottom:735.225000px;}
.ye4{bottom:740.085000px;}
.y162{bottom:742.965000px;}
.y46{bottom:744.045000px;}
.y133{bottom:751.965000px;}
.yb5{bottom:755.205000px;}
.y106{bottom:756.105000px;}
.y12{bottom:756.285000px;}
.ye3{bottom:760.965000px;}
.y161{bottom:764.025000px;}
.y45{bottom:765.105000px;}
.y132{bottom:773.025000px;}
.yb4{bottom:776.265000px;}
.ye2{bottom:776.625000px;}
.y105{bottom:777.165000px;}
.y11{bottom:777.345000px;}
.y160{bottom:785.085000px;}
.y44{bottom:786.165000px;}
.y131{bottom:794.085000px;}
.yb3{bottom:797.325000px;}
.ye1{bottom:797.685000px;}
.y104{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.y15f{bottom:806.145000px;}
.y43{bottom:807.225000px;}
.y130{bottom:815.145000px;}
.yb2{bottom:818.385000px;}
.ye0{bottom:818.745000px;}
.yf{bottom:819.465000px;}
.y15e{bottom:827.205000px;}
.y42{bottom:828.285000px;}
.y12f{bottom:836.205000px;}
.yb1{bottom:839.445000px;}
.ydf{bottom:839.805000px;}
.ye{bottom:840.525000px;}
.y15d{bottom:848.265000px;}
.y41{bottom:849.345000px;}
.y12e{bottom:857.265000px;}
.yaf{bottom:860.505000px;}
.yde{bottom:860.865000px;}
.yd{bottom:861.585000px;}
.y15c{bottom:869.370000px;}
.y40{bottom:870.450000px;}
.yae{bottom:881.610000px;}
.ydd{bottom:881.970000px;}
.yc{bottom:884.850000px;}
.y12d{bottom:887.370000px;}
.y15b{bottom:890.430000px;}
.y3f{bottom:891.510000px;}
.yad{bottom:902.670000px;}
.ydc{bottom:903.030000px;}
.yb{bottom:911.130000px;}
.y15a{bottom:911.490000px;}
.y3e{bottom:912.570000px;}
.yac{bottom:923.730000px;}
.ydb{bottom:924.090000px;}
.ya{bottom:927.870000px;}
.y159{bottom:932.550000px;}
.y3d{bottom:933.630000px;}
.yab{bottom:944.790000px;}
.yda{bottom:945.150000px;}
.y9{bottom:950.190000px;}
.y158{bottom:953.610000px;}
.y3c{bottom:954.690000px;}
.ya9{bottom:965.850000px;}
.yd9{bottom:966.210000px;}
.y157{bottom:974.670000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:975.750000px;}
.ya8{bottom:986.730000px;}
.yd8{bottom:987.270000px;}
.y156{bottom:990.150000px;}
.y3a{bottom:996.810000px;}
.ya7{bottom:1007.790000px;}
.y12c{bottom:1008.330000px;}
.y7{bottom:1009.050000px;}
.yd5{bottom:1010.490000px;}
.y155{bottom:1011.210000px;}
.y39{bottom:1017.870000px;}
.ya6{bottom:1028.850000px;}
.y12b{bottom:1029.390000px;}
.yd7{bottom:1031.550000px;}
.y154{bottom:1032.270000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.ya5{bottom:1049.910000px;}
.y12a{bottom:1050.450000px;}
.y153{bottom:1053.330000px;}
.y37{bottom:1059.990000px;}
.ya4{bottom:1070.970000px;}
.y129{bottom:1071.510000px;}
.y152{bottom:1074.390000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.ya3{bottom:1092.030000px;}
.y126{bottom:1094.730000px;}
.y151{bottom:1095.450000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.ya0{bottom:1115.430000px;}
.y128{bottom:1115.790000px;}
.y150{bottom:1116.510000px;}
.y34{bottom:1123.170000px;}
.ya2{bottom:1136.520000px;}
.y14f{bottom:1137.600000px;}
.y33{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.y14e{bottom:1158.660000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h12{height:20.880000px;}
.he{height:21.060000px;}
.hf{height:21.096000px;}
.h10{height:25.560000px;}
.hd{height:26.100000px;}
.h8{height:38.671172px;}
.h13{height:42.120000px;}
.h11{height:42.156000px;}
.hb{height:45.578672px;}
.hc{height:45.637031px;}
.ha{height:45.992812px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h14{height:63.216000px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:101.196000px;}
.w8{width:109.080000px;}
.w7{width:119.916000px;}
.w5{width:125.640000px;}
.we{width:130.536000px;}
.w1b{width:144.216000px;}
.w12{width:145.116000px;}
.w1c{width:145.440000px;}
.w13{width:145.656000px;}
.w1a{width:146.556000px;}
.w15{width:147.060000px;}
.w14{width:150.150000px;}
.w19{width:150.330000px;}
.wf{width:158.250000px;}
.w10{width:158.400000px;}
.w6{width:158.610000px;}
.w3{width:170.310000px;}
.wc{width:180.210000px;}
.wb{width:180.360000px;}
.wa{width:180.390000px;}
.w11{width:196.770000px;}
.w18{width:198.210000px;}
.wd{width:207.210000px;}
.w20{width:234.210000px;}
.w9{width:243.795000px;}
.w1e{width:289.650000px;}
.w16{width:290.775000px;}
.w1d{width:296.895000px;}
.w17{width:297.210000px;}
.w1f{width:316.515000px;}
.w21{width:468.435000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x6{left:53.999987px;}
.x9{left:55.259987px;}
.xa{left:61.199987px;}
.x8{left:70.199987px;}
.x7{left:75.599987px;}
.x20{left:86.939987px;}
.x21{left:102.635987px;}
.x5{left:181.469987px;}
.xc{left:224.490000px;}
.x17{left:250.950000px;}
.x1b{left:252.390000px;}
.x13{left:261.210000px;}
.x3{left:286.634987px;}
.x11{left:297.975000px;}
.xd{left:325.695000px;}
.x2{left:350.534987px;}
.x1e{left:370.515000px;}
.x14{left:391.755000px;}
.x18{left:396.075000px;}
.x1c{left:402.735000px;}
.x4{left:419.114987px;}
.xe{left:451.335000px;}
.x1{left:479.264987px;}
.x19{left:541.725000px;}
.x15{left:550.005000px;}
.x1f{left:604.725000px;}
.xf{left:609.945000px;}
.x12{left:658.725000px;}
.x16{left:680.550000px;}
.x1a{left:691.890000px;}
.x1d{left:693.510000px;}
.x10{left:729.870000px;}
.x22{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls28{letter-spacing:-0.853333pt;}
.ls43{letter-spacing:-0.586667pt;}
.ls3e{letter-spacing:-0.515200pt;}
.ls45{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls25{letter-spacing:-0.368000pt;}
.lsb{letter-spacing:-0.269333pt;}
.ls2c{letter-spacing:-0.268800pt;}
.ls2b{letter-spacing:-0.242133pt;}
.lse{letter-spacing:-0.213867pt;}
.ls16{letter-spacing:-0.190933pt;}
.ls44{letter-spacing:-0.185600pt;}
.ls7{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls4f{letter-spacing:-0.095467pt;}
.ls3a{letter-spacing:-0.069867pt;}
.ls3d{letter-spacing:-0.061867pt;}
.ls15{letter-spacing:-0.057600pt;}
.ls3b{letter-spacing:-0.051840pt;}
.ls31{letter-spacing:-0.049280pt;}
.ls39{letter-spacing:-0.028800pt;}
.lsa{letter-spacing:-0.017920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.034560pt;}
.ls3c{letter-spacing:0.053867pt;}
.ls41{letter-spacing:0.089600pt;}
.ls30{letter-spacing:0.097067pt;}
.ls1e{letter-spacing:0.097280pt;}
.lsf{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.133333pt;}
.ls50{letter-spacing:0.154667pt;}
.ls1c{letter-spacing:0.154880pt;}
.ls32{letter-spacing:0.155733pt;}
.ls52{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.165867pt;}
.ls3f{letter-spacing:0.173333pt;}
.ls2f{letter-spacing:0.221333pt;}
.ls4d{letter-spacing:0.221440pt;}
.ls1{letter-spacing:0.239787pt;}
.ls40{letter-spacing:0.244267pt;}
.ls18{letter-spacing:0.256533pt;}
.ls17{letter-spacing:0.272000pt;}
.ls19{letter-spacing:0.279467pt;}
.ls23{letter-spacing:0.284160pt;}
.ls20{letter-spacing:0.284800pt;}
.ls4e{letter-spacing:0.317333pt;}
.ls26{letter-spacing:0.349867pt;}
.ls29{letter-spacing:0.371200pt;}
.ls4c{letter-spacing:0.378240pt;}
.ls2{letter-spacing:0.380160pt;}
.ls36{letter-spacing:0.390827pt;}
.ls2a{letter-spacing:0.397867pt;}
.lsc{letter-spacing:0.426133pt;}
.ls13{letter-spacing:0.426240pt;}
.ls4{letter-spacing:0.549120pt;}
.ls35{letter-spacing:0.566400pt;}
.ls4a{letter-spacing:0.567467pt;}
.ls2d{letter-spacing:0.581333pt;}
.ls47{letter-spacing:0.582400pt;}
.ls38{letter-spacing:0.588160pt;}
.ls49{letter-spacing:0.588800pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls48{letter-spacing:0.737280pt;}
.ls1b{letter-spacing:0.794880pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls33{letter-spacing:0.912000pt;}
.ls24{letter-spacing:0.924160pt;}
.ls1d{letter-spacing:0.954880pt;}
.ls22{letter-spacing:1.872640pt;}
.ls37{letter-spacing:3.792640pt;}
.ls1a{letter-spacing:5.072640pt;}
.ls4b{letter-spacing:6.554880pt;}
.ls53{letter-spacing:10.832640pt;}
.ls42{letter-spacing:14.032640pt;}
.ls11{letter-spacing:15.312640pt;}
.ls12{letter-spacing:17.872640pt;}
.ls10{letter-spacing:19.152640pt;}
.ls21{letter-spacing:20.432640pt;}
.ls46{letter-spacing:21.712640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls51{letter-spacing:37.840640pt;}
.ls34{letter-spacing:46.874880pt;}
.ls14{letter-spacing:64.794880pt;}
.ws14{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws10{word-spacing:-12.354987pt;}
.ws21{word-spacing:-12.322453pt;}
.wsf{word-spacing:-12.284587pt;}
.wse{word-spacing:-12.277120pt;}
.ws1e{word-spacing:-12.249387pt;}
.ws1d{word-spacing:-12.178453pt;}
.ws11{word-spacing:-12.170987pt;}
.ws16{word-spacing:-12.160853pt;}
.wsa{word-spacing:-12.129920pt;}
.ws1f{word-spacing:-12.094720pt;}
.ws1a{word-spacing:-12.058987pt;}
.ws7{word-spacing:-12.005120pt;}
.ws17{word-spacing:-11.976320pt;}
.ws15{word-spacing:-11.955840pt;}
.ws19{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.947520pt;}
.ws1c{word-spacing:-11.943253pt;}
.ws18{word-spacing:-11.935253pt;}
.ws22{word-spacing:-11.909653pt;}
.ws8{word-spacing:-11.902187pt;}
.ws20{word-spacing:-11.819520pt;}
.wsd{word-spacing:-11.814187pt;}
.ws9{word-spacing:-11.791253pt;}
.ws1b{word-spacing:-11.735787pt;}
.ws5{word-spacing:-8.389120pt;}
.ws12{word-spacing:-8.181760pt;}
.ws6{word-spacing:-7.810560pt;}
.ws13{word-spacing:-7.541760pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-473.705387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.954880pt;}
._25{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.981333pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.253547pt;}
._1c{margin-left:-91.137280pt;}
._22{margin-left:-89.372160pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.026880pt;}
._38{margin-left:-3.621547pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.045547pt;}
._2a{width:2.408747pt;}
._2b{width:3.398400pt;}
._2f{width:4.993280pt;}
._34{width:6.300800pt;}
._2d{width:7.489920pt;}
._32{width:8.711680pt;}
._31{width:9.774080pt;}
._2e{width:10.889600pt;}
._30{width:12.925013pt;}
._2c{width:14.608000pt;}
._3b{width:15.687253pt;}
._27{width:17.024000pt;}
._29{width:18.328960pt;}
._35{width:19.388800pt;}
._37{width:21.274880pt;}
._39{width:41.168000pt;}
._36{width:46.874880pt;}
._3a{width:48.339200pt;}
._3c{width:90.467200pt;}
._33{width:2565.653333pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:5.760000pt;}
.y85{bottom:5.920000pt;}
.y10e{bottom:5.946667pt;}
.yb0{bottom:5.960000pt;}
.y8c{bottom:9.920000pt;}
.y83{bottom:10.400000pt;}
.yd6{bottom:24.640000pt;}
.ya1{bottom:24.666667pt;}
.yec{bottom:43.360000pt;}
.y127{bottom:43.386667pt;}
.y6{bottom:54.592000pt;}
.y30{bottom:80.992000pt;}
.y189{bottom:81.152000pt;}
.y9f{bottom:88.032000pt;}
.y125{bottom:90.912000pt;}
.y64{bottom:91.872000pt;}
.y103{bottom:92.192000pt;}
.yd4{bottom:95.872000pt;}
.y180{bottom:98.912000pt;}
.y188{bottom:99.872000pt;}
.y2f{bottom:100.672000pt;}
.y81{bottom:101.472000pt;}
.y9e{bottom:106.752000pt;}
.y124{bottom:109.632000pt;}
.y63{bottom:110.592000pt;}
.y102{bottom:110.912000pt;}
.yd3{bottom:114.592000pt;}
.y18a{bottom:115.552000pt;}
.y17f{bottom:117.632000pt;}
.y187{bottom:118.592000pt;}
.y2e{bottom:119.392000pt;}
.y80{bottom:120.192000pt;}
.y9d{bottom:125.472000pt;}
.y123{bottom:128.352000pt;}
.y62{bottom:129.312000pt;}
.y101{bottom:129.632000pt;}
.yd2{bottom:133.312000pt;}
.y17e{bottom:136.346667pt;}
.y186{bottom:137.306667pt;}
.y2d{bottom:138.106667pt;}
.y7f{bottom:138.906667pt;}
.y9c{bottom:144.186667pt;}
.y122{bottom:147.066667pt;}
.y61{bottom:148.026667pt;}
.y100{bottom:148.346667pt;}
.yd1{bottom:152.026667pt;}
.y17d{bottom:155.066667pt;}
.y185{bottom:156.026667pt;}
.y2c{bottom:156.826667pt;}
.y7e{bottom:157.626667pt;}
.y9b{bottom:162.906667pt;}
.y14d{bottom:164.826667pt;}
.y121{bottom:165.786667pt;}
.y60{bottom:166.746667pt;}
.yff{bottom:167.066667pt;}
.yd0{bottom:170.746667pt;}
.y17c{bottom:173.786667pt;}
.y184{bottom:174.746667pt;}
.y2b{bottom:175.546667pt;}
.y7d{bottom:176.346667pt;}
.yfe{bottom:180.826667pt;}
.y9a{bottom:181.626667pt;}
.y14c{bottom:183.546667pt;}
.y120{bottom:184.506667pt;}
.y5f{bottom:185.466667pt;}
.ycf{bottom:189.466667pt;}
.y17b{bottom:192.506667pt;}
.y183{bottom:193.466667pt;}
.y2a{bottom:194.266667pt;}
.y7c{bottom:195.066667pt;}
.yfd{bottom:199.546667pt;}
.y99{bottom:200.346667pt;}
.y11f{bottom:203.226667pt;}
.y5e{bottom:204.186667pt;}
.yce{bottom:208.186667pt;}
.y14b{bottom:208.826667pt;}
.y17a{bottom:211.226667pt;}
.y182{bottom:212.186667pt;}
.y29{bottom:212.986667pt;}
.y7b{bottom:213.626667pt;}
.yfc{bottom:218.266667pt;}
.y98{bottom:219.066667pt;}
.y11e{bottom:221.946667pt;}
.y5d{bottom:222.906667pt;}
.ycd{bottom:226.906667pt;}
.y14a{bottom:227.546667pt;}
.y179{bottom:229.946667pt;}
.y181{bottom:230.906667pt;}
.y28{bottom:231.706667pt;}
.y7a{bottom:232.346667pt;}
.yfb{bottom:236.986667pt;}
.y97{bottom:237.786667pt;}
.y11d{bottom:240.666667pt;}
.ycc{bottom:245.626667pt;}
.y149{bottom:246.266667pt;}
.y178{bottom:248.666667pt;}
.y5c{bottom:249.626667pt;}
.y27{bottom:250.426667pt;}
.y79{bottom:251.066667pt;}
.yfa{bottom:255.706667pt;}
.y96{bottom:256.506667pt;}
.y11c{bottom:259.386667pt;}
.ycb{bottom:264.346667pt;}
.y148{bottom:264.986667pt;}
.y177{bottom:267.386667pt;}
.y5b{bottom:268.346667pt;}
.y26{bottom:269.146667pt;}
.y78{bottom:269.786667pt;}
.yf9{bottom:274.426667pt;}
.y95{bottom:275.226667pt;}
.y11b{bottom:278.106667pt;}
.yca{bottom:283.066667pt;}
.y147{bottom:283.706667pt;}
.y176{bottom:285.946667pt;}
.y5a{bottom:287.066667pt;}
.y25{bottom:287.866667pt;}
.y77{bottom:288.506667pt;}
.yf8{bottom:293.186667pt;}
.y94{bottom:293.986667pt;}
.y11a{bottom:296.866667pt;}
.yc9{bottom:301.826667pt;}
.y146{bottom:302.466667pt;}
.y175{bottom:304.706667pt;}
.y59{bottom:305.826667pt;}
.y24{bottom:306.626667pt;}
.y76{bottom:307.266667pt;}
.yf7{bottom:311.906667pt;}
.y93{bottom:312.706667pt;}
.y119{bottom:315.586667pt;}
.yc8{bottom:320.546667pt;}
.y145{bottom:321.186667pt;}
.y174{bottom:323.426667pt;}
.y58{bottom:324.546667pt;}
.y23{bottom:325.346667pt;}
.y75{bottom:325.986667pt;}
.yf6{bottom:330.626667pt;}
.y92{bottom:331.426667pt;}
.y118{bottom:334.306667pt;}
.yc7{bottom:339.266667pt;}
.y144{bottom:339.906667pt;}
.y173{bottom:342.146667pt;}
.y57{bottom:343.266667pt;}
.y22{bottom:344.066667pt;}
.y74{bottom:344.706667pt;}
.yf5{bottom:349.346667pt;}
.y91{bottom:350.146667pt;}
.y117{bottom:353.026667pt;}
.yc6{bottom:357.986667pt;}
.y143{bottom:359.106667pt;}
.y172{bottom:360.866667pt;}
.y56{bottom:361.986667pt;}
.y21{bottom:362.786667pt;}
.y73{bottom:363.426667pt;}
.yf4{bottom:368.066667pt;}
.y90{bottom:368.866667pt;}
.y116{bottom:371.746667pt;}
.yc5{bottom:376.706667pt;}
.y142{bottom:379.106667pt;}
.y171{bottom:379.586667pt;}
.y55{bottom:380.706667pt;}
.y20{bottom:381.506667pt;}
.y72{bottom:382.146667pt;}
.y8f{bottom:382.306667pt;}
.yf3{bottom:386.786667pt;}
.y115{bottom:390.466667pt;}
.yc4{bottom:395.426667pt;}
.y170{bottom:398.306667pt;}
.y141{bottom:398.466667pt;}
.y54{bottom:399.426667pt;}
.y1f{bottom:400.226667pt;}
.y8e{bottom:401.026667pt;}
.yf2{bottom:405.506667pt;}
.y71{bottom:408.866667pt;}
.y114{bottom:412.226667pt;}
.yc3{bottom:414.146667pt;}
.y16f{bottom:417.026667pt;}
.y140{bottom:417.186667pt;}
.y53{bottom:418.146667pt;}
.y1e{bottom:418.946667pt;}
.y8d{bottom:419.746667pt;}
.yf1{bottom:424.226667pt;}
.y70{bottom:427.586667pt;}
.y113{bottom:430.946667pt;}
.yc2{bottom:432.866667pt;}
.y16e{bottom:435.746667pt;}
.y13f{bottom:435.906667pt;}
.y52{bottom:436.866667pt;}
.y1d{bottom:437.666667pt;}
.y8b{bottom:438.466667pt;}
.yf0{bottom:442.946667pt;}
.y6f{bottom:446.306667pt;}
.y112{bottom:449.666667pt;}
.yc1{bottom:451.586667pt;}
.y16d{bottom:454.466667pt;}
.y13e{bottom:454.626667pt;}
.y51{bottom:455.586667pt;}
.y1c{bottom:456.386667pt;}
.y8a{bottom:461.186667pt;}
.yef{bottom:461.666667pt;}
.y6e{bottom:465.026667pt;}
.y111{bottom:468.386667pt;}
.yc0{bottom:470.306667pt;}
.y16c{bottom:473.186667pt;}
.y13d{bottom:473.346667pt;}
.y50{bottom:474.306667pt;}
.y1b{bottom:475.106667pt;}
.y89{bottom:479.906667pt;}
.yeb{bottom:482.306667pt;}
.y6d{bottom:483.746667pt;}
.y110{bottom:487.106667pt;}
.ybf{bottom:489.026667pt;}
.y16b{bottom:491.906667pt;}
.y13c{bottom:492.066667pt;}
.y4f{bottom:493.026667pt;}
.y1a{bottom:493.826667pt;}
.y88{bottom:498.626667pt;}
.yee{bottom:501.026667pt;}
.y6c{bottom:502.466667pt;}
.y10f{bottom:505.826667pt;}
.ybe{bottom:507.746667pt;}
.y16a{bottom:510.626667pt;}
.y4e{bottom:511.746667pt;}
.y19{bottom:512.546667pt;}
.y87{bottom:517.346667pt;}
.y13b{bottom:518.786667pt;}
.yed{bottom:519.746667pt;}
.y6b{bottom:521.186667pt;}
.y10d{bottom:524.546667pt;}
.ybd{bottom:526.466667pt;}
.y169{bottom:529.373333pt;}
.y4d{bottom:530.493333pt;}
.y18{bottom:531.293333pt;}
.y86{bottom:536.093333pt;}
.y13a{bottom:537.533333pt;}
.y6a{bottom:539.933333pt;}
.y10c{bottom:543.293333pt;}
.ybc{bottom:545.213333pt;}
.yea{bottom:545.533333pt;}
.y168{bottom:548.093333pt;}
.y4c{bottom:549.213333pt;}
.y84{bottom:554.813333pt;}
.y139{bottom:556.253333pt;}
.y69{bottom:558.653333pt;}
.ybb{bottom:558.973333pt;}
.y10b{bottom:562.013333pt;}
.ye9{bottom:564.253333pt;}
.y167{bottom:566.813333pt;}
.y4b{bottom:567.933333pt;}
.y17{bottom:570.813333pt;}
.y138{bottom:574.973333pt;}
.y82{bottom:575.453333pt;}
.yba{bottom:577.693333pt;}
.y109{bottom:582.653333pt;}
.ye8{bottom:582.973333pt;}
.y68{bottom:585.373333pt;}
.y166{bottom:585.533333pt;}
.y4a{bottom:586.493333pt;}
.y137{bottom:593.693333pt;}
.yb9{bottom:596.413333pt;}
.y16{bottom:597.373333pt;}
.y10a{bottom:601.373333pt;}
.ye7{bottom:601.693333pt;}
.y67{bottom:604.093333pt;}
.y165{bottom:604.253333pt;}
.y49{bottom:605.213333pt;}
.y136{bottom:612.413333pt;}
.yb8{bottom:615.133333pt;}
.y15{bottom:616.093333pt;}
.ye6{bottom:620.413333pt;}
.y66{bottom:622.813333pt;}
.y164{bottom:622.973333pt;}
.y48{bottom:623.933333pt;}
.y108{bottom:626.653333pt;}
.y135{bottom:631.133333pt;}
.yb7{bottom:633.853333pt;}
.y14{bottom:634.813333pt;}
.ye5{bottom:639.133333pt;}
.y163{bottom:641.693333pt;}
.y65{bottom:642.013333pt;}
.y47{bottom:642.653333pt;}
.y134{bottom:649.853333pt;}
.yb6{bottom:652.573333pt;}
.y107{bottom:653.373333pt;}
.y13{bottom:653.533333pt;}
.ye4{bottom:657.853333pt;}
.y162{bottom:660.413333pt;}
.y46{bottom:661.373333pt;}
.y133{bottom:668.413333pt;}
.yb5{bottom:671.293333pt;}
.y106{bottom:672.093333pt;}
.y12{bottom:672.253333pt;}
.ye3{bottom:676.413333pt;}
.y161{bottom:679.133333pt;}
.y45{bottom:680.093333pt;}
.y132{bottom:687.133333pt;}
.yb4{bottom:690.013333pt;}
.ye2{bottom:690.333333pt;}
.y105{bottom:690.813333pt;}
.y11{bottom:690.973333pt;}
.y160{bottom:697.853333pt;}
.y44{bottom:698.813333pt;}
.y131{bottom:705.853333pt;}
.yb3{bottom:708.733333pt;}
.ye1{bottom:709.053333pt;}
.y104{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.y15f{bottom:716.573333pt;}
.y43{bottom:717.533333pt;}
.y130{bottom:724.573333pt;}
.yb2{bottom:727.453333pt;}
.ye0{bottom:727.773333pt;}
.yf{bottom:728.413333pt;}
.y15e{bottom:735.293333pt;}
.y42{bottom:736.253333pt;}
.y12f{bottom:743.293333pt;}
.yb1{bottom:746.173333pt;}
.ydf{bottom:746.493333pt;}
.ye{bottom:747.133333pt;}
.y15d{bottom:754.013333pt;}
.y41{bottom:754.973333pt;}
.y12e{bottom:762.013333pt;}
.yaf{bottom:764.893333pt;}
.yde{bottom:765.213333pt;}
.yd{bottom:765.853333pt;}
.y15c{bottom:772.773333pt;}
.y40{bottom:773.733333pt;}
.yae{bottom:783.653333pt;}
.ydd{bottom:783.973333pt;}
.yc{bottom:786.533333pt;}
.y12d{bottom:788.773333pt;}
.y15b{bottom:791.493333pt;}
.y3f{bottom:792.453333pt;}
.yad{bottom:802.373333pt;}
.ydc{bottom:802.693333pt;}
.yb{bottom:809.893333pt;}
.y15a{bottom:810.213333pt;}
.y3e{bottom:811.173333pt;}
.yac{bottom:821.093333pt;}
.ydb{bottom:821.413333pt;}
.ya{bottom:824.773333pt;}
.y159{bottom:828.933333pt;}
.y3d{bottom:829.893333pt;}
.yab{bottom:839.813333pt;}
.yda{bottom:840.133333pt;}
.y9{bottom:844.613333pt;}
.y158{bottom:847.653333pt;}
.y3c{bottom:848.613333pt;}
.ya9{bottom:858.533333pt;}
.yd9{bottom:858.853333pt;}
.y157{bottom:866.373333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:867.333333pt;}
.ya8{bottom:877.093333pt;}
.yd8{bottom:877.573333pt;}
.y156{bottom:880.133333pt;}
.y3a{bottom:886.053333pt;}
.ya7{bottom:895.813333pt;}
.y12c{bottom:896.293333pt;}
.y7{bottom:896.933333pt;}
.yd5{bottom:898.213333pt;}
.y155{bottom:898.853333pt;}
.y39{bottom:904.773333pt;}
.ya6{bottom:914.533333pt;}
.y12b{bottom:915.013333pt;}
.yd7{bottom:916.933333pt;}
.y154{bottom:917.573333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.ya5{bottom:933.253333pt;}
.y12a{bottom:933.733333pt;}
.y153{bottom:936.293333pt;}
.y37{bottom:942.213333pt;}
.ya4{bottom:951.973333pt;}
.y129{bottom:952.453333pt;}
.y152{bottom:955.013333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.ya3{bottom:970.693333pt;}
.y126{bottom:973.093333pt;}
.y151{bottom:973.733333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.ya0{bottom:991.493333pt;}
.y128{bottom:991.813333pt;}
.y150{bottom:992.453333pt;}
.y34{bottom:998.373333pt;}
.ya2{bottom:1010.240000pt;}
.y14f{bottom:1011.200000pt;}
.y33{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.y14e{bottom:1029.920000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h12{height:18.560000pt;}
.he{height:18.720000pt;}
.hf{height:18.752000pt;}
.h10{height:22.720000pt;}
.hd{height:23.200000pt;}
.h8{height:34.374375pt;}
.h13{height:37.440000pt;}
.h11{height:37.472000pt;}
.hb{height:40.514375pt;}
.hc{height:40.566250pt;}
.ha{height:40.882500pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h14{height:56.192000pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:89.952000pt;}
.w8{width:96.960000pt;}
.w7{width:106.592000pt;}
.w5{width:111.680000pt;}
.we{width:116.032000pt;}
.w1b{width:128.192000pt;}
.w12{width:128.992000pt;}
.w1c{width:129.280000pt;}
.w13{width:129.472000pt;}
.w1a{width:130.272000pt;}
.w15{width:130.720000pt;}
.w14{width:133.466667pt;}
.w19{width:133.626667pt;}
.wf{width:140.666667pt;}
.w10{width:140.800000pt;}
.w6{width:140.986667pt;}
.w3{width:151.386667pt;}
.wc{width:160.186667pt;}
.wb{width:160.320000pt;}
.wa{width:160.346667pt;}
.w11{width:174.906667pt;}
.w18{width:176.186667pt;}
.wd{width:184.186667pt;}
.w20{width:208.186667pt;}
.w9{width:216.706667pt;}
.w1e{width:257.466667pt;}
.w16{width:258.466667pt;}
.w1d{width:263.906667pt;}
.w17{width:264.186667pt;}
.w1f{width:281.346667pt;}
.w21{width:416.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x6{left:47.999988pt;}
.x9{left:49.119988pt;}
.xa{left:54.399988pt;}
.x8{left:62.399988pt;}
.x7{left:67.199988pt;}
.x20{left:77.279988pt;}
.x21{left:91.231988pt;}
.x5{left:161.306655pt;}
.xc{left:199.546667pt;}
.x17{left:223.066667pt;}
.x1b{left:224.346667pt;}
.x13{left:232.186667pt;}
.x3{left:254.786655pt;}
.x11{left:264.866667pt;}
.xd{left:289.506667pt;}
.x2{left:311.586655pt;}
.x1e{left:329.346667pt;}
.x14{left:348.226667pt;}
.x18{left:352.066667pt;}
.x1c{left:357.986667pt;}
.x4{left:372.546655pt;}
.xe{left:401.186667pt;}
.x1{left:426.013322pt;}
.x19{left:481.533333pt;}
.x15{left:488.893333pt;}
.x1f{left:537.533333pt;}
.xf{left:542.173333pt;}
.x12{left:585.533333pt;}
.x16{left:604.933333pt;}
.x1a{left:615.013333pt;}
.x1d{left:616.453333pt;}
.x10{left:648.773333pt;}
.x22{left:746.053322pt;}
}




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