
    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_a8df7c839d404488a63adba3.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_e89b551a862333ec061399a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.181152;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_96e4831df78e7d5cc8c33fce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.015625;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_460245a6f1f9c4aace734ae6.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_8ac63ccb890b9e194fe4d729.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7e151d163d21b125032e19c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_a3a914d547d7cbf2a4776f03.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_f8336135b3d5e27788b813ed.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_848f16b35fc62ead08b3ad33.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706055;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_2d6500ceb11eb7633b2c9453.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113281;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_d5b15554ca37186271124dbf.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_21f3af4887574529f0945da3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f3725bc435654dabd4e67e46.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6b159e58e4487cddf5126c1b.woff2')format("woff");}.fff{font-family:fff;line-height:1.112305;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_e5c51f78508c04c778d07052.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.691406;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);}
.v5{vertical-align:-88.560000px;}
.v3{vertical-align:-87.120000px;}
.v4{vertical-align:-84.420000px;}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-75.600000px;}
.v8{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.560000px;}
.v7{vertical-align:5.760000px;}
.v9{vertical-align:8.640000px;}
.v6{vertical-align:23.760000px;}
.ls1b{letter-spacing:-0.990000px;}
.ls21{letter-spacing:-0.828000px;}
.ls15{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.lse{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.468000px;}
.ls13{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.942000px;}
.ls0{letter-spacing:10.500480px;}
.ls11{letter-spacing:11.664000px;}
.lsd{letter-spacing:14.400000px;}
.ls10{letter-spacing:23.904000px;}
.lsa{letter-spacing:28.224000px;}
.lsf{letter-spacing:48.384000px;}
.ls4{letter-spacing:64.746720px;}
.lsb{letter-spacing:81.378720px;}
.ls9{letter-spacing:90.000000px;}
.lsc{letter-spacing:194.400000px;}
.ls18{letter-spacing:1116.336000px;}
.ls8{letter-spacing:1449.636000px;}
.ls1{letter-spacing:1528.404000px;}
.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;}
}
.ws1{word-spacing:-30.024000px;}
.ws4{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.016000px;}
.ws7{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws12{word-spacing:-14.364000px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.140000px;}
.ws11{word-spacing:-13.002000px;}
.ws14{word-spacing:-12.672000px;}
.wse{word-spacing:-12.283800px;}
.wsd{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.070000px;}
.wsc{word-spacing:-8.928000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-15.120000px;}
._5{margin-left:-2.263200px;}
._1{margin-left:-1.224000px;}
._0{width:1.195200px;}
._2{width:2.511840px;}
._f{width:4.176000px;}
._d{width:5.544000px;}
._e{width:6.768000px;}
._6{width:7.920000px;}
._a{width:9.028800px;}
._9{width:10.152000px;}
._7{width:11.376000px;}
._10{width:12.744000px;}
._17{width:14.076000px;}
._15{width:15.564000px;}
._8{width:16.704000px;}
._14{width:19.584000px;}
._1d{width:21.268800px;}
._c{width:23.215200px;}
._b{width:24.768000px;}
._16{width:25.879200px;}
._4{width:27.360000px;}
._20{width:28.447200px;}
._18{width:29.712000px;}
._19{width:31.761600px;}
._12{width:33.048000px;}
._13{width:34.272000px;}
._1a{width:53.856000px;}
._1b{width:54.864000px;}
._1e{width:151.920000px;}
._11{width:194.400000px;}
._1f{width:847.596000px;}
._3{width:1984.776000px;}
.fc7{color:transparent;}
.fc4{color:rgb(0,0,204);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y15e{bottom:-8.820000px;}
.y16a{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y112{bottom:2.880000px;}
.yf5{bottom:3.060000px;}
.y164{bottom:3.240000px;}
.y178{bottom:3.420000px;}
.y138{bottom:4.500000px;}
.y134{bottom:5.760000px;}
.y130{bottom:5.940000px;}
.y13e{bottom:6.840000px;}
.y10e{bottom:7.740000px;}
.y135{bottom:9.360000px;}
.y110{bottom:10.620000px;}
.yf3{bottom:10.800000px;}
.y101{bottom:10.965000px;}
.yf7{bottom:10.980000px;}
.y103{bottom:11.145000px;}
.yf9{bottom:11.160000px;}
.y11c{bottom:11.205000px;}
.yf2{bottom:12.240000px;}
.y132{bottom:13.680000px;}
.y13b{bottom:16.020000px;}
.y2d{bottom:16.200000px;}
.y13c{bottom:17.460000px;}
.y111{bottom:18.360000px;}
.yf4{bottom:18.540000px;}
.y166{bottom:18.720000px;}
.y180{bottom:18.765000px;}
.y163{bottom:18.900000px;}
.y12d{bottom:21.420000px;}
.y137{bottom:25.200000px;}
.y168{bottom:26.460000px;}
.y17f{bottom:26.505000px;}
.y185{bottom:26.640000px;}
.y13d{bottom:27.540000px;}
.y131{bottom:29.160000px;}
.y141{bottom:29.205000px;}
.y13a{bottom:31.500000px;}
.y2c{bottom:31.680000px;}
.y162{bottom:34.380000px;}
.y12f{bottom:36.900000px;}
.y12e{bottom:39.780000px;}
.y160{bottom:65.340000px;}
.y54{bottom:111.096000px;}
.yb4{bottom:119.916000px;}
.y29{bottom:129.456000px;}
.y10b{bottom:131.436000px;}
.y53{bottom:131.796000px;}
.y15b{bottom:132.156000px;}
.y74{bottom:134.136000px;}
.y95{bottom:136.476000px;}
.yce{bottom:140.796000px;}
.y12b{bottom:150.510000px;}
.yb3{bottom:150.870000px;}
.y52{bottom:152.490000px;}
.y15a{bottom:152.850000px;}
.y10a{bottom:154.830000px;}
.y28{bottom:161.130000px;}
.y73{bottom:165.270000px;}
.y94{bottom:167.430000px;}
.ycd{bottom:171.930000px;}
.y51{bottom:173.190000px;}
.y109{bottom:178.050000px;}
.y159{bottom:180.030000px;}
.yb2{bottom:181.650000px;}
.ye5{bottom:188.310000px;}
.y50{bottom:193.890000px;}
.y72{bottom:196.230000px;}
.y93{bottom:198.570000px;}
.y108{bottom:201.270000px;}
.yb1{bottom:201.990000px;}
.ycc{bottom:202.890000px;}
.y158{bottom:203.430000px;}
.y12a{bottom:212.610000px;}
.y27{bottom:213.510000px;}
.y4f{bottom:214.590000px;}
.y184{bottom:216.390000px;}
.ye4{bottom:219.270000px;}
.yb0{bottom:220.890000px;}
.y19a{bottom:223.590000px;}
.y107{bottom:224.670000px;}
.y92{bottom:229.530000px;}
.y26{bottom:230.610000px;}
.y4e{bottom:235.290000px;}
.y71{bottom:236.370000px;}
.ycb{bottom:239.970000px;}
.y129{bottom:243.750000px;}
.y183{bottom:247.350000px;}
.ye3{bottom:250.050000px;}
.y25{bottom:250.770000px;}
.y106{bottom:251.490000px;}
.yaf{bottom:251.850000px;}
.y199{bottom:254.730000px;}
.y4d{bottom:255.990000px;}
.y91{bottom:260.670000px;}
.y70{bottom:267.330000px;}
.y105{bottom:267.885000px;}
.yca{bottom:271.110000px;}
.y4c{bottom:276.690000px;}
.y182{bottom:278.490000px;}
.y198{bottom:282.090000px;}
.yae{bottom:282.810000px;}
.y142{bottom:284.070000px;}
.y24{bottom:290.010000px;}
.y104{bottom:291.105000px;}
.y90{bottom:291.630000px;}
.y4b{bottom:297.390000px;}
.y6f{bottom:298.470000px;}
.yc9{bottom:302.070000px;}
.y181{bottom:309.450000px;}
.yad{bottom:313.590000px;}
.y102{bottom:314.325000px;}
.y197{bottom:315.030000px;}
.y23{bottom:315.930000px;}
.y4a{bottom:318.090000px;}
.y8f{bottom:322.770000px;}
.y140{bottom:325.470000px;}
.y6e{bottom:329.430000px;}
.ye2{bottom:333.210000px;}
.y100{bottom:337.725000px;}
.y49{bottom:338.790000px;}
.y17e{bottom:340.590000px;}
.y22{bottom:341.850000px;}
.yc8{bottom:342.210000px;}
.yac{bottom:344.550000px;}
.y196{bottom:346.170000px;}
.y8e{bottom:353.730000px;}
.y48{bottom:359.535000px;}
.yff{bottom:360.975000px;}
.ye1{bottom:364.215000px;}
.y13f{bottom:366.915000px;}
.y21{bottom:367.455000px;}
.y6d{bottom:369.615000px;}
.y17d{bottom:371.595000px;}
.yc7{bottom:373.215000px;}
.y195{bottom:377.175000px;}
.y47{bottom:380.235000px;}
.yab{bottom:382.035000px;}
.yfe{bottom:384.195000px;}
.y8d{bottom:384.915000px;}
.y20{bottom:393.375000px;}
.ye0{bottom:395.355000px;}
.y6c{bottom:400.575000px;}
.y46{bottom:400.935000px;}
.y17c{bottom:402.735000px;}
.yc6{bottom:404.175000px;}
.yfd{bottom:408.315000px;}
.yaa{bottom:413.175000px;}
.y8c{bottom:415.875000px;}
.y1f{bottom:419.475000px;}
.y45{bottom:421.635000px;}
.ydf{bottom:426.315000px;}
.yfc{bottom:431.535000px;}
.y17b{bottom:433.695000px;}
.y194{bottom:439.275000px;}
.y6b{bottom:440.535000px;}
.y44{bottom:442.335000px;}
.yc5{bottom:444.315000px;}
.y1e{bottom:445.395000px;}
.ya9{bottom:445.575000px;}
.y8b{bottom:447.015000px;}
.y139{bottom:449.715000px;}
.yfb{bottom:454.935000px;}
.yde{bottom:457.455000px;}
.y17a{bottom:464.835000px;}
.y1d{bottom:471.135000px;}
.y6a{bottom:471.675000px;}
.y43{bottom:473.295000px;}
.yc4{bottom:475.455000px;}
.ya8{bottom:477.795000px;}
.y8a{bottom:477.975000px;}
.yfa{bottom:478.155000px;}
.y193{bottom:479.235000px;}
.y179{bottom:487.335000px;}
.ydd{bottom:488.415000px;}
.y136{bottom:493.455000px;}
.y1c{bottom:497.055000px;}
.yf8{bottom:501.375000px;}
.y69{bottom:502.635000px;}
.y42{bottom:504.795000px;}
.yc3{bottom:506.415000px;}
.y89{bottom:508.935000px;}
.ya7{bottom:510.195000px;}
.y192{bottom:510.375000px;}
.y177{bottom:518.295000px;}
.ydc{bottom:519.555000px;}
.y1b{bottom:522.795000px;}
.yf6{bottom:524.775000px;}
.y68{bottom:533.775000px;}
.y12c{bottom:535.575000px;}
.y41{bottom:536.475000px;}
.yc2{bottom:537.555000px;}
.y88{bottom:540.075000px;}
.ya6{bottom:541.155000px;}
.y191{bottom:541.335000px;}
.y1a{bottom:548.715000px;}
.y176{bottom:549.435000px;}
.ydb{bottom:550.515000px;}
.y67{bottom:564.735000px;}
.y133{bottom:566.715000px;}
.yc1{bottom:568.515000px;}
.y87{bottom:571.035000px;}
.y190{bottom:572.475000px;}
.ya5{bottom:575.355000px;}
.y154{bottom:578.415000px;}
.y175{bottom:580.395000px;}
.yf1{bottom:580.575000px;}
.yda{bottom:581.655000px;}
.y19{bottom:584.175000px;}
.y40{bottom:589.935000px;}
.y66{bottom:595.875000px;}
.y128{bottom:598.035000px;}
.yc0{bottom:599.655000px;}
.y86{bottom:602.175000px;}
.y127{bottom:602.715000px;}
.y18f{bottom:603.435000px;}
.ya4{bottom:607.575000px;}
.y153{bottom:608.115000px;}
.y3f{bottom:610.635000px;}
.y174{bottom:611.535000px;}
.yd9{bottom:612.615000px;}
.y126{bottom:618.225000px;}
.y18{bottom:621.105000px;}
.yf0{bottom:625.245000px;}
.ybf{bottom:630.645000px;}
.y3e{bottom:631.365000px;}
.y85{bottom:633.165000px;}
.y173{bottom:634.065000px;}
.y18e{bottom:634.605000px;}
.y65{bottom:635.505000px;}
.ya3{bottom:638.745000px;}
.y152{bottom:639.105000px;}
.yd8{bottom:643.785000px;}
.y125{bottom:645.045000px;}
.y17{bottom:647.025000px;}
.yef{bottom:652.065000px;}
.ybe{bottom:661.785000px;}
.y84{bottom:664.305000px;}
.y172{bottom:665.025000px;}
.y18d{bottom:665.565000px;}
.y151{bottom:670.245000px;}
.ya2{bottom:672.765000px;}
.y3d{bottom:673.665000px;}
.y64{bottom:674.745000px;}
.y16{bottom:675.105000px;}
.y124{bottom:676.185000px;}
.yee{bottom:683.205000px;}
.ybd{bottom:688.425000px;}
.y83{bottom:694.905000px;}
.y171{bottom:696.165000px;}
.y18c{bottom:696.705000px;}
.y150{bottom:701.205000px;}
.ybc{bottom:704.265000px;}
.ya1{bottom:705.165000px;}
.y63{bottom:705.705000px;}
.yd7{bottom:705.885000px;}
.y15{bottom:706.245000px;}
.y123{bottom:707.145000px;}
.yed{bottom:714.165000px;}
.y3c{bottom:721.905000px;}
.y82{bottom:726.405000px;}
.y170{bottom:727.125000px;}
.y18b{bottom:727.665000px;}
.y14f{bottom:732.345000px;}
.y14{bottom:734.865000px;}
.ybb{bottom:735.405000px;}
.y62{bottom:736.665000px;}
.yd6{bottom:736.845000px;}
.ya0{bottom:737.565000px;}
.y122{bottom:738.285000px;}
.yec{bottom:745.305000px;}
.y3b{bottom:748.185000px;}
.y81{bottom:757.005000px;}
.y16f{bottom:758.265000px;}
.y18a{bottom:758.805000px;}
.y13{bottom:760.965000px;}
.y14e{bottom:763.305000px;}
.yba{bottom:766.365000px;}
.y61{bottom:767.805000px;}
.y121{bottom:769.245000px;}
.y9f{bottom:769.785000px;}
.yeb{bottom:776.265000px;}
.y16e{bottom:780.765000px;}
.y12{bottom:786.885000px;}
.y80{bottom:788.145000px;}
.yd5{bottom:788.865000px;}
.y189{bottom:789.765000px;}
.y3a{bottom:791.025000px;}
.y120{bottom:791.925000px;}
.y14d{bottom:794.445000px;}
.yb9{bottom:797.505000px;}
.y60{bottom:798.765000px;}
.y11f{bottom:799.305000px;}
.y9e{bottom:802.185000px;}
.yea{bottom:807.225000px;}
.yd4{bottom:809.025000px;}
.y16d{bottom:811.725000px;}
.y11{bottom:812.805000px;}
.y39{bottom:817.305000px;}
.y11e{bottom:822.705000px;}
.y14c{bottom:825.405000px;}
.yb8{bottom:828.465000px;}
.y5f{bottom:829.905000px;}
.y9d{bottom:834.585000px;}
.y7f{bottom:837.465000px;}
.ye9{bottom:838.365000px;}
.y38{bottom:839.265000px;}
.y10{bottom:840.705000px;}
.y16c{bottom:842.865000px;}
.y11d{bottom:845.925000px;}
.yd3{bottom:855.285000px;}
.y14b{bottom:856.545000px;}
.yb7{bottom:859.605000px;}
.y5e{bottom:860.865000px;}
.y9c{bottom:865.545000px;}
.y7e{bottom:868.605000px;}
.y11b{bottom:869.145000px;}
.ye8{bottom:869.325000px;}
.yf{bottom:871.845000px;}
.y16b{bottom:873.870000px;}
.yd2{bottom:886.470000px;}
.y37{bottom:886.650000px;}
.y14a{bottom:887.550000px;}
.yb6{bottom:890.610000px;}
.y5d{bottom:892.050000px;}
.y11a{bottom:892.590000px;}
.y7d{bottom:899.610000px;}
.ye7{bottom:900.150000px;}
.ye{bottom:902.850000px;}
.y169{bottom:905.010000px;}
.y9b{bottom:905.550000px;}
.y36{bottom:907.350000px;}
.y119{bottom:915.810000px;}
.yd1{bottom:917.610000px;}
.y149{bottom:918.690000px;}
.yb5{bottom:921.390000px;}
.y5c{bottom:923.010000px;}
.y15f{bottom:927.510000px;}
.y35{bottom:928.050000px;}
.y7c{bottom:930.750000px;}
.ye6{bottom:931.650000px;}
.yd{bottom:933.990000px;}
.y9a{bottom:938.490000px;}
.y118{bottom:939.930000px;}
.y34{bottom:948.750000px;}
.y148{bottom:949.650000px;}
.yd0{bottom:953.070000px;}
.y5b{bottom:954.150000px;}
.yc{bottom:954.870000px;}
.y167{bottom:958.470000px;}
.y7b{bottom:961.710000px;}
.y117{bottom:963.150000px;}
.y99{bottom:971.250000px;}
.y33{bottom:979.350000px;}
.y147{bottom:980.790000px;}
.y5a{bottom:985.110000px;}
.y116{bottom:986.370000px;}
.y165{bottom:989.610000px;}
.ycf{bottom:992.130000px;}
.y7a{bottom:992.850000px;}
.yb{bottom:996.270000px;}
.y98{bottom:1004.010000px;}
.y115{bottom:1009.770000px;}
.y32{bottom:1010.850000px;}
.y146{bottom:1011.750000px;}
.y59{bottom:1016.250000px;}
.ya{bottom:1016.970000px;}
.y161{bottom:1020.570000px;}
.y79{bottom:1023.810000px;}
.y188{bottom:1025.250000px;}
.y114{bottom:1032.990000px;}
.y97{bottom:1036.770000px;}
.y9{bottom:1037.490000px;}
.y31{bottom:1042.530000px;}
.y145{bottom:1042.890000px;}
.y78{bottom:1054.950000px;}
.y113{bottom:1056.210000px;}
.y15d{bottom:1067.190000px;}
.y58{bottom:1068.090000px;}
.y144{bottom:1073.850000px;}
.y30{bottom:1074.210000px;}
.y15c{bottom:1075.650000px;}
.y96{bottom:1076.910000px;}
.y8{bottom:1077.090000px;}
.y10f{bottom:1080.330000px;}
.y77{bottom:1085.910000px;}
.y187{bottom:1087.350000px;}
.y57{bottom:1088.790000px;}
.y7{bottom:1090.770000px;}
.y143{bottom:1092.570000px;}
.y6{bottom:1108.950000px;}
.y56{bottom:1109.130000px;}
.y10d{bottom:1112.190000px;}
.y76{bottom:1117.050000px;}
.y157{bottom:1117.770000px;}
.y186{bottom:1118.310000px;}
.y5{bottom:1127.130000px;}
.y2f{bottom:1127.490000px;}
.y156{bottom:1132.890000px;}
.y4{bottom:1145.340000px;}
.y55{bottom:1147.860000px;}
.y75{bottom:1148.040000px;}
.y2e{bottom:1148.220000px;}
.y155{bottom:1149.480000px;}
.y10c{bottom:1152.180000px;}
.y3{bottom:1163.700000px;}
.y2b{bottom:1168.920000px;}
.y2{bottom:1182.960000px;}
.y2a{bottom:1195.560000px;}
.y1{bottom:1203.660000px;}
.h10{height:5.653125px;}
.h2d{height:7.740000px;}
.hf{height:17.666016px;}
.h22{height:21.240000px;}
.h31{height:22.500000px;}
.h33{height:22.536000px;}
.h18{height:23.205000px;}
.h1e{height:23.220000px;}
.h1a{height:23.241000px;}
.h19{height:23.385000px;}
.h1f{height:23.400000px;}
.h1d{height:23.422500px;}
.h1b{height:29.010000px;}
.h20{height:29.678906px;}
.h1c{height:30.945000px;}
.h2c{height:30.960000px;}
.h32{height:30.996000px;}
.h17{height:31.125000px;}
.h23{height:31.140000px;}
.h15{height:33.510000px;}
.h11{height:35.332031px;}
.h5{height:40.699687px;}
.h24{height:41.400000px;}
.h27{height:41.436000px;}
.h28{height:42.086250px;}
.h12{height:43.246406px;}
.h26{height:43.740000px;}
.h13{height:45.184219px;}
.h2f{height:46.620000px;}
.hb{height:50.312812px;}
.h21{height:52.380000px;}
.h14{height:52.998047px;}
.h16{height:54.421875px;}
.h2b{height:54.558047px;}
.h3{height:58.242656px;}
.h25{height:59.092031px;}
.h4{height:59.789180px;}
.h30{height:62.100000px;}
.h34{height:62.136000px;}
.h6{height:62.327813px;}
.h7{height:63.949219px;}
.h9{height:64.546875px;}
.h2a{height:64.978594px;}
.ha{height:66.910430px;}
.he{height:70.664062px;}
.h29{height:70.738594px;}
.hd{height:72.562500px;}
.h2{height:75.093750px;}
.hc{height:99.874688px;}
.h8{height:112.640625px;}
.h2e{height:139.680000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w14{width:17.676000px;}
.w4{width:29.736000px;}
.wc{width:29.880000px;}
.wb{width:39.996000px;}
.w9{width:44.085000px;}
.w12{width:45.180000px;}
.w6{width:47.325000px;}
.w1c{width:50.940000px;}
.w5{width:52.905000px;}
.w18{width:53.280000px;}
.w1a{width:54.540000px;}
.w1b{width:59.976000px;}
.w19{width:61.056000px;}
.w11{width:62.136000px;}
.wd{width:63.360000px;}
.w13{width:75.420000px;}
.w8{width:76.845000px;}
.we{width:78.516000px;}
.w7{width:81.561000px;}
.w15{width:88.596000px;}
.wf{width:92.520000px;}
.w1d{width:97.416000px;}
.wa{width:104.040000px;}
.w17{width:106.236000px;}
.w1e{width:106.380000px;}
.w10{width:198.255000px;}
.w16{width:203.790000px;}
.w3{width:225.019500px;}
.w2{width:557.550000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x49{left:5.220000px;}
.x51{left:6.480000px;}
.x21{left:8.085000px;}
.x1f{left:9.900000px;}
.x23{left:11.865000px;}
.x34{left:13.320000px;}
.x2a{left:14.745000px;}
.x38{left:16.380000px;}
.x25{left:17.985000px;}
.x27{left:19.800000px;}
.x36{left:20.880000px;}
.x29{left:22.680000px;}
.x30{left:24.300000px;}
.x2b{left:26.100000px;}
.x1d{left:28.063500px;}
.x2c{left:29.520000px;}
.x4d{left:30.600000px;}
.x33{left:31.680000px;}
.x4e{left:33.474000px;}
.x3e{left:34.560000px;}
.x50{left:37.980000px;}
.x5{left:44.460000px;}
.x3a{left:47.745000px;}
.x52{left:48.774000px;}
.x4c{left:53.130000px;}
.x43{left:58.860000px;}
.x44{left:64.794000px;}
.x2{left:84.996000px;}
.x17{left:90.036000px;}
.x2d{left:100.476000px;}
.x4b{left:101.919000px;}
.x16{left:111.996000px;}
.x18{left:116.856000px;}
.x2f{left:120.996000px;}
.x1a{left:127.476000px;}
.x15{left:138.996000px;}
.x1c{left:146.566500px;}
.x1b{left:148.896000px;}
.x19{left:165.090000px;}
.x41{left:174.090000px;}
.x42{left:180.930000px;}
.xa{left:190.110000px;}
.x7{left:196.050000px;}
.x11{left:200.190000px;}
.x6{left:204.330000px;}
.x31{left:225.030000px;}
.x4f{left:244.875000px;}
.x32{left:265.035000px;}
.x9{left:270.795000px;}
.x8{left:277.455000px;}
.xc{left:295.275000px;}
.xb{left:302.115000px;}
.xd{left:328.755000px;}
.xf{left:342.435000px;}
.x45{left:351.255000px;}
.xe{left:354.135000px;}
.x35{left:358.275000px;}
.x2e{left:361.515000px;}
.x10{left:362.775000px;}
.x1e{left:371.595000px;}
.x14{left:397.905000px;}
.x20{left:401.340000px;}
.x3f{left:416.265000px;}
.x13{left:420.765000px;}
.x3{left:425.265000px;}
.x1{left:431.565000px;}
.x37{left:436.785000px;}
.x12{left:451.905000px;}
.x22{left:454.260000px;}
.x40{left:457.125000px;}
.x24{left:501.600000px;}
.x46{left:510.765000px;}
.x39{left:529.305000px;}
.x47{left:571.830000px;}
.x26{left:583.170000px;}
.x3b{left:591.450000px;}
.x4{left:627.270000px;}
.x3c{left:636.630000px;}
.x28{left:660.030000px;}
.x48{left:680.910000px;}
.x3d{left:712.050000px;}
.x4a{left:740.880000px;}
@media print{
.v5{vertical-align:-78.720000pt;}
.v3{vertical-align:-77.440000pt;}
.v4{vertical-align:-75.040000pt;}
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-67.200000pt;}
.v8{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.386667pt;}
.v7{vertical-align:5.120000pt;}
.v9{vertical-align:7.680000pt;}
.v6{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-0.880000pt;}
.ls21{letter-spacing:-0.736000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.416000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.837333pt;}
.ls0{letter-spacing:9.333760pt;}
.ls11{letter-spacing:10.368000pt;}
.lsd{letter-spacing:12.800000pt;}
.ls10{letter-spacing:21.248000pt;}
.lsa{letter-spacing:25.088000pt;}
.lsf{letter-spacing:43.008000pt;}
.ls4{letter-spacing:57.552640pt;}
.lsb{letter-spacing:72.336640pt;}
.ls9{letter-spacing:80.000000pt;}
.lsc{letter-spacing:172.800000pt;}
.ls18{letter-spacing:992.298667pt;}
.ls8{letter-spacing:1288.565333pt;}
.ls1{letter-spacing:1358.581333pt;}
.ws1{word-spacing:-26.688000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws12{word-spacing:-12.768000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.557333pt;}
.ws14{word-spacing:-11.264000pt;}
.wse{word-spacing:-10.918933pt;}
.wsd{word-spacing:-10.720000pt;}
.wsf{word-spacing:-9.840000pt;}
.wsc{word-spacing:-7.936000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-13.440000pt;}
._5{margin-left:-2.011733pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.062400pt;}
._2{width:2.232747pt;}
._f{width:3.712000pt;}
._d{width:4.928000pt;}
._e{width:6.016000pt;}
._6{width:7.040000pt;}
._a{width:8.025600pt;}
._9{width:9.024000pt;}
._7{width:10.112000pt;}
._10{width:11.328000pt;}
._17{width:12.512000pt;}
._15{width:13.834667pt;}
._8{width:14.848000pt;}
._14{width:17.408000pt;}
._1d{width:18.905600pt;}
._c{width:20.635733pt;}
._b{width:22.016000pt;}
._16{width:23.003733pt;}
._4{width:24.320000pt;}
._20{width:25.286400pt;}
._18{width:26.410667pt;}
._19{width:28.232533pt;}
._12{width:29.376000pt;}
._13{width:30.464000pt;}
._1a{width:47.872000pt;}
._1b{width:48.768000pt;}
._1e{width:135.040000pt;}
._11{width:172.800000pt;}
._1f{width:753.418667pt;}
._3{width:1764.245333pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y15e{bottom:-7.840000pt;}
.y16a{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:2.560000pt;}
.yf5{bottom:2.720000pt;}
.y164{bottom:2.880000pt;}
.y178{bottom:3.040000pt;}
.y138{bottom:4.000000pt;}
.y134{bottom:5.120000pt;}
.y130{bottom:5.280000pt;}
.y13e{bottom:6.080000pt;}
.y10e{bottom:6.880000pt;}
.y135{bottom:8.320000pt;}
.y110{bottom:9.440000pt;}
.yf3{bottom:9.600000pt;}
.y101{bottom:9.746667pt;}
.yf7{bottom:9.760000pt;}
.y103{bottom:9.906667pt;}
.yf9{bottom:9.920000pt;}
.y11c{bottom:9.960000pt;}
.yf2{bottom:10.880000pt;}
.y132{bottom:12.160000pt;}
.y13b{bottom:14.240000pt;}
.y2d{bottom:14.400000pt;}
.y13c{bottom:15.520000pt;}
.y111{bottom:16.320000pt;}
.yf4{bottom:16.480000pt;}
.y166{bottom:16.640000pt;}
.y180{bottom:16.680000pt;}
.y163{bottom:16.800000pt;}
.y12d{bottom:19.040000pt;}
.y137{bottom:22.400000pt;}
.y168{bottom:23.520000pt;}
.y17f{bottom:23.560000pt;}
.y185{bottom:23.680000pt;}
.y13d{bottom:24.480000pt;}
.y131{bottom:25.920000pt;}
.y141{bottom:25.960000pt;}
.y13a{bottom:28.000000pt;}
.y2c{bottom:28.160000pt;}
.y162{bottom:30.560000pt;}
.y12f{bottom:32.800000pt;}
.y12e{bottom:35.360000pt;}
.y160{bottom:58.080000pt;}
.y54{bottom:98.752000pt;}
.yb4{bottom:106.592000pt;}
.y29{bottom:115.072000pt;}
.y10b{bottom:116.832000pt;}
.y53{bottom:117.152000pt;}
.y15b{bottom:117.472000pt;}
.y74{bottom:119.232000pt;}
.y95{bottom:121.312000pt;}
.yce{bottom:125.152000pt;}
.y12b{bottom:133.786667pt;}
.yb3{bottom:134.106667pt;}
.y52{bottom:135.546667pt;}
.y15a{bottom:135.866667pt;}
.y10a{bottom:137.626667pt;}
.y28{bottom:143.226667pt;}
.y73{bottom:146.906667pt;}
.y94{bottom:148.826667pt;}
.ycd{bottom:152.826667pt;}
.y51{bottom:153.946667pt;}
.y109{bottom:158.266667pt;}
.y159{bottom:160.026667pt;}
.yb2{bottom:161.466667pt;}
.ye5{bottom:167.386667pt;}
.y50{bottom:172.346667pt;}
.y72{bottom:174.426667pt;}
.y93{bottom:176.506667pt;}
.y108{bottom:178.906667pt;}
.yb1{bottom:179.546667pt;}
.ycc{bottom:180.346667pt;}
.y158{bottom:180.826667pt;}
.y12a{bottom:188.986667pt;}
.y27{bottom:189.786667pt;}
.y4f{bottom:190.746667pt;}
.y184{bottom:192.346667pt;}
.ye4{bottom:194.906667pt;}
.yb0{bottom:196.346667pt;}
.y19a{bottom:198.746667pt;}
.y107{bottom:199.706667pt;}
.y92{bottom:204.026667pt;}
.y26{bottom:204.986667pt;}
.y4e{bottom:209.146667pt;}
.y71{bottom:210.106667pt;}
.ycb{bottom:213.306667pt;}
.y129{bottom:216.666667pt;}
.y183{bottom:219.866667pt;}
.ye3{bottom:222.266667pt;}
.y25{bottom:222.906667pt;}
.y106{bottom:223.546667pt;}
.yaf{bottom:223.866667pt;}
.y199{bottom:226.426667pt;}
.y4d{bottom:227.546667pt;}
.y91{bottom:231.706667pt;}
.y70{bottom:237.626667pt;}
.y105{bottom:238.120000pt;}
.yca{bottom:240.986667pt;}
.y4c{bottom:245.946667pt;}
.y182{bottom:247.546667pt;}
.y198{bottom:250.746667pt;}
.yae{bottom:251.386667pt;}
.y142{bottom:252.506667pt;}
.y24{bottom:257.786667pt;}
.y104{bottom:258.760000pt;}
.y90{bottom:259.226667pt;}
.y4b{bottom:264.346667pt;}
.y6f{bottom:265.306667pt;}
.yc9{bottom:268.506667pt;}
.y181{bottom:275.066667pt;}
.yad{bottom:278.746667pt;}
.y102{bottom:279.400000pt;}
.y197{bottom:280.026667pt;}
.y23{bottom:280.826667pt;}
.y4a{bottom:282.746667pt;}
.y8f{bottom:286.906667pt;}
.y140{bottom:289.306667pt;}
.y6e{bottom:292.826667pt;}
.ye2{bottom:296.186667pt;}
.y100{bottom:300.200000pt;}
.y49{bottom:301.146667pt;}
.y17e{bottom:302.746667pt;}
.y22{bottom:303.866667pt;}
.yc8{bottom:304.186667pt;}
.yac{bottom:306.266667pt;}
.y196{bottom:307.706667pt;}
.y8e{bottom:314.426667pt;}
.y48{bottom:319.586667pt;}
.yff{bottom:320.866667pt;}
.ye1{bottom:323.746667pt;}
.y13f{bottom:326.146667pt;}
.y21{bottom:326.626667pt;}
.y6d{bottom:328.546667pt;}
.y17d{bottom:330.306667pt;}
.yc7{bottom:331.746667pt;}
.y195{bottom:335.266667pt;}
.y47{bottom:337.986667pt;}
.yab{bottom:339.586667pt;}
.yfe{bottom:341.506667pt;}
.y8d{bottom:342.146667pt;}
.y20{bottom:349.666667pt;}
.ye0{bottom:351.426667pt;}
.y6c{bottom:356.066667pt;}
.y46{bottom:356.386667pt;}
.y17c{bottom:357.986667pt;}
.yc6{bottom:359.266667pt;}
.yfd{bottom:362.946667pt;}
.yaa{bottom:367.266667pt;}
.y8c{bottom:369.666667pt;}
.y1f{bottom:372.866667pt;}
.y45{bottom:374.786667pt;}
.ydf{bottom:378.946667pt;}
.yfc{bottom:383.586667pt;}
.y17b{bottom:385.506667pt;}
.y194{bottom:390.466667pt;}
.y6b{bottom:391.586667pt;}
.y44{bottom:393.186667pt;}
.yc5{bottom:394.946667pt;}
.y1e{bottom:395.906667pt;}
.ya9{bottom:396.066667pt;}
.y8b{bottom:397.346667pt;}
.y139{bottom:399.746667pt;}
.yfb{bottom:404.386667pt;}
.yde{bottom:406.626667pt;}
.y17a{bottom:413.186667pt;}
.y1d{bottom:418.786667pt;}
.y6a{bottom:419.266667pt;}
.y43{bottom:420.706667pt;}
.yc4{bottom:422.626667pt;}
.ya8{bottom:424.706667pt;}
.y8a{bottom:424.866667pt;}
.yfa{bottom:425.026667pt;}
.y193{bottom:425.986667pt;}
.y179{bottom:433.186667pt;}
.ydd{bottom:434.146667pt;}
.y136{bottom:438.626667pt;}
.y1c{bottom:441.826667pt;}
.yf8{bottom:445.666667pt;}
.y69{bottom:446.786667pt;}
.y42{bottom:448.706667pt;}
.yc3{bottom:450.146667pt;}
.y89{bottom:452.386667pt;}
.ya7{bottom:453.506667pt;}
.y192{bottom:453.666667pt;}
.y177{bottom:460.706667pt;}
.ydc{bottom:461.826667pt;}
.y1b{bottom:464.706667pt;}
.yf6{bottom:466.466667pt;}
.y68{bottom:474.466667pt;}
.y12c{bottom:476.066667pt;}
.y41{bottom:476.866667pt;}
.yc2{bottom:477.826667pt;}
.y88{bottom:480.066667pt;}
.ya6{bottom:481.026667pt;}
.y191{bottom:481.186667pt;}
.y1a{bottom:487.746667pt;}
.y176{bottom:488.386667pt;}
.ydb{bottom:489.346667pt;}
.y67{bottom:501.986667pt;}
.y133{bottom:503.746667pt;}
.yc1{bottom:505.346667pt;}
.y87{bottom:507.586667pt;}
.y190{bottom:508.866667pt;}
.ya5{bottom:511.426667pt;}
.y154{bottom:514.146667pt;}
.y175{bottom:515.906667pt;}
.yf1{bottom:516.066667pt;}
.yda{bottom:517.026667pt;}
.y19{bottom:519.266667pt;}
.y40{bottom:524.386667pt;}
.y66{bottom:529.666667pt;}
.y128{bottom:531.586667pt;}
.yc0{bottom:533.026667pt;}
.y86{bottom:535.266667pt;}
.y127{bottom:535.746667pt;}
.y18f{bottom:536.386667pt;}
.ya4{bottom:540.066667pt;}
.y153{bottom:540.546667pt;}
.y3f{bottom:542.786667pt;}
.y174{bottom:543.586667pt;}
.yd9{bottom:544.546667pt;}
.y126{bottom:549.533333pt;}
.y18{bottom:552.093333pt;}
.yf0{bottom:555.773333pt;}
.ybf{bottom:560.573333pt;}
.y3e{bottom:561.213333pt;}
.y85{bottom:562.813333pt;}
.y173{bottom:563.613333pt;}
.y18e{bottom:564.093333pt;}
.y65{bottom:564.893333pt;}
.ya3{bottom:567.773333pt;}
.y152{bottom:568.093333pt;}
.yd8{bottom:572.253333pt;}
.y125{bottom:573.373333pt;}
.y17{bottom:575.133333pt;}
.yef{bottom:579.613333pt;}
.ybe{bottom:588.253333pt;}
.y84{bottom:590.493333pt;}
.y172{bottom:591.133333pt;}
.y18d{bottom:591.613333pt;}
.y151{bottom:595.773333pt;}
.ya2{bottom:598.013333pt;}
.y3d{bottom:598.813333pt;}
.y64{bottom:599.773333pt;}
.y16{bottom:600.093333pt;}
.y124{bottom:601.053333pt;}
.yee{bottom:607.293333pt;}
.ybd{bottom:611.933333pt;}
.y83{bottom:617.693333pt;}
.y171{bottom:618.813333pt;}
.y18c{bottom:619.293333pt;}
.y150{bottom:623.293333pt;}
.ybc{bottom:626.013333pt;}
.ya1{bottom:626.813333pt;}
.y63{bottom:627.293333pt;}
.yd7{bottom:627.453333pt;}
.y15{bottom:627.773333pt;}
.y123{bottom:628.573333pt;}
.yed{bottom:634.813333pt;}
.y3c{bottom:641.693333pt;}
.y82{bottom:645.693333pt;}
.y170{bottom:646.333333pt;}
.y18b{bottom:646.813333pt;}
.y14f{bottom:650.973333pt;}
.y14{bottom:653.213333pt;}
.ybb{bottom:653.693333pt;}
.y62{bottom:654.813333pt;}
.yd6{bottom:654.973333pt;}
.ya0{bottom:655.613333pt;}
.y122{bottom:656.253333pt;}
.yec{bottom:662.493333pt;}
.y3b{bottom:665.053333pt;}
.y81{bottom:672.893333pt;}
.y16f{bottom:674.013333pt;}
.y18a{bottom:674.493333pt;}
.y13{bottom:676.413333pt;}
.y14e{bottom:678.493333pt;}
.yba{bottom:681.213333pt;}
.y61{bottom:682.493333pt;}
.y121{bottom:683.773333pt;}
.y9f{bottom:684.253333pt;}
.yeb{bottom:690.013333pt;}
.y16e{bottom:694.013333pt;}
.y12{bottom:699.453333pt;}
.y80{bottom:700.573333pt;}
.yd5{bottom:701.213333pt;}
.y189{bottom:702.013333pt;}
.y3a{bottom:703.133333pt;}
.y120{bottom:703.933333pt;}
.y14d{bottom:706.173333pt;}
.yb9{bottom:708.893333pt;}
.y60{bottom:710.013333pt;}
.y11f{bottom:710.493333pt;}
.y9e{bottom:713.053333pt;}
.yea{bottom:717.533333pt;}
.yd4{bottom:719.133333pt;}
.y16d{bottom:721.533333pt;}
.y11{bottom:722.493333pt;}
.y39{bottom:726.493333pt;}
.y11e{bottom:731.293333pt;}
.y14c{bottom:733.693333pt;}
.yb8{bottom:736.413333pt;}
.y5f{bottom:737.693333pt;}
.y9d{bottom:741.853333pt;}
.y7f{bottom:744.413333pt;}
.ye9{bottom:745.213333pt;}
.y38{bottom:746.013333pt;}
.y10{bottom:747.293333pt;}
.y16c{bottom:749.213333pt;}
.y11d{bottom:751.933333pt;}
.yd3{bottom:760.253333pt;}
.y14b{bottom:761.373333pt;}
.yb7{bottom:764.093333pt;}
.y5e{bottom:765.213333pt;}
.y9c{bottom:769.373333pt;}
.y7e{bottom:772.093333pt;}
.y11b{bottom:772.573333pt;}
.ye8{bottom:772.733333pt;}
.yf{bottom:774.973333pt;}
.y16b{bottom:776.773333pt;}
.yd2{bottom:787.973333pt;}
.y37{bottom:788.133333pt;}
.y14a{bottom:788.933333pt;}
.yb6{bottom:791.653333pt;}
.y5d{bottom:792.933333pt;}
.y11a{bottom:793.413333pt;}
.y7d{bottom:799.653333pt;}
.ye7{bottom:800.133333pt;}
.ye{bottom:802.533333pt;}
.y169{bottom:804.453333pt;}
.y9b{bottom:804.933333pt;}
.y36{bottom:806.533333pt;}
.y119{bottom:814.053333pt;}
.yd1{bottom:815.653333pt;}
.y149{bottom:816.613333pt;}
.yb5{bottom:819.013333pt;}
.y5c{bottom:820.453333pt;}
.y15f{bottom:824.453333pt;}
.y35{bottom:824.933333pt;}
.y7c{bottom:827.333333pt;}
.ye6{bottom:828.133333pt;}
.yd{bottom:830.213333pt;}
.y9a{bottom:834.213333pt;}
.y118{bottom:835.493333pt;}
.y34{bottom:843.333333pt;}
.y148{bottom:844.133333pt;}
.yd0{bottom:847.173333pt;}
.y5b{bottom:848.133333pt;}
.yc{bottom:848.773333pt;}
.y167{bottom:851.973333pt;}
.y7b{bottom:854.853333pt;}
.y117{bottom:856.133333pt;}
.y99{bottom:863.333333pt;}
.y33{bottom:870.533333pt;}
.y147{bottom:871.813333pt;}
.y5a{bottom:875.653333pt;}
.y116{bottom:876.773333pt;}
.y165{bottom:879.653333pt;}
.ycf{bottom:881.893333pt;}
.y7a{bottom:882.533333pt;}
.yb{bottom:885.573333pt;}
.y98{bottom:892.453333pt;}
.y115{bottom:897.573333pt;}
.y32{bottom:898.533333pt;}
.y146{bottom:899.333333pt;}
.y59{bottom:903.333333pt;}
.ya{bottom:903.973333pt;}
.y161{bottom:907.173333pt;}
.y79{bottom:910.053333pt;}
.y188{bottom:911.333333pt;}
.y114{bottom:918.213333pt;}
.y97{bottom:921.573333pt;}
.y9{bottom:922.213333pt;}
.y31{bottom:926.693333pt;}
.y145{bottom:927.013333pt;}
.y78{bottom:937.733333pt;}
.y113{bottom:938.853333pt;}
.y15d{bottom:948.613333pt;}
.y58{bottom:949.413333pt;}
.y144{bottom:954.533333pt;}
.y30{bottom:954.853333pt;}
.y15c{bottom:956.133333pt;}
.y96{bottom:957.253333pt;}
.y8{bottom:957.413333pt;}
.y10f{bottom:960.293333pt;}
.y77{bottom:965.253333pt;}
.y187{bottom:966.533333pt;}
.y57{bottom:967.813333pt;}
.y7{bottom:969.573333pt;}
.y143{bottom:971.173333pt;}
.y6{bottom:985.733333pt;}
.y56{bottom:985.893333pt;}
.y10d{bottom:988.613333pt;}
.y76{bottom:992.933333pt;}
.y157{bottom:993.573333pt;}
.y186{bottom:994.053333pt;}
.y5{bottom:1001.893333pt;}
.y2f{bottom:1002.213333pt;}
.y156{bottom:1007.013333pt;}
.y4{bottom:1018.080000pt;}
.y55{bottom:1020.320000pt;}
.y75{bottom:1020.480000pt;}
.y2e{bottom:1020.640000pt;}
.y155{bottom:1021.760000pt;}
.y10c{bottom:1024.160000pt;}
.y3{bottom:1034.400000pt;}
.y2b{bottom:1039.040000pt;}
.y2{bottom:1051.520000pt;}
.y2a{bottom:1062.720000pt;}
.y1{bottom:1069.920000pt;}
.h10{height:5.025000pt;}
.h2d{height:6.880000pt;}
.hf{height:15.703125pt;}
.h22{height:18.880000pt;}
.h31{height:20.000000pt;}
.h33{height:20.032000pt;}
.h18{height:20.626667pt;}
.h1e{height:20.640000pt;}
.h1a{height:20.658667pt;}
.h19{height:20.786667pt;}
.h1f{height:20.800000pt;}
.h1d{height:20.820000pt;}
.h1b{height:25.786667pt;}
.h20{height:26.381250pt;}
.h1c{height:27.506667pt;}
.h2c{height:27.520000pt;}
.h32{height:27.552000pt;}
.h17{height:27.666667pt;}
.h23{height:27.680000pt;}
.h15{height:29.786667pt;}
.h11{height:31.406250pt;}
.h5{height:36.177500pt;}
.h24{height:36.800000pt;}
.h27{height:36.832000pt;}
.h28{height:37.410000pt;}
.h12{height:38.441250pt;}
.h26{height:38.880000pt;}
.h13{height:40.163750pt;}
.h2f{height:41.440000pt;}
.hb{height:44.722500pt;}
.h21{height:46.560000pt;}
.h14{height:47.109375pt;}
.h16{height:48.375000pt;}
.h2b{height:48.496042pt;}
.h3{height:51.771250pt;}
.h25{height:52.526250pt;}
.h4{height:53.145938pt;}
.h30{height:55.200000pt;}
.h34{height:55.232000pt;}
.h6{height:55.402500pt;}
.h7{height:56.843750pt;}
.h9{height:57.375000pt;}
.h2a{height:57.758750pt;}
.ha{height:59.475937pt;}
.he{height:62.812500pt;}
.h29{height:62.878750pt;}
.hd{height:64.500000pt;}
.h2{height:66.750000pt;}
.hc{height:88.777500pt;}
.h8{height:100.125000pt;}
.h2e{height:124.160000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w14{width:15.712000pt;}
.w4{width:26.432000pt;}
.wc{width:26.560000pt;}
.wb{width:35.552000pt;}
.w9{width:39.186667pt;}
.w12{width:40.160000pt;}
.w6{width:42.066667pt;}
.w1c{width:45.280000pt;}
.w5{width:47.026667pt;}
.w18{width:47.360000pt;}
.w1a{width:48.480000pt;}
.w1b{width:53.312000pt;}
.w19{width:54.272000pt;}
.w11{width:55.232000pt;}
.wd{width:56.320000pt;}
.w13{width:67.040000pt;}
.w8{width:68.306667pt;}
.we{width:69.792000pt;}
.w7{width:72.498667pt;}
.w15{width:78.752000pt;}
.wf{width:82.240000pt;}
.w1d{width:86.592000pt;}
.wa{width:92.480000pt;}
.w17{width:94.432000pt;}
.w1e{width:94.560000pt;}
.w10{width:176.226667pt;}
.w16{width:181.146667pt;}
.w3{width:200.017333pt;}
.w2{width:495.600000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x49{left:4.640000pt;}
.x51{left:5.760000pt;}
.x21{left:7.186667pt;}
.x1f{left:8.800000pt;}
.x23{left:10.546667pt;}
.x34{left:11.840000pt;}
.x2a{left:13.106667pt;}
.x38{left:14.560000pt;}
.x25{left:15.986667pt;}
.x27{left:17.600000pt;}
.x36{left:18.560000pt;}
.x29{left:20.160000pt;}
.x30{left:21.600000pt;}
.x2b{left:23.200000pt;}
.x1d{left:24.945333pt;}
.x2c{left:26.240000pt;}
.x4d{left:27.200000pt;}
.x33{left:28.160000pt;}
.x4e{left:29.754667pt;}
.x3e{left:30.720000pt;}
.x50{left:33.760000pt;}
.x5{left:39.520000pt;}
.x3a{left:42.440000pt;}
.x52{left:43.354667pt;}
.x4c{left:47.226667pt;}
.x43{left:52.320000pt;}
.x44{left:57.594667pt;}
.x2{left:75.552000pt;}
.x17{left:80.032000pt;}
.x2d{left:89.312000pt;}
.x4b{left:90.594667pt;}
.x16{left:99.552000pt;}
.x18{left:103.872000pt;}
.x2f{left:107.552000pt;}
.x1a{left:113.312000pt;}
.x15{left:123.552000pt;}
.x1c{left:130.281333pt;}
.x1b{left:132.352000pt;}
.x19{left:146.746667pt;}
.x41{left:154.746667pt;}
.x42{left:160.826667pt;}
.xa{left:168.986667pt;}
.x7{left:174.266667pt;}
.x11{left:177.946667pt;}
.x6{left:181.626667pt;}
.x31{left:200.026667pt;}
.x4f{left:217.666667pt;}
.x32{left:235.586667pt;}
.x9{left:240.706667pt;}
.x8{left:246.626667pt;}
.xc{left:262.466667pt;}
.xb{left:268.546667pt;}
.xd{left:292.226667pt;}
.xf{left:304.386667pt;}
.x45{left:312.226667pt;}
.xe{left:314.786667pt;}
.x35{left:318.466667pt;}
.x2e{left:321.346667pt;}
.x10{left:322.466667pt;}
.x1e{left:330.306667pt;}
.x14{left:353.693333pt;}
.x20{left:356.746667pt;}
.x3f{left:370.013333pt;}
.x13{left:374.013333pt;}
.x3{left:378.013333pt;}
.x1{left:383.613333pt;}
.x37{left:388.253333pt;}
.x12{left:401.693333pt;}
.x22{left:403.786667pt;}
.x40{left:406.333333pt;}
.x24{left:445.866667pt;}
.x46{left:454.013333pt;}
.x39{left:470.493333pt;}
.x47{left:508.293333pt;}
.x26{left:518.373333pt;}
.x3b{left:525.733333pt;}
.x4{left:557.573333pt;}
.x3c{left:565.893333pt;}
.x28{left:586.693333pt;}
.x48{left:605.253333pt;}
.x3d{left:632.933333pt;}
.x4a{left:658.560000pt;}
}




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