
    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_b894b81c7d7c6003c6e2435e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b52959966f2e9b75e9071943.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_5fbe11a9da9b31c43fd5da3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_7fbe28ab8426c84fed1c7a32.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_03e8a7a68f759fcb41009eb4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_699ee770f2667c53cefaa869.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.116000;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_419bc081d7e8e351b9c6c0b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.153000;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_0f750010caeb1c66fc9a5ba6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116000;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_aa348c726074ab394a686266.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_c0bb8d47510669010b397ada.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_c3a5c1f9d1a3c90932847cdc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1459437ac421905f7b3a4544.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_1258db23e5b3cb7c0ea237b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_ad4fcae0864808c5d361756b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_a715d47eff7cd92b6a413498.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_aea2dfc5ac530079b1489717.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-1.176000px;}
.ls13{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.612000px;}
.ls1e{letter-spacing:-0.567600px;}
.ls8{letter-spacing:-0.460152px;}
.ls11{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.417312px;}
.ls1d{letter-spacing:-0.414600px;}
.ls22{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.304704px;}
.ls7{letter-spacing:-0.203184px;}
.ls6{letter-spacing:-0.053784px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.105984px;}
.ls21{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.109200px;}
.ls1a{letter-spacing:0.109440px;}
.lse{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.179280px;}
.ls20{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.229440px;}
.ls14{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.264960px;}
.lsa{letter-spacing:0.304704px;}
.ls10{letter-spacing:0.305400px;}
.ls17{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.902376px;}
.ls4{letter-spacing:1.081656px;}
.ls1{letter-spacing:1.437408px;}
.lsd{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.548000px;}
.ls1f{letter-spacing:3.864000px;}
.ls16{letter-spacing:5.040000px;}
.ls19{letter-spacing:5.760000px;}
.lsf{letter-spacing:10.080000px;}
.ls25{letter-spacing:15.120000px;}
.ls26{letter-spacing:41.345280px;}
.ls24{letter-spacing:74.465280px;}
.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;}
}
.ws18{word-spacing:-20.424000px;}
.wsd{word-spacing:-18.108000px;}
.wsb{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.864704px;}
.ws7{word-spacing:-16.824960px;}
.ws11{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.712400px;}
.ws17{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.665984px;}
.ws10{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.255296px;}
.ws15{word-spacing:-16.145400px;}
.ws5{word-spacing:-16.142688px;}
.wsc{word-spacing:-16.102200px;}
.ws2{word-spacing:-16.021656px;}
.ws16{word-spacing:-15.992400px;}
.wse{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.384000px;}
.ws19{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886216px;}
.ws4{word-spacing:-14.479848px;}
.ws14{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.518000px;}
.ws12{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.140000px;}
.wsa{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-4.371840px;}
._8{margin-left:-3.346560px;}
._9{margin-left:-2.254410px;}
._1{margin-left:-1.195515px;}
._6{width:1.026720px;}
._3{width:2.351520px;}
._4{width:3.578400px;}
._5{width:5.395200px;}
._d{width:6.446753px;}
._0{width:7.476098px;}
._7{width:8.784720px;}
._c{width:10.673280px;}
._b{width:12.430080px;}
._a{width:13.864320px;}
._10{width:15.265275px;}
._2{width:16.561579px;}
._11{width:17.600846px;}
._e{width:18.682875px;}
._12{width:21.046882px;}
._1a{width:22.718385px;}
._19{width:23.719050px;}
._13{width:33.321600px;}
._14{width:34.502880px;}
._15{width:35.590890px;}
._1b{width:48.924795px;}
._17{width:57.623040px;}
._18{width:59.423850px;}
._16{width:99.760320px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:2.880000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.240000px;}
.fsa{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs8{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y138{bottom:0.180000px;}
.y9b{bottom:3.420000px;}
.ya5{bottom:3.600000px;}
.yc5{bottom:3.960000px;}
.y106{bottom:4.140000px;}
.y18{bottom:4.289325px;}
.y6c{bottom:4.680000px;}
.y10c{bottom:5.220000px;}
.y6d{bottom:5.940000px;}
.y11e{bottom:6.120000px;}
.y111{bottom:6.480000px;}
.y85{bottom:6.660000px;}
.y7e{bottom:6.705000px;}
.y6a{bottom:6.840000px;}
.y99{bottom:7.020000px;}
.y77{bottom:7.740000px;}
.y7d{bottom:7.785000px;}
.y78{bottom:9.540000px;}
.y8d{bottom:10.800000px;}
.y10e{bottom:13.140000px;}
.y83{bottom:14.400000px;}
.y12b{bottom:18.000000px;}
.y128{bottom:18.180000px;}
.y17{bottom:19.233262px;}
.y8b{bottom:19.620000px;}
.y10f{bottom:21.060000px;}
.y88{bottom:22.680000px;}
.yc4{bottom:23.040000px;}
.y86{bottom:23.400000px;}
.y11d{bottom:24.660000px;}
.y89{bottom:28.080000px;}
.y82{bottom:29.340000px;}
.y80{bottom:30.060000px;}
.y16{bottom:34.177200px;}
.y8a{bottom:34.740000px;}
.yad{bottom:36.000000px;}
.y87{bottom:37.800000px;}
.y105{bottom:42.300000px;}
.y11c{bottom:43.020000px;}
.y81{bottom:44.460000px;}
.y8c{bottom:45.900000px;}
.yca{bottom:52.374000px;}
.y14{bottom:58.020000px;}
.y104{bottom:59.085000px;}
.y11b{bottom:61.380000px;}
.y15{bottom:61.708950px;}
.y1b{bottom:64.500000px;}
.ya0{bottom:68.580000px;}
.ya7{bottom:68.610000px;}
.ybb{bottom:68.625000px;}
.y75{bottom:75.060000px;}
.y103{bottom:75.825000px;}
.y7b{bottom:82.260000px;}
.y74{bottom:90.180000px;}
.y102{bottom:92.565000px;}
.y11a{bottom:94.005000px;}
.y7a{bottom:97.380000px;}
.yb9{bottom:101.925000px;}
.y73{bottom:105.660000px;}
.yb8{bottom:117.405000px;}
.y168{bottom:120.960000px;}
.y107{bottom:122.400000px;}
.y72{bottom:122.580000px;}
.yc9{bottom:129.276000px;}
.y165{bottom:132.336000px;}
.yfb{bottom:134.316000px;}
.y71{bottom:137.700000px;}
.y137{bottom:137.916000px;}
.ycd{bottom:145.656000px;}
.y164{bottom:150.690000px;}
.y48{bottom:151.599900px;}
.y70{bottom:152.640000px;}
.y125{bottom:155.730000px;}
.y68{bottom:156.810000px;}
.ycc{bottom:161.850000px;}
.y6f{bottom:167.760000px;}
.y163{bottom:169.590000px;}
.y47{bottom:169.953900px;}
.y6e{bottom:171.930000px;}
.y124{bottom:174.090000px;}
.ycb{bottom:178.050000px;}
.yfa{bottom:180.390000px;}
.y46{bottom:188.313900px;}
.y162{bottom:189.210000px;}
.y123{bottom:192.450000px;}
.yc7{bottom:194.430000px;}
.yf9{bottom:198.930000px;}
.y45{bottom:206.853900px;}
.y161{bottom:207.570000px;}
.yc8{bottom:210.630000px;}
.y122{bottom:210.810000px;}
.yf8{bottom:217.290000px;}
.y44{bottom:225.213900px;}
.y160{bottom:226.470000px;}
.yc6{bottom:227.010000px;}
.y121{bottom:229.350000px;}
.y79{bottom:235.110000px;}
.yf7{bottom:235.650000px;}
.yc3{bottom:243.210000px;}
.y43{bottom:243.573900px;}
.y15f{bottom:245.550000px;}
.y120{bottom:247.710000px;}
.yf6{bottom:254.190000px;}
.y42{bottom:262.113900px;}
.y15e{bottom:264.990000px;}
.y11f{bottom:266.430000px;}
.yf5{bottom:272.550000px;}
.y41{bottom:280.473900px;}
.y15d{bottom:283.530000px;}
.yc2{bottom:285.690000px;}
.y84{bottom:288.930000px;}
.yf4{bottom:290.910000px;}
.y40{bottom:298.833900px;}
.y119{bottom:299.190000px;}
.yb7{bottom:300.090000px;}
.y15c{bottom:303.510000px;}
.yf3{bottom:309.450000px;}
.y7f{bottom:311.430000px;}
.y9e{bottom:313.590000px;}
.yc1{bottom:316.470000px;}
.y3f{bottom:317.193900px;}
.y15b{bottom:322.050000px;}
.yf2{bottom:327.810000px;}
.y9d{bottom:329.070000px;}
.y101{bottom:329.430000px;}
.yc0{bottom:332.670000px;}
.y3e{bottom:335.733900px;}
.y15a{bottom:340.410000px;}
.yf1{bottom:346.170000px;}
.yba{bottom:348.870000px;}
.y3d{bottom:354.093900px;}
.y159{bottom:360.390000px;}
.yf0{bottom:364.710000px;}
.ybf{bottom:365.250000px;}
.y3c{bottom:372.453900px;}
.y7c{bottom:378.750000px;}
.y158{bottom:378.930000px;}
.ybe{bottom:381.495000px;}
.yef{bottom:383.115000px;}
.y3b{bottom:390.993900px;}
.y157{bottom:397.335000px;}
.ybd{bottom:397.875000px;}
.y76{bottom:401.295000px;}
.yee{bottom:401.475000px;}
.y3a{bottom:409.398900px;}
.ybc{bottom:414.075000px;}
.y156{bottom:416.955000px;}
.yed{bottom:419.835000px;}
.y16a{bottom:420.555000px;}
.y6b{bottom:423.615000px;}
.y39{bottom:427.758900px;}
.y136{bottom:428.295000px;}
.y9c{bottom:430.275000px;}
.y169{bottom:434.955000px;}
.y155{bottom:435.315000px;}
.yec{bottom:438.375000px;}
.y100{bottom:439.815000px;}
.y69{bottom:442.335000px;}
.y38{bottom:446.298900px;}
.yb6{bottom:446.655000px;}
.y154{bottom:454.755000px;}
.yeb{bottom:456.735000px;}
.yb5{bottom:462.855000px;}
.y37{bottom:464.298900px;}
.yff{bottom:472.575000px;}
.y153{bottom:473.295000px;}
.y135{bottom:474.735000px;}
.yea{bottom:475.095000px;}
.yb4{bottom:479.235000px;}
.y152{bottom:492.195000px;}
.y134{bottom:493.275000px;}
.ye9{bottom:493.635000px;}
.yb3{bottom:495.435000px;}
.y67{bottom:499.035000px;}
.y133{bottom:511.635000px;}
.yb0{bottom:511.815000px;}
.y36{bottom:516.858900px;}
.y66{bottom:517.395000px;}
.yb2{bottom:528.015000px;}
.y132{bottom:529.995000px;}
.y151{bottom:530.175000px;}
.ye8{bottom:531.075000px;}
.y35{bottom:534.138900px;}
.y65{bottom:535.935000px;}
.yb1{bottom:544.215000px;}
.y131{bottom:548.535000px;}
.y150{bottom:549.075000px;}
.y34{bottom:551.418900px;}
.y64{bottom:554.295000px;}
.yac{bottom:560.595000px;}
.y130{bottom:566.895000px;}
.y14f{bottom:567.795000px;}
.y33{bottom:568.518900px;}
.ye7{bottom:569.775000px;}
.y63{bottom:572.655000px;}
.yaf{bottom:576.795000px;}
.y12f{bottom:585.255000px;}
.y32{bottom:585.798900px;}
.ye6{bottom:588.135000px;}
.y62{bottom:591.195000px;}
.yae{bottom:593.175000px;}
.y31{bottom:603.078900px;}
.y12e{bottom:603.615000px;}
.y14e{bottom:604.515000px;}
.ye5{bottom:606.675000px;}
.ya6{bottom:609.375000px;}
.y61{bottom:609.555000px;}
.y30{bottom:620.358900px;}
.y12d{bottom:622.155000px;}
.y14d{bottom:623.775000px;}
.ye4{bottom:625.035000px;}
.yab{bottom:625.575000px;}
.y60{bottom:627.915000px;}
.y2f{bottom:637.638900px;}
.y12c{bottom:640.545000px;}
.yaa{bottom:641.985000px;}
.y5f{bottom:646.485000px;}
.ye3{bottom:648.465000px;}
.y2e{bottom:654.768900px;}
.y12a{bottom:654.945000px;}
.ya9{bottom:658.185000px;}
.y14c{bottom:662.685000px;}
.y5e{bottom:664.845000px;}
.ye2{bottom:666.825000px;}
.y2d{bottom:672.048900px;}
.ya8{bottom:674.565000px;}
.yfe{bottom:677.445000px;}
.y14b{bottom:681.225000px;}
.y5d{bottom:683.205000px;}
.ye1{bottom:685.365000px;}
.y2c{bottom:689.328900px;}
.y9f{bottom:690.765000px;}
.y14a{bottom:699.585000px;}
.y5c{bottom:701.745000px;}
.ye0{bottom:703.725000px;}
.y2b{bottom:706.608900px;}
.ya4{bottom:706.965000px;}
.y149{bottom:717.945000px;}
.y5b{bottom:720.105000px;}
.ydf{bottom:722.085000px;}
.ya3{bottom:723.345000px;}
.y2a{bottom:723.888900px;}
.y5a{bottom:738.465000px;}
.ya2{bottom:739.545000px;}
.y148{bottom:739.725000px;}
.yde{bottom:740.445000px;}
.y29{bottom:741.168900px;}
.yfd{bottom:741.885000px;}
.ya1{bottom:755.925000px;}
.y59{bottom:756.825000px;}
.y147{bottom:758.085000px;}
.y28{bottom:758.448900px;}
.ydd{bottom:758.985000px;}
.yfc{bottom:760.245000px;}
.y118{bottom:765.285000px;}
.y9a{bottom:772.125000px;}
.y129{bottom:772.665000px;}
.y146{bottom:776.625000px;}
.ydc{bottom:777.345000px;}
.y58{bottom:778.605000px;}
.y98{bottom:788.325000px;}
.y27{bottom:794.448900px;}
.y145{bottom:794.985000px;}
.ydb{bottom:795.705000px;}
.y57{bottom:797.145000px;}
.y117{bottom:809.025000px;}
.y144{bottom:813.345000px;}
.yda{bottom:814.245000px;}
.y56{bottom:815.505000px;}
.y116{bottom:827.565000px;}
.y127{bottom:828.645000px;}
.y26{bottom:831.348900px;}
.y143{bottom:831.885000px;}
.yd9{bottom:833.145000px;}
.y55{bottom:833.865000px;}
.y97{bottom:834.405000px;}
.y115{bottom:845.925000px;}
.y25{bottom:850.428900px;}
.yd8{bottom:852.225000px;}
.y54{bottom:852.405000px;}
.y96{bottom:852.945000px;}
.y142{bottom:854.205000px;}
.y114{bottom:864.285000px;}
.y53{bottom:870.765000px;}
.y95{bottom:871.305000px;}
.y141{bottom:872.565000px;}
.y24{bottom:877.428900px;}
.y113{bottom:882.825000px;}
.yd7{bottom:889.170000px;}
.y52{bottom:889.350000px;}
.y94{bottom:890.250000px;}
.y140{bottom:890.970000px;}
.y7{bottom:903.300000px;}
.y93{bottom:909.330000px;}
.y13f{bottom:909.510000px;}
.y13{bottom:910.260000px;}
.y112{bottom:915.990000px;}
.y12{bottom:922.260000px;}
.yd6{bottom:926.250000px;}
.y13e{bottom:927.870000px;}
.y92{bottom:928.230000px;}
.y51{bottom:931.110000px;}
.y6{bottom:932.400000px;}
.y11{bottom:934.260000px;}
.y110{bottom:938.310000px;}
.y23{bottom:942.093900px;}
.yd5{bottom:945.150000px;}
.y13d{bottom:946.230000px;}
.y91{bottom:947.310000px;}
.y50{bottom:949.650000px;}
.y10{bottom:957.510000px;}
.y10d{bottom:960.630000px;}
.yd4{bottom:964.230000px;}
.y13c{bottom:964.770000px;}
.y90{bottom:966.210000px;}
.y4f{bottom:968.010000px;}
.yf{bottom:969.510000px;}
.y22{bottom:970.713900px;}
.y5{bottom:972.750000px;}
.ye{bottom:981.510000px;}
.yd3{bottom:983.130000px;}
.y8f{bottom:984.570000px;}
.y13b{bottom:985.830000px;}
.y4e{bottom:986.370000px;}
.yd{bottom:993.510000px;}
.y10b{bottom:996.450000px;}
.yd2{bottom:1002.030000px;}
.y8e{bottom:1003.290000px;}
.y13a{bottom:1004.370000px;}
.y4d{bottom:1004.910000px;}
.y4{bottom:1011.165000px;}
.yc{bottom:1016.760000px;}
.y167{bottom:1016.970000px;}
.yd1{bottom:1021.110000px;}
.y139{bottom:1022.730000px;}
.y4c{bottom:1023.270000px;}
.yb{bottom:1028.760000px;}
.y3{bottom:1039.965000px;}
.yd0{bottom:1040.010000px;}
.y166{bottom:1040.550000px;}
.ya{bottom:1040.760000px;}
.y10a{bottom:1041.090000px;}
.y4b{bottom:1041.630000px;}
.y9{bottom:1052.760000px;}
.ycf{bottom:1059.090000px;}
.y109{bottom:1059.630000px;}
.y4a{bottom:1060.170000px;}
.y126{bottom:1074.030000px;}
.yce{bottom:1077.990000px;}
.y108{bottom:1078.170000px;}
.y8{bottom:1078.260000px;}
.y49{bottom:1078.530000px;}
.y2{bottom:1081.485000px;}
.y1a{bottom:1144.500000px;}
.y21{bottom:1153.800000px;}
.y19{bottom:1165.500000px;}
.y20{bottom:1172.700000px;}
.y1{bottom:1191.570000px;}
.y1f{bottom:1191.780000px;}
.y1e{bottom:1210.680000px;}
.y1d{bottom:1229.760000px;}
.y1c{bottom:1248.660000px;}
.h39{height:2.082656px;}
.h1c{height:15.480000px;}
.h24{height:15.516000px;}
.h1f{height:15.660000px;}
.h21{height:15.696000px;}
.h11{height:18.000000px;}
.h29{height:18.900000px;}
.h31{height:19.080000px;}
.h14{height:21.600000px;}
.h16{height:21.816000px;}
.h26{height:31.680000px;}
.h2e{height:35.100000px;}
.h25{height:37.980000px;}
.h12{height:39.049805px;}
.hf{height:39.780000px;}
.h1b{height:39.960000px;}
.h8{height:42.942899px;}
.hb{height:43.104000px;}
.h2c{height:43.215117px;}
.h5{height:43.804688px;}
.h7{height:46.538700px;}
.hc{height:47.901094px;}
.h22{height:48.060000px;}
.h4{height:50.062500px;}
.h18{height:53.100000px;}
.h9{height:53.880000px;}
.h28{height:54.596250px;}
.ha{height:56.100000px;}
.h2{height:56.320312px;}
.he{height:58.651172px;}
.h19{height:62.460000px;}
.h27{height:64.440000px;}
.h1a{height:65.010937px;}
.h17{height:66.600000px;}
.h10{height:66.757500px;}
.h35{height:68.084282px;}
.h34{height:71.766417px;}
.h3{height:72.000000px;}
.hd{height:73.934297px;}
.h1{height:75.093750px;}
.h1e{height:80.640000px;}
.h20{height:80.676000px;}
.h2b{height:106.056000px;}
.h32{height:117.720000px;}
.h23{height:129.456000px;}
.h15{height:187.770000px;}
.h2a{height:204.870000px;}
.h2d{height:207.030000px;}
.h30{height:245.370000px;}
.h13{height:250.950000px;}
.h33{height:290.370000px;}
.h1d{height:341.130000px;}
.h2f{height:466.095000px;}
.h37{height:639.075000px;}
.h38{height:657.975000px;}
.h36{height:896.010000px;}
.h0{height:1263.000000px;}
.h6{height:1263.060000px;}
.w15{width:53.280000px;}
.w10{width:53.316000px;}
.w21{width:57.780000px;}
.w23{width:79.200000px;}
.w22{width:81.396000px;}
.w1f{width:84.420000px;}
.wa{width:86.940000px;}
.w6{width:87.300000px;}
.wb{width:89.640000px;}
.w9{width:90.000000px;}
.w20{width:92.700000px;}
.w1e{width:92.736000px;}
.w1d{width:93.420000px;}
.w11{width:105.480000px;}
.w16{width:105.516000px;}
.w7{width:125.496000px;}
.wd{width:147.420000px;}
.wf{width:147.780000px;}
.w14{width:147.816000px;}
.w13{width:167.790000px;}
.w1a{width:172.080000px;}
.w17{width:197.490000px;}
.w19{width:208.110000px;}
.w1b{width:215.355000px;}
.we{width:222.015000px;}
.w18{width:274.710000px;}
.w1c{width:292.890000px;}
.w8{width:375.195000px;}
.w12{width:477.285000px;}
.w24{width:663.405000px;}
.wc{width:679.605000px;}
.w5{width:680.325000px;}
.w3{width:683.273100px;}
.w0{width:892.500000px;}
.w4{width:892.979987px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:1.337034px;}
.x13{left:7.740000px;}
.x31{left:14.400000px;}
.x2e{left:18.720000px;}
.x3a{left:20.340000px;}
.x37{left:21.600000px;}
.x2f{left:25.020000px;}
.x3c{left:27.720000px;}
.x3b{left:28.980000px;}
.x39{left:30.240000px;}
.x38{left:34.560000px;}
.x11{left:43.734000px;}
.x16{left:44.820000px;}
.x1{left:58.500000px;}
.x7{left:76.052700px;}
.x49{left:99.714000px;}
.x6{left:103.466400px;}
.x9{left:105.000000px;}
.xd{left:106.416000px;}
.x46{left:115.194000px;}
.x3d{left:117.894000px;}
.xf{left:127.655987px;}
.x42{left:158.214000px;}
.x28{left:162.534000px;}
.x22{left:164.694000px;}
.x27{left:168.114000px;}
.x45{left:170.309987px;}
.x10{left:171.714000px;}
.x40{left:176.214000px;}
.x3f{left:178.059000px;}
.x12{left:194.430000px;}
.x23{left:199.479000px;}
.x2d{left:200.910000px;}
.x2a{left:203.115000px;}
.x1c{left:207.930000px;}
.x26{left:210.825000px;}
.xe{left:212.790000px;}
.x5{left:223.110000px;}
.x17{left:254.910000px;}
.x20{left:263.909987px;}
.x21{left:266.069987px;}
.x29{left:278.490000px;}
.x25{left:281.190000px;}
.x2c{left:284.805000px;}
.x30{left:294.375000px;}
.x24{left:303.915000px;}
.x14{left:320.835000px;}
.x4b{left:339.699000px;}
.x1d{left:376.815000px;}
.x32{left:379.515000px;}
.x48{left:444.000000px;}
.xc{left:447.000000px;}
.x1b{left:457.274987px;}
.x33{left:472.965000px;}
.x18{left:477.645000px;}
.x2b{left:493.845000px;}
.x1e{left:525.345000px;}
.x34{left:531.465000px;}
.xb{left:558.735000px;}
.x1f{left:579.345000px;}
.x2{left:605.490000px;}
.x43{left:613.194000px;}
.x41{left:622.194000px;}
.x35{left:625.065000px;}
.x19{left:626.145000px;}
.x4{left:627.990000px;}
.x47{left:632.274000px;}
.x3{left:634.410000px;}
.x4a{left:636.774000px;}
.x1a{left:680.190000px;}
.x3e{left:688.434000px;}
.xa{left:695.100000px;}
.x15{left:696.750000px;}
.x36{left:707.190000px;}
.x44{left:737.969987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-1.045333pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.544000pt;}
.ls1e{letter-spacing:-0.504533pt;}
.ls8{letter-spacing:-0.409024pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.370944pt;}
.ls1d{letter-spacing:-0.368533pt;}
.ls22{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.270848pt;}
.ls7{letter-spacing:-0.180608pt;}
.ls6{letter-spacing:-0.047808pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.094208pt;}
.ls21{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.097067pt;}
.ls1a{letter-spacing:0.097280pt;}
.lse{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.159360pt;}
.ls20{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.203947pt;}
.ls14{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.235520pt;}
.lsa{letter-spacing:0.270848pt;}
.ls10{letter-spacing:0.271467pt;}
.ls17{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.802112pt;}
.ls4{letter-spacing:0.961472pt;}
.ls1{letter-spacing:1.277696pt;}
.lsd{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.376000pt;}
.ls1f{letter-spacing:3.434667pt;}
.ls16{letter-spacing:4.480000pt;}
.ls19{letter-spacing:5.120000pt;}
.lsf{letter-spacing:8.960000pt;}
.ls25{letter-spacing:13.440000pt;}
.ls26{letter-spacing:36.751360pt;}
.ls24{letter-spacing:66.191360pt;}
.ws18{word-spacing:-18.154667pt;}
.wsd{word-spacing:-16.096000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.990848pt;}
.ws7{word-spacing:-14.955520pt;}
.ws11{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.855467pt;}
.ws17{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.814208pt;}
.ws10{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.449152pt;}
.ws15{word-spacing:-14.351467pt;}
.ws5{word-spacing:-14.349056pt;}
.wsc{word-spacing:-14.313067pt;}
.ws2{word-spacing:-14.241472pt;}
.ws16{word-spacing:-14.215467pt;}
.wse{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-13.674667pt;}
.ws19{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232192pt;}
.ws4{word-spacing:-12.870976pt;}
.ws14{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.016000pt;}
.ws12{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.680000pt;}
.wsa{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-3.886080pt;}
._8{margin-left:-2.974720pt;}
._9{margin-left:-2.003920pt;}
._1{margin-left:-1.062680pt;}
._6{width:0.912640pt;}
._3{width:2.090240pt;}
._4{width:3.180800pt;}
._5{width:4.795733pt;}
._d{width:5.730447pt;}
._0{width:6.645421pt;}
._7{width:7.808640pt;}
._c{width:9.487360pt;}
._b{width:11.048960pt;}
._a{width:12.323840pt;}
._10{width:13.569133pt;}
._2{width:14.721403pt;}
._11{width:15.645197pt;}
._e{width:16.607000pt;}
._12{width:18.708340pt;}
._1a{width:20.194120pt;}
._19{width:21.083600pt;}
._13{width:29.619200pt;}
._14{width:30.669227pt;}
._15{width:31.636347pt;}
._1b{width:43.488707pt;}
._17{width:51.220480pt;}
._18{width:52.821200pt;}
._16{width:88.675840pt;}
.fsb{font-size:2.560000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.880000pt;}
.fsa{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs8{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:0.160000pt;}
.y9b{bottom:3.040000pt;}
.ya5{bottom:3.200000pt;}
.yc5{bottom:3.520000pt;}
.y106{bottom:3.680000pt;}
.y18{bottom:3.812733pt;}
.y6c{bottom:4.160000pt;}
.y10c{bottom:4.640000pt;}
.y6d{bottom:5.280000pt;}
.y11e{bottom:5.440000pt;}
.y111{bottom:5.760000pt;}
.y85{bottom:5.920000pt;}
.y7e{bottom:5.960000pt;}
.y6a{bottom:6.080000pt;}
.y99{bottom:6.240000pt;}
.y77{bottom:6.880000pt;}
.y7d{bottom:6.920000pt;}
.y78{bottom:8.480000pt;}
.y8d{bottom:9.600000pt;}
.y10e{bottom:11.680000pt;}
.y83{bottom:12.800000pt;}
.y12b{bottom:16.000000pt;}
.y128{bottom:16.160000pt;}
.y17{bottom:17.096233pt;}
.y8b{bottom:17.440000pt;}
.y10f{bottom:18.720000pt;}
.y88{bottom:20.160000pt;}
.yc4{bottom:20.480000pt;}
.y86{bottom:20.800000pt;}
.y11d{bottom:21.920000pt;}
.y89{bottom:24.960000pt;}
.y82{bottom:26.080000pt;}
.y80{bottom:26.720000pt;}
.y16{bottom:30.379733pt;}
.y8a{bottom:30.880000pt;}
.yad{bottom:32.000000pt;}
.y87{bottom:33.600000pt;}
.y105{bottom:37.600000pt;}
.y11c{bottom:38.240000pt;}
.y81{bottom:39.520000pt;}
.y8c{bottom:40.800000pt;}
.yca{bottom:46.554667pt;}
.y14{bottom:51.573333pt;}
.y104{bottom:52.520000pt;}
.y11b{bottom:54.560000pt;}
.y15{bottom:54.852400pt;}
.y1b{bottom:57.333333pt;}
.ya0{bottom:60.960000pt;}
.ya7{bottom:60.986667pt;}
.ybb{bottom:61.000000pt;}
.y75{bottom:66.720000pt;}
.y103{bottom:67.400000pt;}
.y7b{bottom:73.120000pt;}
.y74{bottom:80.160000pt;}
.y102{bottom:82.280000pt;}
.y11a{bottom:83.560000pt;}
.y7a{bottom:86.560000pt;}
.yb9{bottom:90.600000pt;}
.y73{bottom:93.920000pt;}
.yb8{bottom:104.360000pt;}
.y168{bottom:107.520000pt;}
.y107{bottom:108.800000pt;}
.y72{bottom:108.960000pt;}
.yc9{bottom:114.912000pt;}
.y165{bottom:117.632000pt;}
.yfb{bottom:119.392000pt;}
.y71{bottom:122.400000pt;}
.y137{bottom:122.592000pt;}
.ycd{bottom:129.472000pt;}
.y164{bottom:133.946667pt;}
.y48{bottom:134.755467pt;}
.y70{bottom:135.680000pt;}
.y125{bottom:138.426667pt;}
.y68{bottom:139.386667pt;}
.ycc{bottom:143.866667pt;}
.y6f{bottom:149.120000pt;}
.y163{bottom:150.746667pt;}
.y47{bottom:151.070133pt;}
.y6e{bottom:152.826667pt;}
.y124{bottom:154.746667pt;}
.ycb{bottom:158.266667pt;}
.yfa{bottom:160.346667pt;}
.y46{bottom:167.390133pt;}
.y162{bottom:168.186667pt;}
.y123{bottom:171.066667pt;}
.yc7{bottom:172.826667pt;}
.yf9{bottom:176.826667pt;}
.y45{bottom:183.870133pt;}
.y161{bottom:184.506667pt;}
.yc8{bottom:187.226667pt;}
.y122{bottom:187.386667pt;}
.yf8{bottom:193.146667pt;}
.y44{bottom:200.190133pt;}
.y160{bottom:201.306667pt;}
.yc6{bottom:201.786667pt;}
.y121{bottom:203.866667pt;}
.y79{bottom:208.986667pt;}
.yf7{bottom:209.466667pt;}
.yc3{bottom:216.186667pt;}
.y43{bottom:216.510133pt;}
.y15f{bottom:218.266667pt;}
.y120{bottom:220.186667pt;}
.yf6{bottom:225.946667pt;}
.y42{bottom:232.990133pt;}
.y15e{bottom:235.546667pt;}
.y11f{bottom:236.826667pt;}
.yf5{bottom:242.266667pt;}
.y41{bottom:249.310133pt;}
.y15d{bottom:252.026667pt;}
.yc2{bottom:253.946667pt;}
.y84{bottom:256.826667pt;}
.yf4{bottom:258.586667pt;}
.y40{bottom:265.630133pt;}
.y119{bottom:265.946667pt;}
.yb7{bottom:266.746667pt;}
.y15c{bottom:269.786667pt;}
.yf3{bottom:275.066667pt;}
.y7f{bottom:276.826667pt;}
.y9e{bottom:278.746667pt;}
.yc1{bottom:281.306667pt;}
.y3f{bottom:281.950133pt;}
.y15b{bottom:286.266667pt;}
.yf2{bottom:291.386667pt;}
.y9d{bottom:292.506667pt;}
.y101{bottom:292.826667pt;}
.yc0{bottom:295.706667pt;}
.y3e{bottom:298.430133pt;}
.y15a{bottom:302.586667pt;}
.yf1{bottom:307.706667pt;}
.yba{bottom:310.106667pt;}
.y3d{bottom:314.750133pt;}
.y159{bottom:320.346667pt;}
.yf0{bottom:324.186667pt;}
.ybf{bottom:324.666667pt;}
.y3c{bottom:331.070133pt;}
.y7c{bottom:336.666667pt;}
.y158{bottom:336.826667pt;}
.ybe{bottom:339.106667pt;}
.yef{bottom:340.546667pt;}
.y3b{bottom:347.550133pt;}
.y157{bottom:353.186667pt;}
.ybd{bottom:353.666667pt;}
.y76{bottom:356.706667pt;}
.yee{bottom:356.866667pt;}
.y3a{bottom:363.910133pt;}
.ybc{bottom:368.066667pt;}
.y156{bottom:370.626667pt;}
.yed{bottom:373.186667pt;}
.y16a{bottom:373.826667pt;}
.y6b{bottom:376.546667pt;}
.y39{bottom:380.230133pt;}
.y136{bottom:380.706667pt;}
.y9c{bottom:382.466667pt;}
.y169{bottom:386.626667pt;}
.y155{bottom:386.946667pt;}
.yec{bottom:389.666667pt;}
.y100{bottom:390.946667pt;}
.y69{bottom:393.186667pt;}
.y38{bottom:396.710133pt;}
.yb6{bottom:397.026667pt;}
.y154{bottom:404.226667pt;}
.yeb{bottom:405.986667pt;}
.yb5{bottom:411.426667pt;}
.y37{bottom:412.710133pt;}
.yff{bottom:420.066667pt;}
.y153{bottom:420.706667pt;}
.y135{bottom:421.986667pt;}
.yea{bottom:422.306667pt;}
.yb4{bottom:425.986667pt;}
.y152{bottom:437.506667pt;}
.y134{bottom:438.466667pt;}
.ye9{bottom:438.786667pt;}
.yb3{bottom:440.386667pt;}
.y67{bottom:443.586667pt;}
.y133{bottom:454.786667pt;}
.yb0{bottom:454.946667pt;}
.y36{bottom:459.430133pt;}
.y66{bottom:459.906667pt;}
.yb2{bottom:469.346667pt;}
.y132{bottom:471.106667pt;}
.y151{bottom:471.266667pt;}
.ye8{bottom:472.066667pt;}
.y35{bottom:474.790133pt;}
.y65{bottom:476.386667pt;}
.yb1{bottom:483.746667pt;}
.y131{bottom:487.586667pt;}
.y150{bottom:488.066667pt;}
.y34{bottom:490.150133pt;}
.y64{bottom:492.706667pt;}
.yac{bottom:498.306667pt;}
.y130{bottom:503.906667pt;}
.y14f{bottom:504.706667pt;}
.y33{bottom:505.350133pt;}
.ye7{bottom:506.466667pt;}
.y63{bottom:509.026667pt;}
.yaf{bottom:512.706667pt;}
.y12f{bottom:520.226667pt;}
.y32{bottom:520.710133pt;}
.ye6{bottom:522.786667pt;}
.y62{bottom:525.506667pt;}
.yae{bottom:527.266667pt;}
.y31{bottom:536.070133pt;}
.y12e{bottom:536.546667pt;}
.y14e{bottom:537.346667pt;}
.ye5{bottom:539.266667pt;}
.ya6{bottom:541.666667pt;}
.y61{bottom:541.826667pt;}
.y30{bottom:551.430133pt;}
.y12d{bottom:553.026667pt;}
.y14d{bottom:554.466667pt;}
.ye4{bottom:555.586667pt;}
.yab{bottom:556.066667pt;}
.y60{bottom:558.146667pt;}
.y2f{bottom:566.790133pt;}
.y12c{bottom:569.373333pt;}
.yaa{bottom:570.653333pt;}
.y5f{bottom:574.653333pt;}
.ye3{bottom:576.413333pt;}
.y2e{bottom:582.016800pt;}
.y12a{bottom:582.173333pt;}
.ya9{bottom:585.053333pt;}
.y14c{bottom:589.053333pt;}
.y5e{bottom:590.973333pt;}
.ye2{bottom:592.733333pt;}
.y2d{bottom:597.376800pt;}
.ya8{bottom:599.613333pt;}
.yfe{bottom:602.173333pt;}
.y14b{bottom:605.533333pt;}
.y5d{bottom:607.293333pt;}
.ye1{bottom:609.213333pt;}
.y2c{bottom:612.736800pt;}
.y9f{bottom:614.013333pt;}
.y14a{bottom:621.853333pt;}
.y5c{bottom:623.773333pt;}
.ye0{bottom:625.533333pt;}
.y2b{bottom:628.096800pt;}
.ya4{bottom:628.413333pt;}
.y149{bottom:638.173333pt;}
.y5b{bottom:640.093333pt;}
.ydf{bottom:641.853333pt;}
.ya3{bottom:642.973333pt;}
.y2a{bottom:643.456800pt;}
.y5a{bottom:656.413333pt;}
.ya2{bottom:657.373333pt;}
.y148{bottom:657.533333pt;}
.yde{bottom:658.173333pt;}
.y29{bottom:658.816800pt;}
.yfd{bottom:659.453333pt;}
.ya1{bottom:671.933333pt;}
.y59{bottom:672.733333pt;}
.y147{bottom:673.853333pt;}
.y28{bottom:674.176800pt;}
.ydd{bottom:674.653333pt;}
.yfc{bottom:675.773333pt;}
.y118{bottom:680.253333pt;}
.y9a{bottom:686.333333pt;}
.y129{bottom:686.813333pt;}
.y146{bottom:690.333333pt;}
.ydc{bottom:690.973333pt;}
.y58{bottom:692.093333pt;}
.y98{bottom:700.733333pt;}
.y27{bottom:706.176800pt;}
.y145{bottom:706.653333pt;}
.ydb{bottom:707.293333pt;}
.y57{bottom:708.573333pt;}
.y117{bottom:719.133333pt;}
.y144{bottom:722.973333pt;}
.yda{bottom:723.773333pt;}
.y56{bottom:724.893333pt;}
.y116{bottom:735.613333pt;}
.y127{bottom:736.573333pt;}
.y26{bottom:738.976800pt;}
.y143{bottom:739.453333pt;}
.yd9{bottom:740.573333pt;}
.y55{bottom:741.213333pt;}
.y97{bottom:741.693333pt;}
.y115{bottom:751.933333pt;}
.y25{bottom:755.936800pt;}
.yd8{bottom:757.533333pt;}
.y54{bottom:757.693333pt;}
.y96{bottom:758.173333pt;}
.y142{bottom:759.293333pt;}
.y114{bottom:768.253333pt;}
.y53{bottom:774.013333pt;}
.y95{bottom:774.493333pt;}
.y141{bottom:775.613333pt;}
.y24{bottom:779.936800pt;}
.y113{bottom:784.733333pt;}
.yd7{bottom:790.373333pt;}
.y52{bottom:790.533333pt;}
.y94{bottom:791.333333pt;}
.y140{bottom:791.973333pt;}
.y7{bottom:802.933333pt;}
.y93{bottom:808.293333pt;}
.y13f{bottom:808.453333pt;}
.y13{bottom:809.120000pt;}
.y112{bottom:814.213333pt;}
.y12{bottom:819.786667pt;}
.yd6{bottom:823.333333pt;}
.y13e{bottom:824.773333pt;}
.y92{bottom:825.093333pt;}
.y51{bottom:827.653333pt;}
.y6{bottom:828.800000pt;}
.y11{bottom:830.453333pt;}
.y110{bottom:834.053333pt;}
.y23{bottom:837.416800pt;}
.yd5{bottom:840.133333pt;}
.y13d{bottom:841.093333pt;}
.y91{bottom:842.053333pt;}
.y50{bottom:844.133333pt;}
.y10{bottom:851.120000pt;}
.y10d{bottom:853.893333pt;}
.yd4{bottom:857.093333pt;}
.y13c{bottom:857.573333pt;}
.y90{bottom:858.853333pt;}
.y4f{bottom:860.453333pt;}
.yf{bottom:861.786667pt;}
.y22{bottom:862.856800pt;}
.y5{bottom:864.666667pt;}
.ye{bottom:872.453333pt;}
.yd3{bottom:873.893333pt;}
.y8f{bottom:875.173333pt;}
.y13b{bottom:876.293333pt;}
.y4e{bottom:876.773333pt;}
.yd{bottom:883.120000pt;}
.y10b{bottom:885.733333pt;}
.yd2{bottom:890.693333pt;}
.y8e{bottom:891.813333pt;}
.y13a{bottom:892.773333pt;}
.y4d{bottom:893.253333pt;}
.y4{bottom:898.813333pt;}
.yc{bottom:903.786667pt;}
.y167{bottom:903.973333pt;}
.yd1{bottom:907.653333pt;}
.y139{bottom:909.093333pt;}
.y4c{bottom:909.573333pt;}
.yb{bottom:914.453333pt;}
.y3{bottom:924.413333pt;}
.yd0{bottom:924.453333pt;}
.y166{bottom:924.933333pt;}
.ya{bottom:925.120000pt;}
.y10a{bottom:925.413333pt;}
.y4b{bottom:925.893333pt;}
.y9{bottom:935.786667pt;}
.ycf{bottom:941.413333pt;}
.y109{bottom:941.893333pt;}
.y4a{bottom:942.373333pt;}
.y126{bottom:954.693333pt;}
.yce{bottom:958.213333pt;}
.y108{bottom:958.373333pt;}
.y8{bottom:958.453333pt;}
.y49{bottom:958.693333pt;}
.y2{bottom:961.320000pt;}
.y1a{bottom:1017.333333pt;}
.y21{bottom:1025.600000pt;}
.y19{bottom:1036.000000pt;}
.y20{bottom:1042.400000pt;}
.y1{bottom:1059.173333pt;}
.y1f{bottom:1059.360000pt;}
.y1e{bottom:1076.160000pt;}
.y1d{bottom:1093.120000pt;}
.y1c{bottom:1109.920000pt;}
.h39{height:1.851250pt;}
.h1c{height:13.760000pt;}
.h24{height:13.792000pt;}
.h1f{height:13.920000pt;}
.h21{height:13.952000pt;}
.h11{height:16.000000pt;}
.h29{height:16.800000pt;}
.h31{height:16.960000pt;}
.h14{height:19.200000pt;}
.h16{height:19.392000pt;}
.h26{height:28.160000pt;}
.h2e{height:31.200000pt;}
.h25{height:33.760000pt;}
.h12{height:34.710938pt;}
.hf{height:35.360000pt;}
.h1b{height:35.520000pt;}
.h8{height:38.171466pt;}
.hb{height:38.314667pt;}
.h2c{height:38.413438pt;}
.h5{height:38.937500pt;}
.h7{height:41.367733pt;}
.hc{height:42.578750pt;}
.h22{height:42.720000pt;}
.h4{height:44.500000pt;}
.h18{height:47.200000pt;}
.h9{height:47.893333pt;}
.h28{height:48.530000pt;}
.ha{height:49.866667pt;}
.h2{height:50.062500pt;}
.he{height:52.134375pt;}
.h19{height:55.520000pt;}
.h27{height:57.280000pt;}
.h1a{height:57.787500pt;}
.h17{height:59.200000pt;}
.h10{height:59.340000pt;}
.h35{height:60.519362pt;}
.h34{height:63.792371pt;}
.h3{height:64.000000pt;}
.hd{height:65.719375pt;}
.h1{height:66.750000pt;}
.h1e{height:71.680000pt;}
.h20{height:71.712000pt;}
.h2b{height:94.272000pt;}
.h32{height:104.640000pt;}
.h23{height:115.072000pt;}
.h15{height:166.906667pt;}
.h2a{height:182.106667pt;}
.h2d{height:184.026667pt;}
.h30{height:218.106667pt;}
.h13{height:223.066667pt;}
.h33{height:258.106667pt;}
.h1d{height:303.226667pt;}
.h2f{height:414.306667pt;}
.h37{height:568.066667pt;}
.h38{height:584.866667pt;}
.h36{height:796.453333pt;}
.h0{height:1122.666667pt;}
.h6{height:1122.720000pt;}
.w15{width:47.360000pt;}
.w10{width:47.392000pt;}
.w21{width:51.360000pt;}
.w23{width:70.400000pt;}
.w22{width:72.352000pt;}
.w1f{width:75.040000pt;}
.wa{width:77.280000pt;}
.w6{width:77.600000pt;}
.wb{width:79.680000pt;}
.w9{width:80.000000pt;}
.w20{width:82.400000pt;}
.w1e{width:82.432000pt;}
.w1d{width:83.040000pt;}
.w11{width:93.760000pt;}
.w16{width:93.792000pt;}
.w7{width:111.552000pt;}
.wd{width:131.040000pt;}
.wf{width:131.360000pt;}
.w14{width:131.392000pt;}
.w13{width:149.146667pt;}
.w1a{width:152.960000pt;}
.w17{width:175.546667pt;}
.w19{width:184.986667pt;}
.w1b{width:191.426667pt;}
.we{width:197.346667pt;}
.w18{width:244.186667pt;}
.w1c{width:260.346667pt;}
.w8{width:333.506667pt;}
.w12{width:424.253333pt;}
.w24{width:589.693333pt;}
.wc{width:604.093333pt;}
.w5{width:604.733333pt;}
.w3{width:607.353867pt;}
.w0{width:793.333333pt;}
.w4{width:793.759988pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.188474pt;}
.x13{left:6.880000pt;}
.x31{left:12.800000pt;}
.x2e{left:16.640000pt;}
.x3a{left:18.080000pt;}
.x37{left:19.200000pt;}
.x2f{left:22.240000pt;}
.x3c{left:24.640000pt;}
.x3b{left:25.760000pt;}
.x39{left:26.880000pt;}
.x38{left:30.720000pt;}
.x11{left:38.874667pt;}
.x16{left:39.840000pt;}
.x1{left:52.000000pt;}
.x7{left:67.602400pt;}
.x49{left:88.634667pt;}
.x6{left:91.970133pt;}
.x9{left:93.333333pt;}
.xd{left:94.592000pt;}
.x46{left:102.394667pt;}
.x3d{left:104.794667pt;}
.xf{left:113.471988pt;}
.x42{left:140.634667pt;}
.x28{left:144.474667pt;}
.x22{left:146.394667pt;}
.x27{left:149.434667pt;}
.x45{left:151.386655pt;}
.x10{left:152.634667pt;}
.x40{left:156.634667pt;}
.x3f{left:158.274667pt;}
.x12{left:172.826667pt;}
.x23{left:177.314667pt;}
.x2d{left:178.586667pt;}
.x2a{left:180.546667pt;}
.x1c{left:184.826667pt;}
.x26{left:187.400000pt;}
.xe{left:189.146667pt;}
.x5{left:198.320000pt;}
.x17{left:226.586667pt;}
.x20{left:234.586655pt;}
.x21{left:236.506655pt;}
.x29{left:247.546667pt;}
.x25{left:249.946667pt;}
.x2c{left:253.160000pt;}
.x30{left:261.666667pt;}
.x24{left:270.146667pt;}
.x14{left:285.186667pt;}
.x4b{left:301.954667pt;}
.x1d{left:334.946667pt;}
.x32{left:337.346667pt;}
.x48{left:394.666667pt;}
.xc{left:397.333333pt;}
.x1b{left:406.466655pt;}
.x33{left:420.413333pt;}
.x18{left:424.573333pt;}
.x2b{left:438.973333pt;}
.x1e{left:466.973333pt;}
.x34{left:472.413333pt;}
.xb{left:496.653333pt;}
.x1f{left:514.973333pt;}
.x2{left:538.213333pt;}
.x43{left:545.061333pt;}
.x41{left:553.061333pt;}
.x35{left:555.613333pt;}
.x19{left:556.573333pt;}
.x4{left:558.213333pt;}
.x47{left:562.021333pt;}
.x3{left:563.920000pt;}
.x4a{left:566.021333pt;}
.x1a{left:604.613333pt;}
.x3e{left:611.941333pt;}
.xa{left:617.866667pt;}
.x15{left:619.333333pt;}
.x36{left:628.613333pt;}
.x44{left:655.973322pt;}
}




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