
    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_21e5427fa5a33d7a828a6d68.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b1556fc9e619788b825fcc40.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_78dc99bdef121e253a1fccd8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4706ee5fffb0488e86ea8766.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c034a51e976fd110680f8eb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.060000px;}
.v1{vertical-align:23.760000px;}
.ls36{letter-spacing:-1.800000px;}
.ls33{letter-spacing:-1.182000px;}
.ls2c{letter-spacing:-1.134000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.774000px;}
.ls1d{letter-spacing:-0.666000px;}
.ls28{letter-spacing:-0.513600px;}
.ls24{letter-spacing:-0.460200px;}
.ls2d{letter-spacing:-0.413400px;}
.ls17{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.305400px;}
.ls3a{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.109200px;}
.ls2e{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.lsd{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.017280px;}
.ls10{letter-spacing:0.037440px;}
.ls1c{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls25{letter-spacing:0.153600px;}
.ls21{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.206400px;}
.ls1e{letter-spacing:0.259800px;}
.ls40{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.306600px;}
.lsc{letter-spacing:0.360000px;}
.ls3b{letter-spacing:0.460200px;}
.ls43{letter-spacing:0.466800px;}
.ls20{letter-spacing:0.562800px;}
.ls3e{letter-spacing:0.612000px;}
.ls18{letter-spacing:0.666000px;}
.ls41{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.774000px;}
.ls15{letter-spacing:0.828000px;}
.lsa{letter-spacing:0.900000px;}
.ls35{letter-spacing:0.924000px;}
.ls2a{letter-spacing:0.926640px;}
.ls29{letter-spacing:0.978000px;}
.ls13{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.134720px;}
.lse{letter-spacing:1.188000px;}
.ls3{letter-spacing:1.330560px;}
.ls1{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls22{letter-spacing:2.340000px;}
.ls3d{letter-spacing:3.060000px;}
.ls1a{letter-spacing:3.780000px;}
.ls27{letter-spacing:4.500000px;}
.ls26{letter-spacing:5.940000px;}
.ls9{letter-spacing:6.660000px;}
.ls3c{letter-spacing:7.380000px;}
.ls23{letter-spacing:8.820000px;}
.ls30{letter-spacing:9.540000px;}
.ls32{letter-spacing:10.260000px;}
.ls2f{letter-spacing:10.980000px;}
.ls38{letter-spacing:11.466720px;}
.lsb{letter-spacing:11.700000px;}
.ls37{letter-spacing:17.460000px;}
.ls1b{letter-spacing:18.900000px;}
.ls34{letter-spacing:41.850720px;}
.ls42{letter-spacing:42.660000px;}
.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;}
}
.ws4{word-spacing:-23.977440px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.450800px;}
.ws5{word-spacing:-16.254600px;}
.wsa{word-spacing:-16.020000px;}
.ws1a{word-spacing:-15.918000px;}
.ws1f{word-spacing:-15.864000px;}
.wsc{word-spacing:-15.768000px;}
.ws25{word-spacing:-15.714000px;}
.ws10{word-spacing:-15.606000px;}
.ws24{word-spacing:-15.552000px;}
.ws27{word-spacing:-15.406800px;}
.ws23{word-spacing:-15.400200px;}
.ws8{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.ws26{word-spacing:-15.238800px;}
.ws15{word-spacing:-15.199800px;}
.ws21{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws1d{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.733600px;}
.ws0{word-spacing:-14.688000px;}
.ws22{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.526600px;}
.ws17{word-spacing:-14.479800px;}
.ws19{word-spacing:-14.426400px;}
.ws14{word-spacing:-14.274000px;}
.ws16{word-spacing:-14.166000px;}
.ws1b{word-spacing:-13.860000px;}
.ws1e{word-spacing:-13.758000px;}
.ws1{word-spacing:-13.500000px;}
.ws20{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.ws12{word-spacing:0.000000px;}
._3{margin-left:-2616.654000px;}
._7{margin-left:-1594.356480px;}
._5{margin-left:-1366.159680px;}
._6{margin-left:-997.269120px;}
._8{margin-left:-576.095520px;}
._9{margin-left:-8.544960px;}
._14{margin-left:-7.307760px;}
._a{margin-left:-5.082720px;}
._b{margin-left:-3.643200px;}
._c{margin-left:-2.297040px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.466000px;}
._1{width:3.810000px;}
._11{width:5.374080px;}
._10{width:6.521040px;}
._f{width:7.647120px;}
._d{width:8.824800px;}
._e{width:10.099440px;}
._13{width:11.165520px;}
._12{width:12.216960px;}
._17{width:13.794480px;}
._16{width:16.153920px;}
._15{width:17.270640px;}
._18{width:18.881280px;}
._1a{width:19.897920px;}
._19{width:21.420000px;}
._1d{width:24.449520px;}
._1e{width:31.667040px;}
._1b{width:118.640160px;}
._1c{width:190.483680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.240000px;}
.ybb{bottom:3.420000px;}
.yd5{bottom:3.600000px;}
.ybc{bottom:3.780000px;}
.yca{bottom:3.960000px;}
.ybe{bottom:4.320000px;}
.yf0{bottom:4.680000px;}
.yc0{bottom:5.040000px;}
.y148{bottom:5.760000px;}
.y102{bottom:6.120000px;}
.y152{bottom:6.300000px;}
.y109{bottom:6.660000px;}
.ye0{bottom:7.200000px;}
.y146{bottom:7.380000px;}
.y158{bottom:9.000000px;}
.y13e{bottom:10.080000px;}
.y13a{bottom:10.260000px;}
.y117{bottom:10.620000px;}
.y13c{bottom:10.980000px;}
.y132{bottom:11.880000px;}
.y135{bottom:12.060000px;}
.ycd{bottom:12.420000px;}
.y130{bottom:12.600000px;}
.y143{bottom:12.780000px;}
.y107{bottom:18.180000px;}
.yf4{bottom:20.520000px;}
.yfe{bottom:20.700000px;}
.yd0{bottom:20.880000px;}
.yd2{bottom:21.054000px;}
.yf8{bottom:21.060000px;}
.yef{bottom:21.960000px;}
.y101{bottom:25.950000px;}
.y105{bottom:26.100000px;}
.y157{bottom:26.280000px;}
.y12f{bottom:29.880000px;}
.yf3{bottom:37.800000px;}
.yfd{bottom:37.980000px;}
.yf6{bottom:38.160000px;}
.yfa{bottom:38.340000px;}
.y104{bottom:45.900000px;}
.y100{bottom:45.930000px;}
.y115{bottom:48.960000px;}
.y6{bottom:61.056000px;}
.y114{bottom:68.940000px;}
.y15d{bottom:86.616000px;}
.y113{bottom:88.740000px;}
.yd6{bottom:90.396000px;}
.y35{bottom:91.296000px;}
.y170{bottom:93.096000px;}
.y12b{bottom:97.956000px;}
.y15c{bottom:103.356000px;}
.y6c{bottom:103.896000px;}
.yd4{bottom:104.976000px;}
.y9b{bottom:105.696000px;}
.y112{bottom:108.540000px;}
.y34{bottom:111.276000px;}
.y16f{bottom:112.896000px;}
.y12a{bottom:117.756000px;}
.yd3{bottom:122.796000px;}
.y6b{bottom:123.696000px;}
.y9a{bottom:125.676000px;}
.y33{bottom:131.076000px;}
.y171{bottom:132.696000px;}
.y16e{bottom:132.876000px;}
.y129{bottom:137.736000px;}
.yd1{bottom:140.796000px;}
.y6a{bottom:143.676000px;}
.y99{bottom:145.476000px;}
.y32{bottom:150.870000px;}
.y16d{bottom:152.670000px;}
.y128{bottom:157.530000px;}
.y69{bottom:163.470000px;}
.y98{bottom:165.270000px;}
.y31{bottom:170.670000px;}
.y16c{bottom:172.470000px;}
.yfc{bottom:173.730000px;}
.ycf{bottom:176.070000px;}
.y127{bottom:177.330000px;}
.y68{bottom:183.270000px;}
.ya2{bottom:184.710000px;}
.y97{bottom:185.070000px;}
.y30{bottom:190.470000px;}
.y16b{bottom:192.270000px;}
.y126{bottom:197.130000px;}
.y67{bottom:202.710000px;}
.yb5{bottom:203.070000px;}
.y96{bottom:204.870000px;}
.y2f{bottom:210.450000px;}
.yce{bottom:211.170000px;}
.y16a{bottom:212.070000px;}
.ya1{bottom:213.870000px;}
.y125{bottom:216.930000px;}
.yb4{bottom:222.870000px;}
.y95{bottom:224.490000px;}
.yfb{bottom:225.930000px;}
.y2e{bottom:230.250000px;}
.y124{bottom:230.610000px;}
.y66{bottom:231.870000px;}
.y169{bottom:232.050000px;}
.ya0{bottom:233.850000px;}
.ycc{bottom:237.810000px;}
.yb3{bottom:242.850000px;}
.y2d{bottom:250.050000px;}
.y65{bottom:251.850000px;}
.y94{bottom:253.650000px;}
.yb2{bottom:262.650000px;}
.ycb{bottom:264.450000px;}
.y2c{bottom:269.850000px;}
.y168{bottom:271.290000px;}
.y64{bottom:271.650000px;}
.y93{bottom:273.450000px;}
.yf9{bottom:278.310000px;}
.yb1{bottom:282.450000px;}
.y2b{bottom:289.650000px;}
.y15b{bottom:291.270000px;}
.y63{bottom:291.450000px;}
.y92{bottom:293.250000px;}
.yc9{bottom:300.450000px;}
.yb0{bottom:302.250000px;}
.y2a{bottom:309.630000px;}
.y62{bottom:311.250000px;}
.y15a{bottom:311.430000px;}
.y91{bottom:313.050000px;}
.yaf{bottom:322.050000px;}
.yc8{bottom:324.930000px;}
.y29{bottom:329.475000px;}
.yf7{bottom:330.915000px;}
.y61{bottom:331.095000px;}
.y159{bottom:331.275000px;}
.y90{bottom:333.075000px;}
.yae{bottom:342.075000px;}
.yc7{bottom:344.775000px;}
.y156{bottom:345.675000px;}
.y28{bottom:349.275000px;}
.y60{bottom:351.075000px;}
.y8f{bottom:352.875000px;}
.yad{bottom:361.515000px;}
.yc6{bottom:364.575000px;}
.y27{bottom:369.075000px;}
.y5f{bottom:370.875000px;}
.y8e{bottom:372.675000px;}
.yac{bottom:381.675000px;}
.yf5{bottom:383.475000px;}
.yc5{bottom:384.375000px;}
.y155{bottom:386.175000px;}
.y26{bottom:388.875000px;}
.y5e{bottom:390.675000px;}
.y8d{bottom:392.475000px;}
.yab{bottom:401.475000px;}
.yc4{bottom:404.175000px;}
.y154{bottom:406.695000px;}
.y25{bottom:408.855000px;}
.y5d{bottom:410.475000px;}
.y8c{bottom:412.275000px;}
.yaa{bottom:421.275000px;}
.yc3{bottom:424.155000px;}
.y153{bottom:427.215000px;}
.y24{bottom:428.655000px;}
.y5c{bottom:430.275000px;}
.y167{bottom:430.455000px;}
.y8b{bottom:432.255000px;}
.yf2{bottom:435.855000px;}
.ya9{bottom:441.255000px;}
.yc2{bottom:443.955000px;}
.y151{bottom:447.735000px;}
.y23{bottom:448.455000px;}
.y5b{bottom:450.255000px;}
.y8a{bottom:452.055000px;}
.ya8{bottom:461.055000px;}
.yc1{bottom:463.755000px;}
.y22{bottom:468.255000px;}
.y5a{bottom:470.055000px;}
.y89{bottom:471.855000px;}
.y150{bottom:474.015000px;}
.ybf{bottom:478.155000px;}
.ya7{bottom:480.855000px;}
.yf1{bottom:487.875000px;}
.y21{bottom:488.055000px;}
.y59{bottom:489.495000px;}
.y166{bottom:489.855000px;}
.y88{bottom:491.655000px;}
.y14f{bottom:494.175000px;}
.ybd{bottom:497.595000px;}
.ya6{bottom:500.655000px;}
.yee{bottom:506.055000px;}
.y123{bottom:507.315000px;}
.y20{bottom:508.035000px;}
.y58{bottom:509.655000px;}
.y87{bottom:511.455000px;}
.y14e{bottom:513.975000px;}
.yba{bottom:516.135000px;}
.ya5{bottom:520.455000px;}
.y122{bottom:527.475000px;}
.y1f{bottom:527.835000px;}
.y57{bottom:529.455000px;}
.y165{bottom:529.635000px;}
.y86{bottom:531.435000px;}
.y14d{bottom:533.955000px;}
.yb9{bottom:540.075000px;}
.ya4{bottom:540.435000px;}
.y121{bottom:547.275000px;}
.y1e{bottom:547.635000px;}
.yed{bottom:547.995000px;}
.y56{bottom:549.435000px;}
.y85{bottom:551.235000px;}
.y14c{bottom:553.755000px;}
.y9f{bottom:560.235000px;}
.y120{bottom:567.075000px;}
.y1d{bottom:567.435000px;}
.yec{bottom:568.155000px;}
.y55{bottom:569.235000px;}
.y84{bottom:571.035000px;}
.y14b{bottom:573.555000px;}
.ya3{bottom:579.675000px;}
.y9e{bottom:580.035000px;}
.y11f{bottom:587.055000px;}
.y1c{bottom:587.235000px;}
.yeb{bottom:587.955000px;}
.y164{bottom:588.675000px;}
.y54{bottom:589.035000px;}
.y83{bottom:590.475000px;}
.y14a{bottom:592.995000px;}
.y9d{bottom:599.865000px;}
.y11e{bottom:606.885000px;}
.y1b{bottom:607.245000px;}
.yea{bottom:607.785000px;}
.y53{bottom:608.865000px;}
.y149{bottom:613.185000px;}
.y82{bottom:619.665000px;}
.y1a{bottom:626.685000px;}
.ye9{bottom:627.765000px;}
.y52{bottom:628.665000px;}
.y163{bottom:628.845000px;}
.yb8{bottom:639.285000px;}
.y81{bottom:639.645000px;}
.y11d{bottom:646.485000px;}
.y19{bottom:646.845000px;}
.y147{bottom:647.025000px;}
.ye8{bottom:647.565000px;}
.y51{bottom:648.645000px;}
.y80{bottom:659.445000px;}
.y11c{bottom:666.285000px;}
.y145{bottom:667.005000px;}
.ye7{bottom:667.365000px;}
.y50{bottom:668.445000px;}
.y18{bottom:668.985000px;}
.y7f{bottom:679.245000px;}
.y11b{bottom:686.265000px;}
.ye6{bottom:687.165000px;}
.yb7{bottom:687.885000px;}
.y4f{bottom:688.245000px;}
.y144{bottom:688.605000px;}
.y17{bottom:697.785000px;}
.y7e{bottom:699.045000px;}
.y111{bottom:700.665000px;}
.ye5{bottom:706.965000px;}
.y4e{bottom:708.045000px;}
.y142{bottom:710.025000px;}
.y16{bottom:717.585000px;}
.y7d{bottom:718.845000px;}
.y11a{bottom:722.265000px;}
.ye4{bottom:726.945000px;}
.y4d{bottom:727.845000px;}
.y162{bottom:728.025000px;}
.y15{bottom:737.385000px;}
.y7c{bottom:738.825000px;}
.ye3{bottom:741.345000px;}
.y141{bottom:743.145000px;}
.y4c{bottom:747.825000px;}
.y14{bottom:757.365000px;}
.y119{bottom:757.545000px;}
.y7b{bottom:758.625000px;}
.ye2{bottom:759.525000px;}
.y140{bottom:762.945000px;}
.y4b{bottom:767.625000px;}
.y13{bottom:777.165000px;}
.y13f{bottom:777.345000px;}
.y118{bottom:778.065000px;}
.y7a{bottom:778.425000px;}
.y4a{bottom:787.425000px;}
.y173{bottom:787.965000px;}
.ye1{bottom:794.805000px;}
.y12{bottom:796.965000px;}
.y79{bottom:798.225000px;}
.y116{bottom:798.585000px;}
.y13d{bottom:801.825000px;}
.y172{bottom:805.965000px;}
.y49{bottom:807.225000px;}
.ydf{bottom:812.805000px;}
.y11{bottom:816.765000px;}
.y78{bottom:818.025000px;}
.y110{bottom:823.605000px;}
.y13b{bottom:826.125000px;}
.y48{bottom:827.025000px;}
.y161{bottom:827.205000px;}
.yde{bottom:834.405000px;}
.y10{bottom:836.565000px;}
.y77{bottom:838.005000px;}
.y47{bottom:847.005000px;}
.y139{bottom:851.325000px;}
.ydd{bottom:852.405000px;}
.yf{bottom:856.545000px;}
.y76{bottom:857.805000px;}
.y46{bottom:866.850000px;}
.y10f{bottom:869.910000px;}
.ydc{bottom:870.450000px;}
.ye{bottom:876.390000px;}
.y75{bottom:877.650000px;}
.y138{bottom:881.610000px;}
.y45{bottom:886.650000px;}
.ydb{bottom:888.450000px;}
.y10e{bottom:890.070000px;}
.yd{bottom:896.190000px;}
.y74{bottom:897.450000px;}
.y137{bottom:901.410000px;}
.y44{bottom:906.450000px;}
.yda{bottom:906.630000px;}
.y10d{bottom:909.870000px;}
.yc{bottom:915.990000px;}
.y136{bottom:916.170000px;}
.y73{bottom:917.250000px;}
.yb6{bottom:925.890000px;}
.y160{bottom:926.070000px;}
.y43{bottom:926.250000px;}
.y10c{bottom:929.850000px;}
.y72{bottom:937.230000px;}
.yb{bottom:938.130000px;}
.yd8{bottom:941.910000px;}
.y134{bottom:942.450000px;}
.y42{bottom:946.230000px;}
.y10b{bottom:949.650000px;}
.y71{bottom:957.030000px;}
.y15f{bottom:962.610000px;}
.ya{bottom:963.150000px;}
.yd7{bottom:965.670000px;}
.y41{bottom:966.030000px;}
.y133{bottom:968.730000px;}
.y10a{bottom:969.450000px;}
.y70{bottom:976.830000px;}
.y9{bottom:978.090000px;}
.y108{bottom:983.850000px;}
.y40{bottom:985.830000px;}
.y12e{bottom:995.010000px;}
.y6f{bottom:996.630000px;}
.y8{bottom:999.150000px;}
.y106{bottom:1005.090000px;}
.y3f{bottom:1005.630000px;}
.y131{bottom:1013.010000px;}
.y9c{bottom:1016.070000px;}
.y6e{bottom:1016.430000px;}
.y7{bottom:1022.730000px;}
.y3e{bottom:1025.430000px;}
.y6d{bottom:1036.050000px;}
.y12d{bottom:1045.050000px;}
.y3d{bottom:1045.410000px;}
.y103{bottom:1057.470000px;}
.y5{bottom:1061.610000px;}
.y12c{bottom:1064.850000px;}
.y3c{bottom:1065.210000px;}
.y3b{bottom:1085.010000px;}
.y4{bottom:1092.390000px;}
.y3a{bottom:1104.810000px;}
.yff{bottom:1117.770000px;}
.y3{bottom:1123.350000px;}
.y39{bottom:1124.610000px;}
.y38{bottom:1144.620000px;}
.y2{bottom:1154.160000px;}
.y15e{bottom:1164.060000px;}
.y37{bottom:1164.420000px;}
.y1{bottom:1184.580000px;}
.y36{bottom:1193.580000px;}
.h10{height:17.100000px;}
.h11{height:17.136000px;}
.h9{height:17.280000px;}
.hc{height:17.460000px;}
.ha{height:17.820000px;}
.hb{height:18.540000px;}
.h29{height:19.260000px;}
.h1e{height:19.800000px;}
.h1a{height:20.340000px;}
.h12{height:20.700000px;}
.h1f{height:20.880000px;}
.h26{height:23.580000px;}
.h23{height:23.796000px;}
.h1d{height:24.300000px;}
.h25{height:24.480000px;}
.h21{height:25.380000px;}
.h22{height:25.560000px;}
.hd{height:25.920000px;}
.h28{height:26.280000px;}
.he{height:34.380000px;}
.hf{height:34.560000px;}
.h13{height:35.460000px;}
.h6{height:38.158594px;}
.h2a{height:39.780000px;}
.h1b{height:39.816000px;}
.h2b{height:43.215117px;}
.h20{height:43.380000px;}
.h14{height:51.300000px;}
.h17{height:51.480000px;}
.h15{height:51.660000px;}
.h16{height:51.876000px;}
.h7{height:58.651172px;}
.h27{height:59.038594px;}
.h24{height:59.218594px;}
.h19{height:59.580000px;}
.h18{height:59.616000px;}
.h5{height:60.226875px;}
.h8{height:61.423863px;}
.h3{height:65.010937px;}
.h2{height:66.757500px;}
.h4{height:96.508125px;}
.h1c{height:122.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:32.940000px;}
.w1d{width:61.380000px;}
.wb{width:62.496000px;}
.w19{width:65.016000px;}
.w18{width:65.160000px;}
.we{width:69.660000px;}
.w31{width:76.320000px;}
.w33{width:76.500000px;}
.w32{width:76.536000px;}
.w14{width:76.680000px;}
.w24{width:83.160000px;}
.w1f{width:83.196000px;}
.w28{width:84.960000px;}
.w29{width:84.996000px;}
.w2a{width:85.140000px;}
.w22{width:87.480000px;}
.w15{width:90.360000px;}
.wc{width:91.080000px;}
.w10{width:92.160000px;}
.w1a{width:92.520000px;}
.w11{width:92.556000px;}
.w4{width:97.380000px;}
.w7{width:99.936000px;}
.w16{width:101.376000px;}
.w12{width:103.680000px;}
.w20{width:116.820000px;}
.w2b{width:117.000000px;}
.w1c{width:117.036000px;}
.w21{width:171.390000px;}
.w34{width:183.810000px;}
.w23{width:198.390000px;}
.w5{width:201.090000px;}
.w27{width:202.710000px;}
.w2f{width:231.150000px;}
.w3{width:254.775000px;}
.w26{width:256.710000px;}
.w30{width:260.850000px;}
.w2c{width:262.830000px;}
.w1b{width:273.810000px;}
.w1e{width:282.450000px;}
.w6{width:330.510000px;}
.w2d{width:359.175000px;}
.w25{width:374.115000px;}
.w13{width:399.165000px;}
.w2e{width:415.335000px;}
.wf{width:425.985000px;}
.wd{width:426.315000px;}
.w17{width:454.035000px;}
.wa{width:496.875000px;}
.w9{width:651.885000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x1b{left:-12.420000px;}
.x0{left:0.000000px;}
.x19{left:5.940000px;}
.x21{left:7.020000px;}
.x30{left:13.500000px;}
.x2f{left:20.700000px;}
.x1{left:54.179987px;}
.x2{left:66.419987px;}
.x3{left:70.199987px;}
.x12{left:80.640000px;}
.xe{left:88.200000px;}
.x16{left:106.956000px;}
.x39{left:108.035987px;}
.x6{left:113.256000px;}
.x1f{left:118.476000px;}
.xa{left:120.636000px;}
.x31{left:122.976000px;}
.x26{left:130.716000px;}
.x2d{left:135.036000px;}
.x3c{left:139.715987px;}
.x3d{left:151.229987px;}
.x3e{left:194.789987px;}
.x3f{left:206.309987px;}
.x2c{left:248.430000px;}
.x40{left:266.969987px;}
.x4{left:270.030000px;}
.x41{left:278.669987px;}
.x36{left:307.515000px;}
.x7{left:315.075000px;}
.x25{left:317.775000px;}
.x42{left:327.494987px;}
.x28{left:334.155000px;}
.x43{left:339.014987px;}
.x44{left:379.334987px;}
.x1c{left:381.675000px;}
.x33{left:384.735000px;}
.x45{left:390.854987px;}
.x2e{left:398.775000px;}
.x20{left:401.655000px;}
.x46{left:414.254987px;}
.x29{left:419.835000px;}
.x47{left:425.774987px;}
.x34{left:461.775000px;}
.x48{left:465.014987px;}
.x49{left:476.564987px;}
.x13{left:480.705000px;}
.x22{left:485.565000px;}
.x4a{left:489.164987px;}
.x1d{left:499.605000px;}
.x4b{left:500.684987px;}
.x27{left:505.545000px;}
.xf{left:514.905000px;}
.x5{left:525.525000px;}
.x4c{left:527.504987px;}
.x32{left:539.025000px;}
.xd{left:547.845000px;}
.x14{left:558.105000px;}
.x17{left:561.705000px;}
.x4d{left:579.884987px;}
.x2a{left:591.405000px;}
.x23{left:603.105000px;}
.x10{left:607.785000px;}
.x35{left:616.245000px;}
.xb{left:618.225000px;}
.x4e{left:625.424987px;}
.x18{left:627.585000px;}
.x4f{left:636.944987px;}
.x8{left:646.305000px;}
.x15{left:649.185000px;}
.x2b{left:677.130000px;}
.xc{left:681.450000px;}
.x24{left:687.030000px;}
.x1a{left:693.510000px;}
.x50{left:695.129987px;}
.x11{left:701.070000px;}
.x51{left:706.829987px;}
.x3a{left:714.029987px;}
.x9{left:746.970000px;}
.x37{left:755.969987px;}
.x38{left:765.149987px;}
.x1e{left:773.789987px;}
.x3b{left:806.549987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.720000pt;}
.v1{vertical-align:21.120000pt;}
.ls36{letter-spacing:-1.600000pt;}
.ls33{letter-spacing:-1.050667pt;}
.ls2c{letter-spacing:-1.008000pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.688000pt;}
.ls1d{letter-spacing:-0.592000pt;}
.ls28{letter-spacing:-0.456533pt;}
.ls24{letter-spacing:-0.409067pt;}
.ls2d{letter-spacing:-0.367467pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls3a{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls2e{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.015360pt;}
.ls10{letter-spacing:0.033280pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls25{letter-spacing:0.136533pt;}
.ls21{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.183467pt;}
.ls1e{letter-spacing:0.230933pt;}
.ls40{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.272533pt;}
.lsc{letter-spacing:0.320000pt;}
.ls3b{letter-spacing:0.409067pt;}
.ls43{letter-spacing:0.414933pt;}
.ls20{letter-spacing:0.500267pt;}
.ls3e{letter-spacing:0.544000pt;}
.ls18{letter-spacing:0.592000pt;}
.ls41{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.688000pt;}
.ls15{letter-spacing:0.736000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.821333pt;}
.ls2a{letter-spacing:0.823680pt;}
.ls29{letter-spacing:0.869333pt;}
.ls13{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.008640pt;}
.lse{letter-spacing:1.056000pt;}
.ls3{letter-spacing:1.182720pt;}
.ls1{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls22{letter-spacing:2.080000pt;}
.ls3d{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:3.360000pt;}
.ls27{letter-spacing:4.000000pt;}
.ls26{letter-spacing:5.280000pt;}
.ls9{letter-spacing:5.920000pt;}
.ls3c{letter-spacing:6.560000pt;}
.ls23{letter-spacing:7.840000pt;}
.ls30{letter-spacing:8.480000pt;}
.ls32{letter-spacing:9.120000pt;}
.ls2f{letter-spacing:9.760000pt;}
.ls38{letter-spacing:10.192640pt;}
.lsb{letter-spacing:10.400000pt;}
.ls37{letter-spacing:15.520000pt;}
.ls1b{letter-spacing:16.800000pt;}
.ls34{letter-spacing:37.200640pt;}
.ls42{letter-spacing:37.920000pt;}
.ws4{word-spacing:-21.313280pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.622933pt;}
.ws5{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.240000pt;}
.ws1a{word-spacing:-14.149333pt;}
.ws1f{word-spacing:-14.101333pt;}
.wsc{word-spacing:-14.016000pt;}
.ws25{word-spacing:-13.968000pt;}
.ws10{word-spacing:-13.872000pt;}
.ws24{word-spacing:-13.824000pt;}
.ws27{word-spacing:-13.694933pt;}
.ws23{word-spacing:-13.689067pt;}
.ws8{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.ws26{word-spacing:-13.545600pt;}
.ws15{word-spacing:-13.510933pt;}
.ws21{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws1d{word-spacing:-13.185067pt;}
.ws11{word-spacing:-13.096533pt;}
.ws0{word-spacing:-13.056000pt;}
.ws22{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.912533pt;}
.ws17{word-spacing:-12.870933pt;}
.ws19{word-spacing:-12.823467pt;}
.ws14{word-spacing:-12.688000pt;}
.ws16{word-spacing:-12.592000pt;}
.ws1b{word-spacing:-12.320000pt;}
.ws1e{word-spacing:-12.229333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws20{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws12{word-spacing:0.000000pt;}
._3{margin-left:-2325.914667pt;}
._7{margin-left:-1417.205760pt;}
._5{margin-left:-1214.364160pt;}
._6{margin-left:-886.461440pt;}
._8{margin-left:-512.084907pt;}
._9{margin-left:-7.595520pt;}
._14{margin-left:-6.495787pt;}
._a{margin-left:-4.517973pt;}
._b{margin-left:-3.238400pt;}
._c{margin-left:-2.041813pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.192000pt;}
._1{width:3.386667pt;}
._11{width:4.776960pt;}
._10{width:5.796480pt;}
._f{width:6.797440pt;}
._d{width:7.844267pt;}
._e{width:8.977280pt;}
._13{width:9.924907pt;}
._12{width:10.859520pt;}
._17{width:12.261760pt;}
._16{width:14.359040pt;}
._15{width:15.351680pt;}
._18{width:16.783360pt;}
._1a{width:17.687040pt;}
._19{width:19.040000pt;}
._1d{width:21.732907pt;}
._1e{width:28.148480pt;}
._1b{width:105.457920pt;}
._1c{width:169.318827pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.880000pt;}
.ybb{bottom:3.040000pt;}
.yd5{bottom:3.200000pt;}
.ybc{bottom:3.360000pt;}
.yca{bottom:3.520000pt;}
.ybe{bottom:3.840000pt;}
.yf0{bottom:4.160000pt;}
.yc0{bottom:4.480000pt;}
.y148{bottom:5.120000pt;}
.y102{bottom:5.440000pt;}
.y152{bottom:5.600000pt;}
.y109{bottom:5.920000pt;}
.ye0{bottom:6.400000pt;}
.y146{bottom:6.560000pt;}
.y158{bottom:8.000000pt;}
.y13e{bottom:8.960000pt;}
.y13a{bottom:9.120000pt;}
.y117{bottom:9.440000pt;}
.y13c{bottom:9.760000pt;}
.y132{bottom:10.560000pt;}
.y135{bottom:10.720000pt;}
.ycd{bottom:11.040000pt;}
.y130{bottom:11.200000pt;}
.y143{bottom:11.360000pt;}
.y107{bottom:16.160000pt;}
.yf4{bottom:18.240000pt;}
.yfe{bottom:18.400000pt;}
.yd0{bottom:18.560000pt;}
.yd2{bottom:18.714667pt;}
.yf8{bottom:18.720000pt;}
.yef{bottom:19.520000pt;}
.y101{bottom:23.066667pt;}
.y105{bottom:23.200000pt;}
.y157{bottom:23.360000pt;}
.y12f{bottom:26.560000pt;}
.yf3{bottom:33.600000pt;}
.yfd{bottom:33.760000pt;}
.yf6{bottom:33.920000pt;}
.yfa{bottom:34.080000pt;}
.y104{bottom:40.800000pt;}
.y100{bottom:40.826667pt;}
.y115{bottom:43.520000pt;}
.y6{bottom:54.272000pt;}
.y114{bottom:61.280000pt;}
.y15d{bottom:76.992000pt;}
.y113{bottom:78.880000pt;}
.yd6{bottom:80.352000pt;}
.y35{bottom:81.152000pt;}
.y170{bottom:82.752000pt;}
.y12b{bottom:87.072000pt;}
.y15c{bottom:91.872000pt;}
.y6c{bottom:92.352000pt;}
.yd4{bottom:93.312000pt;}
.y9b{bottom:93.952000pt;}
.y112{bottom:96.480000pt;}
.y34{bottom:98.912000pt;}
.y16f{bottom:100.352000pt;}
.y12a{bottom:104.672000pt;}
.yd3{bottom:109.152000pt;}
.y6b{bottom:109.952000pt;}
.y9a{bottom:111.712000pt;}
.y33{bottom:116.512000pt;}
.y171{bottom:117.952000pt;}
.y16e{bottom:118.112000pt;}
.y129{bottom:122.432000pt;}
.yd1{bottom:125.152000pt;}
.y6a{bottom:127.712000pt;}
.y99{bottom:129.312000pt;}
.y32{bottom:134.106667pt;}
.y16d{bottom:135.706667pt;}
.y128{bottom:140.026667pt;}
.y69{bottom:145.306667pt;}
.y98{bottom:146.906667pt;}
.y31{bottom:151.706667pt;}
.y16c{bottom:153.306667pt;}
.yfc{bottom:154.426667pt;}
.ycf{bottom:156.506667pt;}
.y127{bottom:157.626667pt;}
.y68{bottom:162.906667pt;}
.ya2{bottom:164.186667pt;}
.y97{bottom:164.506667pt;}
.y30{bottom:169.306667pt;}
.y16b{bottom:170.906667pt;}
.y126{bottom:175.226667pt;}
.y67{bottom:180.186667pt;}
.yb5{bottom:180.506667pt;}
.y96{bottom:182.106667pt;}
.y2f{bottom:187.066667pt;}
.yce{bottom:187.706667pt;}
.y16a{bottom:188.506667pt;}
.ya1{bottom:190.106667pt;}
.y125{bottom:192.826667pt;}
.yb4{bottom:198.106667pt;}
.y95{bottom:199.546667pt;}
.yfb{bottom:200.826667pt;}
.y2e{bottom:204.666667pt;}
.y124{bottom:204.986667pt;}
.y66{bottom:206.106667pt;}
.y169{bottom:206.266667pt;}
.ya0{bottom:207.866667pt;}
.ycc{bottom:211.386667pt;}
.yb3{bottom:215.866667pt;}
.y2d{bottom:222.266667pt;}
.y65{bottom:223.866667pt;}
.y94{bottom:225.466667pt;}
.yb2{bottom:233.466667pt;}
.ycb{bottom:235.066667pt;}
.y2c{bottom:239.866667pt;}
.y168{bottom:241.146667pt;}
.y64{bottom:241.466667pt;}
.y93{bottom:243.066667pt;}
.yf9{bottom:247.386667pt;}
.yb1{bottom:251.066667pt;}
.y2b{bottom:257.466667pt;}
.y15b{bottom:258.906667pt;}
.y63{bottom:259.066667pt;}
.y92{bottom:260.666667pt;}
.yc9{bottom:267.066667pt;}
.yb0{bottom:268.666667pt;}
.y2a{bottom:275.226667pt;}
.y62{bottom:276.666667pt;}
.y15a{bottom:276.826667pt;}
.y91{bottom:278.266667pt;}
.yaf{bottom:286.266667pt;}
.yc8{bottom:288.826667pt;}
.y29{bottom:292.866667pt;}
.yf7{bottom:294.146667pt;}
.y61{bottom:294.306667pt;}
.y159{bottom:294.466667pt;}
.y90{bottom:296.066667pt;}
.yae{bottom:304.066667pt;}
.yc7{bottom:306.466667pt;}
.y156{bottom:307.266667pt;}
.y28{bottom:310.466667pt;}
.y60{bottom:312.066667pt;}
.y8f{bottom:313.666667pt;}
.yad{bottom:321.346667pt;}
.yc6{bottom:324.066667pt;}
.y27{bottom:328.066667pt;}
.y5f{bottom:329.666667pt;}
.y8e{bottom:331.266667pt;}
.yac{bottom:339.266667pt;}
.yf5{bottom:340.866667pt;}
.yc5{bottom:341.666667pt;}
.y155{bottom:343.266667pt;}
.y26{bottom:345.666667pt;}
.y5e{bottom:347.266667pt;}
.y8d{bottom:348.866667pt;}
.yab{bottom:356.866667pt;}
.yc4{bottom:359.266667pt;}
.y154{bottom:361.506667pt;}
.y25{bottom:363.426667pt;}
.y5d{bottom:364.866667pt;}
.y8c{bottom:366.466667pt;}
.yaa{bottom:374.466667pt;}
.yc3{bottom:377.026667pt;}
.y153{bottom:379.746667pt;}
.y24{bottom:381.026667pt;}
.y5c{bottom:382.466667pt;}
.y167{bottom:382.626667pt;}
.y8b{bottom:384.226667pt;}
.yf2{bottom:387.426667pt;}
.ya9{bottom:392.226667pt;}
.yc2{bottom:394.626667pt;}
.y151{bottom:397.986667pt;}
.y23{bottom:398.626667pt;}
.y5b{bottom:400.226667pt;}
.y8a{bottom:401.826667pt;}
.ya8{bottom:409.826667pt;}
.yc1{bottom:412.226667pt;}
.y22{bottom:416.226667pt;}
.y5a{bottom:417.826667pt;}
.y89{bottom:419.426667pt;}
.y150{bottom:421.346667pt;}
.ybf{bottom:425.026667pt;}
.ya7{bottom:427.426667pt;}
.yf1{bottom:433.666667pt;}
.y21{bottom:433.826667pt;}
.y59{bottom:435.106667pt;}
.y166{bottom:435.426667pt;}
.y88{bottom:437.026667pt;}
.y14f{bottom:439.266667pt;}
.ybd{bottom:442.306667pt;}
.ya6{bottom:445.026667pt;}
.yee{bottom:449.826667pt;}
.y123{bottom:450.946667pt;}
.y20{bottom:451.586667pt;}
.y58{bottom:453.026667pt;}
.y87{bottom:454.626667pt;}
.y14e{bottom:456.866667pt;}
.yba{bottom:458.786667pt;}
.ya5{bottom:462.626667pt;}
.y122{bottom:468.866667pt;}
.y1f{bottom:469.186667pt;}
.y57{bottom:470.626667pt;}
.y165{bottom:470.786667pt;}
.y86{bottom:472.386667pt;}
.y14d{bottom:474.626667pt;}
.yb9{bottom:480.066667pt;}
.ya4{bottom:480.386667pt;}
.y121{bottom:486.466667pt;}
.y1e{bottom:486.786667pt;}
.yed{bottom:487.106667pt;}
.y56{bottom:488.386667pt;}
.y85{bottom:489.986667pt;}
.y14c{bottom:492.226667pt;}
.y9f{bottom:497.986667pt;}
.y120{bottom:504.066667pt;}
.y1d{bottom:504.386667pt;}
.yec{bottom:505.026667pt;}
.y55{bottom:505.986667pt;}
.y84{bottom:507.586667pt;}
.y14b{bottom:509.826667pt;}
.ya3{bottom:515.266667pt;}
.y9e{bottom:515.586667pt;}
.y11f{bottom:521.826667pt;}
.y1c{bottom:521.986667pt;}
.yeb{bottom:522.626667pt;}
.y164{bottom:523.266667pt;}
.y54{bottom:523.586667pt;}
.y83{bottom:524.866667pt;}
.y14a{bottom:527.106667pt;}
.y9d{bottom:533.213333pt;}
.y11e{bottom:539.453333pt;}
.y1b{bottom:539.773333pt;}
.yea{bottom:540.253333pt;}
.y53{bottom:541.213333pt;}
.y149{bottom:545.053333pt;}
.y82{bottom:550.813333pt;}
.y1a{bottom:557.053333pt;}
.ye9{bottom:558.013333pt;}
.y52{bottom:558.813333pt;}
.y163{bottom:558.973333pt;}
.yb8{bottom:568.253333pt;}
.y81{bottom:568.573333pt;}
.y11d{bottom:574.653333pt;}
.y19{bottom:574.973333pt;}
.y147{bottom:575.133333pt;}
.ye8{bottom:575.613333pt;}
.y51{bottom:576.573333pt;}
.y80{bottom:586.173333pt;}
.y11c{bottom:592.253333pt;}
.y145{bottom:592.893333pt;}
.ye7{bottom:593.213333pt;}
.y50{bottom:594.173333pt;}
.y18{bottom:594.653333pt;}
.y7f{bottom:603.773333pt;}
.y11b{bottom:610.013333pt;}
.ye6{bottom:610.813333pt;}
.yb7{bottom:611.453333pt;}
.y4f{bottom:611.773333pt;}
.y144{bottom:612.093333pt;}
.y17{bottom:620.253333pt;}
.y7e{bottom:621.373333pt;}
.y111{bottom:622.813333pt;}
.ye5{bottom:628.413333pt;}
.y4e{bottom:629.373333pt;}
.y142{bottom:631.133333pt;}
.y16{bottom:637.853333pt;}
.y7d{bottom:638.973333pt;}
.y11a{bottom:642.013333pt;}
.ye4{bottom:646.173333pt;}
.y4d{bottom:646.973333pt;}
.y162{bottom:647.133333pt;}
.y15{bottom:655.453333pt;}
.y7c{bottom:656.733333pt;}
.ye3{bottom:658.973333pt;}
.y141{bottom:660.573333pt;}
.y4c{bottom:664.733333pt;}
.y14{bottom:673.213333pt;}
.y119{bottom:673.373333pt;}
.y7b{bottom:674.333333pt;}
.ye2{bottom:675.133333pt;}
.y140{bottom:678.173333pt;}
.y4b{bottom:682.333333pt;}
.y13{bottom:690.813333pt;}
.y13f{bottom:690.973333pt;}
.y118{bottom:691.613333pt;}
.y7a{bottom:691.933333pt;}
.y4a{bottom:699.933333pt;}
.y173{bottom:700.413333pt;}
.ye1{bottom:706.493333pt;}
.y12{bottom:708.413333pt;}
.y79{bottom:709.533333pt;}
.y116{bottom:709.853333pt;}
.y13d{bottom:712.733333pt;}
.y172{bottom:716.413333pt;}
.y49{bottom:717.533333pt;}
.ydf{bottom:722.493333pt;}
.y11{bottom:726.013333pt;}
.y78{bottom:727.133333pt;}
.y110{bottom:732.093333pt;}
.y13b{bottom:734.333333pt;}
.y48{bottom:735.133333pt;}
.y161{bottom:735.293333pt;}
.yde{bottom:741.693333pt;}
.y10{bottom:743.613333pt;}
.y77{bottom:744.893333pt;}
.y47{bottom:752.893333pt;}
.y139{bottom:756.733333pt;}
.ydd{bottom:757.693333pt;}
.yf{bottom:761.373333pt;}
.y76{bottom:762.493333pt;}
.y46{bottom:770.533333pt;}
.y10f{bottom:773.253333pt;}
.ydc{bottom:773.733333pt;}
.ye{bottom:779.013333pt;}
.y75{bottom:780.133333pt;}
.y138{bottom:783.653333pt;}
.y45{bottom:788.133333pt;}
.ydb{bottom:789.733333pt;}
.y10e{bottom:791.173333pt;}
.yd{bottom:796.613333pt;}
.y74{bottom:797.733333pt;}
.y137{bottom:801.253333pt;}
.y44{bottom:805.733333pt;}
.yda{bottom:805.893333pt;}
.y10d{bottom:808.773333pt;}
.yc{bottom:814.213333pt;}
.y136{bottom:814.373333pt;}
.y73{bottom:815.333333pt;}
.yb6{bottom:823.013333pt;}
.y160{bottom:823.173333pt;}
.y43{bottom:823.333333pt;}
.y10c{bottom:826.533333pt;}
.y72{bottom:833.093333pt;}
.yb{bottom:833.893333pt;}
.yd8{bottom:837.253333pt;}
.y134{bottom:837.733333pt;}
.y42{bottom:841.093333pt;}
.y10b{bottom:844.133333pt;}
.y71{bottom:850.693333pt;}
.y15f{bottom:855.653333pt;}
.ya{bottom:856.133333pt;}
.yd7{bottom:858.373333pt;}
.y41{bottom:858.693333pt;}
.y133{bottom:861.093333pt;}
.y10a{bottom:861.733333pt;}
.y70{bottom:868.293333pt;}
.y9{bottom:869.413333pt;}
.y108{bottom:874.533333pt;}
.y40{bottom:876.293333pt;}
.y12e{bottom:884.453333pt;}
.y6f{bottom:885.893333pt;}
.y8{bottom:888.133333pt;}
.y106{bottom:893.413333pt;}
.y3f{bottom:893.893333pt;}
.y131{bottom:900.453333pt;}
.y9c{bottom:903.173333pt;}
.y6e{bottom:903.493333pt;}
.y7{bottom:909.093333pt;}
.y3e{bottom:911.493333pt;}
.y6d{bottom:920.933333pt;}
.y12d{bottom:928.933333pt;}
.y3d{bottom:929.253333pt;}
.y103{bottom:939.973333pt;}
.y5{bottom:943.653333pt;}
.y12c{bottom:946.533333pt;}
.y3c{bottom:946.853333pt;}
.y3b{bottom:964.453333pt;}
.y4{bottom:971.013333pt;}
.y3a{bottom:982.053333pt;}
.yff{bottom:993.573333pt;}
.y3{bottom:998.533333pt;}
.y39{bottom:999.653333pt;}
.y38{bottom:1017.440000pt;}
.y2{bottom:1025.920000pt;}
.y15e{bottom:1034.720000pt;}
.y37{bottom:1035.040000pt;}
.y1{bottom:1052.960000pt;}
.y36{bottom:1060.960000pt;}
.h10{height:15.200000pt;}
.h11{height:15.232000pt;}
.h9{height:15.360000pt;}
.hc{height:15.520000pt;}
.ha{height:15.840000pt;}
.hb{height:16.480000pt;}
.h29{height:17.120000pt;}
.h1e{height:17.600000pt;}
.h1a{height:18.080000pt;}
.h12{height:18.400000pt;}
.h1f{height:18.560000pt;}
.h26{height:20.960000pt;}
.h23{height:21.152000pt;}
.h1d{height:21.600000pt;}
.h25{height:21.760000pt;}
.h21{height:22.560000pt;}
.h22{height:22.720000pt;}
.hd{height:23.040000pt;}
.h28{height:23.360000pt;}
.he{height:30.560000pt;}
.hf{height:30.720000pt;}
.h13{height:31.520000pt;}
.h6{height:33.918750pt;}
.h2a{height:35.360000pt;}
.h1b{height:35.392000pt;}
.h2b{height:38.413438pt;}
.h20{height:38.560000pt;}
.h14{height:45.600000pt;}
.h17{height:45.760000pt;}
.h15{height:45.920000pt;}
.h16{height:46.112000pt;}
.h7{height:52.134375pt;}
.h27{height:52.478750pt;}
.h24{height:52.638750pt;}
.h19{height:52.960000pt;}
.h18{height:52.992000pt;}
.h5{height:53.535000pt;}
.h8{height:54.598989pt;}
.h3{height:57.787500pt;}
.h2{height:59.340000pt;}
.h4{height:85.785000pt;}
.h1c{height:108.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:29.280000pt;}
.w1d{width:54.560000pt;}
.wb{width:55.552000pt;}
.w19{width:57.792000pt;}
.w18{width:57.920000pt;}
.we{width:61.920000pt;}
.w31{width:67.840000pt;}
.w33{width:68.000000pt;}
.w32{width:68.032000pt;}
.w14{width:68.160000pt;}
.w24{width:73.920000pt;}
.w1f{width:73.952000pt;}
.w28{width:75.520000pt;}
.w29{width:75.552000pt;}
.w2a{width:75.680000pt;}
.w22{width:77.760000pt;}
.w15{width:80.320000pt;}
.wc{width:80.960000pt;}
.w10{width:81.920000pt;}
.w1a{width:82.240000pt;}
.w11{width:82.272000pt;}
.w4{width:86.560000pt;}
.w7{width:88.832000pt;}
.w16{width:90.112000pt;}
.w12{width:92.160000pt;}
.w20{width:103.840000pt;}
.w2b{width:104.000000pt;}
.w1c{width:104.032000pt;}
.w21{width:152.346667pt;}
.w34{width:163.386667pt;}
.w23{width:176.346667pt;}
.w5{width:178.746667pt;}
.w27{width:180.186667pt;}
.w2f{width:205.466667pt;}
.w3{width:226.466667pt;}
.w26{width:228.186667pt;}
.w30{width:231.866667pt;}
.w2c{width:233.626667pt;}
.w1b{width:243.386667pt;}
.w1e{width:251.066667pt;}
.w6{width:293.786667pt;}
.w2d{width:319.266667pt;}
.w25{width:332.546667pt;}
.w13{width:354.813333pt;}
.w2e{width:369.186667pt;}
.wf{width:378.653333pt;}
.wd{width:378.946667pt;}
.w17{width:403.586667pt;}
.wa{width:441.666667pt;}
.w9{width:579.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x1b{left:-11.040000pt;}
.x0{left:0.000000pt;}
.x19{left:5.280000pt;}
.x21{left:6.240000pt;}
.x30{left:12.000000pt;}
.x2f{left:18.400000pt;}
.x1{left:48.159988pt;}
.x2{left:59.039988pt;}
.x3{left:62.399988pt;}
.x12{left:71.680000pt;}
.xe{left:78.400000pt;}
.x16{left:95.072000pt;}
.x39{left:96.031988pt;}
.x6{left:100.672000pt;}
.x1f{left:105.312000pt;}
.xa{left:107.232000pt;}
.x31{left:109.312000pt;}
.x26{left:116.192000pt;}
.x2d{left:120.032000pt;}
.x3c{left:124.191988pt;}
.x3d{left:134.426655pt;}
.x3e{left:173.146655pt;}
.x3f{left:183.386655pt;}
.x2c{left:220.826667pt;}
.x40{left:237.306655pt;}
.x4{left:240.026667pt;}
.x41{left:247.706655pt;}
.x36{left:273.346667pt;}
.x7{left:280.066667pt;}
.x25{left:282.466667pt;}
.x42{left:291.106655pt;}
.x28{left:297.026667pt;}
.x43{left:301.346655pt;}
.x44{left:337.186655pt;}
.x1c{left:339.266667pt;}
.x33{left:341.986667pt;}
.x45{left:347.426655pt;}
.x2e{left:354.466667pt;}
.x20{left:357.026667pt;}
.x46{left:368.226655pt;}
.x29{left:373.186667pt;}
.x47{left:378.466655pt;}
.x34{left:410.466667pt;}
.x48{left:413.346655pt;}
.x49{left:423.613322pt;}
.x13{left:427.293333pt;}
.x22{left:431.613333pt;}
.x4a{left:434.813322pt;}
.x1d{left:444.093333pt;}
.x4b{left:445.053322pt;}
.x27{left:449.373333pt;}
.xf{left:457.693333pt;}
.x5{left:467.133333pt;}
.x4c{left:468.893322pt;}
.x32{left:479.133333pt;}
.xd{left:486.973333pt;}
.x14{left:496.093333pt;}
.x17{left:499.293333pt;}
.x4d{left:515.453322pt;}
.x2a{left:525.693333pt;}
.x23{left:536.093333pt;}
.x10{left:540.253333pt;}
.x35{left:547.773333pt;}
.xb{left:549.533333pt;}
.x4e{left:555.933322pt;}
.x18{left:557.853333pt;}
.x4f{left:566.173322pt;}
.x8{left:574.493333pt;}
.x15{left:577.053333pt;}
.x2b{left:601.893333pt;}
.xc{left:605.733333pt;}
.x24{left:610.693333pt;}
.x1a{left:616.453333pt;}
.x50{left:617.893322pt;}
.x11{left:623.173333pt;}
.x51{left:628.293322pt;}
.x3a{left:634.693322pt;}
.x9{left:663.973333pt;}
.x37{left:671.973322pt;}
.x38{left:680.133322pt;}
.x1e{left:687.813322pt;}
.x3b{left:716.933322pt;}
}




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