
    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_eb088d3d575aaeaebf6a422d.woff2')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_d97564e51df703949e4884b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e60fbda3a78a8b23c9c11b2a.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_738df903dca54937fea968df.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_caffbef9d8fb23416f6bc9cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128418;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v7{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v8{vertical-align:25.920000px;}
.v6{vertical-align:34.560000px;}
.ls2c{letter-spacing:-14.220000px;}
.ls11{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.080000px;}
.ls1a{letter-spacing:-0.924000px;}
.ls2e{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.208200px;}
.ls18{letter-spacing:-0.206400px;}
.ls31{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.037440px;}
.ls2f{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106800px;}
.ls2b{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.259800px;}
.ls33{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.263520px;}
.ls29{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.364800px;}
.lsf{letter-spacing:0.511800px;}
.ls10{letter-spacing:0.756000px;}
.lsb{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.134720px;}
.ls24{letter-spacing:1.157040px;}
.ls2{letter-spacing:1.330560px;}
.ls1{letter-spacing:1.440000px;}
.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;}
.ls1f{letter-spacing:1.888560px;}
.ls3{letter-spacing:2.050560px;}
.ls1e{letter-spacing:2.413440px;}
.ls28{letter-spacing:2.805120px;}
.ls22{letter-spacing:3.029760px;}
.ls23{letter-spacing:3.111840px;}
.ls1d{letter-spacing:3.156960px;}
.ls25{letter-spacing:3.180960px;}
.ls36{letter-spacing:11.466720px;}
.ls26{letter-spacing:15.989760px;}
.ls21{letter-spacing:16.071840px;}
.ls20{letter-spacing:16.169760px;}
.ls35{letter-spacing:41.850720px;}
.ls34{letter-spacing:71.226720px;}
.ls2a{letter-spacing:106.506720px;}
.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;}
}
.ws12{word-spacing:-60.124800px;}
.ws11{word-spacing:-59.760000px;}
.wsc{word-spacing:-46.542240px;}
.wse{word-spacing:-46.080720px;}
.ws14{word-spacing:-43.200720px;}
.ws10{word-spacing:-41.910000px;}
.ws15{word-spacing:-41.760000px;}
.wsd{word-spacing:-26.408160px;}
.ws13{word-spacing:-25.619040px;}
.wsf{word-spacing:-25.268400px;}
.wsb{word-spacing:-22.244400px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.238800px;}
.ws19{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws1a{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.733600px;}
.ws1c{word-spacing:-14.580000px;}
.ws1b{word-spacing:-14.479800px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
.ws16{word-spacing:237.876960px;}
._3{margin-left:-2598.546000px;}
._8{margin-left:-1590.192000px;}
._5{margin-left:-1366.159680px;}
._7{margin-left:-989.210880px;}
._9{margin-left:-575.933760px;}
._1b{margin-left:-14.361840px;}
._6{margin-left:-8.213760px;}
._25{margin-left:-6.745680px;}
._a{margin-left:-5.333280px;}
._b{margin-left:-3.643200px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.604000px;}
._12{width:4.604400px;}
._e{width:5.958720px;}
._d{width:7.311120px;}
._13{width:9.010560px;}
._11{width:10.076160px;}
._10{width:11.593440px;}
._16{width:13.143600px;}
._1a{width:14.551920px;}
._15{width:15.999840px;}
._14{width:17.151120px;}
._f{width:18.365040px;}
._19{width:19.601280px;}
._18{width:21.363840px;}
._c{width:22.503600px;}
._17{width:23.724720px;}
._27{width:25.666560px;}
._20{width:27.190800px;}
._1f{width:28.206720px;}
._26{width:31.330800px;}
._23{width:34.601040px;}
._22{width:35.616960px;}
._24{width:53.563680px;}
._28{width:57.530160px;}
._2e{width:69.620400px;}
._2f{width:74.759760px;}
._2d{width:82.188720px;}
._2c{width:88.325280px;}
._1c{width:90.201360px;}
._21{width:110.813760px;}
._1d{width:173.463840px;}
._30{width:183.601440px;}
._2a{width:186.152400px;}
._2b{width:187.500480px;}
._29{width:188.781840px;}
._1e{width:201.240000px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:3.240000px;}
.y10b{bottom:3.270000px;}
.yc7{bottom:5.940000px;}
.yd6{bottom:11.880000px;}
.y12f{bottom:17.460000px;}
.yd3{bottom:20.340000px;}
.yce{bottom:20.520000px;}
.ydb{bottom:28.980000px;}
.yd4{bottom:37.620000px;}
.yda{bottom:37.650000px;}
.ycd{bottom:37.800000px;}
.yd1{bottom:46.440000px;}
.yc9{bottom:55.080000px;}
.y6{bottom:60.300000px;}
.yd0{bottom:63.720000px;}
.ycc{bottom:72.405000px;}
.ycb{bottom:89.505000px;}
.y34{bottom:96.876000px;}
.y156{bottom:100.836000px;}
.yca{bottom:106.785000px;}
.y124{bottom:109.476000px;}
.y6b{bottom:110.556000px;}
.y90{bottom:112.356000px;}
.yf0{bottom:112.896000px;}
.y33{bottom:116.856000px;}
.yc5{bottom:117.936000px;}
.y155{bottom:120.816000px;}
.y178{bottom:121.536000px;}
.y123{bottom:129.456000px;}
.y6a{bottom:130.356000px;}
.y8f{bottom:132.336000px;}
.yef{bottom:132.696000px;}
.y32{bottom:136.656000px;}
.yc4{bottom:137.736000px;}
.y154{bottom:140.616000px;}
.y177{bottom:141.336000px;}
.y122{bottom:149.256000px;}
.y69{bottom:150.330000px;}
.y8e{bottom:152.130000px;}
.yee{bottom:152.670000px;}
.y31{bottom:156.450000px;}
.yc3{bottom:157.710000px;}
.y176{bottom:161.310000px;}
.y121{bottom:169.050000px;}
.y153{bottom:169.410000px;}
.y68{bottom:170.130000px;}
.y8d{bottom:171.930000px;}
.yed{bottom:172.470000px;}
.y30{bottom:176.250000px;}
.yc2{bottom:177.510000px;}
.y175{bottom:181.110000px;}
.y120{bottom:188.850000px;}
.y152{bottom:189.210000px;}
.y67{bottom:189.930000px;}
.y8c{bottom:191.730000px;}
.yec{bottom:192.270000px;}
.y2f{bottom:196.050000px;}
.yc1{bottom:197.310000px;}
.y174{bottom:200.910000px;}
.y11f{bottom:208.650000px;}
.y151{bottom:209.010000px;}
.y66{bottom:209.730000px;}
.y8b{bottom:211.530000px;}
.yeb{bottom:212.070000px;}
.y2e{bottom:216.030000px;}
.yc0{bottom:217.110000px;}
.y173{bottom:220.710000px;}
.y11e{bottom:228.630000px;}
.y150{bottom:228.990000px;}
.y65{bottom:229.530000px;}
.y8a{bottom:231.510000px;}
.yea{bottom:231.870000px;}
.y2d{bottom:235.830000px;}
.ybf{bottom:236.910000px;}
.y172{bottom:240.510000px;}
.ye9{bottom:246.810000px;}
.y11d{bottom:248.430000px;}
.y14f{bottom:248.790000px;}
.y64{bottom:249.510000px;}
.y89{bottom:251.310000px;}
.y18c{bottom:254.010000px;}
.y2c{bottom:255.630000px;}
.ybe{bottom:256.890000px;}
.y171{bottom:260.490000px;}
.y11c{bottom:268.230000px;}
.y14e{bottom:268.590000px;}
.y63{bottom:269.310000px;}
.y88{bottom:271.110000px;}
.y18b{bottom:273.990000px;}
.y2b{bottom:275.430000px;}
.ybd{bottom:276.690000px;}
.y170{bottom:280.290000px;}
.y11b{bottom:288.030000px;}
.y14d{bottom:288.390000px;}
.y62{bottom:289.110000px;}
.y87{bottom:290.910000px;}
.ye8{bottom:291.810000px;}
.y18a{bottom:293.790000px;}
.y2a{bottom:295.230000px;}
.ybc{bottom:296.490000px;}
.y16f{bottom:300.090000px;}
.y11a{bottom:307.830000px;}
.y14c{bottom:308.190000px;}
.y61{bottom:308.910000px;}
.y86{bottom:310.710000px;}
.y189{bottom:313.590000px;}
.ye7{bottom:314.310000px;}
.y29{bottom:315.210000px;}
.ybb{bottom:316.290000px;}
.y16e{bottom:321.150000px;}
.y119{bottom:327.810000px;}
.y14b{bottom:328.215000px;}
.y60{bottom:328.755000px;}
.y85{bottom:330.735000px;}
.y188{bottom:333.435000px;}
.y28{bottom:335.055000px;}
.yba{bottom:336.135000px;}
.ye6{bottom:336.855000px;}
.y16d{bottom:339.195000px;}
.y118{bottom:347.655000px;}
.y14a{bottom:348.015000px;}
.y5f{bottom:348.735000px;}
.y84{bottom:350.535000px;}
.y187{bottom:353.235000px;}
.y27{bottom:354.855000px;}
.yb9{bottom:356.115000px;}
.y16c{bottom:357.195000px;}
.ye5{bottom:359.355000px;}
.y117{bottom:367.455000px;}
.y149{bottom:367.815000px;}
.y5e{bottom:368.535000px;}
.y83{bottom:370.335000px;}
.y186{bottom:373.215000px;}
.y16b{bottom:374.295000px;}
.y26{bottom:374.655000px;}
.yb8{bottom:375.915000px;}
.ye4{bottom:382.575000px;}
.y116{bottom:387.255000px;}
.y148{bottom:387.615000px;}
.y5d{bottom:388.335000px;}
.y82{bottom:390.135000px;}
.y16a{bottom:391.575000px;}
.y185{bottom:393.015000px;}
.y25{bottom:394.455000px;}
.yb7{bottom:395.715000px;}
.y115{bottom:407.055000px;}
.y147{bottom:407.415000px;}
.y5c{bottom:408.135000px;}
.y169{bottom:409.575000px;}
.y81{bottom:409.935000px;}
.ye3{bottom:411.555000px;}
.y184{bottom:412.815000px;}
.y24{bottom:414.435000px;}
.yb6{bottom:415.515000px;}
.y168{bottom:426.855000px;}
.y114{bottom:427.035000px;}
.y146{bottom:427.395000px;}
.y5b{bottom:427.935000px;}
.y80{bottom:429.915000px;}
.ye2{bottom:431.355000px;}
.y183{bottom:432.615000px;}
.y23{bottom:434.235000px;}
.yb5{bottom:435.315000px;}
.y167{bottom:444.135000px;}
.y113{bottom:446.835000px;}
.y145{bottom:447.195000px;}
.y5a{bottom:447.915000px;}
.y7f{bottom:449.715000px;}
.ye1{bottom:451.335000px;}
.y182{bottom:452.415000px;}
.y22{bottom:454.035000px;}
.yb4{bottom:455.295000px;}
.y166{bottom:461.415000px;}
.y112{bottom:466.635000px;}
.y144{bottom:466.995000px;}
.y181{bottom:467.355000px;}
.y59{bottom:467.715000px;}
.y7e{bottom:469.515000px;}
.ye0{bottom:471.135000px;}
.y21{bottom:473.835000px;}
.yb3{bottom:475.095000px;}
.y165{bottom:478.695000px;}
.y111{bottom:486.435000px;}
.y143{bottom:486.795000px;}
.y58{bottom:487.515000px;}
.y7d{bottom:489.315000px;}
.ydf{bottom:490.935000px;}
.y20{bottom:493.635000px;}
.yb2{bottom:494.895000px;}
.y164{bottom:495.795000px;}
.y180{bottom:501.735000px;}
.y110{bottom:506.235000px;}
.y142{bottom:506.595000px;}
.y57{bottom:507.315000px;}
.yde{bottom:510.735000px;}
.y163{bottom:513.075000px;}
.y1f{bottom:513.615000px;}
.yb1{bottom:514.695000px;}
.y7c{bottom:518.115000px;}
.y10f{bottom:526.215000px;}
.y141{bottom:526.575000px;}
.y56{bottom:527.115000px;}
.y162{bottom:530.355000px;}
.ydd{bottom:530.535000px;}
.y1e{bottom:533.415000px;}
.yb0{bottom:534.495000px;}
.y17f{bottom:536.295000px;}
.y7b{bottom:538.095000px;}
.y10e{bottom:540.975000px;}
.y140{bottom:546.375000px;}
.y55{bottom:547.095000px;}
.y161{bottom:547.635000px;}
.ydc{bottom:550.515000px;}
.y1d{bottom:553.215000px;}
.yaf{bottom:554.475000px;}
.y7a{bottom:557.895000px;}
.y10d{bottom:558.255000px;}
.y160{bottom:564.915000px;}
.yd9{bottom:565.275000px;}
.y13f{bottom:566.175000px;}
.y54{bottom:566.895000px;}
.y17e{bottom:570.855000px;}
.y1c{bottom:573.015000px;}
.yae{bottom:574.275000px;}
.y10c{bottom:576.255000px;}
.y79{bottom:577.695000px;}
.y15f{bottom:582.015000px;}
.y13e{bottom:585.975000px;}
.y53{bottom:586.695000px;}
.yad{bottom:594.075000px;}
.y10a{bottom:594.255000px;}
.y1b{bottom:595.185000px;}
.y78{bottom:597.525000px;}
.y15e{bottom:599.325000px;}
.y17d{bottom:605.265000px;}
.y13d{bottom:605.805000px;}
.y52{bottom:606.525000px;}
.y109{bottom:611.385000px;}
.yac{bottom:613.905000px;}
.y15d{bottom:616.605000px;}
.y77{bottom:617.325000px;}
.yd8{bottom:617.685000px;}
.y17c{bottom:622.545000px;}
.y1a{bottom:623.985000px;}
.y13c{bottom:625.785000px;}
.y51{bottom:626.325000px;}
.y108{bottom:628.665000px;}
.yab{bottom:633.705000px;}
.y15c{bottom:633.885000px;}
.y76{bottom:637.305000px;}
.y19{bottom:643.785000px;}
.y13b{bottom:645.585000px;}
.y107{bottom:645.945000px;}
.y50{bottom:646.305000px;}
.y15b{bottom:651.165000px;}
.yaa{bottom:653.685000px;}
.y75{bottom:657.105000px;}
.y18{bottom:663.765000px;}
.y106{bottom:663.945000px;}
.y13a{bottom:665.385000px;}
.y4f{bottom:666.105000px;}
.y15a{bottom:668.445000px;}
.yd7{bottom:670.245000px;}
.ya9{bottom:673.485000px;}
.y74{bottom:676.905000px;}
.y17{bottom:683.565000px;}
.y139{bottom:685.185000px;}
.y159{bottom:685.545000px;}
.y4e{bottom:685.905000px;}
.y105{bottom:687.705000px;}
.y17b{bottom:691.485000px;}
.y73{bottom:696.705000px;}
.ya8{bottom:702.285000px;}
.y16{bottom:703.365000px;}
.y158{bottom:703.905000px;}
.y138{bottom:704.985000px;}
.yd5{bottom:705.525000px;}
.y4d{bottom:705.705000px;}
.y104{bottom:707.505000px;}
.y72{bottom:716.505000px;}
.y137{bottom:719.925000px;}
.y157{bottom:721.185000px;}
.ya7{bottom:722.445000px;}
.y15{bottom:723.165000px;}
.y4c{bottom:725.505000px;}
.y17a{bottom:726.045000px;}
.y103{bottom:727.485000px;}
.y71{bottom:736.485000px;}
.ya6{bottom:739.185000px;}
.yd2{bottom:740.805000px;}
.y14{bottom:742.965000px;}
.y4b{bottom:745.485000px;}
.ya4{bottom:745.665000px;}
.y102{bottom:747.285000px;}
.y136{bottom:752.145000px;}
.ya5{bottom:755.025000px;}
.y70{bottom:756.285000px;}
.y179{bottom:761.325000px;}
.y13{bottom:762.945000px;}
.y4a{bottom:765.285000px;}
.y101{bottom:767.085000px;}
.ya3{bottom:769.605000px;}
.y6f{bottom:776.085000px;}
.y12{bottom:782.745000px;}
.y135{bottom:783.645000px;}
.y49{bottom:785.085000px;}
.y100{bottom:786.885000px;}
.ya2{bottom:789.585000px;}
.yc8{bottom:793.185000px;}
.y6e{bottom:795.885000px;}
.y134{bottom:800.925000px;}
.y11{bottom:802.545000px;}
.y48{bottom:804.885000px;}
.yff{bottom:806.685000px;}
.ya1{bottom:809.385000px;}
.y6d{bottom:815.685000px;}
.y133{bottom:818.025000px;}
.y10{bottom:822.345000px;}
.y47{bottom:824.685000px;}
.yfe{bottom:826.665000px;}
.ya0{bottom:829.185000px;}
.y6c{bottom:835.665000px;}
.y132{bottom:836.025000px;}
.yf{bottom:842.145000px;}
.y46{bottom:844.665000px;}
.yfd{bottom:846.465000px;}
.y9f{bottom:849.165000px;}
.y131{bottom:853.305000px;}
.ye{bottom:864.330000px;}
.y45{bottom:864.510000px;}
.yfc{bottom:866.310000px;}
.y130{bottom:870.630000px;}
.y9e{bottom:878.370000px;}
.y44{bottom:884.310000px;}
.yfb{bottom:886.110000px;}
.y12e{bottom:887.910000px;}
.yd{bottom:889.350000px;}
.y9d{bottom:900.330000px;}
.y43{bottom:904.110000px;}
.yfa{bottom:905.910000px;}
.yc{bottom:909.150000px;}
.yc6{bottom:914.730000px;}
.y12d{bottom:919.410000px;}
.y9c{bottom:920.310000px;}
.y42{bottom:923.910000px;}
.yf9{bottom:925.890000px;}
.yb{bottom:929.130000px;}
.y12c{bottom:936.690000px;}
.y9b{bottom:940.290000px;}
.y41{bottom:943.890000px;}
.ya{bottom:944.250000px;}
.yf8{bottom:945.690000px;}
.y12b{bottom:953.790000px;}
.y9a{bottom:960.090000px;}
.y40{bottom:963.690000px;}
.yf7{bottom:965.490000px;}
.y9{bottom:966.030000px;}
.y12a{bottom:971.070000px;}
.y99{bottom:979.890000px;}
.y3f{bottom:983.490000px;}
.y129{bottom:988.350000px;}
.y8{bottom:990.870000px;}
.yf6{bottom:994.290000px;}
.y98{bottom:999.690000px;}
.y3e{bottom:1003.290000px;}
.y128{bottom:1005.630000px;}
.yf5{bottom:1014.090000px;}
.y97{bottom:1019.490000px;}
.y7{bottom:1022.730000px;}
.y127{bottom:1022.910000px;}
.y3d{bottom:1023.090000px;}
.yf4{bottom:1034.070000px;}
.y96{bottom:1039.470000px;}
.y126{bottom:1041.270000px;}
.y3c{bottom:1043.070000px;}
.yf3{bottom:1053.870000px;}
.y125{bottom:1058.550000px;}
.y95{bottom:1059.270000px;}
.y5{bottom:1061.070000px;}
.y3b{bottom:1062.870000px;}
.yf2{bottom:1073.670000px;}
.y94{bottom:1079.250000px;}
.y3a{bottom:1082.670000px;}
.y4{bottom:1091.850000px;}
.yf1{bottom:1093.470000px;}
.y93{bottom:1099.590000px;}
.y39{bottom:1102.470000px;}
.y92{bottom:1119.750000px;}
.y38{bottom:1122.270000px;}
.y3{bottom:1122.810000px;}
.y91{bottom:1142.100000px;}
.y37{bottom:1142.280000px;}
.y2{bottom:1153.620000px;}
.y36{bottom:1171.620000px;}
.y1{bottom:1184.400000px;}
.y35{bottom:1193.400000px;}
.h19{height:17.100000px;}
.h18{height:17.136000px;}
.h17{height:17.280000px;}
.h1b{height:17.316000px;}
.hf{height:22.500000px;}
.h16{height:22.536000px;}
.h6{height:27.432422px;}
.h7{height:28.115859px;}
.h1a{height:31.500000px;}
.h12{height:34.380000px;}
.h1e{height:34.416000px;}
.h13{height:34.560000px;}
.hc{height:35.479687px;}
.h9{height:42.164648px;}
.h8{height:43.215117px;}
.h1d{height:43.506914px;}
.he{height:45.753750px;}
.h2{height:46.736719px;}
.h3{height:47.901094px;}
.hb{height:50.772656px;}
.h11{height:51.660000px;}
.h15{height:51.696000px;}
.h14{height:51.840000px;}
.h1c{height:52.066406px;}
.h5{height:53.224453px;}
.ha{height:57.799688px;}
.h4{height:67.565039px;}
.hd{height:69.135117px;}
.h10{height:120.816000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:85.140000px;}
.w17{width:95.580000px;}
.w1f{width:105.516000px;}
.wb{width:105.660000px;}
.w7{width:106.236000px;}
.w16{width:107.316000px;}
.w13{width:107.496000px;}
.w9{width:118.980000px;}
.w15{width:119.520000px;}
.w14{width:119.556000px;}
.we{width:121.860000px;}
.w1d{width:127.656000px;}
.wa{width:130.536000px;}
.wf{width:141.156000px;}
.w8{width:146.556000px;}
.w1a{width:151.050000px;}
.w12{width:167.250000px;}
.w6{width:175.350000px;}
.w1e{width:179.310000px;}
.w10{width:184.530000px;}
.w19{width:189.210000px;}
.w3{width:191.910000px;}
.w1b{width:212.610000px;}
.w11{width:218.730000px;}
.w21{width:220.890000px;}
.wc{width:263.010000px;}
.w5{width:268.410000px;}
.w4{width:331.455000px;}
.wd{width:403.275000px;}
.w1c{width:552.885000px;}
.w18{width:716.730000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:5.580000px;}
.x5{left:7.740000px;}
.x1f{left:26.999987px;}
.x4{left:49.860000px;}
.x1{left:54.179987px;}
.x12{left:62.094000px;}
.x20{left:79.559987px;}
.x16{left:88.200000px;}
.x3{left:96.515987px;}
.x21{left:106.595987px;}
.x10{left:108.035987px;}
.x11{left:113.436000px;}
.x2{left:129.455987px;}
.x1c{left:170.130000px;}
.x22{left:214.950000px;}
.xa{left:230.250000px;}
.x14{left:235.290000px;}
.x6{left:242.490000px;}
.x1b{left:246.629987px;}
.x18{left:255.450000px;}
.xf{left:273.629987px;}
.xb{left:336.495000px;}
.x1d{left:359.355000px;}
.x19{left:362.955000px;}
.x13{left:376.455000px;}
.x23{left:394.275000px;}
.x8{left:421.274987px;}
.x9{left:473.504987px;}
.xc{left:483.045000px;}
.x24{left:499.785000px;}
.x1e{left:510.405000px;}
.x15{left:560.985000px;}
.x7{left:574.845000px;}
.x25{left:584.925000px;}
.xd{left:602.025000px;}
.x1a{left:709.350000px;}
.xe{left:732.570000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v7{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v8{vertical-align:23.040000pt;}
.v6{vertical-align:30.720000pt;}
.ls2c{letter-spacing:-12.640000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls1a{letter-spacing:-0.821333pt;}
.ls2e{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.185067pt;}
.ls18{letter-spacing:-0.183467pt;}
.ls31{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.033280pt;}
.ls2f{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094933pt;}
.ls2b{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.230933pt;}
.ls33{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.234240pt;}
.ls29{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.324267pt;}
.lsf{letter-spacing:0.454933pt;}
.ls10{letter-spacing:0.672000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls24{letter-spacing:1.028480pt;}
.ls2{letter-spacing:1.182720pt;}
.ls1{letter-spacing:1.280000pt;}
.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;}
.ls1f{letter-spacing:1.678720pt;}
.ls3{letter-spacing:1.822720pt;}
.ls1e{letter-spacing:2.145280pt;}
.ls28{letter-spacing:2.493440pt;}
.ls22{letter-spacing:2.693120pt;}
.ls23{letter-spacing:2.766080pt;}
.ls1d{letter-spacing:2.806187pt;}
.ls25{letter-spacing:2.827520pt;}
.ls36{letter-spacing:10.192640pt;}
.ls26{letter-spacing:14.213120pt;}
.ls21{letter-spacing:14.286080pt;}
.ls20{letter-spacing:14.373120pt;}
.ls35{letter-spacing:37.200640pt;}
.ls34{letter-spacing:63.312640pt;}
.ls2a{letter-spacing:94.672640pt;}
.ws12{word-spacing:-53.444267pt;}
.ws11{word-spacing:-53.120000pt;}
.wsc{word-spacing:-41.370880pt;}
.wse{word-spacing:-40.960640pt;}
.ws14{word-spacing:-38.400640pt;}
.ws10{word-spacing:-37.253333pt;}
.ws15{word-spacing:-37.120000pt;}
.wsd{word-spacing:-23.473920pt;}
.ws13{word-spacing:-22.772480pt;}
.wsf{word-spacing:-22.460800pt;}
.wsb{word-spacing:-19.772800pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.545600pt;}
.ws19{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws1a{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.096533pt;}
.ws1c{word-spacing:-12.960000pt;}
.ws1b{word-spacing:-12.870933pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
.ws16{word-spacing:211.446187pt;}
._3{margin-left:-2309.818667pt;}
._8{margin-left:-1413.504000pt;}
._5{margin-left:-1214.364160pt;}
._7{margin-left:-879.298560pt;}
._9{margin-left:-511.941120pt;}
._1b{margin-left:-12.766080pt;}
._6{margin-left:-7.301120pt;}
._25{margin-left:-5.996160pt;}
._a{margin-left:-4.740693pt;}
._b{margin-left:-3.238400pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.314667pt;}
._12{width:4.092800pt;}
._e{width:5.296640pt;}
._d{width:6.498773pt;}
._13{width:8.009387pt;}
._11{width:8.956587pt;}
._10{width:10.305280pt;}
._16{width:11.683200pt;}
._1a{width:12.935040pt;}
._15{width:14.222080pt;}
._14{width:15.245440pt;}
._f{width:16.324480pt;}
._19{width:17.423360pt;}
._18{width:18.990080pt;}
._c{width:20.003200pt;}
._17{width:21.088640pt;}
._27{width:22.814720pt;}
._20{width:24.169600pt;}
._1f{width:25.072640pt;}
._26{width:27.849600pt;}
._23{width:30.756480pt;}
._22{width:31.659520pt;}
._24{width:47.612160pt;}
._28{width:51.137920pt;}
._2e{width:61.884800pt;}
._2f{width:66.453120pt;}
._2d{width:73.056640pt;}
._2c{width:78.511360pt;}
._1c{width:80.178987pt;}
._21{width:98.501120pt;}
._1d{width:154.190080pt;}
._30{width:163.201280pt;}
._2a{width:165.468800pt;}
._2b{width:166.667093pt;}
._29{width:167.806080pt;}
._1e{width:178.880000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:2.880000pt;}
.y10b{bottom:2.906667pt;}
.yc7{bottom:5.280000pt;}
.yd6{bottom:10.560000pt;}
.y12f{bottom:15.520000pt;}
.yd3{bottom:18.080000pt;}
.yce{bottom:18.240000pt;}
.ydb{bottom:25.760000pt;}
.yd4{bottom:33.440000pt;}
.yda{bottom:33.466667pt;}
.ycd{bottom:33.600000pt;}
.yd1{bottom:41.280000pt;}
.yc9{bottom:48.960000pt;}
.y6{bottom:53.600000pt;}
.yd0{bottom:56.640000pt;}
.ycc{bottom:64.360000pt;}
.ycb{bottom:79.560000pt;}
.y34{bottom:86.112000pt;}
.y156{bottom:89.632000pt;}
.yca{bottom:94.920000pt;}
.y124{bottom:97.312000pt;}
.y6b{bottom:98.272000pt;}
.y90{bottom:99.872000pt;}
.yf0{bottom:100.352000pt;}
.y33{bottom:103.872000pt;}
.yc5{bottom:104.832000pt;}
.y155{bottom:107.392000pt;}
.y178{bottom:108.032000pt;}
.y123{bottom:115.072000pt;}
.y6a{bottom:115.872000pt;}
.y8f{bottom:117.632000pt;}
.yef{bottom:117.952000pt;}
.y32{bottom:121.472000pt;}
.yc4{bottom:122.432000pt;}
.y154{bottom:124.992000pt;}
.y177{bottom:125.632000pt;}
.y122{bottom:132.672000pt;}
.y69{bottom:133.626667pt;}
.y8e{bottom:135.226667pt;}
.yee{bottom:135.706667pt;}
.y31{bottom:139.066667pt;}
.yc3{bottom:140.186667pt;}
.y176{bottom:143.386667pt;}
.y121{bottom:150.266667pt;}
.y153{bottom:150.586667pt;}
.y68{bottom:151.226667pt;}
.y8d{bottom:152.826667pt;}
.yed{bottom:153.306667pt;}
.y30{bottom:156.666667pt;}
.yc2{bottom:157.786667pt;}
.y175{bottom:160.986667pt;}
.y120{bottom:167.866667pt;}
.y152{bottom:168.186667pt;}
.y67{bottom:168.826667pt;}
.y8c{bottom:170.426667pt;}
.yec{bottom:170.906667pt;}
.y2f{bottom:174.266667pt;}
.yc1{bottom:175.386667pt;}
.y174{bottom:178.586667pt;}
.y11f{bottom:185.466667pt;}
.y151{bottom:185.786667pt;}
.y66{bottom:186.426667pt;}
.y8b{bottom:188.026667pt;}
.yeb{bottom:188.506667pt;}
.y2e{bottom:192.026667pt;}
.yc0{bottom:192.986667pt;}
.y173{bottom:196.186667pt;}
.y11e{bottom:203.226667pt;}
.y150{bottom:203.546667pt;}
.y65{bottom:204.026667pt;}
.y8a{bottom:205.786667pt;}
.yea{bottom:206.106667pt;}
.y2d{bottom:209.626667pt;}
.ybf{bottom:210.586667pt;}
.y172{bottom:213.786667pt;}
.ye9{bottom:219.386667pt;}
.y11d{bottom:220.826667pt;}
.y14f{bottom:221.146667pt;}
.y64{bottom:221.786667pt;}
.y89{bottom:223.386667pt;}
.y18c{bottom:225.786667pt;}
.y2c{bottom:227.226667pt;}
.ybe{bottom:228.346667pt;}
.y171{bottom:231.546667pt;}
.y11c{bottom:238.426667pt;}
.y14e{bottom:238.746667pt;}
.y63{bottom:239.386667pt;}
.y88{bottom:240.986667pt;}
.y18b{bottom:243.546667pt;}
.y2b{bottom:244.826667pt;}
.ybd{bottom:245.946667pt;}
.y170{bottom:249.146667pt;}
.y11b{bottom:256.026667pt;}
.y14d{bottom:256.346667pt;}
.y62{bottom:256.986667pt;}
.y87{bottom:258.586667pt;}
.ye8{bottom:259.386667pt;}
.y18a{bottom:261.146667pt;}
.y2a{bottom:262.426667pt;}
.ybc{bottom:263.546667pt;}
.y16f{bottom:266.746667pt;}
.y11a{bottom:273.626667pt;}
.y14c{bottom:273.946667pt;}
.y61{bottom:274.586667pt;}
.y86{bottom:276.186667pt;}
.y189{bottom:278.746667pt;}
.ye7{bottom:279.386667pt;}
.y29{bottom:280.186667pt;}
.ybb{bottom:281.146667pt;}
.y16e{bottom:285.466667pt;}
.y119{bottom:291.386667pt;}
.y14b{bottom:291.746667pt;}
.y60{bottom:292.226667pt;}
.y85{bottom:293.986667pt;}
.y188{bottom:296.386667pt;}
.y28{bottom:297.826667pt;}
.yba{bottom:298.786667pt;}
.ye6{bottom:299.426667pt;}
.y16d{bottom:301.506667pt;}
.y118{bottom:309.026667pt;}
.y14a{bottom:309.346667pt;}
.y5f{bottom:309.986667pt;}
.y84{bottom:311.586667pt;}
.y187{bottom:313.986667pt;}
.y27{bottom:315.426667pt;}
.yb9{bottom:316.546667pt;}
.y16c{bottom:317.506667pt;}
.ye5{bottom:319.426667pt;}
.y117{bottom:326.626667pt;}
.y149{bottom:326.946667pt;}
.y5e{bottom:327.586667pt;}
.y83{bottom:329.186667pt;}
.y186{bottom:331.746667pt;}
.y16b{bottom:332.706667pt;}
.y26{bottom:333.026667pt;}
.yb8{bottom:334.146667pt;}
.ye4{bottom:340.066667pt;}
.y116{bottom:344.226667pt;}
.y148{bottom:344.546667pt;}
.y5d{bottom:345.186667pt;}
.y82{bottom:346.786667pt;}
.y16a{bottom:348.066667pt;}
.y185{bottom:349.346667pt;}
.y25{bottom:350.626667pt;}
.yb7{bottom:351.746667pt;}
.y115{bottom:361.826667pt;}
.y147{bottom:362.146667pt;}
.y5c{bottom:362.786667pt;}
.y169{bottom:364.066667pt;}
.y81{bottom:364.386667pt;}
.ye3{bottom:365.826667pt;}
.y184{bottom:366.946667pt;}
.y24{bottom:368.386667pt;}
.yb6{bottom:369.346667pt;}
.y168{bottom:379.426667pt;}
.y114{bottom:379.586667pt;}
.y146{bottom:379.906667pt;}
.y5b{bottom:380.386667pt;}
.y80{bottom:382.146667pt;}
.ye2{bottom:383.426667pt;}
.y183{bottom:384.546667pt;}
.y23{bottom:385.986667pt;}
.yb5{bottom:386.946667pt;}
.y167{bottom:394.786667pt;}
.y113{bottom:397.186667pt;}
.y145{bottom:397.506667pt;}
.y5a{bottom:398.146667pt;}
.y7f{bottom:399.746667pt;}
.ye1{bottom:401.186667pt;}
.y182{bottom:402.146667pt;}
.y22{bottom:403.586667pt;}
.yb4{bottom:404.706667pt;}
.y166{bottom:410.146667pt;}
.y112{bottom:414.786667pt;}
.y144{bottom:415.106667pt;}
.y181{bottom:415.426667pt;}
.y59{bottom:415.746667pt;}
.y7e{bottom:417.346667pt;}
.ye0{bottom:418.786667pt;}
.y21{bottom:421.186667pt;}
.yb3{bottom:422.306667pt;}
.y165{bottom:425.506667pt;}
.y111{bottom:432.386667pt;}
.y143{bottom:432.706667pt;}
.y58{bottom:433.346667pt;}
.y7d{bottom:434.946667pt;}
.ydf{bottom:436.386667pt;}
.y20{bottom:438.786667pt;}
.yb2{bottom:439.906667pt;}
.y164{bottom:440.706667pt;}
.y180{bottom:445.986667pt;}
.y110{bottom:449.986667pt;}
.y142{bottom:450.306667pt;}
.y57{bottom:450.946667pt;}
.yde{bottom:453.986667pt;}
.y163{bottom:456.066667pt;}
.y1f{bottom:456.546667pt;}
.yb1{bottom:457.506667pt;}
.y7c{bottom:460.546667pt;}
.y10f{bottom:467.746667pt;}
.y141{bottom:468.066667pt;}
.y56{bottom:468.546667pt;}
.y162{bottom:471.426667pt;}
.ydd{bottom:471.586667pt;}
.y1e{bottom:474.146667pt;}
.yb0{bottom:475.106667pt;}
.y17f{bottom:476.706667pt;}
.y7b{bottom:478.306667pt;}
.y10e{bottom:480.866667pt;}
.y140{bottom:485.666667pt;}
.y55{bottom:486.306667pt;}
.y161{bottom:486.786667pt;}
.ydc{bottom:489.346667pt;}
.y1d{bottom:491.746667pt;}
.yaf{bottom:492.866667pt;}
.y7a{bottom:495.906667pt;}
.y10d{bottom:496.226667pt;}
.y160{bottom:502.146667pt;}
.yd9{bottom:502.466667pt;}
.y13f{bottom:503.266667pt;}
.y54{bottom:503.906667pt;}
.y17e{bottom:507.426667pt;}
.y1c{bottom:509.346667pt;}
.yae{bottom:510.466667pt;}
.y10c{bottom:512.226667pt;}
.y79{bottom:513.506667pt;}
.y15f{bottom:517.346667pt;}
.y13e{bottom:520.866667pt;}
.y53{bottom:521.506667pt;}
.yad{bottom:528.066667pt;}
.y10a{bottom:528.226667pt;}
.y1b{bottom:529.053333pt;}
.y78{bottom:531.133333pt;}
.y15e{bottom:532.733333pt;}
.y17d{bottom:538.013333pt;}
.y13d{bottom:538.493333pt;}
.y52{bottom:539.133333pt;}
.y109{bottom:543.453333pt;}
.yac{bottom:545.693333pt;}
.y15d{bottom:548.093333pt;}
.y77{bottom:548.733333pt;}
.yd8{bottom:549.053333pt;}
.y17c{bottom:553.373333pt;}
.y1a{bottom:554.653333pt;}
.y13c{bottom:556.253333pt;}
.y51{bottom:556.733333pt;}
.y108{bottom:558.813333pt;}
.yab{bottom:563.293333pt;}
.y15c{bottom:563.453333pt;}
.y76{bottom:566.493333pt;}
.y19{bottom:572.253333pt;}
.y13b{bottom:573.853333pt;}
.y107{bottom:574.173333pt;}
.y50{bottom:574.493333pt;}
.y15b{bottom:578.813333pt;}
.yaa{bottom:581.053333pt;}
.y75{bottom:584.093333pt;}
.y18{bottom:590.013333pt;}
.y106{bottom:590.173333pt;}
.y13a{bottom:591.453333pt;}
.y4f{bottom:592.093333pt;}
.y15a{bottom:594.173333pt;}
.yd7{bottom:595.773333pt;}
.ya9{bottom:598.653333pt;}
.y74{bottom:601.693333pt;}
.y17{bottom:607.613333pt;}
.y139{bottom:609.053333pt;}
.y159{bottom:609.373333pt;}
.y4e{bottom:609.693333pt;}
.y105{bottom:611.293333pt;}
.y17b{bottom:614.653333pt;}
.y73{bottom:619.293333pt;}
.ya8{bottom:624.253333pt;}
.y16{bottom:625.213333pt;}
.y158{bottom:625.693333pt;}
.y138{bottom:626.653333pt;}
.yd5{bottom:627.133333pt;}
.y4d{bottom:627.293333pt;}
.y104{bottom:628.893333pt;}
.y72{bottom:636.893333pt;}
.y137{bottom:639.933333pt;}
.y157{bottom:641.053333pt;}
.ya7{bottom:642.173333pt;}
.y15{bottom:642.813333pt;}
.y4c{bottom:644.893333pt;}
.y17a{bottom:645.373333pt;}
.y103{bottom:646.653333pt;}
.y71{bottom:654.653333pt;}
.ya6{bottom:657.053333pt;}
.yd2{bottom:658.493333pt;}
.y14{bottom:660.413333pt;}
.y4b{bottom:662.653333pt;}
.ya4{bottom:662.813333pt;}
.y102{bottom:664.253333pt;}
.y136{bottom:668.573333pt;}
.ya5{bottom:671.133333pt;}
.y70{bottom:672.253333pt;}
.y179{bottom:676.733333pt;}
.y13{bottom:678.173333pt;}
.y4a{bottom:680.253333pt;}
.y101{bottom:681.853333pt;}
.ya3{bottom:684.093333pt;}
.y6f{bottom:689.853333pt;}
.y12{bottom:695.773333pt;}
.y135{bottom:696.573333pt;}
.y49{bottom:697.853333pt;}
.y100{bottom:699.453333pt;}
.ya2{bottom:701.853333pt;}
.yc8{bottom:705.053333pt;}
.y6e{bottom:707.453333pt;}
.y134{bottom:711.933333pt;}
.y11{bottom:713.373333pt;}
.y48{bottom:715.453333pt;}
.yff{bottom:717.053333pt;}
.ya1{bottom:719.453333pt;}
.y6d{bottom:725.053333pt;}
.y133{bottom:727.133333pt;}
.y10{bottom:730.973333pt;}
.y47{bottom:733.053333pt;}
.yfe{bottom:734.813333pt;}
.ya0{bottom:737.053333pt;}
.y6c{bottom:742.813333pt;}
.y132{bottom:743.133333pt;}
.yf{bottom:748.573333pt;}
.y46{bottom:750.813333pt;}
.yfd{bottom:752.413333pt;}
.y9f{bottom:754.813333pt;}
.y131{bottom:758.493333pt;}
.ye{bottom:768.293333pt;}
.y45{bottom:768.453333pt;}
.yfc{bottom:770.053333pt;}
.y130{bottom:773.893333pt;}
.y9e{bottom:780.773333pt;}
.y44{bottom:786.053333pt;}
.yfb{bottom:787.653333pt;}
.y12e{bottom:789.253333pt;}
.yd{bottom:790.533333pt;}
.y9d{bottom:800.293333pt;}
.y43{bottom:803.653333pt;}
.yfa{bottom:805.253333pt;}
.yc{bottom:808.133333pt;}
.yc6{bottom:813.093333pt;}
.y12d{bottom:817.253333pt;}
.y9c{bottom:818.053333pt;}
.y42{bottom:821.253333pt;}
.yf9{bottom:823.013333pt;}
.yb{bottom:825.893333pt;}
.y12c{bottom:832.613333pt;}
.y9b{bottom:835.813333pt;}
.y41{bottom:839.013333pt;}
.ya{bottom:839.333333pt;}
.yf8{bottom:840.613333pt;}
.y12b{bottom:847.813333pt;}
.y9a{bottom:853.413333pt;}
.y40{bottom:856.613333pt;}
.yf7{bottom:858.213333pt;}
.y9{bottom:858.693333pt;}
.y12a{bottom:863.173333pt;}
.y99{bottom:871.013333pt;}
.y3f{bottom:874.213333pt;}
.y129{bottom:878.533333pt;}
.y8{bottom:880.773333pt;}
.yf6{bottom:883.813333pt;}
.y98{bottom:888.613333pt;}
.y3e{bottom:891.813333pt;}
.y128{bottom:893.893333pt;}
.yf5{bottom:901.413333pt;}
.y97{bottom:906.213333pt;}
.y7{bottom:909.093333pt;}
.y127{bottom:909.253333pt;}
.y3d{bottom:909.413333pt;}
.yf4{bottom:919.173333pt;}
.y96{bottom:923.973333pt;}
.y126{bottom:925.573333pt;}
.y3c{bottom:927.173333pt;}
.yf3{bottom:936.773333pt;}
.y125{bottom:940.933333pt;}
.y95{bottom:941.573333pt;}
.y5{bottom:943.173333pt;}
.y3b{bottom:944.773333pt;}
.yf2{bottom:954.373333pt;}
.y94{bottom:959.333333pt;}
.y3a{bottom:962.373333pt;}
.y4{bottom:970.533333pt;}
.yf1{bottom:971.973333pt;}
.y93{bottom:977.413333pt;}
.y39{bottom:979.973333pt;}
.y92{bottom:995.333333pt;}
.y38{bottom:997.573333pt;}
.y3{bottom:998.053333pt;}
.y91{bottom:1015.200000pt;}
.y37{bottom:1015.360000pt;}
.y2{bottom:1025.440000pt;}
.y36{bottom:1041.440000pt;}
.y1{bottom:1052.800000pt;}
.y35{bottom:1060.800000pt;}
.h19{height:15.200000pt;}
.h18{height:15.232000pt;}
.h17{height:15.360000pt;}
.h1b{height:15.392000pt;}
.hf{height:20.000000pt;}
.h16{height:20.032000pt;}
.h6{height:24.384375pt;}
.h7{height:24.991875pt;}
.h1a{height:28.000000pt;}
.h12{height:30.560000pt;}
.h1e{height:30.592000pt;}
.h13{height:30.720000pt;}
.hc{height:31.537500pt;}
.h9{height:37.479688pt;}
.h8{height:38.413438pt;}
.h1d{height:38.672812pt;}
.he{height:40.670000pt;}
.h2{height:41.543750pt;}
.h3{height:42.578750pt;}
.hb{height:45.131250pt;}
.h11{height:45.920000pt;}
.h15{height:45.952000pt;}
.h14{height:46.080000pt;}
.h1c{height:46.281250pt;}
.h5{height:47.310625pt;}
.ha{height:51.377500pt;}
.h4{height:60.057813pt;}
.hd{height:61.453438pt;}
.h10{height:107.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:75.680000pt;}
.w17{width:84.960000pt;}
.w1f{width:93.792000pt;}
.wb{width:93.920000pt;}
.w7{width:94.432000pt;}
.w16{width:95.392000pt;}
.w13{width:95.552000pt;}
.w9{width:105.760000pt;}
.w15{width:106.240000pt;}
.w14{width:106.272000pt;}
.we{width:108.320000pt;}
.w1d{width:113.472000pt;}
.wa{width:116.032000pt;}
.wf{width:125.472000pt;}
.w8{width:130.272000pt;}
.w1a{width:134.266667pt;}
.w12{width:148.666667pt;}
.w6{width:155.866667pt;}
.w1e{width:159.386667pt;}
.w10{width:164.026667pt;}
.w19{width:168.186667pt;}
.w3{width:170.586667pt;}
.w1b{width:188.986667pt;}
.w11{width:194.426667pt;}
.w21{width:196.346667pt;}
.wc{width:233.786667pt;}
.w5{width:238.586667pt;}
.w4{width:294.626667pt;}
.wd{width:358.466667pt;}
.w1c{width:491.453333pt;}
.w18{width:637.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:4.960000pt;}
.x5{left:6.880000pt;}
.x1f{left:23.999988pt;}
.x4{left:44.320000pt;}
.x1{left:48.159988pt;}
.x12{left:55.194667pt;}
.x20{left:70.719988pt;}
.x16{left:78.400000pt;}
.x3{left:85.791988pt;}
.x21{left:94.751988pt;}
.x10{left:96.031988pt;}
.x11{left:100.832000pt;}
.x2{left:115.071988pt;}
.x1c{left:151.226667pt;}
.x22{left:191.066667pt;}
.xa{left:204.666667pt;}
.x14{left:209.146667pt;}
.x6{left:215.546667pt;}
.x1b{left:219.226655pt;}
.x18{left:227.066667pt;}
.xf{left:243.226655pt;}
.xb{left:299.106667pt;}
.x1d{left:319.426667pt;}
.x19{left:322.626667pt;}
.x13{left:334.626667pt;}
.x23{left:350.466667pt;}
.x8{left:374.466655pt;}
.x9{left:420.893322pt;}
.xc{left:429.373333pt;}
.x24{left:444.253333pt;}
.x1e{left:453.693333pt;}
.x15{left:498.653333pt;}
.x7{left:510.973333pt;}
.x25{left:519.933333pt;}
.xd{left:535.133333pt;}
.x1a{left:630.533333pt;}
.xe{left:651.173333pt;}
}




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