
    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_e2aa4dc8487ece1d052d5965.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e7918e5d1abc2f22c2f70075.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1a25a38b707a763a138927fe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aba6238ad8cfa06ca2b1695a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_24112dca46ee7f9999cc7331.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_de74e31399e5ce9e5a812537.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172363;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4016a2df53f7b50daec6de35.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_94ef57ea2e4e920a015c3d43.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fae7842fd6d45f220a64bd96.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f1d2afd67f3984abd45694ca.woff')format("woff");}.ffb{font-family:ffb;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-4.782000px;}
.ls3{letter-spacing:-1.176000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.091200px;}
.ls5{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls10{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.460200px;}
.ls13{letter-spacing:0.666000px;}
.ls0{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.828000px;}
.ls1c{letter-spacing:0.900000px;}
.ls1{letter-spacing:1.440000px;}
.ls1b{letter-spacing:3.060000px;}
.lsf{letter-spacing:19.386720px;}
.ls7{letter-spacing:37.386720px;}
.ls1e{letter-spacing:38.826720px;}
.lse{letter-spacing:46.026720px;}
.ls18{letter-spacing:64.026720px;}
.ls1a{letter-spacing:69.066720px;}
.ls14{letter-spacing:201.204000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws2{word-spacing:-23.921280px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.ws8{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.wse{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.580000px;}
.wsa{word-spacing:-12.236544px;}
.wsb{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1443.130560px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._8{margin-left:-5.283120px;}
._9{margin-left:-3.908160px;}
._a{margin-left:-2.667600px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:2.640720px;}
._e{width:4.005120px;}
._f{width:5.018640px;}
._10{width:6.248880px;}
._15{width:7.336080px;}
._11{width:8.521920px;}
._13{width:10.372320px;}
._14{width:11.695920px;}
._16{width:13.234800px;}
._18{width:16.254720px;}
._19{width:17.270640px;}
._25{width:18.356400px;}
._1b{width:21.155040px;}
._1c{width:22.164240px;}
._1a{width:24.262560px;}
._d{width:25.637040px;}
._c{width:27.064080px;}
._17{width:28.272960px;}
._2a{width:32.748480px;}
._2b{width:34.216320px;}
._26{width:44.580960px;}
._23{width:54.930240px;}
._24{width:56.432160px;}
._2c{width:58.863600px;}
._2d{width:59.879520px;}
._1e{width:84.011040px;}
._20{width:95.621760px;}
._1f{width:107.541360px;}
._21{width:110.287920px;}
._29{width:120.481920px;}
._27{width:138.975120px;}
._22{width:155.424240px;}
._28{width:158.500800px;}
._1d{width:175.204800px;}
._12{width:201.204000px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(33,33,33);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y90{bottom:3.240000px;}
.y110{bottom:4.500000px;}
.y112{bottom:4.680000px;}
.y167{bottom:5.400000px;}
.y16a{bottom:5.580000px;}
.y146{bottom:5.760000px;}
.yfc{bottom:5.910000px;}
.y14a{bottom:5.940000px;}
.yf8{bottom:5.970000px;}
.y103{bottom:6.045000px;}
.y109{bottom:6.090000px;}
.y106{bottom:6.150000px;}
.y166{bottom:6.705000px;}
.y1c6{bottom:10.800000px;}
.y9b{bottom:11.700000px;}
.y97{bottom:11.880000px;}
.y14c{bottom:15.660000px;}
.y148{bottom:15.840000px;}
.y9c{bottom:20.340000px;}
.y98{bottom:20.520000px;}
.y9d{bottom:20.565000px;}
.yfb{bottom:22.470000px;}
.yf7{bottom:22.530000px;}
.y10b{bottom:22.605000px;}
.y108{bottom:22.680000px;}
.y105{bottom:22.710000px;}
.y14d{bottom:25.560000px;}
.y149{bottom:25.740000px;}
.y1c5{bottom:30.600000px;}
.y1c2{bottom:34.740000px;}
.yfa{bottom:39.030000px;}
.yfe{bottom:39.090000px;}
.y101{bottom:39.165000px;}
.yc7{bottom:41.760000px;}
.y1c4{bottom:50.400000px;}
.yc6{bottom:59.040000px;}
.yac{bottom:59.760000px;}
.y6{bottom:60.156000px;}
.y1c3{bottom:70.194000px;}
.ybc{bottom:73.800000px;}
.yab{bottom:77.040000px;}
.y1c1{bottom:84.816000px;}
.ya6{bottom:87.516000px;}
.yaa{bottom:94.320000px;}
.y34{bottom:97.956000px;}
.yda{bottom:100.296000px;}
.y191{bottom:100.836000px;}
.y1b7{bottom:102.276000px;}
.yf5{bottom:102.816000px;}
.y13c{bottom:106.056000px;}
.ya5{bottom:107.316000px;}
.y16f{bottom:117.396000px;}
.y95{bottom:117.765000px;}
.y33{bottom:117.936000px;}
.y6a{bottom:118.836000px;}
.yd9{bottom:120.096000px;}
.y190{bottom:120.636000px;}
.y1b6{bottom:122.076000px;}
.yf4{bottom:122.616000px;}
.y13b{bottom:125.856000px;}
.ya4{bottom:127.296000px;}
.y94{bottom:134.865000px;}
.y16e{bottom:137.196000px;}
.y32{bottom:137.736000px;}
.y69{bottom:138.636000px;}
.yf3{bottom:139.176000px;}
.y10c{bottom:139.500000px;}
.yd8{bottom:139.896000px;}
.y18f{bottom:140.436000px;}
.y1b5{bottom:141.876000px;}
.y13a{bottom:145.836000px;}
.ya3{bottom:147.096000px;}
.y10a{bottom:149.220000px;}
.y93{bottom:152.145000px;}
.y16d{bottom:156.990000px;}
.y31{bottom:157.530000px;}
.y68{bottom:158.430000px;}
.yd7{bottom:159.690000px;}
.y18e{bottom:160.410000px;}
.y1b4{bottom:161.670000px;}
.y139{bottom:165.630000px;}
.ya2{bottom:166.890000px;}
.y16c{bottom:176.790000px;}
.y30{bottom:177.330000px;}
.y67{bottom:178.410000px;}
.yd6{bottom:179.670000px;}
.y18d{bottom:180.210000px;}
.y1b3{bottom:181.650000px;}
.y138{bottom:185.430000px;}
.ya1{bottom:186.690000px;}
.yff{bottom:188.310000px;}
.y16b{bottom:196.590000px;}
.y2f{bottom:197.130000px;}
.y66{bottom:198.210000px;}
.yd5{bottom:199.470000px;}
.y18c{bottom:200.010000px;}
.y1b2{bottom:201.450000px;}
.y137{bottom:205.230000px;}
.ya0{bottom:206.490000px;}
.y10e{bottom:208.110000px;}
.y169{bottom:211.530000px;}
.y2e{bottom:217.110000px;}
.y65{bottom:218.010000px;}
.yd4{bottom:219.270000px;}
.y18b{bottom:219.810000px;}
.y1b1{bottom:221.250000px;}
.y10d{bottom:224.670000px;}
.y136{bottom:225.030000px;}
.y9f{bottom:226.470000px;}
.y168{bottom:234.390000px;}
.y2d{bottom:236.910000px;}
.y64{bottom:237.810000px;}
.yd3{bottom:239.070000px;}
.y18a{bottom:239.610000px;}
.y1b0{bottom:241.050000px;}
.y135{bottom:245.010000px;}
.y9e{bottom:246.270000px;}
.y2c{bottom:256.710000px;}
.y102{bottom:257.505000px;}
.y63{bottom:257.610000px;}
.yd2{bottom:258.870000px;}
.y189{bottom:259.590000px;}
.y1af{bottom:260.850000px;}
.y92{bottom:262.110000px;}
.y134{bottom:264.810000px;}
.y2b{bottom:276.510000px;}
.y62{bottom:277.590000px;}
.yd1{bottom:278.850000px;}
.y165{bottom:279.030000px;}
.y188{bottom:279.390000px;}
.y1ae{bottom:280.830000px;}
.y133{bottom:284.655000px;}
.y2a{bottom:296.355000px;}
.y61{bottom:297.435000px;}
.yd0{bottom:298.695000px;}
.y187{bottom:299.235000px;}
.y9a{bottom:299.775000px;}
.y1ad{bottom:300.675000px;}
.y164{bottom:303.735000px;}
.y132{bottom:304.455000px;}
.y29{bottom:316.335000px;}
.y60{bottom:317.235000px;}
.y186{bottom:319.035000px;}
.ycf{bottom:319.575000px;}
.y1ac{bottom:320.475000px;}
.y131{bottom:324.255000px;}
.y163{bottom:327.495000px;}
.y107{bottom:330.480000px;}
.y28{bottom:336.135000px;}
.y5f{bottom:337.035000px;}
.y99{bottom:337.215000px;}
.y185{bottom:338.835000px;}
.yce{bottom:339.375000px;}
.y1ab{bottom:340.275000px;}
.y130{bottom:344.235000px;}
.y162{bottom:347.475000px;}
.y27{bottom:355.935000px;}
.y5e{bottom:356.835000px;}
.y12f{bottom:358.995000px;}
.y1aa{bottom:360.075000px;}
.ycd{bottom:360.255000px;}
.y161{bottom:367.275000px;}
.y184{bottom:367.815000px;}
.y96{bottom:374.655000px;}
.y26{bottom:375.735000px;}
.y5d{bottom:376.815000px;}
.y12e{bottom:378.255000px;}
.y1a9{bottom:380.055000px;}
.ycc{bottom:380.235000px;}
.y160{bottom:387.075000px;}
.y183{bottom:387.615000px;}
.yf2{bottom:392.655000px;}
.y25{bottom:395.535000px;}
.y5c{bottom:396.615000px;}
.y12d{bottom:397.695000px;}
.y1a8{bottom:399.855000px;}
.ycb{bottom:400.035000px;}
.y15f{bottom:406.875000px;}
.y182{bottom:407.415000px;}
.y91{bottom:411.015000px;}
.yf1{bottom:412.455000px;}
.y24{bottom:415.515000px;}
.y5b{bottom:416.415000px;}
.y12c{bottom:416.955000px;}
.y1a7{bottom:419.655000px;}
.yca{bottom:419.835000px;}
.y15e{bottom:426.675000px;}
.y181{bottom:427.215000px;}
.y8f{bottom:429.015000px;}
.yf0{bottom:432.255000px;}
.y23{bottom:435.315000px;}
.yc5{bottom:435.675000px;}
.y5a{bottom:436.215000px;}
.y12b{bottom:436.395000px;}
.y1a6{bottom:439.455000px;}
.y15d{bottom:446.655000px;}
.y180{bottom:447.015000px;}
.yef{bottom:452.055000px;}
.y8e{bottom:452.775000px;}
.y22{bottom:455.115000px;}
.y59{bottom:456.015000px;}
.y1a5{bottom:459.255000px;}
.y12a{bottom:461.415000px;}
.y15c{bottom:466.455000px;}
.y17f{bottom:466.995000px;}
.yee{bottom:471.855000px;}
.y8d{bottom:472.755000px;}
.yc9{bottom:473.295000px;}
.y21{bottom:474.915000px;}
.y58{bottom:475.995000px;}
.y1a4{bottom:479.235000px;}
.y129{bottom:481.395000px;}
.y17e{bottom:486.795000px;}
.yed{bottom:491.835000px;}
.y8c{bottom:492.555000px;}
.y20{bottom:494.715000px;}
.y15b{bottom:495.255000px;}
.y57{bottom:495.795000px;}
.y1a3{bottom:499.035000px;}
.y128{bottom:501.195000px;}
.yc8{bottom:510.735000px;}
.yec{bottom:511.635000px;}
.y8b{bottom:512.355000px;}
.y1f{bottom:514.695000px;}
.y15a{bottom:515.055000px;}
.y56{bottom:515.595000px;}
.y1a2{bottom:518.835000px;}
.y127{bottom:520.995000px;}
.yc4{bottom:529.815000px;}
.yeb{bottom:531.435000px;}
.y8a{bottom:532.155000px;}
.y1e{bottom:534.495000px;}
.y159{bottom:534.855000px;}
.y17d{bottom:535.395000px;}
.y55{bottom:536.475000px;}
.y1a1{bottom:538.635000px;}
.y126{bottom:540.795000px;}
.yc3{bottom:547.995000px;}
.yf9{bottom:549.000000px;}
.y89{bottom:551.955000px;}
.y1d{bottom:554.295000px;}
.y158{bottom:554.835000px;}
.y17c{bottom:555.195000px;}
.y54{bottom:556.275000px;}
.y1a0{bottom:558.435000px;}
.y125{bottom:560.595000px;}
.yc2{bottom:571.785000px;}
.y88{bottom:571.965000px;}
.y1c{bottom:574.125000px;}
.y157{bottom:574.665000px;}
.y17b{bottom:575.205000px;}
.y53{bottom:577.365000px;}
.y19f{bottom:578.445000px;}
.y124{bottom:580.605000px;}
.yc1{bottom:591.585000px;}
.y87{bottom:591.765000px;}
.y1b{bottom:593.925000px;}
.y156{bottom:594.465000px;}
.y17a{bottom:595.005000px;}
.y52{bottom:597.165000px;}
.y19e{bottom:598.245000px;}
.y123{bottom:600.405000px;}
.y1c0{bottom:607.245000px;}
.yc0{bottom:611.565000px;}
.y86{bottom:612.645000px;}
.y1a{bottom:613.905000px;}
.y155{bottom:614.265000px;}
.y179{bottom:614.805000px;}
.y51{bottom:616.965000px;}
.y19d{bottom:618.045000px;}
.y1bf{bottom:627.045000px;}
.y122{bottom:629.205000px;}
.ybf{bottom:631.365000px;}
.y85{bottom:633.525000px;}
.y19{bottom:633.705000px;}
.y154{bottom:634.065000px;}
.y178{bottom:634.605000px;}
.y50{bottom:636.765000px;}
.y19c{bottom:637.845000px;}
.y1be{bottom:646.845000px;}
.y121{bottom:649.005000px;}
.ybe{bottom:651.165000px;}
.y153{bottom:654.045000px;}
.y84{bottom:654.405000px;}
.y18{bottom:655.665000px;}
.y4f{bottom:657.645000px;}
.y177{bottom:663.405000px;}
.y1bd{bottom:666.645000px;}
.ybb{bottom:667.185000px;}
.y120{bottom:668.805000px;}
.y152{bottom:673.845000px;}
.y83{bottom:675.465000px;}
.y4e{bottom:677.625000px;}
.yf6{bottom:679.680000px;}
.y176{bottom:683.385000px;}
.y17{bottom:684.645000px;}
.y1bc{bottom:686.625000px;}
.y11f{bottom:688.785000px;}
.y151{bottom:693.645000px;}
.y82{bottom:695.265000px;}
.y4d{bottom:697.425000px;}
.y175{bottom:703.185000px;}
.y16{bottom:704.445000px;}
.ybd{bottom:704.625000px;}
.y1bb{bottom:706.425000px;}
.y11e{bottom:708.585000px;}
.y150{bottom:713.445000px;}
.yfd{bottom:714.780000px;}
.y81{bottom:715.065000px;}
.y4c{bottom:717.225000px;}
.y174{bottom:722.985000px;}
.y15{bottom:724.245000px;}
.y1ba{bottom:726.225000px;}
.y11d{bottom:728.385000px;}
.y14f{bottom:733.245000px;}
.y80{bottom:734.865000px;}
.y4b{bottom:737.025000px;}
.yba{bottom:740.985000px;}
.y173{bottom:742.785000px;}
.y14{bottom:744.045000px;}
.y1b9{bottom:746.025000px;}
.y14e{bottom:748.005000px;}
.y11c{bottom:748.185000px;}
.y7f{bottom:754.665000px;}
.y4a{bottom:756.825000px;}
.y172{bottom:762.585000px;}
.y13{bottom:763.845000px;}
.y1b8{bottom:765.825000px;}
.y11b{bottom:767.985000px;}
.y14b{bottom:768.705000px;}
.y7e{bottom:774.645000px;}
.yb9{bottom:776.265000px;}
.y19b{bottom:776.805000px;}
.y171{bottom:783.645000px;}
.y12{bottom:783.825000px;}
.y100{bottom:783.900000px;}
.y49{bottom:785.805000px;}
.y11a{bottom:787.965000px;}
.y7d{bottom:794.445000px;}
.y19a{bottom:796.605000px;}
.yb8{bottom:800.025000px;}
.y104{bottom:800.460000px;}
.y11{bottom:803.625000px;}
.y170{bottom:804.525000px;}
.y48{bottom:805.605000px;}
.y119{bottom:807.765000px;}
.y147{bottom:809.025000px;}
.y7c{bottom:814.245000px;}
.y199{bottom:816.405000px;}
.yb7{bottom:819.825000px;}
.y10{bottom:823.425000px;}
.y47{bottom:825.405000px;}
.y118{bottom:827.565000px;}
.y7b{bottom:834.045000px;}
.y198{bottom:836.205000px;}
.yb6{bottom:839.625000px;}
.yf{bottom:843.225000px;}
.yea{bottom:844.125000px;}
.y46{bottom:845.205000px;}
.y117{bottom:847.410000px;}
.y145{bottom:849.570000px;}
.y197{bottom:856.050000px;}
.yb5{bottom:859.470000px;}
.y116{bottom:862.170000px;}
.y7a{bottom:862.890000px;}
.ye9{bottom:863.970000px;}
.y45{bottom:865.050000px;}
.ye{bottom:865.410000px;}
.y144{bottom:876.030000px;}
.yb4{bottom:879.450000px;}
.y115{bottom:881.610000px;}
.y79{bottom:882.870000px;}
.ye8{bottom:883.950000px;}
.y44{bottom:885.030000px;}
.yd{bottom:890.430000px;}
.y143{bottom:895.830000px;}
.yb3{bottom:899.250000px;}
.y114{bottom:900.870000px;}
.y78{bottom:902.670000px;}
.ye7{bottom:903.750000px;}
.y43{bottom:904.830000px;}
.yc{bottom:910.230000px;}
.y142{bottom:915.630000px;}
.yb2{bottom:919.050000px;}
.y113{bottom:920.310000px;}
.y77{bottom:922.470000px;}
.ye6{bottom:923.550000px;}
.y42{bottom:924.630000px;}
.yb{bottom:930.210000px;}
.y141{bottom:935.430000px;}
.yb1{bottom:938.850000px;}
.y111{bottom:939.570000px;}
.y76{bottom:942.270000px;}
.ye5{bottom:943.350000px;}
.y41{bottom:944.430000px;}
.ya{bottom:945.330000px;}
.y140{bottom:955.230000px;}
.yb0{bottom:958.650000px;}
.y10f{bottom:959.010000px;}
.y75{bottom:962.070000px;}
.ye4{bottom:963.150000px;}
.y40{bottom:964.230000px;}
.y9{bottom:966.570000px;}
.y13f{bottom:975.210000px;}
.yaf{bottom:978.630000px;}
.y74{bottom:982.050000px;}
.ye3{bottom:983.130000px;}
.y3f{bottom:984.210000px;}
.y8{bottom:989.970000px;}
.yae{bottom:993.390000px;}
.y13e{bottom:995.010000px;}
.y73{bottom:1001.850000px;}
.ye2{bottom:1002.930000px;}
.y3e{bottom:1004.010000px;}
.y13d{bottom:1014.810000px;}
.y72{bottom:1021.650000px;}
.y7{bottom:1021.830000px;}
.ye1{bottom:1022.730000px;}
.y3d{bottom:1023.810000px;}
.ya9{bottom:1029.750000px;}
.y196{bottom:1034.610000px;}
.y71{bottom:1041.450000px;}
.ye0{bottom:1042.530000px;}
.y3c{bottom:1043.610000px;}
.y195{bottom:1054.410000px;}
.y5{bottom:1060.170000px;}
.y70{bottom:1061.250000px;}
.ydf{bottom:1062.330000px;}
.y3b{bottom:1063.410000px;}
.yad{bottom:1067.190000px;}
.y194{bottom:1074.390000px;}
.y6f{bottom:1081.230000px;}
.yde{bottom:1082.310000px;}
.y3a{bottom:1083.390000px;}
.y4{bottom:1090.950000px;}
.y193{bottom:1094.190000px;}
.y6e{bottom:1101.030000px;}
.ydd{bottom:1102.110000px;}
.y39{bottom:1103.190000px;}
.ya8{bottom:1103.550000px;}
.y192{bottom:1113.990000px;}
.y6d{bottom:1120.830000px;}
.y3{bottom:1121.730000px;}
.ydc{bottom:1121.910000px;}
.y38{bottom:1122.990000px;}
.ya7{bottom:1138.860000px;}
.y6c{bottom:1140.660000px;}
.ydb{bottom:1141.740000px;}
.y37{bottom:1142.820000px;}
.y2{bottom:1152.720000px;}
.y6b{bottom:1161.540000px;}
.y36{bottom:1162.620000px;}
.y1{bottom:1186.560000px;}
.y35{bottom:1193.220000px;}
.h29{height:2.826563px;}
.hd{height:17.280000px;}
.h14{height:17.316000px;}
.h15{height:17.460000px;}
.h1f{height:18.540000px;}
.h20{height:18.720000px;}
.h21{height:19.800000px;}
.h24{height:19.980000px;}
.h26{height:21.600000px;}
.h27{height:22.140000px;}
.h25{height:23.976000px;}
.h10{height:34.380000px;}
.hf{height:34.560000px;}
.h11{height:34.596000px;}
.h8{height:37.771172px;}
.h18{height:37.980000px;}
.h1d{height:38.160000px;}
.h23{height:39.600000px;}
.h22{height:39.816000px;}
.h17{height:41.726953px;}
.h19{height:53.709961px;}
.h1c{height:53.853187px;}
.h1a{height:54.540000px;}
.hc{height:58.621992px;}
.h9{height:58.651172px;}
.h6{height:60.226875px;}
.hb{height:61.423863px;}
.h4{height:65.010937px;}
.h7{height:65.846250px;}
.h3{height:66.757500px;}
.ha{height:67.824844px;}
.h2{height:72.562500px;}
.h28{height:84.240000px;}
.h5{height:96.508125px;}
.h13{height:108.360000px;}
.h12{height:108.396000px;}
.h16{height:111.600000px;}
.he{height:166.170000px;}
.h1e{height:247.320000px;}
.h1b{height:289.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:37.260000px;}
.w3{width:48.780000px;}
.w8{width:48.960000px;}
.w12{width:49.680000px;}
.w18{width:53.460000px;}
.w20{width:56.340000px;}
.w14{width:61.560000px;}
.w1a{width:68.076000px;}
.w16{width:72.540000px;}
.w22{width:75.060000px;}
.w1e{width:88.200000px;}
.w10{width:106.020000px;}
.wc{width:106.956000px;}
.w1b{width:111.240000px;}
.wd{width:113.940000px;}
.w17{width:118.116000px;}
.w1f{width:121.356000px;}
.we{width:123.120000px;}
.w7{width:125.136000px;}
.w23{width:125.316000px;}
.w5{width:125.676000px;}
.w1c{width:127.800000px;}
.wa{width:182.730000px;}
.w24{width:210.810000px;}
.w1d{width:316.695000px;}
.w21{width:370.695000px;}
.w9{width:382.935000px;}
.w15{width:395.355000px;}
.wb{width:417.495000px;}
.w19{width:435.855000px;}
.w6{width:436.935000px;}
.w4{width:445.395000px;}
.w25{width:580.965000px;}
.w13{width:588.780000px;}
.wf{width:613.440000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:5.220000px;}
.x5{left:7.560000px;}
.x24{left:13.110000px;}
.x8{left:43.379987px;}
.x19{left:45.360000px;}
.x1c{left:49.830000px;}
.x1{left:54.179987px;}
.x11{left:74.339987px;}
.x35{left:80.999987px;}
.x3{left:96.515987px;}
.x2{left:107.135987px;}
.x1e{left:110.235000px;}
.x36{left:114.875987px;}
.x2f{left:118.296000px;}
.x28{left:121.716000px;}
.x32{left:131.796000px;}
.x4{left:135.936000px;}
.xc{left:138.456000px;}
.x9{left:140.436000px;}
.xf{left:159.150000px;}
.x1b{left:163.410000px;}
.x2c{left:165.270000px;}
.x25{left:178.560000px;}
.x26{left:180.180000px;}
.x29{left:183.990000px;}
.x6{left:185.430000px;}
.xd{left:188.130000px;}
.xa{left:189.930000px;}
.x37{left:191.370000px;}
.x20{left:199.005000px;}
.x10{left:208.830000px;}
.x1d{left:212.940000px;}
.x27{left:217.620000px;}
.x30{left:246.810000px;}
.x38{left:264.810000px;}
.x1a{left:266.040000px;}
.x1f{left:301.680000px;}
.x16{left:320.114987px;}
.x13{left:331.634987px;}
.x23{left:364.680000px;}
.x14{left:377.714987px;}
.x21{left:430.740000px;}
.x22{left:541.620000px;}
.x33{left:560.265000px;}
.x17{left:562.860000px;}
.x31{left:564.405000px;}
.xe{left:571.785000px;}
.x2a{left:580.065000px;}
.x2d{left:601.845000px;}
.xb{left:627.585000px;}
.x7{left:631.545000px;}
.x34{left:636.045000px;}
.x2b{left:653.325000px;}
.x2e{left:670.650000px;}
.x12{left:753.629987px;}
.x15{left:768.389987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-4.250667pt;}
.ls3{letter-spacing:-1.045333pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.081067pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.409067pt;}
.ls13{letter-spacing:0.592000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.736000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:2.720000pt;}
.lsf{letter-spacing:17.232640pt;}
.ls7{letter-spacing:33.232640pt;}
.ls1e{letter-spacing:34.512640pt;}
.lse{letter-spacing:40.912640pt;}
.ls18{letter-spacing:56.912640pt;}
.ls1a{letter-spacing:61.392640pt;}
.ls14{letter-spacing:178.848000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.263360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.ws8{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.960000pt;}
.wsa{word-spacing:-10.876928pt;}
.wsb{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1282.782720pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._8{margin-left:-4.696107pt;}
._9{margin-left:-3.473920pt;}
._a{margin-left:-2.371200pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.347307pt;}
._e{width:3.560107pt;}
._f{width:4.461013pt;}
._10{width:5.554560pt;}
._15{width:6.520960pt;}
._11{width:7.575040pt;}
._13{width:9.219840pt;}
._14{width:10.396373pt;}
._16{width:11.764267pt;}
._18{width:14.448640pt;}
._19{width:15.351680pt;}
._25{width:16.316800pt;}
._1b{width:18.804480pt;}
._1c{width:19.701547pt;}
._1a{width:21.566720pt;}
._d{width:22.788480pt;}
._c{width:24.056960pt;}
._17{width:25.131520pt;}
._2a{width:29.109760pt;}
._2b{width:30.414507pt;}
._26{width:39.627520pt;}
._23{width:48.826880pt;}
._24{width:50.161920pt;}
._2c{width:52.323200pt;}
._2d{width:53.226240pt;}
._1e{width:74.676480pt;}
._20{width:84.997120pt;}
._1f{width:95.592320pt;}
._21{width:98.033707pt;}
._29{width:107.095040pt;}
._27{width:123.533440pt;}
._22{width:138.154880pt;}
._28{width:140.889600pt;}
._1d{width:155.737600pt;}
._12{width:178.848000pt;}
.fs8{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:2.880000pt;}
.y110{bottom:4.000000pt;}
.y112{bottom:4.160000pt;}
.y167{bottom:4.800000pt;}
.y16a{bottom:4.960000pt;}
.y146{bottom:5.120000pt;}
.yfc{bottom:5.253333pt;}
.y14a{bottom:5.280000pt;}
.yf8{bottom:5.306667pt;}
.y103{bottom:5.373333pt;}
.y109{bottom:5.413333pt;}
.y106{bottom:5.466667pt;}
.y166{bottom:5.960000pt;}
.y1c6{bottom:9.600000pt;}
.y9b{bottom:10.400000pt;}
.y97{bottom:10.560000pt;}
.y14c{bottom:13.920000pt;}
.y148{bottom:14.080000pt;}
.y9c{bottom:18.080000pt;}
.y98{bottom:18.240000pt;}
.y9d{bottom:18.280000pt;}
.yfb{bottom:19.973333pt;}
.yf7{bottom:20.026667pt;}
.y10b{bottom:20.093333pt;}
.y108{bottom:20.160000pt;}
.y105{bottom:20.186667pt;}
.y14d{bottom:22.720000pt;}
.y149{bottom:22.880000pt;}
.y1c5{bottom:27.200000pt;}
.y1c2{bottom:30.880000pt;}
.yfa{bottom:34.693333pt;}
.yfe{bottom:34.746667pt;}
.y101{bottom:34.813333pt;}
.yc7{bottom:37.120000pt;}
.y1c4{bottom:44.800000pt;}
.yc6{bottom:52.480000pt;}
.yac{bottom:53.120000pt;}
.y6{bottom:53.472000pt;}
.y1c3{bottom:62.394667pt;}
.ybc{bottom:65.600000pt;}
.yab{bottom:68.480000pt;}
.y1c1{bottom:75.392000pt;}
.ya6{bottom:77.792000pt;}
.yaa{bottom:83.840000pt;}
.y34{bottom:87.072000pt;}
.yda{bottom:89.152000pt;}
.y191{bottom:89.632000pt;}
.y1b7{bottom:90.912000pt;}
.yf5{bottom:91.392000pt;}
.y13c{bottom:94.272000pt;}
.ya5{bottom:95.392000pt;}
.y16f{bottom:104.352000pt;}
.y95{bottom:104.680000pt;}
.y33{bottom:104.832000pt;}
.y6a{bottom:105.632000pt;}
.yd9{bottom:106.752000pt;}
.y190{bottom:107.232000pt;}
.y1b6{bottom:108.512000pt;}
.yf4{bottom:108.992000pt;}
.y13b{bottom:111.872000pt;}
.ya4{bottom:113.152000pt;}
.y94{bottom:119.880000pt;}
.y16e{bottom:121.952000pt;}
.y32{bottom:122.432000pt;}
.y69{bottom:123.232000pt;}
.yf3{bottom:123.712000pt;}
.y10c{bottom:124.000000pt;}
.yd8{bottom:124.352000pt;}
.y18f{bottom:124.832000pt;}
.y1b5{bottom:126.112000pt;}
.y13a{bottom:129.632000pt;}
.ya3{bottom:130.752000pt;}
.y10a{bottom:132.640000pt;}
.y93{bottom:135.240000pt;}
.y16d{bottom:139.546667pt;}
.y31{bottom:140.026667pt;}
.y68{bottom:140.826667pt;}
.yd7{bottom:141.946667pt;}
.y18e{bottom:142.586667pt;}
.y1b4{bottom:143.706667pt;}
.y139{bottom:147.226667pt;}
.ya2{bottom:148.346667pt;}
.y16c{bottom:157.146667pt;}
.y30{bottom:157.626667pt;}
.y67{bottom:158.586667pt;}
.yd6{bottom:159.706667pt;}
.y18d{bottom:160.186667pt;}
.y1b3{bottom:161.466667pt;}
.y138{bottom:164.826667pt;}
.ya1{bottom:165.946667pt;}
.yff{bottom:167.386667pt;}
.y16b{bottom:174.746667pt;}
.y2f{bottom:175.226667pt;}
.y66{bottom:176.186667pt;}
.yd5{bottom:177.306667pt;}
.y18c{bottom:177.786667pt;}
.y1b2{bottom:179.066667pt;}
.y137{bottom:182.426667pt;}
.ya0{bottom:183.546667pt;}
.y10e{bottom:184.986667pt;}
.y169{bottom:188.026667pt;}
.y2e{bottom:192.986667pt;}
.y65{bottom:193.786667pt;}
.yd4{bottom:194.906667pt;}
.y18b{bottom:195.386667pt;}
.y1b1{bottom:196.666667pt;}
.y10d{bottom:199.706667pt;}
.y136{bottom:200.026667pt;}
.y9f{bottom:201.306667pt;}
.y168{bottom:208.346667pt;}
.y2d{bottom:210.586667pt;}
.y64{bottom:211.386667pt;}
.yd3{bottom:212.506667pt;}
.y18a{bottom:212.986667pt;}
.y1b0{bottom:214.266667pt;}
.y135{bottom:217.786667pt;}
.y9e{bottom:218.906667pt;}
.y2c{bottom:228.186667pt;}
.y102{bottom:228.893333pt;}
.y63{bottom:228.986667pt;}
.yd2{bottom:230.106667pt;}
.y189{bottom:230.746667pt;}
.y1af{bottom:231.866667pt;}
.y92{bottom:232.986667pt;}
.y134{bottom:235.386667pt;}
.y2b{bottom:245.786667pt;}
.y62{bottom:246.746667pt;}
.yd1{bottom:247.866667pt;}
.y165{bottom:248.026667pt;}
.y188{bottom:248.346667pt;}
.y1ae{bottom:249.626667pt;}
.y133{bottom:253.026667pt;}
.y2a{bottom:263.426667pt;}
.y61{bottom:264.386667pt;}
.yd0{bottom:265.506667pt;}
.y187{bottom:265.986667pt;}
.y9a{bottom:266.466667pt;}
.y1ad{bottom:267.266667pt;}
.y164{bottom:269.986667pt;}
.y132{bottom:270.626667pt;}
.y29{bottom:281.186667pt;}
.y60{bottom:281.986667pt;}
.y186{bottom:283.586667pt;}
.ycf{bottom:284.066667pt;}
.y1ac{bottom:284.866667pt;}
.y131{bottom:288.226667pt;}
.y163{bottom:291.106667pt;}
.y107{bottom:293.760000pt;}
.y28{bottom:298.786667pt;}
.y5f{bottom:299.586667pt;}
.y99{bottom:299.746667pt;}
.y185{bottom:301.186667pt;}
.yce{bottom:301.666667pt;}
.y1ab{bottom:302.466667pt;}
.y130{bottom:305.986667pt;}
.y162{bottom:308.866667pt;}
.y27{bottom:316.386667pt;}
.y5e{bottom:317.186667pt;}
.y12f{bottom:319.106667pt;}
.y1aa{bottom:320.066667pt;}
.ycd{bottom:320.226667pt;}
.y161{bottom:326.466667pt;}
.y184{bottom:326.946667pt;}
.y96{bottom:333.026667pt;}
.y26{bottom:333.986667pt;}
.y5d{bottom:334.946667pt;}
.y12e{bottom:336.226667pt;}
.y1a9{bottom:337.826667pt;}
.ycc{bottom:337.986667pt;}
.y160{bottom:344.066667pt;}
.y183{bottom:344.546667pt;}
.yf2{bottom:349.026667pt;}
.y25{bottom:351.586667pt;}
.y5c{bottom:352.546667pt;}
.y12d{bottom:353.506667pt;}
.y1a8{bottom:355.426667pt;}
.ycb{bottom:355.586667pt;}
.y15f{bottom:361.666667pt;}
.y182{bottom:362.146667pt;}
.y91{bottom:365.346667pt;}
.yf1{bottom:366.626667pt;}
.y24{bottom:369.346667pt;}
.y5b{bottom:370.146667pt;}
.y12c{bottom:370.626667pt;}
.y1a7{bottom:373.026667pt;}
.yca{bottom:373.186667pt;}
.y15e{bottom:379.266667pt;}
.y181{bottom:379.746667pt;}
.y8f{bottom:381.346667pt;}
.yf0{bottom:384.226667pt;}
.y23{bottom:386.946667pt;}
.yc5{bottom:387.266667pt;}
.y5a{bottom:387.746667pt;}
.y12b{bottom:387.906667pt;}
.y1a6{bottom:390.626667pt;}
.y15d{bottom:397.026667pt;}
.y180{bottom:397.346667pt;}
.yef{bottom:401.826667pt;}
.y8e{bottom:402.466667pt;}
.y22{bottom:404.546667pt;}
.y59{bottom:405.346667pt;}
.y1a5{bottom:408.226667pt;}
.y12a{bottom:410.146667pt;}
.y15c{bottom:414.626667pt;}
.y17f{bottom:415.106667pt;}
.yee{bottom:419.426667pt;}
.y8d{bottom:420.226667pt;}
.yc9{bottom:420.706667pt;}
.y21{bottom:422.146667pt;}
.y58{bottom:423.106667pt;}
.y1a4{bottom:425.986667pt;}
.y129{bottom:427.906667pt;}
.y17e{bottom:432.706667pt;}
.yed{bottom:437.186667pt;}
.y8c{bottom:437.826667pt;}
.y20{bottom:439.746667pt;}
.y15b{bottom:440.226667pt;}
.y57{bottom:440.706667pt;}
.y1a3{bottom:443.586667pt;}
.y128{bottom:445.506667pt;}
.yc8{bottom:453.986667pt;}
.yec{bottom:454.786667pt;}
.y8b{bottom:455.426667pt;}
.y1f{bottom:457.506667pt;}
.y15a{bottom:457.826667pt;}
.y56{bottom:458.306667pt;}
.y1a2{bottom:461.186667pt;}
.y127{bottom:463.106667pt;}
.yc4{bottom:470.946667pt;}
.yeb{bottom:472.386667pt;}
.y8a{bottom:473.026667pt;}
.y1e{bottom:475.106667pt;}
.y159{bottom:475.426667pt;}
.y17d{bottom:475.906667pt;}
.y55{bottom:476.866667pt;}
.y1a1{bottom:478.786667pt;}
.y126{bottom:480.706667pt;}
.yc3{bottom:487.106667pt;}
.yf9{bottom:488.000000pt;}
.y89{bottom:490.626667pt;}
.y1d{bottom:492.706667pt;}
.y158{bottom:493.186667pt;}
.y17c{bottom:493.506667pt;}
.y54{bottom:494.466667pt;}
.y1a0{bottom:496.386667pt;}
.y125{bottom:498.306667pt;}
.yc2{bottom:508.253333pt;}
.y88{bottom:508.413333pt;}
.y1c{bottom:510.333333pt;}
.y157{bottom:510.813333pt;}
.y17b{bottom:511.293333pt;}
.y53{bottom:513.213333pt;}
.y19f{bottom:514.173333pt;}
.y124{bottom:516.093333pt;}
.yc1{bottom:525.853333pt;}
.y87{bottom:526.013333pt;}
.y1b{bottom:527.933333pt;}
.y156{bottom:528.413333pt;}
.y17a{bottom:528.893333pt;}
.y52{bottom:530.813333pt;}
.y19e{bottom:531.773333pt;}
.y123{bottom:533.693333pt;}
.y1c0{bottom:539.773333pt;}
.yc0{bottom:543.613333pt;}
.y86{bottom:544.573333pt;}
.y1a{bottom:545.693333pt;}
.y155{bottom:546.013333pt;}
.y179{bottom:546.493333pt;}
.y51{bottom:548.413333pt;}
.y19d{bottom:549.373333pt;}
.y1bf{bottom:557.373333pt;}
.y122{bottom:559.293333pt;}
.ybf{bottom:561.213333pt;}
.y85{bottom:563.133333pt;}
.y19{bottom:563.293333pt;}
.y154{bottom:563.613333pt;}
.y178{bottom:564.093333pt;}
.y50{bottom:566.013333pt;}
.y19c{bottom:566.973333pt;}
.y1be{bottom:574.973333pt;}
.y121{bottom:576.893333pt;}
.ybe{bottom:578.813333pt;}
.y153{bottom:581.373333pt;}
.y84{bottom:581.693333pt;}
.y18{bottom:582.813333pt;}
.y4f{bottom:584.573333pt;}
.y177{bottom:589.693333pt;}
.y1bd{bottom:592.573333pt;}
.ybb{bottom:593.053333pt;}
.y120{bottom:594.493333pt;}
.y152{bottom:598.973333pt;}
.y83{bottom:600.413333pt;}
.y4e{bottom:602.333333pt;}
.yf6{bottom:604.160000pt;}
.y176{bottom:607.453333pt;}
.y17{bottom:608.573333pt;}
.y1bc{bottom:610.333333pt;}
.y11f{bottom:612.253333pt;}
.y151{bottom:616.573333pt;}
.y82{bottom:618.013333pt;}
.y4d{bottom:619.933333pt;}
.y175{bottom:625.053333pt;}
.y16{bottom:626.173333pt;}
.ybd{bottom:626.333333pt;}
.y1bb{bottom:627.933333pt;}
.y11e{bottom:629.853333pt;}
.y150{bottom:634.173333pt;}
.yfd{bottom:635.360000pt;}
.y81{bottom:635.613333pt;}
.y4c{bottom:637.533333pt;}
.y174{bottom:642.653333pt;}
.y15{bottom:643.773333pt;}
.y1ba{bottom:645.533333pt;}
.y11d{bottom:647.453333pt;}
.y14f{bottom:651.773333pt;}
.y80{bottom:653.213333pt;}
.y4b{bottom:655.133333pt;}
.yba{bottom:658.653333pt;}
.y173{bottom:660.253333pt;}
.y14{bottom:661.373333pt;}
.y1b9{bottom:663.133333pt;}
.y14e{bottom:664.893333pt;}
.y11c{bottom:665.053333pt;}
.y7f{bottom:670.813333pt;}
.y4a{bottom:672.733333pt;}
.y172{bottom:677.853333pt;}
.y13{bottom:678.973333pt;}
.y1b8{bottom:680.733333pt;}
.y11b{bottom:682.653333pt;}
.y14b{bottom:683.293333pt;}
.y7e{bottom:688.573333pt;}
.yb9{bottom:690.013333pt;}
.y19b{bottom:690.493333pt;}
.y171{bottom:696.573333pt;}
.y12{bottom:696.733333pt;}
.y100{bottom:696.800000pt;}
.y49{bottom:698.493333pt;}
.y11a{bottom:700.413333pt;}
.y7d{bottom:706.173333pt;}
.y19a{bottom:708.093333pt;}
.yb8{bottom:711.133333pt;}
.y104{bottom:711.520000pt;}
.y11{bottom:714.333333pt;}
.y170{bottom:715.133333pt;}
.y48{bottom:716.093333pt;}
.y119{bottom:718.013333pt;}
.y147{bottom:719.133333pt;}
.y7c{bottom:723.773333pt;}
.y199{bottom:725.693333pt;}
.yb7{bottom:728.733333pt;}
.y10{bottom:731.933333pt;}
.y47{bottom:733.693333pt;}
.y118{bottom:735.613333pt;}
.y7b{bottom:741.373333pt;}
.y198{bottom:743.293333pt;}
.yb6{bottom:746.333333pt;}
.yf{bottom:749.533333pt;}
.yea{bottom:750.333333pt;}
.y46{bottom:751.293333pt;}
.y117{bottom:753.253333pt;}
.y145{bottom:755.173333pt;}
.y197{bottom:760.933333pt;}
.yb5{bottom:763.973333pt;}
.y116{bottom:766.373333pt;}
.y7a{bottom:767.013333pt;}
.ye9{bottom:767.973333pt;}
.y45{bottom:768.933333pt;}
.ye{bottom:769.253333pt;}
.y144{bottom:778.693333pt;}
.yb4{bottom:781.733333pt;}
.y115{bottom:783.653333pt;}
.y79{bottom:784.773333pt;}
.ye8{bottom:785.733333pt;}
.y44{bottom:786.693333pt;}
.yd{bottom:791.493333pt;}
.y143{bottom:796.293333pt;}
.yb3{bottom:799.333333pt;}
.y114{bottom:800.773333pt;}
.y78{bottom:802.373333pt;}
.ye7{bottom:803.333333pt;}
.y43{bottom:804.293333pt;}
.yc{bottom:809.093333pt;}
.y142{bottom:813.893333pt;}
.yb2{bottom:816.933333pt;}
.y113{bottom:818.053333pt;}
.y77{bottom:819.973333pt;}
.ye6{bottom:820.933333pt;}
.y42{bottom:821.893333pt;}
.yb{bottom:826.853333pt;}
.y141{bottom:831.493333pt;}
.yb1{bottom:834.533333pt;}
.y111{bottom:835.173333pt;}
.y76{bottom:837.573333pt;}
.ye5{bottom:838.533333pt;}
.y41{bottom:839.493333pt;}
.ya{bottom:840.293333pt;}
.y140{bottom:849.093333pt;}
.yb0{bottom:852.133333pt;}
.y10f{bottom:852.453333pt;}
.y75{bottom:855.173333pt;}
.ye4{bottom:856.133333pt;}
.y40{bottom:857.093333pt;}
.y9{bottom:859.173333pt;}
.y13f{bottom:866.853333pt;}
.yaf{bottom:869.893333pt;}
.y74{bottom:872.933333pt;}
.ye3{bottom:873.893333pt;}
.y3f{bottom:874.853333pt;}
.y8{bottom:879.973333pt;}
.yae{bottom:883.013333pt;}
.y13e{bottom:884.453333pt;}
.y73{bottom:890.533333pt;}
.ye2{bottom:891.493333pt;}
.y3e{bottom:892.453333pt;}
.y13d{bottom:902.053333pt;}
.y72{bottom:908.133333pt;}
.y7{bottom:908.293333pt;}
.ye1{bottom:909.093333pt;}
.y3d{bottom:910.053333pt;}
.ya9{bottom:915.333333pt;}
.y196{bottom:919.653333pt;}
.y71{bottom:925.733333pt;}
.ye0{bottom:926.693333pt;}
.y3c{bottom:927.653333pt;}
.y195{bottom:937.253333pt;}
.y5{bottom:942.373333pt;}
.y70{bottom:943.333333pt;}
.ydf{bottom:944.293333pt;}
.y3b{bottom:945.253333pt;}
.yad{bottom:948.613333pt;}
.y194{bottom:955.013333pt;}
.y6f{bottom:961.093333pt;}
.yde{bottom:962.053333pt;}
.y3a{bottom:963.013333pt;}
.y4{bottom:969.733333pt;}
.y193{bottom:972.613333pt;}
.y6e{bottom:978.693333pt;}
.ydd{bottom:979.653333pt;}
.y39{bottom:980.613333pt;}
.ya8{bottom:980.933333pt;}
.y192{bottom:990.213333pt;}
.y6d{bottom:996.293333pt;}
.y3{bottom:997.093333pt;}
.ydc{bottom:997.253333pt;}
.y38{bottom:998.213333pt;}
.ya7{bottom:1012.320000pt;}
.y6c{bottom:1013.920000pt;}
.ydb{bottom:1014.880000pt;}
.y37{bottom:1015.840000pt;}
.y2{bottom:1024.640000pt;}
.y6b{bottom:1032.480000pt;}
.y36{bottom:1033.440000pt;}
.y1{bottom:1054.720000pt;}
.y35{bottom:1060.640000pt;}
.h29{height:2.512500pt;}
.hd{height:15.360000pt;}
.h14{height:15.392000pt;}
.h15{height:15.520000pt;}
.h1f{height:16.480000pt;}
.h20{height:16.640000pt;}
.h21{height:17.600000pt;}
.h24{height:17.760000pt;}
.h26{height:19.200000pt;}
.h27{height:19.680000pt;}
.h25{height:21.312000pt;}
.h10{height:30.560000pt;}
.hf{height:30.720000pt;}
.h11{height:30.752000pt;}
.h8{height:33.574375pt;}
.h18{height:33.760000pt;}
.h1d{height:33.920000pt;}
.h23{height:35.200000pt;}
.h22{height:35.392000pt;}
.h17{height:37.090625pt;}
.h19{height:47.742188pt;}
.h1c{height:47.869500pt;}
.h1a{height:48.480000pt;}
.hc{height:52.108438pt;}
.h9{height:52.134375pt;}
.h6{height:53.535000pt;}
.hb{height:54.598989pt;}
.h4{height:57.787500pt;}
.h7{height:58.530000pt;}
.h3{height:59.340000pt;}
.ha{height:60.288750pt;}
.h2{height:64.500000pt;}
.h28{height:74.880000pt;}
.h5{height:85.785000pt;}
.h13{height:96.320000pt;}
.h12{height:96.352000pt;}
.h16{height:99.200000pt;}
.he{height:147.706667pt;}
.h1e{height:219.840000pt;}
.h1b{height:257.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:33.120000pt;}
.w3{width:43.360000pt;}
.w8{width:43.520000pt;}
.w12{width:44.160000pt;}
.w18{width:47.520000pt;}
.w20{width:50.080000pt;}
.w14{width:54.720000pt;}
.w1a{width:60.512000pt;}
.w16{width:64.480000pt;}
.w22{width:66.720000pt;}
.w1e{width:78.400000pt;}
.w10{width:94.240000pt;}
.wc{width:95.072000pt;}
.w1b{width:98.880000pt;}
.wd{width:101.280000pt;}
.w17{width:104.992000pt;}
.w1f{width:107.872000pt;}
.we{width:109.440000pt;}
.w7{width:111.232000pt;}
.w23{width:111.392000pt;}
.w5{width:111.712000pt;}
.w1c{width:113.600000pt;}
.wa{width:162.426667pt;}
.w24{width:187.386667pt;}
.w1d{width:281.506667pt;}
.w21{width:329.506667pt;}
.w9{width:340.386667pt;}
.w15{width:351.426667pt;}
.wb{width:371.106667pt;}
.w19{width:387.426667pt;}
.w6{width:388.386667pt;}
.w4{width:395.906667pt;}
.w25{width:516.413333pt;}
.w13{width:523.360000pt;}
.wf{width:545.280000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:4.640000pt;}
.x5{left:6.720000pt;}
.x24{left:11.653333pt;}
.x8{left:38.559988pt;}
.x19{left:40.320000pt;}
.x1c{left:44.293333pt;}
.x1{left:48.159988pt;}
.x11{left:66.079988pt;}
.x35{left:71.999988pt;}
.x3{left:85.791988pt;}
.x2{left:95.231988pt;}
.x1e{left:97.986667pt;}
.x36{left:102.111988pt;}
.x2f{left:105.152000pt;}
.x28{left:108.192000pt;}
.x32{left:117.152000pt;}
.x4{left:120.832000pt;}
.xc{left:123.072000pt;}
.x9{left:124.832000pt;}
.xf{left:141.466667pt;}
.x1b{left:145.253333pt;}
.x2c{left:146.906667pt;}
.x25{left:158.720000pt;}
.x26{left:160.160000pt;}
.x29{left:163.546667pt;}
.x6{left:164.826667pt;}
.xd{left:167.226667pt;}
.xa{left:168.826667pt;}
.x37{left:170.106667pt;}
.x20{left:176.893333pt;}
.x10{left:185.626667pt;}
.x1d{left:189.280000pt;}
.x27{left:193.440000pt;}
.x30{left:219.386667pt;}
.x38{left:235.386667pt;}
.x1a{left:236.480000pt;}
.x1f{left:268.160000pt;}
.x16{left:284.546655pt;}
.x13{left:294.786655pt;}
.x23{left:324.160000pt;}
.x14{left:335.746655pt;}
.x21{left:382.880000pt;}
.x22{left:481.440000pt;}
.x33{left:498.013333pt;}
.x17{left:500.320000pt;}
.x31{left:501.693333pt;}
.xe{left:508.253333pt;}
.x2a{left:515.613333pt;}
.x2d{left:534.973333pt;}
.xb{left:557.853333pt;}
.x7{left:561.373333pt;}
.x34{left:565.373333pt;}
.x2b{left:580.733333pt;}
.x2e{left:596.133333pt;}
.x12{left:669.893322pt;}
.x15{left:683.013322pt;}
}




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