
    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_c03740723b2e4e174e1a62ee.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fa82624dd0dd778403af7ce6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0e9d1d3ba95dfabc86b411cd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3a3a654470e180faeb7f36d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_c5dab9888748373a5b49a314.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_110c6f97fb7e7ea64812befc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_01ce8cbd34e42b9a86a59126.woff2')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_b214e7a3303677d45132c39f.woff2')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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_bccec79c1a731cab5de03be6.woff2')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_627075ce3adff1476754dcdd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-72.000000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls15{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.720000px;}
.lsf{letter-spacing:5.760000px;}
.ls11{letter-spacing:9.360000px;}
.ls13{letter-spacing:11.520000px;}
.ls12{letter-spacing:12.240000px;}
.lse{letter-spacing:159.240000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsd{word-spacing:-18.576000px;}
.wsc{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.447440px;}
.ws5{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.374000px;}
.ws0{word-spacing:-12.186000px;}
.ws1{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-4.464000px;}
._1b{margin-left:-3.456000px;}
._c{margin-left:-2.311200px;}
._1{margin-left:-1.152000px;}
._0{width:1.085520px;}
._9{width:2.330640px;}
._16{width:3.423600px;}
._5{width:4.687440px;}
._6{width:5.796720px;}
._d{width:7.042320px;}
._8{width:8.134080px;}
._7{width:9.203040px;}
._e{width:10.218960px;}
._14{width:11.251680px;}
._19{width:12.303120px;}
._12{width:13.392000px;}
._13{width:14.394480px;}
._20{width:15.408000px;}
._1c{width:16.416000px;}
._f{width:17.509680px;}
._b{width:19.475040px;}
._a{width:20.862960px;}
._1a{width:22.498080px;}
._1e{width:23.869920px;}
._1f{width:25.272000px;}
._17{width:27.000000px;}
._18{width:28.152000px;}
._21{width:29.370480px;}
._28{width:41.160000px;}
._29{width:42.336000px;}
._27{width:51.840000px;}
._26{width:53.112000px;}
._2{width:58.774560px;}
._3{width:60.134400px;}
._4{width:61.893360px;}
._24{width:107.064000px;}
._25{width:108.564960px;}
._22{width:137.232000px;}
._23{width:138.468000px;}
._10{width:846.156000px;}
._1d{width:847.596000px;}
._11{width:1294.860000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:2.880000px;}
.yc0{bottom:2.916000px;}
.y96{bottom:3.060000px;}
.y17{bottom:3.240000px;}
.ye{bottom:3.960000px;}
.y9{bottom:5.220000px;}
.y146{bottom:5.760000px;}
.y8a{bottom:7.380000px;}
.y149{bottom:8.280000px;}
.y12{bottom:8.505000px;}
.y140{bottom:9.900000px;}
.ya3{bottom:10.620000px;}
.y90{bottom:10.800000px;}
.y9f{bottom:11.520000px;}
.y13c{bottom:11.700000px;}
.y15{bottom:12.240000px;}
.y143{bottom:13.500000px;}
.y88{bottom:15.120000px;}
.y7{bottom:17.100000px;}
.y141{bottom:17.640000px;}
.yaf{bottom:18.360000px;}
.ybe{bottom:18.390000px;}
.y95{bottom:18.540000px;}
.y9a{bottom:19.260000px;}
.y2a{bottom:20.520000px;}
.y145{bottom:21.240000px;}
.y89{bottom:23.040000px;}
.yd{bottom:24.660000px;}
.y13f{bottom:25.380000px;}
.y11{bottom:25.605000px;}
.yac{bottom:26.130000px;}
.y8e{bottom:26.280000px;}
.y9e{bottom:27.000000px;}
.y28{bottom:29.520000px;}
.yad{bottom:33.870000px;}
.y94{bottom:34.020000px;}
.y14{bottom:34.740000px;}
.y6{bottom:37.800000px;}
.y10{bottom:37.845000px;}
.y8d{bottom:41.760000px;}
.yab{bottom:41.790000px;}
.y9d{bottom:42.480000px;}
.y27{bottom:46.800000px;}
.y93{bottom:49.500000px;}
.yae{bottom:49.530000px;}
.y99{bottom:50.220000px;}
.yc{bottom:54.360000px;}
.y3{bottom:56.700000px;}
.ya1{bottom:57.240000px;}
.yaa{bottom:57.270000px;}
.y8c{bottom:57.420000px;}
.y9c{bottom:57.960000px;}
.y5{bottom:59.760000px;}
.y26{bottom:64.080000px;}
.ya5{bottom:64.980000px;}
.yb0{bottom:65.010000px;}
.y92{bottom:65.160000px;}
.y98{bottom:65.700000px;}
.ya2{bottom:72.720000px;}
.yb8{bottom:72.750000px;}
.y8f{bottom:72.900000px;}
.y9b{bottom:73.620000px;}
.yb{bottom:75.060000px;}
.y2{bottom:75.600000px;}
.ya4{bottom:80.460000px;}
.ybd{bottom:80.490000px;}
.y91{bottom:80.640000px;}
.y25{bottom:81.360000px;}
.yb7{bottom:88.230000px;}
.ybc{bottom:95.970000px;}
.ya8{bottom:96.120000px;}
.yb4{bottom:96.165000px;}
.y24{bottom:98.640000px;}
.y32{bottom:102.600000px;}
.yb6{bottom:103.710000px;}
.ybb{bottom:111.630000px;}
.y112{bottom:114.840000px;}
.y23{bottom:115.770000px;}
.y17c{bottom:117.360000px;}
.y15e{bottom:119.160000px;}
.y31{bottom:119.910000px;}
.y130{bottom:126.720000px;}
.yba{bottom:127.110000px;}
.yb5{bottom:132.300000px;}
.y22{bottom:133.050000px;}
.y111{bottom:135.576000px;}
.y30{bottom:137.190000px;}
.y17b{bottom:138.096000px;}
.y14f{bottom:138.636000px;}
.y15d{bottom:139.896000px;}
.yfe{bottom:140.616000px;}
.yb9{bottom:142.590000px;}
.y65{bottom:142.596000px;}
.y194{bottom:147.096000px;}
.y12f{bottom:147.456000px;}
.y21{bottom:150.330000px;}
.y2f{bottom:154.470000px;}
.y110{bottom:156.270000px;}
.ybf{bottom:158.070000px;}
.y14e{bottom:159.330000px;}
.y15c{bottom:160.590000px;}
.yfd{bottom:161.310000px;}
.y64{bottom:163.290000px;}
.ydf{bottom:167.250000px;}
.y20{bottom:167.610000px;}
.y17a{bottom:167.790000px;}
.y12e{bottom:168.150000px;}
.y2e{bottom:171.750000px;}
.y10f{bottom:176.970000px;}
.y14d{bottom:180.030000px;}
.y15b{bottom:181.290000px;}
.yfc{bottom:182.010000px;}
.y85{bottom:182.550000px;}
.y63{bottom:183.990000px;}
.y1f{bottom:184.890000px;}
.yde{bottom:187.950000px;}
.y179{bottom:188.490000px;}
.y12d{bottom:188.850000px;}
.y2d{bottom:189.030000px;}
.y14c{bottom:200.730000px;}
.y15a{bottom:201.990000px;}
.y1e{bottom:202.170000px;}
.yfb{bottom:202.710000px;}
.y62{bottom:204.690000px;}
.y2c{bottom:206.130000px;}
.y10e{bottom:206.670000px;}
.ydd{bottom:208.650000px;}
.y178{bottom:209.190000px;}
.y84{bottom:210.990000px;}
.y193{bottom:218.190000px;}
.y12c{bottom:218.550000px;}
.y1d{bottom:219.270000px;}
.y14b{bottom:221.430000px;}
.y159{bottom:222.690000px;}
.yfa{bottom:223.410000px;}
.y61{bottom:225.390000px;}
.ydc{bottom:229.350000px;}
.y83{bottom:231.690000px;}
.y10d{bottom:236.370000px;}
.y1c{bottom:236.550000px;}
.y177{bottom:238.890000px;}
.y14a{bottom:242.130000px;}
.y158{bottom:243.390000px;}
.yf9{bottom:244.110000px;}
.y60{bottom:246.090000px;}
.y12b{bottom:248.250000px;}
.ydb{bottom:250.050000px;}
.y82{bottom:252.390000px;}
.y1b{bottom:253.830000px;}
.y10c{bottom:257.070000px;}
.y176{bottom:259.590000px;}
.y157{bottom:264.090000px;}
.yf8{bottom:264.810000px;}
.y5f{bottom:266.790000px;}
.y148{bottom:268.590000px;}
.y12a{bottom:268.950000px;}
.y1a{bottom:271.110000px;}
.y81{bottom:273.090000px;}
.y10b{bottom:277.770000px;}
.yda{bottom:279.750000px;}
.y175{bottom:280.290000px;}
.y156{bottom:284.790000px;}
.yf7{bottom:285.510000px;}
.y5e{bottom:287.490000px;}
.y19{bottom:288.390000px;}
.y192{bottom:289.290000px;}
.y129{bottom:289.650000px;}
.y80{bottom:293.790000px;}
.y147{bottom:295.770000px;}
.y10a{bottom:298.470000px;}
.yd9{bottom:300.450000px;}
.yb3{bottom:303.690000px;}
.y155{bottom:305.490000px;}
.yf6{bottom:306.210000px;}
.y174{bottom:309.810000px;}
.y191{bottom:309.990000px;}
.y7f{bottom:314.490000px;}
.y5d{bottom:317.190000px;}
.y128{bottom:319.350000px;}
.yd8{bottom:321.150000px;}
.y154{bottom:326.190000px;}
.yf5{bottom:326.910000px;}
.y144{bottom:327.450000px;}
.y109{bottom:328.170000px;}
.y173{bottom:330.510000px;}
.y7e{bottom:335.190000px;}
.y5c{bottom:337.890000px;}
.y190{bottom:339.510000px;}
.yd7{bottom:341.850000px;}
.y153{bottom:346.890000px;}
.yf4{bottom:347.610000px;}
.y127{bottom:349.050000px;}
.y172{bottom:351.210000px;}
.y7d{bottom:355.890000px;}
.y108{bottom:357.870000px;}
.y5b{bottom:358.590000px;}
.y18f{bottom:360.210000px;}
.yd6{bottom:362.370000px;}
.y142{bottom:364.710000px;}
.y152{bottom:367.590000px;}
.yf3{bottom:368.310000px;}
.y126{bottom:369.750000px;}
.y7c{bottom:376.590000px;}
.y107{bottom:378.570000px;}
.y5a{bottom:379.290000px;}
.y171{bottom:380.910000px;}
.yd5{bottom:383.070000px;}
.y151{bottom:388.335000px;}
.yf2{bottom:389.055000px;}
.y18e{bottom:389.955000px;}
.y125{bottom:390.495000px;}
.y7b{bottom:397.335000px;}
.y106{bottom:399.315000px;}
.y59{bottom:400.035000px;}
.y170{bottom:401.655000px;}
.y13e{bottom:402.195000px;}
.yf1{bottom:409.575000px;}
.y18d{bottom:410.655000px;}
.yd4{bottom:412.815000px;}
.yb2{bottom:413.175000px;}
.y150{bottom:417.855000px;}
.y7a{bottom:418.035000px;}
.y105{bottom:420.015000px;}
.y124{bottom:420.195000px;}
.y58{bottom:420.555000px;}
.y16f{bottom:431.355000px;}
.y79{bottom:438.555000px;}
.yf0{bottom:439.275000px;}
.y18c{bottom:440.355000px;}
.y104{bottom:440.715000px;}
.y57{bottom:441.255000px;}
.yd3{bottom:442.155000px;}
.y13d{bottom:447.915000px;}
.y123{bottom:449.355000px;}
.y16e{bottom:452.055000px;}
.y78{bottom:459.255000px;}
.yef{bottom:459.975000px;}
.y18b{bottom:461.055000px;}
.y56{bottom:461.955000px;}
.yd2{bottom:466.455000px;}
.y34{bottom:468.255000px;}
.y103{bottom:469.875000px;}
.y122{bottom:473.835000px;}
.y13b{bottom:479.595000px;}
.y77{bottom:479.955000px;}
.yee{bottom:480.675000px;}
.y16d{bottom:481.755000px;}
.y55{bottom:482.655000px;}
.y102{bottom:489.135000px;}
.y33{bottom:497.955000px;}
.y76{bottom:500.655000px;}
.yed{bottom:501.375000px;}
.y16c{bottom:502.455000px;}
.y54{bottom:503.355000px;}
.y101{bottom:508.035000px;}
.y18a{bottom:511.455000px;}
.y13a{bottom:513.435000px;}
.y75{bottom:521.355000px;}
.yb1{bottom:522.615000px;}
.y53{bottom:524.055000px;}
.y18{bottom:524.415000px;}
.yec{bottom:531.075000px;}
.y16b{bottom:532.155000px;}
.y100{bottom:532.515000px;}
.y74{bottom:542.055000px;}
.y52{bottom:544.755000px;}
.yeb{bottom:551.775000px;}
.y16a{bottom:552.855000px;}
.y139{bottom:557.715000px;}
.y189{bottom:561.855000px;}
.y73{bottom:562.755000px;}
.yea{bottom:572.475000px;}
.y169{bottom:573.555000px;}
.y51{bottom:574.455000px;}
.y188{bottom:582.555000px;}
.y72{bottom:583.455000px;}
.y138{bottom:586.155000px;}
.ye9{bottom:593.175000px;}
.y50{bottom:595.155000px;}
.y168{bottom:603.255000px;}
.y71{bottom:604.155000px;}
.y137{bottom:606.855000px;}
.ye8{bottom:613.875000px;}
.y4f{bottom:615.855000px;}
.ya9{bottom:616.575000px;}
.y70{bottom:624.855000px;}
.y136{bottom:627.555000px;}
.y167{bottom:632.955000px;}
.y4e{bottom:636.555000px;}
.ye7{bottom:643.605000px;}
.y6f{bottom:645.585000px;}
.y135{bottom:648.285000px;}
.y166{bottom:653.685000px;}
.y4d{bottom:657.285000px;}
.ye6{bottom:664.305000px;}
.y6e{bottom:666.285000px;}
.y134{bottom:668.985000px;}
.y187{bottom:674.385000px;}
.y4c{bottom:677.985000px;}
.y165{bottom:683.385000px;}
.ye5{bottom:685.005000px;}
.y6d{bottom:686.985000px;}
.y133{bottom:689.685000px;}
.ya7{bottom:694.905000px;}
.y4b{bottom:698.685000px;}
.y186{bottom:704.085000px;}
.ye4{bottom:705.705000px;}
.y6c{bottom:707.685000px;}
.y132{bottom:710.385000px;}
.y164{bottom:713.085000px;}
.yd1{bottom:719.385000px;}
.y185{bottom:724.785000px;}
.ye3{bottom:726.405000px;}
.y4a{bottom:728.385000px;}
.y131{bottom:731.085000px;}
.y163{bottom:733.785000px;}
.yd0{bottom:740.085000px;}
.y2b{bottom:746.925000px;}
.y49{bottom:749.085000px;}
.y162{bottom:754.485000px;}
.ye2{bottom:756.105000px;}
.y121{bottom:758.265000px;}
.ycf{bottom:760.785000px;}
.y29{bottom:766.365000px;}
.y48{bottom:769.785000px;}
.y184{bottom:775.185000px;}
.yce{bottom:781.485000px;}
.y161{bottom:784.185000px;}
.ye1{bottom:785.445000px;}
.y47{bottom:790.485000px;}
.ya0{bottom:804.345000px;}
.y183{bottom:804.885000px;}
.y16{bottom:809.565000px;}
.ye0{bottom:809.925000px;}
.y46{bottom:811.185000px;}
.y160{bottom:813.885000px;}
.y120{bottom:815.145000px;}
.y182{bottom:825.585000px;}
.y45{bottom:831.885000px;}
.y11f{bottom:835.845000px;}
.ycd{bottom:840.885000px;}
.y13{bottom:842.145000px;}
.y15f{bottom:843.585000px;}
.y181{bottom:846.285000px;}
.yff{bottom:851.865000px;}
.y44{bottom:852.585000px;}
.y11e{bottom:856.545000px;}
.ycc{bottom:870.585000px;}
.y43{bottom:873.285000px;}
.y180{bottom:875.985000px;}
.y11d{bottom:878.505000px;}
.yf{bottom:885.705000px;}
.ycb{bottom:891.285000px;}
.y42{bottom:894.030000px;}
.y17f{bottom:896.730000px;}
.y97{bottom:898.350000px;}
.y11c{bottom:899.250000px;}
.yca{bottom:912.030000px;}
.y41{bottom:914.730000px;}
.y11b{bottom:919.950000px;}
.y17e{bottom:926.430000px;}
.yc9{bottom:932.730000px;}
.y6b{bottom:935.430000px;}
.ya{bottom:938.490000px;}
.y11a{bottom:941.910000px;}
.y40{bottom:944.430000px;}
.y17d{bottom:947.130000px;}
.yc8{bottom:953.430000px;}
.y6a{bottom:956.130000px;}
.y119{bottom:962.610000px;}
.y3f{bottom:965.130000px;}
.yc7{bottom:974.130000px;}
.y69{bottom:976.830000px;}
.y118{bottom:983.310000px;}
.y3e{bottom:985.830000px;}
.y8b{bottom:993.750000px;}
.yc6{bottom:994.830000px;}
.y68{bottom:997.530000px;}
.y117{bottom:1004.010000px;}
.y3d{bottom:1006.530000px;}
.yc5{bottom:1015.530000px;}
.y67{bottom:1018.230000px;}
.y116{bottom:1025.970000px;}
.y3c{bottom:1027.230000px;}
.yc4{bottom:1036.230000px;}
.y8{bottom:1040.010000px;}
.y115{bottom:1046.670000px;}
.y3b{bottom:1047.930000px;}
.yc3{bottom:1056.930000px;}
.y4{bottom:1061.250000px;}
.y114{bottom:1067.370000px;}
.y3a{bottom:1068.630000px;}
.yc2{bottom:1077.630000px;}
.y87{bottom:1087.710000px;}
.y113{bottom:1088.070000px;}
.y39{bottom:1089.330000px;}
.yc1{bottom:1098.330000px;}
.y38{bottom:1110.030000px;}
.y66{bottom:1119.030000px;}
.y37{bottom:1139.730000px;}
.y86{bottom:1140.990000px;}
.y36{bottom:1175.940000px;}
.y35{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h13{height:17.280000px;}
.h7{height:21.240000px;}
.h10{height:26.100000px;}
.h2b{height:26.460000px;}
.h27{height:30.960000px;}
.h25{height:31.140000px;}
.h26{height:33.120000px;}
.h12{height:34.560000px;}
.h2a{height:36.540000px;}
.h29{height:36.756000px;}
.hf{height:38.158594px;}
.hd{height:39.183750px;}
.h18{height:40.140000px;}
.he{height:43.560000px;}
.h28{height:45.000000px;}
.h21{height:45.061523px;}
.h15{height:48.088125px;}
.h24{height:50.364141px;}
.hb{height:52.776000px;}
.h1b{height:52.998047px;}
.h19{height:54.421875px;}
.h2{height:55.291992px;}
.h8{height:58.651172px;}
.h16{height:60.082031px;}
.hc{height:60.226875px;}
.h3{height:65.010937px;}
.h17{height:66.757500px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.h23{height:74.004654px;}
.h1f{height:77.616000px;}
.h1d{height:93.096000px;}
.h1a{height:93.240000px;}
.h1c{height:94.680000px;}
.h4{height:95.256000px;}
.h5{height:96.508125px;}
.h9{height:100.800000px;}
.h1e{height:108.720000px;}
.h20{height:108.756000px;}
.h22{height:170.670000px;}
.h14{height:220.170000px;}
.h11{height:311.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:64.620000px;}
.wc{width:73.440000px;}
.w12{width:82.800000px;}
.wa{width:83.520000px;}
.we{width:83.880000px;}
.wf{width:94.536000px;}
.wd{width:105.876000px;}
.w11{width:106.956000px;}
.w10{width:115.560000px;}
.w17{width:116.640000px;}
.w16{width:116.676000px;}
.w19{width:119.700000px;}
.w15{width:122.616000px;}
.wb{width:126.216000px;}
.w14{width:126.360000px;}
.w8{width:148.860000px;}
.w1a{width:175.350000px;}
.w13{width:193.710000px;}
.w5{width:206.670000px;}
.w4{width:208.650000px;}
.w6{width:264.990000px;}
.w9{width:531.645000px;}
.w3{width:680.325000px;}
.w7{width:680.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:6.300000px;}
.xc{left:8.100000px;}
.x1f{left:9.180000px;}
.x18{left:10.800000px;}
.x27{left:12.780000px;}
.x24{left:14.940000px;}
.x28{left:16.020000px;}
.x2a{left:17.100000px;}
.x30{left:18.540000px;}
.x1e{left:19.800000px;}
.x2b{left:20.880000px;}
.x21{left:22.500000px;}
.x1c{left:23.580000px;}
.x16{left:24.660000px;}
.x1a{left:25.920000px;}
.x29{left:27.360000px;}
.x22{left:28.980000px;}
.x23{left:30.780000px;}
.x2f{left:31.860000px;}
.xd{left:33.480000px;}
.x2d{left:35.820000px;}
.x2c{left:37.260000px;}
.x25{left:38.925000px;}
.xa{left:41.040000px;}
.x43{left:43.014000px;}
.x31{left:44.820000px;}
.x46{left:46.290000px;}
.x45{left:48.060000px;}
.x26{left:49.500000px;}
.x8{left:53.994000px;}
.x42{left:58.674000px;}
.x3e{left:68.214000px;}
.x4b{left:74.025000px;}
.x47{left:78.474000px;}
.x7{left:82.254000px;}
.x44{left:84.414000px;}
.x4{left:106.416000px;}
.x6{left:109.434000px;}
.x38{left:116.495987px;}
.x39{left:123.695987px;}
.x3d{left:130.715987px;}
.x10{left:137.154000px;}
.x14{left:148.895987px;}
.x32{left:153.209987px;}
.x3{left:159.509987px;}
.x36{left:182.549987px;}
.x15{left:191.370000px;}
.xe{left:204.879000px;}
.x34{left:218.189987px;}
.x11{left:255.270000px;}
.x5{left:301.359000px;}
.x9{left:315.075000px;}
.x17{left:318.315000px;}
.xf{left:340.269000px;}
.x3a{left:346.574987px;}
.x48{left:366.915000px;}
.x1{left:372.494987px;}
.x19{left:392.475000px;}
.x13{left:398.594987px;}
.x3f{left:428.655000px;}
.x2{left:434.054987px;}
.x3b{left:446.504987px;}
.x49{left:490.245000px;}
.x1b{left:499.065000px;}
.x2e{left:500.145000px;}
.xb{left:521.745000px;}
.x40{left:551.985000px;}
.x1d{left:583.665000px;}
.x4a{left:610.665000px;}
.x41{left:669.390000px;}
.x33{left:670.829987px;}
.x20{left:678.930000px;}
.x35{left:690.449987px;}
.x37{left:710.609987px;}
.x3c{left:762.989987px;}
@media print{
.v3{vertical-align:-64.000000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls15{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsf{letter-spacing:5.120000pt;}
.ls11{letter-spacing:8.320000pt;}
.ls13{letter-spacing:10.240000pt;}
.ls12{letter-spacing:10.880000pt;}
.lse{letter-spacing:141.546667pt;}
.ws9{word-spacing:-64.000000pt;}
.wsd{word-spacing:-16.512000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.888000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-3.968000pt;}
._1b{margin-left:-3.072000pt;}
._c{margin-left:-2.054400pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.964907pt;}
._9{width:2.071680pt;}
._16{width:3.043200pt;}
._5{width:4.166613pt;}
._6{width:5.152640pt;}
._d{width:6.259840pt;}
._8{width:7.230293pt;}
._7{width:8.180480pt;}
._e{width:9.083520pt;}
._14{width:10.001493pt;}
._19{width:10.936107pt;}
._12{width:11.904000pt;}
._13{width:12.795093pt;}
._20{width:13.696000pt;}
._1c{width:14.592000pt;}
._f{width:15.564160pt;}
._b{width:17.311147pt;}
._a{width:18.544853pt;}
._1a{width:19.998293pt;}
._1e{width:21.217707pt;}
._1f{width:22.464000pt;}
._17{width:24.000000pt;}
._18{width:25.024000pt;}
._21{width:26.107093pt;}
._28{width:36.586667pt;}
._29{width:37.632000pt;}
._27{width:46.080000pt;}
._26{width:47.210667pt;}
._2{width:52.244053pt;}
._3{width:53.452800pt;}
._4{width:55.016320pt;}
._24{width:95.168000pt;}
._25{width:96.502187pt;}
._22{width:121.984000pt;}
._23{width:123.082667pt;}
._10{width:752.138667pt;}
._1d{width:753.418667pt;}
._11{width:1150.986667pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:2.560000pt;}
.yc0{bottom:2.592000pt;}
.y96{bottom:2.720000pt;}
.y17{bottom:2.880000pt;}
.ye{bottom:3.520000pt;}
.y9{bottom:4.640000pt;}
.y146{bottom:5.120000pt;}
.y8a{bottom:6.560000pt;}
.y149{bottom:7.360000pt;}
.y12{bottom:7.560000pt;}
.y140{bottom:8.800000pt;}
.ya3{bottom:9.440000pt;}
.y90{bottom:9.600000pt;}
.y9f{bottom:10.240000pt;}
.y13c{bottom:10.400000pt;}
.y15{bottom:10.880000pt;}
.y143{bottom:12.000000pt;}
.y88{bottom:13.440000pt;}
.y7{bottom:15.200000pt;}
.y141{bottom:15.680000pt;}
.yaf{bottom:16.320000pt;}
.ybe{bottom:16.346667pt;}
.y95{bottom:16.480000pt;}
.y9a{bottom:17.120000pt;}
.y2a{bottom:18.240000pt;}
.y145{bottom:18.880000pt;}
.y89{bottom:20.480000pt;}
.yd{bottom:21.920000pt;}
.y13f{bottom:22.560000pt;}
.y11{bottom:22.760000pt;}
.yac{bottom:23.226667pt;}
.y8e{bottom:23.360000pt;}
.y9e{bottom:24.000000pt;}
.y28{bottom:26.240000pt;}
.yad{bottom:30.106667pt;}
.y94{bottom:30.240000pt;}
.y14{bottom:30.880000pt;}
.y6{bottom:33.600000pt;}
.y10{bottom:33.640000pt;}
.y8d{bottom:37.120000pt;}
.yab{bottom:37.146667pt;}
.y9d{bottom:37.760000pt;}
.y27{bottom:41.600000pt;}
.y93{bottom:44.000000pt;}
.yae{bottom:44.026667pt;}
.y99{bottom:44.640000pt;}
.yc{bottom:48.320000pt;}
.y3{bottom:50.400000pt;}
.ya1{bottom:50.880000pt;}
.yaa{bottom:50.906667pt;}
.y8c{bottom:51.040000pt;}
.y9c{bottom:51.520000pt;}
.y5{bottom:53.120000pt;}
.y26{bottom:56.960000pt;}
.ya5{bottom:57.760000pt;}
.yb0{bottom:57.786667pt;}
.y92{bottom:57.920000pt;}
.y98{bottom:58.400000pt;}
.ya2{bottom:64.640000pt;}
.yb8{bottom:64.666667pt;}
.y8f{bottom:64.800000pt;}
.y9b{bottom:65.440000pt;}
.yb{bottom:66.720000pt;}
.y2{bottom:67.200000pt;}
.ya4{bottom:71.520000pt;}
.ybd{bottom:71.546667pt;}
.y91{bottom:71.680000pt;}
.y25{bottom:72.320000pt;}
.yb7{bottom:78.426667pt;}
.ybc{bottom:85.306667pt;}
.ya8{bottom:85.440000pt;}
.yb4{bottom:85.480000pt;}
.y24{bottom:87.680000pt;}
.y32{bottom:91.200000pt;}
.yb6{bottom:92.186667pt;}
.ybb{bottom:99.226667pt;}
.y112{bottom:102.080000pt;}
.y23{bottom:102.906667pt;}
.y17c{bottom:104.320000pt;}
.y15e{bottom:105.920000pt;}
.y31{bottom:106.586667pt;}
.y130{bottom:112.640000pt;}
.yba{bottom:112.986667pt;}
.yb5{bottom:117.600000pt;}
.y22{bottom:118.266667pt;}
.y111{bottom:120.512000pt;}
.y30{bottom:121.946667pt;}
.y17b{bottom:122.752000pt;}
.y14f{bottom:123.232000pt;}
.y15d{bottom:124.352000pt;}
.yfe{bottom:124.992000pt;}
.yb9{bottom:126.746667pt;}
.y65{bottom:126.752000pt;}
.y194{bottom:130.752000pt;}
.y12f{bottom:131.072000pt;}
.y21{bottom:133.626667pt;}
.y2f{bottom:137.306667pt;}
.y110{bottom:138.906667pt;}
.ybf{bottom:140.506667pt;}
.y14e{bottom:141.626667pt;}
.y15c{bottom:142.746667pt;}
.yfd{bottom:143.386667pt;}
.y64{bottom:145.146667pt;}
.ydf{bottom:148.666667pt;}
.y20{bottom:148.986667pt;}
.y17a{bottom:149.146667pt;}
.y12e{bottom:149.466667pt;}
.y2e{bottom:152.666667pt;}
.y10f{bottom:157.306667pt;}
.y14d{bottom:160.026667pt;}
.y15b{bottom:161.146667pt;}
.yfc{bottom:161.786667pt;}
.y85{bottom:162.266667pt;}
.y63{bottom:163.546667pt;}
.y1f{bottom:164.346667pt;}
.yde{bottom:167.066667pt;}
.y179{bottom:167.546667pt;}
.y12d{bottom:167.866667pt;}
.y2d{bottom:168.026667pt;}
.y14c{bottom:178.426667pt;}
.y15a{bottom:179.546667pt;}
.y1e{bottom:179.706667pt;}
.yfb{bottom:180.186667pt;}
.y62{bottom:181.946667pt;}
.y2c{bottom:183.226667pt;}
.y10e{bottom:183.706667pt;}
.ydd{bottom:185.466667pt;}
.y178{bottom:185.946667pt;}
.y84{bottom:187.546667pt;}
.y193{bottom:193.946667pt;}
.y12c{bottom:194.266667pt;}
.y1d{bottom:194.906667pt;}
.y14b{bottom:196.826667pt;}
.y159{bottom:197.946667pt;}
.yfa{bottom:198.586667pt;}
.y61{bottom:200.346667pt;}
.ydc{bottom:203.866667pt;}
.y83{bottom:205.946667pt;}
.y10d{bottom:210.106667pt;}
.y1c{bottom:210.266667pt;}
.y177{bottom:212.346667pt;}
.y14a{bottom:215.226667pt;}
.y158{bottom:216.346667pt;}
.yf9{bottom:216.986667pt;}
.y60{bottom:218.746667pt;}
.y12b{bottom:220.666667pt;}
.ydb{bottom:222.266667pt;}
.y82{bottom:224.346667pt;}
.y1b{bottom:225.626667pt;}
.y10c{bottom:228.506667pt;}
.y176{bottom:230.746667pt;}
.y157{bottom:234.746667pt;}
.yf8{bottom:235.386667pt;}
.y5f{bottom:237.146667pt;}
.y148{bottom:238.746667pt;}
.y12a{bottom:239.066667pt;}
.y1a{bottom:240.986667pt;}
.y81{bottom:242.746667pt;}
.y10b{bottom:246.906667pt;}
.yda{bottom:248.666667pt;}
.y175{bottom:249.146667pt;}
.y156{bottom:253.146667pt;}
.yf7{bottom:253.786667pt;}
.y5e{bottom:255.546667pt;}
.y19{bottom:256.346667pt;}
.y192{bottom:257.146667pt;}
.y129{bottom:257.466667pt;}
.y80{bottom:261.146667pt;}
.y147{bottom:262.906667pt;}
.y10a{bottom:265.306667pt;}
.yd9{bottom:267.066667pt;}
.yb3{bottom:269.946667pt;}
.y155{bottom:271.546667pt;}
.yf6{bottom:272.186667pt;}
.y174{bottom:275.386667pt;}
.y191{bottom:275.546667pt;}
.y7f{bottom:279.546667pt;}
.y5d{bottom:281.946667pt;}
.y128{bottom:283.866667pt;}
.yd8{bottom:285.466667pt;}
.y154{bottom:289.946667pt;}
.yf5{bottom:290.586667pt;}
.y144{bottom:291.066667pt;}
.y109{bottom:291.706667pt;}
.y173{bottom:293.786667pt;}
.y7e{bottom:297.946667pt;}
.y5c{bottom:300.346667pt;}
.y190{bottom:301.786667pt;}
.yd7{bottom:303.866667pt;}
.y153{bottom:308.346667pt;}
.yf4{bottom:308.986667pt;}
.y127{bottom:310.266667pt;}
.y172{bottom:312.186667pt;}
.y7d{bottom:316.346667pt;}
.y108{bottom:318.106667pt;}
.y5b{bottom:318.746667pt;}
.y18f{bottom:320.186667pt;}
.yd6{bottom:322.106667pt;}
.y142{bottom:324.186667pt;}
.y152{bottom:326.746667pt;}
.yf3{bottom:327.386667pt;}
.y126{bottom:328.666667pt;}
.y7c{bottom:334.746667pt;}
.y107{bottom:336.506667pt;}
.y5a{bottom:337.146667pt;}
.y171{bottom:338.586667pt;}
.yd5{bottom:340.506667pt;}
.y151{bottom:345.186667pt;}
.yf2{bottom:345.826667pt;}
.y18e{bottom:346.626667pt;}
.y125{bottom:347.106667pt;}
.y7b{bottom:353.186667pt;}
.y106{bottom:354.946667pt;}
.y59{bottom:355.586667pt;}
.y170{bottom:357.026667pt;}
.y13e{bottom:357.506667pt;}
.yf1{bottom:364.066667pt;}
.y18d{bottom:365.026667pt;}
.yd4{bottom:366.946667pt;}
.yb2{bottom:367.266667pt;}
.y150{bottom:371.426667pt;}
.y7a{bottom:371.586667pt;}
.y105{bottom:373.346667pt;}
.y124{bottom:373.506667pt;}
.y58{bottom:373.826667pt;}
.y16f{bottom:383.426667pt;}
.y79{bottom:389.826667pt;}
.yf0{bottom:390.466667pt;}
.y18c{bottom:391.426667pt;}
.y104{bottom:391.746667pt;}
.y57{bottom:392.226667pt;}
.yd3{bottom:393.026667pt;}
.y13d{bottom:398.146667pt;}
.y123{bottom:399.426667pt;}
.y16e{bottom:401.826667pt;}
.y78{bottom:408.226667pt;}
.yef{bottom:408.866667pt;}
.y18b{bottom:409.826667pt;}
.y56{bottom:410.626667pt;}
.yd2{bottom:414.626667pt;}
.y34{bottom:416.226667pt;}
.y103{bottom:417.666667pt;}
.y122{bottom:421.186667pt;}
.y13b{bottom:426.306667pt;}
.y77{bottom:426.626667pt;}
.yee{bottom:427.266667pt;}
.y16d{bottom:428.226667pt;}
.y55{bottom:429.026667pt;}
.y102{bottom:434.786667pt;}
.y33{bottom:442.626667pt;}
.y76{bottom:445.026667pt;}
.yed{bottom:445.666667pt;}
.y16c{bottom:446.626667pt;}
.y54{bottom:447.426667pt;}
.y101{bottom:451.586667pt;}
.y18a{bottom:454.626667pt;}
.y13a{bottom:456.386667pt;}
.y75{bottom:463.426667pt;}
.yb1{bottom:464.546667pt;}
.y53{bottom:465.826667pt;}
.y18{bottom:466.146667pt;}
.yec{bottom:472.066667pt;}
.y16b{bottom:473.026667pt;}
.y100{bottom:473.346667pt;}
.y74{bottom:481.826667pt;}
.y52{bottom:484.226667pt;}
.yeb{bottom:490.466667pt;}
.y16a{bottom:491.426667pt;}
.y139{bottom:495.746667pt;}
.y189{bottom:499.426667pt;}
.y73{bottom:500.226667pt;}
.yea{bottom:508.866667pt;}
.y169{bottom:509.826667pt;}
.y51{bottom:510.626667pt;}
.y188{bottom:517.826667pt;}
.y72{bottom:518.626667pt;}
.y138{bottom:521.026667pt;}
.ye9{bottom:527.266667pt;}
.y50{bottom:529.026667pt;}
.y168{bottom:536.226667pt;}
.y71{bottom:537.026667pt;}
.y137{bottom:539.426667pt;}
.ye8{bottom:545.666667pt;}
.y4f{bottom:547.426667pt;}
.ya9{bottom:548.066667pt;}
.y70{bottom:555.426667pt;}
.y136{bottom:557.826667pt;}
.y167{bottom:562.626667pt;}
.y4e{bottom:565.826667pt;}
.ye7{bottom:572.093333pt;}
.y6f{bottom:573.853333pt;}
.y135{bottom:576.253333pt;}
.y166{bottom:581.053333pt;}
.y4d{bottom:584.253333pt;}
.ye6{bottom:590.493333pt;}
.y6e{bottom:592.253333pt;}
.y134{bottom:594.653333pt;}
.y187{bottom:599.453333pt;}
.y4c{bottom:602.653333pt;}
.y165{bottom:607.453333pt;}
.ye5{bottom:608.893333pt;}
.y6d{bottom:610.653333pt;}
.y133{bottom:613.053333pt;}
.ya7{bottom:617.693333pt;}
.y4b{bottom:621.053333pt;}
.y186{bottom:625.853333pt;}
.ye4{bottom:627.293333pt;}
.y6c{bottom:629.053333pt;}
.y132{bottom:631.453333pt;}
.y164{bottom:633.853333pt;}
.yd1{bottom:639.453333pt;}
.y185{bottom:644.253333pt;}
.ye3{bottom:645.693333pt;}
.y4a{bottom:647.453333pt;}
.y131{bottom:649.853333pt;}
.y163{bottom:652.253333pt;}
.yd0{bottom:657.853333pt;}
.y2b{bottom:663.933333pt;}
.y49{bottom:665.853333pt;}
.y162{bottom:670.653333pt;}
.ye2{bottom:672.093333pt;}
.y121{bottom:674.013333pt;}
.ycf{bottom:676.253333pt;}
.y29{bottom:681.213333pt;}
.y48{bottom:684.253333pt;}
.y184{bottom:689.053333pt;}
.yce{bottom:694.653333pt;}
.y161{bottom:697.053333pt;}
.ye1{bottom:698.173333pt;}
.y47{bottom:702.653333pt;}
.ya0{bottom:714.973333pt;}
.y183{bottom:715.453333pt;}
.y16{bottom:719.613333pt;}
.ye0{bottom:719.933333pt;}
.y46{bottom:721.053333pt;}
.y160{bottom:723.453333pt;}
.y120{bottom:724.573333pt;}
.y182{bottom:733.853333pt;}
.y45{bottom:739.453333pt;}
.y11f{bottom:742.973333pt;}
.ycd{bottom:747.453333pt;}
.y13{bottom:748.573333pt;}
.y15f{bottom:749.853333pt;}
.y181{bottom:752.253333pt;}
.yff{bottom:757.213333pt;}
.y44{bottom:757.853333pt;}
.y11e{bottom:761.373333pt;}
.ycc{bottom:773.853333pt;}
.y43{bottom:776.253333pt;}
.y180{bottom:778.653333pt;}
.y11d{bottom:780.893333pt;}
.yf{bottom:787.293333pt;}
.ycb{bottom:792.253333pt;}
.y42{bottom:794.693333pt;}
.y17f{bottom:797.093333pt;}
.y97{bottom:798.533333pt;}
.y11c{bottom:799.333333pt;}
.yca{bottom:810.693333pt;}
.y41{bottom:813.093333pt;}
.y11b{bottom:817.733333pt;}
.y17e{bottom:823.493333pt;}
.yc9{bottom:829.093333pt;}
.y6b{bottom:831.493333pt;}
.ya{bottom:834.213333pt;}
.y11a{bottom:837.253333pt;}
.y40{bottom:839.493333pt;}
.y17d{bottom:841.893333pt;}
.yc8{bottom:847.493333pt;}
.y6a{bottom:849.893333pt;}
.y119{bottom:855.653333pt;}
.y3f{bottom:857.893333pt;}
.yc7{bottom:865.893333pt;}
.y69{bottom:868.293333pt;}
.y118{bottom:874.053333pt;}
.y3e{bottom:876.293333pt;}
.y8b{bottom:883.333333pt;}
.yc6{bottom:884.293333pt;}
.y68{bottom:886.693333pt;}
.y117{bottom:892.453333pt;}
.y3d{bottom:894.693333pt;}
.yc5{bottom:902.693333pt;}
.y67{bottom:905.093333pt;}
.y116{bottom:911.973333pt;}
.y3c{bottom:913.093333pt;}
.yc4{bottom:921.093333pt;}
.y8{bottom:924.453333pt;}
.y115{bottom:930.373333pt;}
.y3b{bottom:931.493333pt;}
.yc3{bottom:939.493333pt;}
.y4{bottom:943.333333pt;}
.y114{bottom:948.773333pt;}
.y3a{bottom:949.893333pt;}
.yc2{bottom:957.893333pt;}
.y87{bottom:966.853333pt;}
.y113{bottom:967.173333pt;}
.y39{bottom:968.293333pt;}
.yc1{bottom:976.293333pt;}
.y38{bottom:986.693333pt;}
.y66{bottom:994.693333pt;}
.y37{bottom:1013.093333pt;}
.y86{bottom:1014.213333pt;}
.y36{bottom:1045.280000pt;}
.y35{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h13{height:15.360000pt;}
.h7{height:18.880000pt;}
.h10{height:23.200000pt;}
.h2b{height:23.520000pt;}
.h27{height:27.520000pt;}
.h25{height:27.680000pt;}
.h26{height:29.440000pt;}
.h12{height:30.720000pt;}
.h2a{height:32.480000pt;}
.h29{height:32.672000pt;}
.hf{height:33.918750pt;}
.hd{height:34.830000pt;}
.h18{height:35.680000pt;}
.he{height:38.720000pt;}
.h28{height:40.000000pt;}
.h21{height:40.054688pt;}
.h15{height:42.745000pt;}
.h24{height:44.768125pt;}
.hb{height:46.912000pt;}
.h1b{height:47.109375pt;}
.h19{height:48.375000pt;}
.h2{height:49.148438pt;}
.h8{height:52.134375pt;}
.h16{height:53.406250pt;}
.hc{height:53.535000pt;}
.h3{height:57.787500pt;}
.h17{height:59.340000pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.h23{height:65.781915pt;}
.h1f{height:68.992000pt;}
.h1d{height:82.752000pt;}
.h1a{height:82.880000pt;}
.h1c{height:84.160000pt;}
.h4{height:84.672000pt;}
.h5{height:85.785000pt;}
.h9{height:89.600000pt;}
.h1e{height:96.640000pt;}
.h20{height:96.672000pt;}
.h22{height:151.706667pt;}
.h14{height:195.706667pt;}
.h11{height:276.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:57.440000pt;}
.wc{width:65.280000pt;}
.w12{width:73.600000pt;}
.wa{width:74.240000pt;}
.we{width:74.560000pt;}
.wf{width:84.032000pt;}
.wd{width:94.112000pt;}
.w11{width:95.072000pt;}
.w10{width:102.720000pt;}
.w17{width:103.680000pt;}
.w16{width:103.712000pt;}
.w19{width:106.400000pt;}
.w15{width:108.992000pt;}
.wb{width:112.192000pt;}
.w14{width:112.320000pt;}
.w8{width:132.320000pt;}
.w1a{width:155.866667pt;}
.w13{width:172.186667pt;}
.w5{width:183.706667pt;}
.w4{width:185.466667pt;}
.w6{width:235.546667pt;}
.w9{width:472.573333pt;}
.w3{width:604.733333pt;}
.w7{width:604.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.600000pt;}
.xc{left:7.200000pt;}
.x1f{left:8.160000pt;}
.x18{left:9.600000pt;}
.x27{left:11.360000pt;}
.x24{left:13.280000pt;}
.x28{left:14.240000pt;}
.x2a{left:15.200000pt;}
.x30{left:16.480000pt;}
.x1e{left:17.600000pt;}
.x2b{left:18.560000pt;}
.x21{left:20.000000pt;}
.x1c{left:20.960000pt;}
.x16{left:21.920000pt;}
.x1a{left:23.040000pt;}
.x29{left:24.320000pt;}
.x22{left:25.760000pt;}
.x23{left:27.360000pt;}
.x2f{left:28.320000pt;}
.xd{left:29.760000pt;}
.x2d{left:31.840000pt;}
.x2c{left:33.120000pt;}
.x25{left:34.600000pt;}
.xa{left:36.480000pt;}
.x43{left:38.234667pt;}
.x31{left:39.840000pt;}
.x46{left:41.146667pt;}
.x45{left:42.720000pt;}
.x26{left:44.000000pt;}
.x8{left:47.994667pt;}
.x42{left:52.154667pt;}
.x3e{left:60.634667pt;}
.x4b{left:65.800000pt;}
.x47{left:69.754667pt;}
.x7{left:73.114667pt;}
.x44{left:75.034667pt;}
.x4{left:94.592000pt;}
.x6{left:97.274667pt;}
.x38{left:103.551988pt;}
.x39{left:109.951988pt;}
.x3d{left:116.191988pt;}
.x10{left:121.914667pt;}
.x14{left:132.351988pt;}
.x32{left:136.186655pt;}
.x3{left:141.786655pt;}
.x36{left:162.266655pt;}
.x15{left:170.106667pt;}
.xe{left:182.114667pt;}
.x34{left:193.946655pt;}
.x11{left:226.906667pt;}
.x5{left:267.874667pt;}
.x9{left:280.066667pt;}
.x17{left:282.946667pt;}
.xf{left:302.461333pt;}
.x3a{left:308.066655pt;}
.x48{left:326.146667pt;}
.x1{left:331.106655pt;}
.x19{left:348.866667pt;}
.x13{left:354.306655pt;}
.x3f{left:381.026667pt;}
.x2{left:385.826655pt;}
.x3b{left:396.893322pt;}
.x49{left:435.773333pt;}
.x1b{left:443.613333pt;}
.x2e{left:444.573333pt;}
.xb{left:463.773333pt;}
.x40{left:490.653333pt;}
.x1d{left:518.813333pt;}
.x4a{left:542.813333pt;}
.x41{left:595.013333pt;}
.x33{left:596.293322pt;}
.x20{left:603.493333pt;}
.x35{left:613.733322pt;}
.x37{left:631.653322pt;}
.x3c{left:678.213322pt;}
}




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