
    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_21e91255bfd891b2c8ae3944.woff')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_4c78811be23c86547fc97058.woff')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_526167cceb99ed3a467195b4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_e77bff2eddc44ed1731cf87a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4a22796613eb736ca3c5055f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e3c1d92a39df8d543c7a4bce.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d44e05cd1e839f46af13050d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_473ae4b347471adfab3522f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_436fd6266240798746eeaa0d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_005fff55d14e57ac100512b8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6f485b18b7b339c8d2cb30f1.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_724ab271914a96cadec126e4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a241692515f6b5b988dee2dd.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cb9711420057169ea05aebae.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-22.500000px;}
.v7{vertical-align:-18.000000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.500000px;}
.v1{vertical-align:18.000000px;}
.v5{vertical-align:22.620000px;}
.v6{vertical-align:40.500000px;}
.ls2a{letter-spacing:-15.780000px;}
.ls11{letter-spacing:-2.766000px;}
.lsd{letter-spacing:-2.724000px;}
.ls29{letter-spacing:-2.250000px;}
.ls24{letter-spacing:-1.740000px;}
.ls2c{letter-spacing:-1.482000px;}
.ls28{letter-spacing:-1.128000px;}
.lse{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.378000px;}
.lsb{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.099000px;}
.ls18{letter-spacing:0.256500px;}
.lsf{letter-spacing:0.690000px;}
.ls22{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.416000px;}
.ls1{letter-spacing:1.626000px;}
.ls12{letter-spacing:1.740000px;}
.ls5{letter-spacing:1.755000px;}
.ls2{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.ls17{letter-spacing:2.164500px;}
.ls1e{letter-spacing:2.227500px;}
.ls6{letter-spacing:2.250000px;}
.ls21{letter-spacing:3.018000px;}
.ls14{letter-spacing:3.375000px;}
.ls15{letter-spacing:3.435000px;}
.ls25{letter-spacing:3.495000px;}
.ls7{letter-spacing:4.779000px;}
.ls23{letter-spacing:5.526000px;}
.ls2b{letter-spacing:7.815000px;}
.ls8{letter-spacing:7.875000px;}
.ls26{letter-spacing:8.025000px;}
.ls16{letter-spacing:8.055000px;}
.ls19{letter-spacing:12.345000px;}
.ls13{letter-spacing:12.375000px;}
.ls1a{letter-spacing:12.495000px;}
.ls1d{letter-spacing:12.555000px;}
.ls1c{letter-spacing:16.815000px;}
.ls1b{letter-spacing:16.875000px;}
.ls9{letter-spacing:17.055000px;}
.lsa{letter-spacing:21.495000px;}
.ls1f{letter-spacing:30.555000px;}
.ls27{letter-spacing:34.134000px;}
.ls20{letter-spacing:35.025000px;}
.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;}
}
.ws10{word-spacing:-20.151000px;}
.ws13{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.643000px;}
.ws7{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.wsa{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.wsf{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws5{word-spacing:-13.221000px;}
.ws14{word-spacing:-13.143000px;}
.ws11{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.wse{word-spacing:-12.352500px;}
.ws8{word-spacing:-11.859000px;}
.ws0{word-spacing:-11.826000px;}
.ws9{word-spacing:-10.125000px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
.ws12{word-spacing:1.155000px;}
._18{margin-left:-24.480000px;}
._17{margin-left:-7.141500px;}
._8{margin-left:-6.075000px;}
._9{margin-left:-4.410000px;}
._2{margin-left:-2.754000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.114000px;}
._6{width:4.423500px;}
._3{width:5.490000px;}
._a{width:7.218000px;}
._7{width:8.536500px;}
._5{width:10.158000px;}
._10{width:11.623500px;}
._f{width:13.083000px;}
._d{width:16.737000px;}
._e{width:17.785500px;}
._20{width:19.150500px;}
._15{width:20.388000px;}
._c{width:21.603000px;}
._16{width:23.007000px;}
._b{width:25.293000px;}
._13{width:26.307000px;}
._12{width:29.547000px;}
._11{width:30.694500px;}
._1f{width:33.846000px;}
._14{width:35.490000px;}
._1d{width:39.748500px;}
._21{width:43.614000px;}
._24{width:48.324000px;}
._23{width:49.552500px;}
._1e{width:52.540500px;}
._22{width:53.772000px;}
._1b{width:75.717000px;}
._19{width:152.082000px;}
._1c{width:173.934000px;}
._1a{width:261.063000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.y7d{bottom:3.390000px;}
.y9a{bottom:3.405000px;}
.y18{bottom:4.500000px;}
.y49{bottom:10.125000px;}
.ye{bottom:11.295000px;}
.y1b{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y46{bottom:20.250000px;}
.y96{bottom:21.375000px;}
.y99{bottom:21.405000px;}
.y4a{bottom:22.500000px;}
.y48{bottom:25.875000px;}
.y17{bottom:28.125000px;}
.yb{bottom:30.405000px;}
.y5{bottom:31.500000px;}
.y45{bottom:38.295000px;}
.y16{bottom:45.030000px;}
.ya{bottom:46.155000px;}
.y1{bottom:55.162500px;}
.y44{bottom:55.170000px;}
.y15{bottom:61.905000px;}
.y43{bottom:72.045000px;}
.y9{bottom:73.185000px;}
.y14{bottom:77.655000px;}
.y13{bottom:87.825000px;}
.y42{bottom:90.075000px;}
.y8{bottom:93.435000px;}
.y12{bottom:102.450000px;}
.y41{bottom:106.950000px;}
.y7{bottom:110.355000px;}
.y57{bottom:119.362500px;}
.y11{bottom:121.605000px;}
.y94{bottom:122.737500px;}
.y40{bottom:123.870000px;}
.yce{bottom:124.987500px;}
.yfa{bottom:126.112500px;}
.y56{bottom:136.237500px;}
.y93{bottom:139.612500px;}
.y3f{bottom:140.745000px;}
.ycd{bottom:141.862500px;}
.y10{bottom:146.355000px;}
.yf9{bottom:146.362500px;}
.y55{bottom:154.245000px;}
.y92{bottom:157.620000px;}
.y3e{bottom:158.790000px;}
.ycc{bottom:159.900000px;}
.yf8{bottom:163.275000px;}
.y54{bottom:171.150000px;}
.y91{bottom:174.525000px;}
.y3d{bottom:175.665000px;}
.ycb{bottom:176.775000px;}
.yf7{bottom:183.525000px;}
.y2c{bottom:184.665000px;}
.y53{bottom:188.025000px;}
.y90{bottom:189.150000px;}
.y3c{bottom:192.540000px;}
.yca{bottom:193.650000px;}
.y2b{bottom:199.320000px;}
.yf6{bottom:201.570000px;}
.y52{bottom:206.070000px;}
.y8f{bottom:208.320000px;}
.y3b{bottom:210.570000px;}
.yc9{bottom:211.695000px;}
.y2a{bottom:217.320000px;}
.yf5{bottom:218.445000px;}
.y51{bottom:222.945000px;}
.y8e{bottom:226.320000px;}
.y3a{bottom:227.445000px;}
.yc8{bottom:228.570000px;}
.y29{bottom:235.320000px;}
.y50{bottom:239.820000px;}
.y8d{bottom:244.350000px;}
.y39{bottom:244.365000px;}
.yc7{bottom:245.475000px;}
.y28{bottom:252.240000px;}
.yf4{bottom:253.350000px;}
.y4f{bottom:257.850000px;}
.y8c{bottom:262.350000px;}
.y38{bottom:262.365000px;}
.yc6{bottom:263.475000px;}
.yf3{bottom:270.225000px;}
.y27{bottom:270.240000px;}
.y4e{bottom:274.725000px;}
.y37{bottom:279.240000px;}
.yc5{bottom:280.350000px;}
.yf2{bottom:287.130000px;}
.y26{bottom:287.145000px;}
.y4d{bottom:291.645000px;}
.y36{bottom:296.145000px;}
.yc4{bottom:297.255000px;}
.y8b{bottom:300.630000px;}
.y25{bottom:304.020000px;}
.yf1{bottom:305.145000px;}
.y4c{bottom:309.630000px;}
.y35{bottom:314.145000px;}
.yc3{bottom:315.270000px;}
.y8a{bottom:318.645000px;}
.y24{bottom:322.020000px;}
.y4b{bottom:326.550000px;}
.y34{bottom:331.065000px;}
.yc2{bottom:332.175000px;}
.y89{bottom:335.550000px;}
.y23{bottom:338.925000px;}
.y47{bottom:341.175000px;}
.y33{bottom:347.940000px;}
.y88{bottom:352.425000px;}
.yc1{bottom:355.800000px;}
.y22{bottom:356.925000px;}
.y32{bottom:365.970000px;}
.y87{bottom:370.455000px;}
.yc0{bottom:372.720000px;}
.yf0{bottom:373.830000px;}
.y21{bottom:373.845000px;}
.y1c{bottom:378.330000px;}
.y31{bottom:382.845000px;}
.y86{bottom:387.330000px;}
.ybf{bottom:389.595000px;}
.yef{bottom:390.705000px;}
.y20{bottom:391.845000px;}
.y30{bottom:399.720000px;}
.y85{bottom:404.205000px;}
.ybe{bottom:407.580000px;}
.yee{bottom:408.705000px;}
.y1f{bottom:408.750000px;}
.y2f{bottom:417.750000px;}
.y84{bottom:422.250000px;}
.ybd{bottom:424.500000px;}
.yed{bottom:425.625000px;}
.y2e{bottom:434.625000px;}
.y1e{bottom:435.750000px;}
.y83{bottom:439.125000px;}
.ybc{bottom:441.375000px;}
.yec{bottom:442.500000px;}
.y2d{bottom:451.545000px;}
.y1d{bottom:453.795000px;}
.y82{bottom:456.045000px;}
.ybb{bottom:459.420000px;}
.yeb{bottom:460.545000px;}
.y81{bottom:470.655000px;}
.yba{bottom:476.295000px;}
.yea{bottom:477.420000px;}
.y80{bottom:488.655000px;}
.yb9{bottom:493.200000px;}
.ye9{bottom:494.325000px;}
.y7f{bottom:506.700000px;}
.ye8{bottom:512.325000px;}
.yb8{bottom:516.825000px;}
.y7e{bottom:524.700000px;}
.ye7{bottom:529.200000px;}
.yb7{bottom:533.700000px;}
.y7c{bottom:542.730000px;}
.y116{bottom:544.980000px;}
.ye6{bottom:546.120000px;}
.yb6{bottom:551.730000px;}
.y115{bottom:561.855000px;}
.y7b{bottom:564.120000px;}
.yb5{bottom:570.870000px;}
.ye5{bottom:581.025000px;}
.y7a{bottom:582.150000px;}
.yb4{bottom:587.775000px;}
.ye4{bottom:597.900000px;}
.y79{bottom:599.025000px;}
.y114{bottom:600.150000px;}
.yb3{bottom:611.400000px;}
.y78{bottom:615.900000px;}
.y113{bottom:617.025000px;}
.yb2{bottom:629.445000px;}
.ye3{bottom:632.820000px;}
.y77{bottom:633.945000px;}
.y112{bottom:637.320000px;}
.yb1{bottom:646.320000px;}
.ye2{bottom:649.695000px;}
.y76{bottom:650.820000px;}
.y111{bottom:654.195000px;}
.yb0{bottom:663.225000px;}
.y75{bottom:667.725000px;}
.y110{bottom:674.475000px;}
.yaf{bottom:681.225000px;}
.ye1{bottom:684.600000px;}
.y74{bottom:685.725000px;}
.y10f{bottom:691.350000px;}
.yae{bottom:698.100000px;}
.ye0{bottom:701.475000px;}
.y73{bottom:702.645000px;}
.y10e{bottom:711.630000px;}
.yad{bottom:715.005000px;}
.y72{bottom:719.520000px;}
.y10d{bottom:728.505000px;}
.yac{bottom:733.020000px;}
.ydf{bottom:736.395000px;}
.y71{bottom:737.505000px;}
.y10c{bottom:748.800000px;}
.yab{bottom:749.925000px;}
.yde{bottom:753.300000px;}
.y70{bottom:754.425000px;}
.y10b{bottom:765.675000px;}
.yaa{bottom:766.800000px;}
.y6f{bottom:771.300000px;}
.ya9{bottom:784.800000px;}
.y10a{bottom:787.080000px;}
.ydd{bottom:788.205000px;}
.y6e{bottom:789.330000px;}
.ya8{bottom:801.705000px;}
.y109{bottom:803.955000px;}
.ydc{bottom:805.080000px;}
.y6d{bottom:806.205000px;}
.ya7{bottom:818.580000px;}
.y6c{bottom:823.080000px;}
.y108{bottom:824.205000px;}
.ya6{bottom:836.625000px;}
.ydb{bottom:840.000000px;}
.y6b{bottom:841.125000px;}
.y19{bottom:843.375000px;}
.ya5{bottom:853.500000px;}
.y6a{bottom:858.000000px;}
.y107{bottom:861.375000px;}
.yda{bottom:863.625000px;}
.ya4{bottom:870.420000px;}
.yf{bottom:873.795000px;}
.y69{bottom:874.920000px;}
.y106{bottom:878.295000px;}
.yd9{bottom:880.545000px;}
.ya3{bottom:888.420000px;}
.y68{bottom:892.920000px;}
.yd8{bottom:897.420000px;}
.y105{bottom:898.545000px;}
.ya2{bottom:905.295000px;}
.y67{bottom:909.795000px;}
.yd7{bottom:915.450000px;}
.ya1{bottom:922.200000px;}
.y66{bottom:926.700000px;}
.yd6{bottom:932.325000px;}
.y104{bottom:935.700000px;}
.ya0{bottom:940.200000px;}
.y65{bottom:944.700000px;}
.yd5{bottom:949.200000px;}
.y103{bottom:952.620000px;}
.y9f{bottom:957.120000px;}
.y64{bottom:961.620000px;}
.yd4{bottom:967.245000px;}
.y102{bottom:972.870000px;}
.y9e{bottom:973.995000px;}
.y63{bottom:978.495000px;}
.yd3{bottom:984.120000px;}
.y101{bottom:990.870000px;}
.y9d{bottom:991.995000px;}
.y62{bottom:996.525000px;}
.yd2{bottom:1001.025000px;}
.y9c{bottom:1005.525000px;}
.y100{bottom:1007.775000px;}
.y61{bottom:1013.400000px;}
.yd1{bottom:1019.025000px;}
.yff{bottom:1024.650000px;}
.y60{bottom:1030.275000px;}
.yd{bottom:1034.775000px;}
.yd0{bottom:1035.945000px;}
.y9b{bottom:1041.570000px;}
.yfe{bottom:1044.945000px;}
.y5f{bottom:1048.320000px;}
.ycf{bottom:1058.445000px;}
.y6{bottom:1060.695000px;}
.yfd{bottom:1062.945000px;}
.y5e{bottom:1065.195000px;}
.y98{bottom:1076.445000px;}
.yfc{bottom:1079.850000px;}
.y5d{bottom:1082.100000px;}
.yfb{bottom:1096.725000px;}
.y5c{bottom:1100.100000px;}
.y97{bottom:1111.350000px;}
.y5b{bottom:1116.975000px;}
.y95{bottom:1129.380000px;}
.y5a{bottom:1133.880000px;}
.y59{bottom:1151.880000px;}
.y58{bottom:1168.800000px;}
.h21{height:16.875000px;}
.h22{height:16.912500px;}
.h24{height:18.037500px;}
.hb{height:25.912500px;}
.h13{height:30.412500px;}
.h2{height:32.662500px;}
.h12{height:33.723633px;}
.h26{height:33.750000px;}
.h23{height:33.787500px;}
.h25{height:34.912500px;}
.h11{height:35.806641px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h18{height:41.389893px;}
.hd{height:43.075195px;}
.h19{height:43.288330px;}
.ha{height:43.875000px;}
.h1d{height:46.278809px;}
.h1e{height:46.398809px;}
.h4{height:47.223633px;}
.h16{height:49.234131px;}
.h17{height:51.158936px;}
.h28{height:52.417969px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.h1f{height:63.347168px;}
.h20{height:63.467168px;}
.he{height:64.237500px;}
.h27{height:68.778809px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:160.965000px;}
.h15{height:465.045000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w13{width:84.487500px;}
.wc{width:95.737500px;}
.w10{width:105.862500px;}
.w11{width:111.525000px;}
.wb{width:119.400000px;}
.w12{width:126.187500px;}
.w14{width:129.525000px;}
.w4{width:152.055000px;}
.wf{width:185.850000px;}
.we{width:205.020000px;}
.w7{width:223.020000px;}
.wd{width:325.530000px;}
.w9{width:373.950000px;}
.wa{width:373.995000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x15{left:12.420000px;}
.xe{left:60.825000px;}
.x10{left:69.825000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x22{left:90.112487px;}
.x6{left:97.987500px;}
.x11{left:100.237500px;}
.x23{left:108.149987px;}
.x12{left:121.657500px;}
.x24{left:135.187487px;}
.x18{left:192.645000px;}
.x13{left:214.012500px;}
.x7{left:225.300000px;}
.xf{left:230.887500px;}
.x17{left:246.674987px;}
.x1c{left:260.220000px;}
.x19{left:289.500000px;}
.xb{left:290.625000px;}
.x14{left:296.250000px;}
.x1b{left:322.169987px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.x1d{left:366.075000px;}
.xd{left:373.957500px;}
.x16{left:447.195000px;}
.xc{left:453.945000px;}
.x1e{left:478.725000px;}
.x1f{left:606.030000px;}
.x1a{left:616.155000px;}
.x20{left:691.650000px;}
.x3{left:746.820000px;}
@media print{
.v4{vertical-align:-20.000000pt;}
.v7{vertical-align:-16.000000pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.000000pt;}
.v1{vertical-align:16.000000pt;}
.v5{vertical-align:20.106667pt;}
.v6{vertical-align:36.000000pt;}
.ls2a{letter-spacing:-14.026667pt;}
.ls11{letter-spacing:-2.458667pt;}
.lsd{letter-spacing:-2.421333pt;}
.ls29{letter-spacing:-2.000000pt;}
.ls24{letter-spacing:-1.546667pt;}
.ls2c{letter-spacing:-1.317333pt;}
.ls28{letter-spacing:-1.002667pt;}
.lse{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.088000pt;}
.ls18{letter-spacing:0.228000pt;}
.lsf{letter-spacing:0.613333pt;}
.ls22{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.258667pt;}
.ls1{letter-spacing:1.445333pt;}
.ls12{letter-spacing:1.546667pt;}
.ls5{letter-spacing:1.560000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls17{letter-spacing:1.924000pt;}
.ls1e{letter-spacing:1.980000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls21{letter-spacing:2.682667pt;}
.ls14{letter-spacing:3.000000pt;}
.ls15{letter-spacing:3.053333pt;}
.ls25{letter-spacing:3.106667pt;}
.ls7{letter-spacing:4.248000pt;}
.ls23{letter-spacing:4.912000pt;}
.ls2b{letter-spacing:6.946667pt;}
.ls8{letter-spacing:7.000000pt;}
.ls26{letter-spacing:7.133333pt;}
.ls16{letter-spacing:7.160000pt;}
.ls19{letter-spacing:10.973333pt;}
.ls13{letter-spacing:11.000000pt;}
.ls1a{letter-spacing:11.106667pt;}
.ls1d{letter-spacing:11.160000pt;}
.ls1c{letter-spacing:14.946667pt;}
.ls1b{letter-spacing:15.000000pt;}
.ls9{letter-spacing:15.160000pt;}
.lsa{letter-spacing:19.106667pt;}
.ls1f{letter-spacing:27.160000pt;}
.ls27{letter-spacing:30.341333pt;}
.ls20{letter-spacing:31.133333pt;}
.ws10{word-spacing:-17.912000pt;}
.ws13{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.682667pt;}
.ws7{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.wsa{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.wsf{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws5{word-spacing:-11.752000pt;}
.ws14{word-spacing:-11.682667pt;}
.ws11{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.wse{word-spacing:-10.980000pt;}
.ws8{word-spacing:-10.541333pt;}
.ws0{word-spacing:-10.512000pt;}
.ws9{word-spacing:-9.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
.ws12{word-spacing:1.026667pt;}
._18{margin-left:-21.760000pt;}
._17{margin-left:-6.348000pt;}
._8{margin-left:-5.400000pt;}
._9{margin-left:-3.920000pt;}
._2{margin-left:-2.448000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.768000pt;}
._6{width:3.932000pt;}
._3{width:4.880000pt;}
._a{width:6.416000pt;}
._7{width:7.588000pt;}
._5{width:9.029333pt;}
._10{width:10.332000pt;}
._f{width:11.629333pt;}
._d{width:14.877333pt;}
._e{width:15.809333pt;}
._20{width:17.022667pt;}
._15{width:18.122667pt;}
._c{width:19.202667pt;}
._16{width:20.450667pt;}
._b{width:22.482667pt;}
._13{width:23.384000pt;}
._12{width:26.264000pt;}
._11{width:27.284000pt;}
._1f{width:30.085333pt;}
._14{width:31.546667pt;}
._1d{width:35.332000pt;}
._21{width:38.768000pt;}
._24{width:42.954667pt;}
._23{width:44.046667pt;}
._1e{width:46.702667pt;}
._22{width:47.797333pt;}
._1b{width:67.304000pt;}
._19{width:135.184000pt;}
._1c{width:154.608000pt;}
._1a{width:232.056000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.y7d{bottom:3.013333pt;}
.y9a{bottom:3.026667pt;}
.y18{bottom:4.000000pt;}
.y49{bottom:9.000000pt;}
.ye{bottom:10.040000pt;}
.y1b{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y46{bottom:18.000000pt;}
.y96{bottom:19.000000pt;}
.y99{bottom:19.026667pt;}
.y4a{bottom:20.000000pt;}
.y48{bottom:23.000000pt;}
.y17{bottom:25.000000pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:28.000000pt;}
.y45{bottom:34.040000pt;}
.y16{bottom:40.026667pt;}
.ya{bottom:41.026667pt;}
.y1{bottom:49.033333pt;}
.y44{bottom:49.040000pt;}
.y15{bottom:55.026667pt;}
.y43{bottom:64.040000pt;}
.y9{bottom:65.053333pt;}
.y14{bottom:69.026667pt;}
.y13{bottom:78.066667pt;}
.y42{bottom:80.066667pt;}
.y8{bottom:83.053333pt;}
.y12{bottom:91.066667pt;}
.y41{bottom:95.066667pt;}
.y7{bottom:98.093333pt;}
.y57{bottom:106.100000pt;}
.y11{bottom:108.093333pt;}
.y94{bottom:109.100000pt;}
.y40{bottom:110.106667pt;}
.yce{bottom:111.100000pt;}
.yfa{bottom:112.100000pt;}
.y56{bottom:121.100000pt;}
.y93{bottom:124.100000pt;}
.y3f{bottom:125.106667pt;}
.ycd{bottom:126.100000pt;}
.y10{bottom:130.093333pt;}
.yf9{bottom:130.100000pt;}
.y55{bottom:137.106667pt;}
.y92{bottom:140.106667pt;}
.y3e{bottom:141.146667pt;}
.ycc{bottom:142.133333pt;}
.yf8{bottom:145.133333pt;}
.y54{bottom:152.133333pt;}
.y91{bottom:155.133333pt;}
.y3d{bottom:156.146667pt;}
.ycb{bottom:157.133333pt;}
.yf7{bottom:163.133333pt;}
.y2c{bottom:164.146667pt;}
.y53{bottom:167.133333pt;}
.y90{bottom:168.133333pt;}
.y3c{bottom:171.146667pt;}
.yca{bottom:172.133333pt;}
.y2b{bottom:177.173333pt;}
.yf6{bottom:179.173333pt;}
.y52{bottom:183.173333pt;}
.y8f{bottom:185.173333pt;}
.y3b{bottom:187.173333pt;}
.yc9{bottom:188.173333pt;}
.y2a{bottom:193.173333pt;}
.yf5{bottom:194.173333pt;}
.y51{bottom:198.173333pt;}
.y8e{bottom:201.173333pt;}
.y3a{bottom:202.173333pt;}
.yc8{bottom:203.173333pt;}
.y29{bottom:209.173333pt;}
.y50{bottom:213.173333pt;}
.y8d{bottom:217.200000pt;}
.y39{bottom:217.213333pt;}
.yc7{bottom:218.200000pt;}
.y28{bottom:224.213333pt;}
.yf4{bottom:225.200000pt;}
.y4f{bottom:229.200000pt;}
.y8c{bottom:233.200000pt;}
.y38{bottom:233.213333pt;}
.yc6{bottom:234.200000pt;}
.yf3{bottom:240.200000pt;}
.y27{bottom:240.213333pt;}
.y4e{bottom:244.200000pt;}
.y37{bottom:248.213333pt;}
.yc5{bottom:249.200000pt;}
.yf2{bottom:255.226667pt;}
.y26{bottom:255.240000pt;}
.y4d{bottom:259.240000pt;}
.y36{bottom:263.240000pt;}
.yc4{bottom:264.226667pt;}
.y8b{bottom:267.226667pt;}
.y25{bottom:270.240000pt;}
.yf1{bottom:271.240000pt;}
.y4c{bottom:275.226667pt;}
.y35{bottom:279.240000pt;}
.yc3{bottom:280.240000pt;}
.y8a{bottom:283.240000pt;}
.y24{bottom:286.240000pt;}
.y4b{bottom:290.266667pt;}
.y34{bottom:294.280000pt;}
.yc2{bottom:295.266667pt;}
.y89{bottom:298.266667pt;}
.y23{bottom:301.266667pt;}
.y47{bottom:303.266667pt;}
.y33{bottom:309.280000pt;}
.y88{bottom:313.266667pt;}
.yc1{bottom:316.266667pt;}
.y22{bottom:317.266667pt;}
.y32{bottom:325.306667pt;}
.y87{bottom:329.293333pt;}
.yc0{bottom:331.306667pt;}
.yf0{bottom:332.293333pt;}
.y21{bottom:332.306667pt;}
.y1c{bottom:336.293333pt;}
.y31{bottom:340.306667pt;}
.y86{bottom:344.293333pt;}
.ybf{bottom:346.306667pt;}
.yef{bottom:347.293333pt;}
.y20{bottom:348.306667pt;}
.y30{bottom:355.306667pt;}
.y85{bottom:359.293333pt;}
.ybe{bottom:362.293333pt;}
.yee{bottom:363.293333pt;}
.y1f{bottom:363.333333pt;}
.y2f{bottom:371.333333pt;}
.y84{bottom:375.333333pt;}
.ybd{bottom:377.333333pt;}
.yed{bottom:378.333333pt;}
.y2e{bottom:386.333333pt;}
.y1e{bottom:387.333333pt;}
.y83{bottom:390.333333pt;}
.ybc{bottom:392.333333pt;}
.yec{bottom:393.333333pt;}
.y2d{bottom:401.373333pt;}
.y1d{bottom:403.373333pt;}
.y82{bottom:405.373333pt;}
.ybb{bottom:408.373333pt;}
.yeb{bottom:409.373333pt;}
.y81{bottom:418.360000pt;}
.yba{bottom:423.373333pt;}
.yea{bottom:424.373333pt;}
.y80{bottom:434.360000pt;}
.yb9{bottom:438.400000pt;}
.ye9{bottom:439.400000pt;}
.y7f{bottom:450.400000pt;}
.ye8{bottom:455.400000pt;}
.yb8{bottom:459.400000pt;}
.y7e{bottom:466.400000pt;}
.ye7{bottom:470.400000pt;}
.yb7{bottom:474.400000pt;}
.y7c{bottom:482.426667pt;}
.y116{bottom:484.426667pt;}
.ye6{bottom:485.440000pt;}
.yb6{bottom:490.426667pt;}
.y115{bottom:499.426667pt;}
.y7b{bottom:501.440000pt;}
.yb5{bottom:507.440000pt;}
.ye5{bottom:516.466667pt;}
.y7a{bottom:517.466667pt;}
.yb4{bottom:522.466667pt;}
.ye4{bottom:531.466667pt;}
.y79{bottom:532.466667pt;}
.y114{bottom:533.466667pt;}
.yb3{bottom:543.466667pt;}
.y78{bottom:547.466667pt;}
.y113{bottom:548.466667pt;}
.yb2{bottom:559.506667pt;}
.ye3{bottom:562.506667pt;}
.y77{bottom:563.506667pt;}
.y112{bottom:566.506667pt;}
.yb1{bottom:574.506667pt;}
.ye2{bottom:577.506667pt;}
.y76{bottom:578.506667pt;}
.y111{bottom:581.506667pt;}
.yb0{bottom:589.533333pt;}
.y75{bottom:593.533333pt;}
.y110{bottom:599.533333pt;}
.yaf{bottom:605.533333pt;}
.ye1{bottom:608.533333pt;}
.y74{bottom:609.533333pt;}
.y10f{bottom:614.533333pt;}
.yae{bottom:620.533333pt;}
.ye0{bottom:623.533333pt;}
.y73{bottom:624.573333pt;}
.y10e{bottom:632.560000pt;}
.yad{bottom:635.560000pt;}
.y72{bottom:639.573333pt;}
.y10d{bottom:647.560000pt;}
.yac{bottom:651.573333pt;}
.ydf{bottom:654.573333pt;}
.y71{bottom:655.560000pt;}
.y10c{bottom:665.600000pt;}
.yab{bottom:666.600000pt;}
.yde{bottom:669.600000pt;}
.y70{bottom:670.600000pt;}
.y10b{bottom:680.600000pt;}
.yaa{bottom:681.600000pt;}
.y6f{bottom:685.600000pt;}
.ya9{bottom:697.600000pt;}
.y10a{bottom:699.626667pt;}
.ydd{bottom:700.626667pt;}
.y6e{bottom:701.626667pt;}
.ya8{bottom:712.626667pt;}
.y109{bottom:714.626667pt;}
.ydc{bottom:715.626667pt;}
.y6d{bottom:716.626667pt;}
.ya7{bottom:727.626667pt;}
.y6c{bottom:731.626667pt;}
.y108{bottom:732.626667pt;}
.ya6{bottom:743.666667pt;}
.ydb{bottom:746.666667pt;}
.y6b{bottom:747.666667pt;}
.y19{bottom:749.666667pt;}
.ya5{bottom:758.666667pt;}
.y6a{bottom:762.666667pt;}
.y107{bottom:765.666667pt;}
.yda{bottom:767.666667pt;}
.ya4{bottom:773.706667pt;}
.yf{bottom:776.706667pt;}
.y69{bottom:777.706667pt;}
.y106{bottom:780.706667pt;}
.yd9{bottom:782.706667pt;}
.ya3{bottom:789.706667pt;}
.y68{bottom:793.706667pt;}
.yd8{bottom:797.706667pt;}
.y105{bottom:798.706667pt;}
.ya2{bottom:804.706667pt;}
.y67{bottom:808.706667pt;}
.yd7{bottom:813.733333pt;}
.ya1{bottom:819.733333pt;}
.y66{bottom:823.733333pt;}
.yd6{bottom:828.733333pt;}
.y104{bottom:831.733333pt;}
.ya0{bottom:835.733333pt;}
.y65{bottom:839.733333pt;}
.yd5{bottom:843.733333pt;}
.y103{bottom:846.773333pt;}
.y9f{bottom:850.773333pt;}
.y64{bottom:854.773333pt;}
.yd4{bottom:859.773333pt;}
.y102{bottom:864.773333pt;}
.y9e{bottom:865.773333pt;}
.y63{bottom:869.773333pt;}
.yd3{bottom:874.773333pt;}
.y101{bottom:880.773333pt;}
.y9d{bottom:881.773333pt;}
.y62{bottom:885.800000pt;}
.yd2{bottom:889.800000pt;}
.y9c{bottom:893.800000pt;}
.y100{bottom:895.800000pt;}
.y61{bottom:900.800000pt;}
.yd1{bottom:905.800000pt;}
.yff{bottom:910.800000pt;}
.y60{bottom:915.800000pt;}
.yd{bottom:919.800000pt;}
.yd0{bottom:920.840000pt;}
.y9b{bottom:925.840000pt;}
.yfe{bottom:928.840000pt;}
.y5f{bottom:931.840000pt;}
.ycf{bottom:940.840000pt;}
.y6{bottom:942.840000pt;}
.yfd{bottom:944.840000pt;}
.y5e{bottom:946.840000pt;}
.y98{bottom:956.840000pt;}
.yfc{bottom:959.866667pt;}
.y5d{bottom:961.866667pt;}
.yfb{bottom:974.866667pt;}
.y5c{bottom:977.866667pt;}
.y97{bottom:987.866667pt;}
.y5b{bottom:992.866667pt;}
.y95{bottom:1003.893333pt;}
.y5a{bottom:1007.893333pt;}
.y59{bottom:1023.893333pt;}
.y58{bottom:1038.933333pt;}
.h21{height:15.000000pt;}
.h22{height:15.033333pt;}
.h24{height:16.033333pt;}
.hb{height:23.033333pt;}
.h13{height:27.033333pt;}
.h2{height:29.033333pt;}
.h12{height:29.976562pt;}
.h26{height:30.000000pt;}
.h23{height:30.033333pt;}
.h25{height:31.033333pt;}
.h11{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h18{height:36.791016pt;}
.hd{height:38.289062pt;}
.h19{height:38.478516pt;}
.ha{height:39.000000pt;}
.h1d{height:41.136719pt;}
.h1e{height:41.243385pt;}
.h4{height:41.976562pt;}
.h16{height:43.763672pt;}
.h17{height:45.474609pt;}
.h28{height:46.593750pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.h1f{height:56.308594pt;}
.h20{height:56.415260pt;}
.he{height:57.100000pt;}
.h27{height:61.136719pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:143.080000pt;}
.h15{height:413.373333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w13{width:75.100000pt;}
.wc{width:85.100000pt;}
.w10{width:94.100000pt;}
.w11{width:99.133333pt;}
.wb{width:106.133333pt;}
.w12{width:112.166667pt;}
.w14{width:115.133333pt;}
.w4{width:135.160000pt;}
.wf{width:165.200000pt;}
.we{width:182.240000pt;}
.w7{width:198.240000pt;}
.wd{width:289.360000pt;}
.w9{width:332.400000pt;}
.wa{width:332.440000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x15{left:11.040000pt;}
.xe{left:54.066667pt;}
.x10{left:62.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x22{left:80.099988pt;}
.x6{left:87.100000pt;}
.x11{left:89.100000pt;}
.x23{left:96.133322pt;}
.x12{left:108.140000pt;}
.x24{left:120.166655pt;}
.x18{left:171.240000pt;}
.x13{left:190.233333pt;}
.x7{left:200.266667pt;}
.xf{left:205.233333pt;}
.x17{left:219.266655pt;}
.x1c{left:231.306667pt;}
.x19{left:257.333333pt;}
.xb{left:258.333333pt;}
.x14{left:263.333333pt;}
.x1b{left:286.373322pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.x1d{left:325.400000pt;}
.xd{left:332.406667pt;}
.x16{left:397.506667pt;}
.xc{left:403.506667pt;}
.x1e{left:425.533333pt;}
.x1f{left:538.693333pt;}
.x1a{left:547.693333pt;}
.x20{left:614.800000pt;}
.x3{left:663.840000pt;}
}




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