
    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_94aafa0e6bd8dd7e5f243bfa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.286621;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_1257ee13ac152ffef6df285b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_550bbf1b15c48f0ffcbe5015.woff')format("woff");}.ff3{font-family:ff3;line-height:1.286621;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_2d96f689786d8fbccb991b71.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_3fd8c3fcda84db87db4fb07c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_07e19110a3185a24cebe2b67.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_9835e7d5419d178a8dffcfbe.woff')format("woff");}.ff7{font-family:ff7;line-height:0.907715;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_1c581e27774994c696252b39.woff')format("woff");}.ff8{font-family:ff8;line-height:0.907715;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);}
.v1{vertical-align:-83.880000px;}
.v2{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.120000px;}
.ls18{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.165600px;}
.ls12{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.112200px;}
.ls1f{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.032400px;}
.ls5{letter-spacing:-0.031680px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000003px;}
.ls1{letter-spacing:0.012600px;}
.ls1a{letter-spacing:0.026280px;}
.lsc{letter-spacing:0.027000px;}
.ls17{letter-spacing:0.048000px;}
.ls14{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.083400px;}
.ls15{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.153600px;}
.ls1c{letter-spacing:0.155400px;}
.ls9{letter-spacing:0.172080px;}
.ls2{letter-spacing:0.180000px;}
.lse{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.746280px;}
.ls16{letter-spacing:1.656000px;}
.lsa{letter-spacing:5.426280px;}
.lsd{letter-spacing:6.146280px;}
.ls0{letter-spacing:8.666280px;}
.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:-20.448000px;}
.ws10{word-spacing:-20.376000px;}
.ws9{word-spacing:-20.304000px;}
.ws11{word-spacing:-20.232003px;}
.ws3{word-spacing:-20.232000px;}
.ws16{word-spacing:-20.160000px;}
.wsa{word-spacing:-20.088000px;}
.ws15{word-spacing:-20.016000px;}
.wsb{word-spacing:-19.440000px;}
.wsf{word-spacing:-18.692280px;}
.ws5{word-spacing:-18.665880px;}
.ws4{word-spacing:-18.512280px;}
.wse{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.073720px;}
.ws1{word-spacing:-16.893720px;}
.ws2{word-spacing:-16.713720px;}
.ws7{word-spacing:-16.232400px;}
.wsc{word-spacing:-16.128000px;}
.ws8{word-spacing:-16.066800px;}
.ws13{word-spacing:-11.991120px;}
.ws14{word-spacing:-11.919120px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-5.256000px;}
._c{margin-left:-4.148280px;}
._1{margin-left:-3.006000px;}
._0{margin-left:-1.082160px;}
._2{width:1.442880px;}
._a{width:2.613840px;}
._b{width:3.667320px;}
._4{width:5.591160px;}
._5{width:6.810720px;}
._8{width:7.955880px;}
._6{width:9.198360px;}
._7{width:10.473480px;}
._f{width:11.663280px;}
._3{width:13.406760px;}
._12{width:15.120000px;}
._14{width:16.680000px;}
._15{width:17.904000px;}
._10{width:19.599120px;}
._11{width:20.621160px;}
._13{width:21.960000px;}
._1c{width:23.256000px;}
._1b{width:24.768000px;}
._16{width:25.822320px;}
._d{width:27.000840px;}
._e{width:28.101360px;}
._1a{width:29.856000px;}
._1d{width:31.824000px;}
._1e{width:32.904000px;}
._21{width:33.914160px;}
._1f{width:35.208000px;}
._20{width:37.296000px;}
._22{width:38.592000px;}
._23{width:41.688000px;}
._19{width:43.872000px;}
._18{width:45.408000px;}
._24{width:56.016000px;}
._9{width:959.721480px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:19.170000px;}
.yfb{bottom:19.260000px;}
.yf7{bottom:19.290000px;}
.y116{bottom:19.890000px;}
.y5{bottom:23.310000px;}
.y103{bottom:29.790000px;}
.y118{bottom:31.500000px;}
.y4{bottom:40.050000px;}
.y104{bottom:40.410000px;}
.y115{bottom:43.020000px;}
.y113{bottom:43.110000px;}
.y117{bottom:54.540000px;}
.y3{bottom:56.700000px;}
.y114{bottom:66.150000px;}
.yf9{bottom:70.200000px;}
.y2{bottom:73.350000px;}
.y3c{bottom:76.230000px;}
.y100{bottom:80.820000px;}
.y11{bottom:93.420000px;}
.y3b{bottom:95.220000px;}
.y10{bottom:113.670000px;}
.y77{bottom:118.350000px;}
.y13b{bottom:119.610000px;}
.y164{bottom:119.970000px;}
.yb5{bottom:120.060000px;}
.y1b5{bottom:123.210000px;}
.ya9{bottom:124.920000px;}
.y151{bottom:125.910000px;}
.yda{bottom:129.780000px;}
.y10f{bottom:134.550000px;}
.y76{bottom:138.420000px;}
.y13a{bottom:139.680000px;}
.yb4{bottom:140.040000px;}
.y1b4{bottom:143.190000px;}
.ya8{bottom:144.900000px;}
.y150{bottom:145.980000px;}
.yd9{bottom:149.760000px;}
.y170{bottom:151.830000px;}
.y1ab{bottom:152.190000px;}
.yf{bottom:153.630000px;}
.y10e{bottom:154.620000px;}
.y75{bottom:158.400000px;}
.y163{bottom:160.020000px;}
.yb3{bottom:160.110000px;}
.y199{bottom:163.260000px;}
.ya7{bottom:164.970000px;}
.y14f{bottom:165.960000px;}
.yd8{bottom:169.830000px;}
.ye{bottom:170.370000px;}
.y16f{bottom:171.810000px;}
.y1aa{bottom:172.260000px;}
.y10d{bottom:174.600000px;}
.y139{bottom:174.870000px;}
.y74{bottom:178.470000px;}
.yb2{bottom:180.090000px;}
.y198{bottom:183.240000px;}
.ya6{bottom:184.950000px;}
.y14e{bottom:186.030000px;}
.yd{bottom:187.020000px;}
.yd7{bottom:189.810000px;}
.y16e{bottom:191.790000px;}
.y1a9{bottom:192.240000px;}
.y10c{bottom:194.670000px;}
.y138{bottom:194.850000px;}
.y73{bottom:198.450000px;}
.y162{bottom:200.070000px;}
.yb1{bottom:200.160000px;}
.y197{bottom:203.220000px;}
.yc{bottom:203.670000px;}
.ya5{bottom:205.020000px;}
.y14d{bottom:206.010000px;}
.yd6{bottom:209.790000px;}
.y1a8{bottom:212.250000px;}
.y10b{bottom:214.680000px;}
.y137{bottom:214.950000px;}
.y72{bottom:218.550000px;}
.yb0{bottom:220.170000px;}
.yb{bottom:220.440000px;}
.y16d{bottom:220.890000px;}
.ya4{bottom:225.030000px;}
.y14c{bottom:226.110000px;}
.yd5{bottom:229.890000px;}
.y196{bottom:232.320000px;}
.y10a{bottom:234.750000px;}
.y136{bottom:234.930000px;}
.ya{bottom:237.090000px;}
.y71{bottom:238.530000px;}
.y161{bottom:240.150000px;}
.yaf{bottom:240.240000px;}
.y16c{bottom:240.870000px;}
.y1a7{bottom:241.320000px;}
.ya3{bottom:245.010000px;}
.y14b{bottom:246.090000px;}
.yd4{bottom:249.870000px;}
.y195{bottom:252.300000px;}
.y9{bottom:253.740000px;}
.y109{bottom:254.730000px;}
.y135{bottom:255.000000px;}
.y70{bottom:258.600000px;}
.y160{bottom:260.130000px;}
.yae{bottom:260.220000px;}
.y16b{bottom:260.940000px;}
.y1a6{bottom:261.300000px;}
.ya2{bottom:265.080000px;}
.y14a{bottom:266.070000px;}
.yd3{bottom:269.940000px;}
.y8{bottom:270.480000px;}
.y194{bottom:272.370000px;}
.y108{bottom:274.800000px;}
.y134{bottom:274.980000px;}
.y6f{bottom:278.580000px;}
.y15f{bottom:280.200000px;}
.yad{bottom:280.290000px;}
.y1a5{bottom:281.370000px;}
.ya1{bottom:285.060000px;}
.y149{bottom:286.140000px;}
.yd2{bottom:289.920000px;}
.y193{bottom:292.350000px;}
.y107{bottom:294.780000px;}
.y133{bottom:295.050000px;}
.y6e{bottom:298.560000px;}
.y15e{bottom:300.180000px;}
.yac{bottom:300.270000px;}
.y1a4{bottom:301.350000px;}
.y7{bottom:303.780000px;}
.ya0{bottom:305.130000px;}
.y148{bottom:306.120000px;}
.yd1{bottom:309.990000px;}
.y1bd{bottom:310.350000px;}
.y106{bottom:314.850000px;}
.y132{bottom:315.030000px;}
.y6d{bottom:318.630000px;}
.yab{bottom:320.250000px;}
.y192{bottom:321.420000px;}
.y16a{bottom:325.110000px;}
.y147{bottom:326.190000px;}
.yd0{bottom:329.970000px;}
.y1a3{bottom:330.420000px;}
.yff{bottom:330.870000px;}
.y131{bottom:335.010000px;}
.y3a{bottom:336.810000px;}
.y6c{bottom:338.610000px;}
.y15d{bottom:340.230000px;}
.yaa{bottom:340.320000px;}
.y191{bottom:341.400000px;}
.y169{bottom:345.180000px;}
.y146{bottom:346.170000px;}
.ycf{bottom:350.040000px;}
.y1a2{bottom:350.400000px;}
.y130{bottom:355.080000px;}
.y39{bottom:355.170000px;}
.y6b{bottom:357.870000px;}
.y9f{bottom:360.300000px;}
.y190{bottom:361.470000px;}
.y105{bottom:364.890000px;}
.y168{bottom:365.160000px;}
.y145{bottom:366.240000px;}
.yce{bottom:370.020000px;}
.y1a1{bottom:370.470000px;}
.y38{bottom:373.530000px;}
.y6a{bottom:374.520000px;}
.y12f{bottom:375.060000px;}
.y15c{bottom:380.280000px;}
.y9e{bottom:380.370000px;}
.y167{bottom:385.230000px;}
.y144{bottom:386.220000px;}
.ycd{bottom:390.090000px;}
.y18f{bottom:390.450000px;}
.y69{bottom:391.260000px;}
.y37{bottom:391.890000px;}
.y12e{bottom:395.130000px;}
.y102{bottom:398.910000px;}
.y1bc{bottom:399.450000px;}
.y9d{bottom:400.350000px;}
.y166{bottom:405.210000px;}
.y143{bottom:406.290000px;}
.y68{bottom:407.910000px;}
.ycc{bottom:410.070000px;}
.y36{bottom:410.250000px;}
.y18e{bottom:410.520000px;}
.y12d{bottom:415.110000px;}
.y1a0{bottom:419.520000px;}
.y15b{bottom:420.330000px;}
.y9c{bottom:420.420000px;}
.y67{bottom:424.560000px;}
.y165{bottom:425.280000px;}
.y142{bottom:426.270000px;}
.y35{bottom:428.610000px;}
.ycb{bottom:430.140000px;}
.y12c{bottom:435.180000px;}
.y18d{bottom:439.500000px;}
.y9b{bottom:440.400000px;}
.y66{bottom:441.300000px;}
.ye2{bottom:445.260000px;}
.y141{bottom:446.340000px;}
.y34{bottom:446.970000px;}
.yca{bottom:450.120000px;}
.y101{bottom:454.170000px;}
.y12b{bottom:455.160000px;}
.y65{bottom:457.950000px;}
.y18c{bottom:459.570000px;}
.y15a{bottom:460.380000px;}
.y9a{bottom:460.470000px;}
.ye1{bottom:465.330000px;}
.y33{bottom:465.690000px;}
.y140{bottom:466.320000px;}
.y1bb{bottom:468.570000px;}
.yc9{bottom:470.100000px;}
.y64{bottom:474.600000px;}
.y12a{bottom:475.230000px;}
.y18b{bottom:479.550000px;}
.y99{bottom:480.450000px;}
.y32{bottom:485.310000px;}
.y13f{bottom:486.390000px;}
.yf8{bottom:488.190000px;}
.y1b3{bottom:488.550000px;}
.yc8{bottom:490.170000px;}
.y63{bottom:491.340000px;}
.y129{bottom:495.210000px;}
.y18a{bottom:499.530000px;}
.y98{bottom:500.520000px;}
.y31{bottom:503.670000px;}
.ye0{bottom:505.290000px;}
.y62{bottom:507.990000px;}
.y19f{bottom:508.530000px;}
.yc7{bottom:510.150000px;}
.y128{bottom:515.280000px;}
.y159{bottom:515.640000px;}
.y189{bottom:519.600000px;}
.y97{bottom:520.500000px;}
.y13e{bottom:521.580000px;}
.y30{bottom:522.030000px;}
.yfd{bottom:522.120000px;}
.y61{bottom:524.730000px;}
.ydf{bottom:525.360000px;}
.y19e{bottom:528.600000px;}
.yc6{bottom:530.220000px;}
.y127{bottom:535.260000px;}
.y158{bottom:535.620000px;}
.y2f{bottom:540.390000px;}
.y96{bottom:540.570000px;}
.y13d{bottom:540.750000px;}
.y60{bottom:541.380000px;}
.yde{bottom:545.340000px;}
.y188{bottom:548.580000px;}
.yc5{bottom:550.200000px;}
.y126{bottom:555.330000px;}
.y157{bottom:555.600000px;}
.yfc{bottom:556.140000px;}
.y1b2{bottom:557.580000px;}
.y5f{bottom:558.030000px;}
.y2e{bottom:558.750000px;}
.y95{bottom:560.550000px;}
.ydd{bottom:565.410000px;}
.y187{bottom:568.650000px;}
.y13c{bottom:568.740000px;}
.yc4{bottom:570.270000px;}
.y5e{bottom:574.770000px;}
.y125{bottom:575.310000px;}
.y156{bottom:575.670000px;}
.y2d{bottom:577.110000px;}
.y1b1{bottom:577.650000px;}
.y94{bottom:580.530000px;}
.ydc{bottom:585.390000px;}
.y186{bottom:588.630000px;}
.yfa{bottom:590.160000px;}
.yc3{bottom:590.250000px;}
.y5d{bottom:591.420000px;}
.y124{bottom:595.290000px;}
.y2c{bottom:595.380000px;}
.y155{bottom:595.650000px;}
.y19d{bottom:597.630000px;}
.y93{bottom:600.600000px;}
.ydb{bottom:605.460000px;}
.y5c{bottom:608.160000px;}
.y185{bottom:608.700000px;}
.yf3{bottom:610.320000px;}
.y2b{bottom:613.740000px;}
.y123{bottom:615.360000px;}
.y19c{bottom:617.700000px;}
.y92{bottom:620.580000px;}
.yf6{bottom:624.180000px;}
.y5b{bottom:624.810000px;}
.yc2{bottom:625.440000px;}
.y1b0{bottom:626.700000px;}
.yf2{bottom:630.300000px;}
.y154{bottom:630.840000px;}
.y2a{bottom:632.130000px;}
.y122{bottom:635.370000px;}
.y184{bottom:637.710000px;}
.y91{bottom:640.680000px;}
.y5a{bottom:641.490000px;}
.yc1{bottom:645.540000px;}
.y1af{bottom:646.710000px;}
.y153{bottom:650.130000px;}
.yf1{bottom:650.400000px;}
.y29{bottom:650.490000px;}
.y121{bottom:655.440000px;}
.y183{bottom:657.780000px;}
.y59{bottom:658.230000px;}
.y90{bottom:660.660000px;}
.yc0{bottom:665.520000px;}
.y1ae{bottom:666.780000px;}
.y28{bottom:668.850000px;}
.yf0{bottom:670.380000px;}
.y58{bottom:674.880000px;}
.y120{bottom:675.420000px;}
.yf5{bottom:676.770000px;}
.y152{bottom:678.030000px;}
.y8f{bottom:680.730000px;}
.ybf{bottom:685.590000px;}
.y182{bottom:686.760000px;}
.y27{bottom:687.210000px;}
.yef{bottom:690.450000px;}
.y57{bottom:691.530000px;}
.y11f{bottom:695.490000px;}
.y1ba{bottom:695.760000px;}
.y8e{bottom:700.710000px;}
.y26{bottom:705.570000px;}
.y181{bottom:706.830000px;}
.yf4{bottom:708.090000px;}
.y56{bottom:708.270000px;}
.yee{bottom:710.430000px;}
.y11e{bottom:715.470000px;}
.y1b9{bottom:715.830000px;}
.y8d{bottom:720.780000px;}
.y25{bottom:723.930000px;}
.y55{bottom:724.920000px;}
.ybe{bottom:725.640000px;}
.y180{bottom:726.810000px;}
.yed{bottom:730.410000px;}
.y1ad{bottom:735.810000px;}
.y8c{bottom:740.760000px;}
.y54{bottom:741.660000px;}
.y24{bottom:742.290000px;}
.y1c7{bottom:743.010000px;}
.ybd{bottom:745.620000px;}
.yec{bottom:750.480000px;}
.y11d{bottom:750.660000px;}
.y17f{bottom:755.790000px;}
.y53{bottom:758.310000px;}
.y23{bottom:760.650000px;}
.y8b{bottom:760.830000px;}
.ybc{bottom:765.600000px;}
.y11c{bottom:766.770000px;}
.yeb{bottom:770.460000px;}
.y1c6{bottom:772.080000px;}
.y52{bottom:774.960000px;}
.y17e{bottom:775.860000px;}
.y22{bottom:779.010000px;}
.y8a{bottom:780.810000px;}
.ybb{bottom:785.670000px;}
.y51{bottom:791.700000px;}
.y17d{bottom:795.840000px;}
.y21{bottom:797.370000px;}
.y89{bottom:800.790000px;}
.y1c5{bottom:801.060000px;}
.y11b{bottom:801.960000px;}
.y19b{bottom:804.840000px;}
.yba{bottom:805.650000px;}
.y50{bottom:808.350000px;}
.y20{bottom:815.730000px;}
.y88{bottom:820.860000px;}
.y17c{bottom:824.910000px;}
.y4f{bottom:825.000000px;}
.yb9{bottom:825.720000px;}
.y1c4{bottom:830.130000px;}
.y1f{bottom:834.000000px;}
.y11a{bottom:837.150000px;}
.y87{bottom:840.840000px;}
.y4e{bottom:841.740000px;}
.y17b{bottom:844.890000px;}
.yb8{bottom:845.700000px;}
.y1e{bottom:852.360000px;}
.y4d{bottom:858.390000px;}
.y1c3{bottom:859.110000px;}
.y86{bottom:860.910000px;}
.y17a{bottom:864.960000px;}
.yb7{bottom:865.770000px;}
.y1d{bottom:870.720000px;}
.y119{bottom:872.340000px;}
.y4c{bottom:875.130000px;}
.y85{bottom:880.890000px;}
.y1b8{bottom:884.940000px;}
.yb6{bottom:885.750000px;}
.y1c2{bottom:888.180000px;}
.y1c{bottom:889.080000px;}
.y4b{bottom:891.780000px;}
.y179{bottom:893.940000px;}
.y84{bottom:900.960000px;}
.yea{bottom:905.820000px;}
.y1b{bottom:907.440000px;}
.y112{bottom:908.250000px;}
.y4a{bottom:908.430000px;}
.y178{bottom:914.010000px;}
.y1c1{bottom:917.160000px;}
.y83{bottom:920.940000px;}
.y49{bottom:925.170000px;}
.ye9{bottom:925.800000px;}
.y1a{bottom:926.250000px;}
.y177{bottom:933.990000px;}
.y82{bottom:941.010000px;}
.y48{bottom:941.820000px;}
.ye8{bottom:945.870000px;}
.y19{bottom:946.230000px;}
.y1c0{bottom:952.350000px;}
.y1b7{bottom:954.060000px;}
.y47{bottom:958.560000px;}
.y81{bottom:960.990000px;}
.y176{bottom:963.060000px;}
.y18{bottom:965.850000px;}
.y1b6{bottom:974.040000px;}
.y46{bottom:976.020000px;}
.y80{bottom:981.060000px;}
.y175{bottom:983.040000px;}
.y17{bottom:983.760000px;}
.ye7{bottom:985.920000px;}
.y1bf{bottom:987.540000px;}
.y45{bottom:995.640000px;}
.y7f{bottom:1001.040000px;}
.y16{bottom:1001.310000px;}
.y174{bottom:1003.110000px;}
.ye6{bottom:1005.900000px;}
.y111{bottom:1009.140000px;}
.y1be{bottom:1012.110000px;}
.y44{bottom:1014.000000px;}
.y7e{bottom:1021.110000px;}
.y15{bottom:1021.290000px;}
.y19a{bottom:1023.090000px;}
.ye5{bottom:1025.880000px;}
.y110{bottom:1028.310000px;}
.y173{bottom:1032.090000px;}
.y43{bottom:1032.360000px;}
.y7d{bottom:1041.090000px;}
.ye4{bottom:1045.950000px;}
.y42{bottom:1050.720000px;}
.y14{bottom:1051.080000px;}
.y172{bottom:1052.070000px;}
.y7c{bottom:1061.100000px;}
.ye3{bottom:1065.960000px;}
.y41{bottom:1069.110000px;}
.y171{bottom:1072.170000px;}
.y13{bottom:1074.510000px;}
.y7b{bottom:1081.170000px;}
.y40{bottom:1087.470000px;}
.y1ac{bottom:1092.150000px;}
.y12{bottom:1096.650000px;}
.y7a{bottom:1101.150000px;}
.y3f{bottom:1105.830000px;}
.y6{bottom:1115.550000px;}
.y79{bottom:1121.220000px;}
.y3e{bottom:1124.100000px;}
.y1{bottom:1134.180000px;}
.y78{bottom:1141.200000px;}
.y3d{bottom:1142.460000px;}
.hf{height:33.210000px;}
.he{height:33.300000px;}
.hc{height:33.330000px;}
.h13{height:35.190000px;}
.h4{height:51.929824px;}
.h11{height:54.450000px;}
.h6{height:56.900391px;}
.h7{height:61.793886px;}
.ha{height:62.191406px;}
.h3{height:63.349102px;}
.h8{height:69.418477px;}
.h5{height:71.613281px;}
.h9{height:72.452988px;}
.hb{height:75.867188px;}
.h12{height:81.540000px;}
.h2{height:86.130000px;}
.hd{height:135.270000px;}
.h10{height:156.510000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.w6{width:85.170000px;}
.w9{width:102.960000px;}
.wa{width:136.020000px;}
.wc{width:136.080000px;}
.wb{width:136.110000px;}
.w7{width:181.920000px;}
.w8{width:310.260000px;}
.w4{width:329.700000px;}
.w2{width:331.890000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:4.590000px;}
.x4{left:8.100000px;}
.x18{left:11.430000px;}
.xc{left:14.310000px;}
.x11{left:16.110000px;}
.x12{left:17.220000px;}
.x15{left:18.540000px;}
.x24{left:19.740000px;}
.x17{left:25.020000px;}
.xe{left:26.460000px;}
.x21{left:29.640000px;}
.x14{left:30.870000px;}
.x19{left:34.860000px;}
.x1b{left:36.000000px;}
.x23{left:37.650000px;}
.x13{left:39.060000px;}
.x16{left:43.200000px;}
.x1c{left:47.250000px;}
.x22{left:52.200000px;}
.x7{left:104.669987px;}
.x1{left:106.380000px;}
.x9{left:159.599987px;}
.x2{left:185.880000px;}
.xd{left:191.550000px;}
.x1a{left:242.400000px;}
.xf{left:373.470000px;}
.x1d{left:378.510000px;}
.x3{left:438.270000px;}
.x6{left:446.549987px;}
.xb{left:473.099987px;}
.x5{left:489.120000px;}
.x1f{left:514.590000px;}
.x20{left:650.610000px;}
.x10{left:683.730000px;}
.x25{left:717.029987px;}
.xa{left:768.419987px;}
.x8{left:777.599987px;}
@media print{
.v1{vertical-align:-74.560000pt;}
.v2{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.440000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.147200pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.099733pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.028800pt;}
.ls5{letter-spacing:-0.028160pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000003pt;}
.ls1{letter-spacing:0.011200pt;}
.ls1a{letter-spacing:0.023360pt;}
.lsc{letter-spacing:0.024000pt;}
.ls17{letter-spacing:0.042667pt;}
.ls14{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.074133pt;}
.ls15{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.136533pt;}
.ls1c{letter-spacing:0.138133pt;}
.ls9{letter-spacing:0.152960pt;}
.ls2{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.663360pt;}
.ls16{letter-spacing:1.472000pt;}
.lsa{letter-spacing:4.823360pt;}
.lsd{letter-spacing:5.463360pt;}
.ls0{letter-spacing:7.703360pt;}
.ws12{word-spacing:-18.176000pt;}
.ws10{word-spacing:-18.112000pt;}
.ws9{word-spacing:-18.048000pt;}
.ws11{word-spacing:-17.984003pt;}
.ws3{word-spacing:-17.984000pt;}
.ws16{word-spacing:-17.920000pt;}
.wsa{word-spacing:-17.856000pt;}
.ws15{word-spacing:-17.792000pt;}
.wsb{word-spacing:-17.280000pt;}
.wsf{word-spacing:-16.615360pt;}
.ws5{word-spacing:-16.591893pt;}
.ws4{word-spacing:-16.455360pt;}
.wse{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.176640pt;}
.ws1{word-spacing:-15.016640pt;}
.ws2{word-spacing:-14.856640pt;}
.ws7{word-spacing:-14.428800pt;}
.wsc{word-spacing:-14.336000pt;}
.ws8{word-spacing:-14.281600pt;}
.ws13{word-spacing:-10.658773pt;}
.ws14{word-spacing:-10.594773pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-4.672000pt;}
._c{margin-left:-3.687360pt;}
._1{margin-left:-2.672000pt;}
._0{margin-left:-0.961920pt;}
._2{width:1.282560pt;}
._a{width:2.323413pt;}
._b{width:3.259840pt;}
._4{width:4.969920pt;}
._5{width:6.053973pt;}
._8{width:7.071893pt;}
._6{width:8.176320pt;}
._7{width:9.309760pt;}
._f{width:10.367360pt;}
._3{width:11.917120pt;}
._12{width:13.440000pt;}
._14{width:14.826667pt;}
._15{width:15.914667pt;}
._10{width:17.421440pt;}
._11{width:18.329920pt;}
._13{width:19.520000pt;}
._1c{width:20.672000pt;}
._1b{width:22.016000pt;}
._16{width:22.953173pt;}
._d{width:24.000747pt;}
._e{width:24.978987pt;}
._1a{width:26.538667pt;}
._1d{width:28.288000pt;}
._1e{width:29.248000pt;}
._21{width:30.145920pt;}
._1f{width:31.296000pt;}
._20{width:33.152000pt;}
._22{width:34.304000pt;}
._23{width:37.056000pt;}
._19{width:38.997333pt;}
._18{width:40.362667pt;}
._24{width:49.792000pt;}
._9{width:853.085760pt;}
.fs5{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:17.040000pt;}
.yfb{bottom:17.120000pt;}
.yf7{bottom:17.146667pt;}
.y116{bottom:17.680000pt;}
.y5{bottom:20.720000pt;}
.y103{bottom:26.480000pt;}
.y118{bottom:28.000000pt;}
.y4{bottom:35.600000pt;}
.y104{bottom:35.920000pt;}
.y115{bottom:38.240000pt;}
.y113{bottom:38.320000pt;}
.y117{bottom:48.480000pt;}
.y3{bottom:50.400000pt;}
.y114{bottom:58.800000pt;}
.yf9{bottom:62.400000pt;}
.y2{bottom:65.200000pt;}
.y3c{bottom:67.760000pt;}
.y100{bottom:71.840000pt;}
.y11{bottom:83.040000pt;}
.y3b{bottom:84.640000pt;}
.y10{bottom:101.040000pt;}
.y77{bottom:105.200000pt;}
.y13b{bottom:106.320000pt;}
.y164{bottom:106.640000pt;}
.yb5{bottom:106.720000pt;}
.y1b5{bottom:109.520000pt;}
.ya9{bottom:111.040000pt;}
.y151{bottom:111.920000pt;}
.yda{bottom:115.360000pt;}
.y10f{bottom:119.600000pt;}
.y76{bottom:123.040000pt;}
.y13a{bottom:124.160000pt;}
.yb4{bottom:124.480000pt;}
.y1b4{bottom:127.280000pt;}
.ya8{bottom:128.800000pt;}
.y150{bottom:129.760000pt;}
.yd9{bottom:133.120000pt;}
.y170{bottom:134.960000pt;}
.y1ab{bottom:135.280000pt;}
.yf{bottom:136.560000pt;}
.y10e{bottom:137.440000pt;}
.y75{bottom:140.800000pt;}
.y163{bottom:142.240000pt;}
.yb3{bottom:142.320000pt;}
.y199{bottom:145.120000pt;}
.ya7{bottom:146.640000pt;}
.y14f{bottom:147.520000pt;}
.yd8{bottom:150.960000pt;}
.ye{bottom:151.440000pt;}
.y16f{bottom:152.720000pt;}
.y1aa{bottom:153.120000pt;}
.y10d{bottom:155.200000pt;}
.y139{bottom:155.440000pt;}
.y74{bottom:158.640000pt;}
.yb2{bottom:160.080000pt;}
.y198{bottom:162.880000pt;}
.ya6{bottom:164.400000pt;}
.y14e{bottom:165.360000pt;}
.yd{bottom:166.240000pt;}
.yd7{bottom:168.720000pt;}
.y16e{bottom:170.480000pt;}
.y1a9{bottom:170.880000pt;}
.y10c{bottom:173.040000pt;}
.y138{bottom:173.200000pt;}
.y73{bottom:176.400000pt;}
.y162{bottom:177.840000pt;}
.yb1{bottom:177.920000pt;}
.y197{bottom:180.640000pt;}
.yc{bottom:181.040000pt;}
.ya5{bottom:182.240000pt;}
.y14d{bottom:183.120000pt;}
.yd6{bottom:186.480000pt;}
.y1a8{bottom:188.666667pt;}
.y10b{bottom:190.826667pt;}
.y137{bottom:191.066667pt;}
.y72{bottom:194.266667pt;}
.yb0{bottom:195.706667pt;}
.yb{bottom:195.946667pt;}
.y16d{bottom:196.346667pt;}
.ya4{bottom:200.026667pt;}
.y14c{bottom:200.986667pt;}
.yd5{bottom:204.346667pt;}
.y196{bottom:206.506667pt;}
.y10a{bottom:208.666667pt;}
.y136{bottom:208.826667pt;}
.ya{bottom:210.746667pt;}
.y71{bottom:212.026667pt;}
.y161{bottom:213.466667pt;}
.yaf{bottom:213.546667pt;}
.y16c{bottom:214.106667pt;}
.y1a7{bottom:214.506667pt;}
.ya3{bottom:217.786667pt;}
.y14b{bottom:218.746667pt;}
.yd4{bottom:222.106667pt;}
.y195{bottom:224.266667pt;}
.y9{bottom:225.546667pt;}
.y109{bottom:226.426667pt;}
.y135{bottom:226.666667pt;}
.y70{bottom:229.866667pt;}
.y160{bottom:231.226667pt;}
.yae{bottom:231.306667pt;}
.y16b{bottom:231.946667pt;}
.y1a6{bottom:232.266667pt;}
.ya2{bottom:235.626667pt;}
.y14a{bottom:236.506667pt;}
.yd3{bottom:239.946667pt;}
.y8{bottom:240.426667pt;}
.y194{bottom:242.106667pt;}
.y108{bottom:244.266667pt;}
.y134{bottom:244.426667pt;}
.y6f{bottom:247.626667pt;}
.y15f{bottom:249.066667pt;}
.yad{bottom:249.146667pt;}
.y1a5{bottom:250.106667pt;}
.ya1{bottom:253.386667pt;}
.y149{bottom:254.346667pt;}
.yd2{bottom:257.706667pt;}
.y193{bottom:259.866667pt;}
.y107{bottom:262.026667pt;}
.y133{bottom:262.266667pt;}
.y6e{bottom:265.386667pt;}
.y15e{bottom:266.826667pt;}
.yac{bottom:266.906667pt;}
.y1a4{bottom:267.866667pt;}
.y7{bottom:270.026667pt;}
.ya0{bottom:271.226667pt;}
.y148{bottom:272.106667pt;}
.yd1{bottom:275.546667pt;}
.y1bd{bottom:275.866667pt;}
.y106{bottom:279.866667pt;}
.y132{bottom:280.026667pt;}
.y6d{bottom:283.226667pt;}
.yab{bottom:284.666667pt;}
.y192{bottom:285.706667pt;}
.y16a{bottom:288.986667pt;}
.y147{bottom:289.946667pt;}
.yd0{bottom:293.306667pt;}
.y1a3{bottom:293.706667pt;}
.yff{bottom:294.106667pt;}
.y131{bottom:297.786667pt;}
.y3a{bottom:299.386667pt;}
.y6c{bottom:300.986667pt;}
.y15d{bottom:302.426667pt;}
.yaa{bottom:302.506667pt;}
.y191{bottom:303.466667pt;}
.y169{bottom:306.826667pt;}
.y146{bottom:307.706667pt;}
.ycf{bottom:311.146667pt;}
.y1a2{bottom:311.466667pt;}
.y130{bottom:315.626667pt;}
.y39{bottom:315.706667pt;}
.y6b{bottom:318.106667pt;}
.y9f{bottom:320.266667pt;}
.y190{bottom:321.306667pt;}
.y105{bottom:324.346667pt;}
.y168{bottom:324.586667pt;}
.y145{bottom:325.546667pt;}
.yce{bottom:328.906667pt;}
.y1a1{bottom:329.306667pt;}
.y38{bottom:332.026667pt;}
.y6a{bottom:332.906667pt;}
.y12f{bottom:333.386667pt;}
.y15c{bottom:338.026667pt;}
.y9e{bottom:338.106667pt;}
.y167{bottom:342.426667pt;}
.y144{bottom:343.306667pt;}
.ycd{bottom:346.746667pt;}
.y18f{bottom:347.066667pt;}
.y69{bottom:347.786667pt;}
.y37{bottom:348.346667pt;}
.y12e{bottom:351.226667pt;}
.y102{bottom:354.586667pt;}
.y1bc{bottom:355.066667pt;}
.y9d{bottom:355.866667pt;}
.y166{bottom:360.186667pt;}
.y143{bottom:361.146667pt;}
.y68{bottom:362.586667pt;}
.ycc{bottom:364.506667pt;}
.y36{bottom:364.666667pt;}
.y18e{bottom:364.906667pt;}
.y12d{bottom:368.986667pt;}
.y1a0{bottom:372.906667pt;}
.y15b{bottom:373.626667pt;}
.y9c{bottom:373.706667pt;}
.y67{bottom:377.386667pt;}
.y165{bottom:378.026667pt;}
.y142{bottom:378.906667pt;}
.y35{bottom:380.986667pt;}
.ycb{bottom:382.346667pt;}
.y12c{bottom:386.826667pt;}
.y18d{bottom:390.666667pt;}
.y9b{bottom:391.466667pt;}
.y66{bottom:392.266667pt;}
.ye2{bottom:395.786667pt;}
.y141{bottom:396.746667pt;}
.y34{bottom:397.306667pt;}
.yca{bottom:400.106667pt;}
.y101{bottom:403.706667pt;}
.y12b{bottom:404.586667pt;}
.y65{bottom:407.066667pt;}
.y18c{bottom:408.506667pt;}
.y15a{bottom:409.226667pt;}
.y9a{bottom:409.306667pt;}
.ye1{bottom:413.626667pt;}
.y33{bottom:413.946667pt;}
.y140{bottom:414.506667pt;}
.y1bb{bottom:416.506667pt;}
.yc9{bottom:417.866667pt;}
.y64{bottom:421.866667pt;}
.y12a{bottom:422.426667pt;}
.y18b{bottom:426.266667pt;}
.y99{bottom:427.066667pt;}
.y32{bottom:431.386667pt;}
.y13f{bottom:432.346667pt;}
.yf8{bottom:433.946667pt;}
.y1b3{bottom:434.266667pt;}
.yc8{bottom:435.706667pt;}
.y63{bottom:436.746667pt;}
.y129{bottom:440.186667pt;}
.y18a{bottom:444.026667pt;}
.y98{bottom:444.906667pt;}
.y31{bottom:447.706667pt;}
.ye0{bottom:449.146667pt;}
.y62{bottom:451.546667pt;}
.y19f{bottom:452.026667pt;}
.yc7{bottom:453.466667pt;}
.y128{bottom:458.026667pt;}
.y159{bottom:458.346667pt;}
.y189{bottom:461.866667pt;}
.y97{bottom:462.666667pt;}
.y13e{bottom:463.626667pt;}
.y30{bottom:464.026667pt;}
.yfd{bottom:464.106667pt;}
.y61{bottom:466.426667pt;}
.ydf{bottom:466.986667pt;}
.y19e{bottom:469.866667pt;}
.yc6{bottom:471.306667pt;}
.y127{bottom:475.786667pt;}
.y158{bottom:476.106667pt;}
.y2f{bottom:480.346667pt;}
.y96{bottom:480.506667pt;}
.y13d{bottom:480.666667pt;}
.y60{bottom:481.226667pt;}
.yde{bottom:484.746667pt;}
.y188{bottom:487.626667pt;}
.yc5{bottom:489.066667pt;}
.y126{bottom:493.626667pt;}
.y157{bottom:493.866667pt;}
.yfc{bottom:494.346667pt;}
.y1b2{bottom:495.626667pt;}
.y5f{bottom:496.026667pt;}
.y2e{bottom:496.666667pt;}
.y95{bottom:498.266667pt;}
.ydd{bottom:502.586667pt;}
.y187{bottom:505.466667pt;}
.y13c{bottom:505.546667pt;}
.yc4{bottom:506.906667pt;}
.y5e{bottom:510.906667pt;}
.y125{bottom:511.386667pt;}
.y156{bottom:511.706667pt;}
.y2d{bottom:512.986667pt;}
.y1b1{bottom:513.466667pt;}
.y94{bottom:516.026667pt;}
.ydc{bottom:520.346667pt;}
.y186{bottom:523.226667pt;}
.yfa{bottom:524.586667pt;}
.yc3{bottom:524.666667pt;}
.y5d{bottom:525.706667pt;}
.y124{bottom:529.146667pt;}
.y2c{bottom:529.226667pt;}
.y155{bottom:529.466667pt;}
.y19d{bottom:531.226667pt;}
.y93{bottom:533.866667pt;}
.ydb{bottom:538.186667pt;}
.y5c{bottom:540.586667pt;}
.y185{bottom:541.066667pt;}
.yf3{bottom:542.506667pt;}
.y2b{bottom:545.546667pt;}
.y123{bottom:546.986667pt;}
.y19c{bottom:549.066667pt;}
.y92{bottom:551.626667pt;}
.yf6{bottom:554.826667pt;}
.y5b{bottom:555.386667pt;}
.yc2{bottom:555.946667pt;}
.y1b0{bottom:557.066667pt;}
.yf2{bottom:560.266667pt;}
.y154{bottom:560.746667pt;}
.y2a{bottom:561.893333pt;}
.y122{bottom:564.773333pt;}
.y184{bottom:566.853333pt;}
.y91{bottom:569.493333pt;}
.y5a{bottom:570.213333pt;}
.yc1{bottom:573.813333pt;}
.y1af{bottom:574.853333pt;}
.y153{bottom:577.893333pt;}
.yf1{bottom:578.133333pt;}
.y29{bottom:578.213333pt;}
.y121{bottom:582.613333pt;}
.y183{bottom:584.693333pt;}
.y59{bottom:585.093333pt;}
.y90{bottom:587.253333pt;}
.yc0{bottom:591.573333pt;}
.y1ae{bottom:592.693333pt;}
.y28{bottom:594.533333pt;}
.yf0{bottom:595.893333pt;}
.y58{bottom:599.893333pt;}
.y120{bottom:600.373333pt;}
.yf5{bottom:601.573333pt;}
.y152{bottom:602.693333pt;}
.y8f{bottom:605.093333pt;}
.ybf{bottom:609.413333pt;}
.y182{bottom:610.453333pt;}
.y27{bottom:610.853333pt;}
.yef{bottom:613.733333pt;}
.y57{bottom:614.693333pt;}
.y11f{bottom:618.213333pt;}
.y1ba{bottom:618.453333pt;}
.y8e{bottom:622.853333pt;}
.y26{bottom:627.173333pt;}
.y181{bottom:628.293333pt;}
.yf4{bottom:629.413333pt;}
.y56{bottom:629.573333pt;}
.yee{bottom:631.493333pt;}
.y11e{bottom:635.973333pt;}
.y1b9{bottom:636.293333pt;}
.y8d{bottom:640.693333pt;}
.y25{bottom:643.493333pt;}
.y55{bottom:644.373333pt;}
.ybe{bottom:645.013333pt;}
.y180{bottom:646.053333pt;}
.yed{bottom:649.253333pt;}
.y1ad{bottom:654.053333pt;}
.y8c{bottom:658.453333pt;}
.y54{bottom:659.253333pt;}
.y24{bottom:659.813333pt;}
.y1c7{bottom:660.453333pt;}
.ybd{bottom:662.773333pt;}
.yec{bottom:667.093333pt;}
.y11d{bottom:667.253333pt;}
.y17f{bottom:671.813333pt;}
.y53{bottom:674.053333pt;}
.y23{bottom:676.133333pt;}
.y8b{bottom:676.293333pt;}
.ybc{bottom:680.533333pt;}
.y11c{bottom:681.573333pt;}
.yeb{bottom:684.853333pt;}
.y1c6{bottom:686.293333pt;}
.y52{bottom:688.853333pt;}
.y17e{bottom:689.653333pt;}
.y22{bottom:692.453333pt;}
.y8a{bottom:694.053333pt;}
.ybb{bottom:698.373333pt;}
.y51{bottom:703.733333pt;}
.y17d{bottom:707.413333pt;}
.y21{bottom:708.773333pt;}
.y89{bottom:711.813333pt;}
.y1c5{bottom:712.053333pt;}
.y11b{bottom:712.853333pt;}
.y19b{bottom:715.413333pt;}
.yba{bottom:716.133333pt;}
.y50{bottom:718.533333pt;}
.y20{bottom:725.093333pt;}
.y88{bottom:729.653333pt;}
.y17c{bottom:733.253333pt;}
.y4f{bottom:733.333333pt;}
.yb9{bottom:733.973333pt;}
.y1c4{bottom:737.893333pt;}
.y1f{bottom:741.333333pt;}
.y11a{bottom:744.133333pt;}
.y87{bottom:747.413333pt;}
.y4e{bottom:748.213333pt;}
.y17b{bottom:751.013333pt;}
.yb8{bottom:751.733333pt;}
.y1e{bottom:757.653333pt;}
.y4d{bottom:763.013333pt;}
.y1c3{bottom:763.653333pt;}
.y86{bottom:765.253333pt;}
.y17a{bottom:768.853333pt;}
.yb7{bottom:769.573333pt;}
.y1d{bottom:773.973333pt;}
.y119{bottom:775.413333pt;}
.y4c{bottom:777.893333pt;}
.y85{bottom:783.013333pt;}
.y1b8{bottom:786.613333pt;}
.yb6{bottom:787.333333pt;}
.y1c2{bottom:789.493333pt;}
.y1c{bottom:790.293333pt;}
.y4b{bottom:792.693333pt;}
.y179{bottom:794.613333pt;}
.y84{bottom:800.853333pt;}
.yea{bottom:805.173333pt;}
.y1b{bottom:806.613333pt;}
.y112{bottom:807.333333pt;}
.y4a{bottom:807.493333pt;}
.y178{bottom:812.453333pt;}
.y1c1{bottom:815.253333pt;}
.y83{bottom:818.613333pt;}
.y49{bottom:822.373333pt;}
.ye9{bottom:822.933333pt;}
.y1a{bottom:823.333333pt;}
.y177{bottom:830.213333pt;}
.y82{bottom:836.453333pt;}
.y48{bottom:837.173333pt;}
.ye8{bottom:840.773333pt;}
.y19{bottom:841.093333pt;}
.y1c0{bottom:846.533333pt;}
.y1b7{bottom:848.053333pt;}
.y47{bottom:852.053333pt;}
.y81{bottom:854.213333pt;}
.y176{bottom:856.053333pt;}
.y18{bottom:858.533333pt;}
.y1b6{bottom:865.813333pt;}
.y46{bottom:867.573333pt;}
.y80{bottom:872.053333pt;}
.y175{bottom:873.813333pt;}
.y17{bottom:874.453333pt;}
.ye7{bottom:876.373333pt;}
.y1bf{bottom:877.813333pt;}
.y45{bottom:885.013333pt;}
.y7f{bottom:889.813333pt;}
.y16{bottom:890.053333pt;}
.y174{bottom:891.653333pt;}
.ye6{bottom:894.133333pt;}
.y111{bottom:897.013333pt;}
.y1be{bottom:899.653333pt;}
.y44{bottom:901.333333pt;}
.y7e{bottom:907.653333pt;}
.y15{bottom:907.813333pt;}
.y19a{bottom:909.413333pt;}
.ye5{bottom:911.893333pt;}
.y110{bottom:914.053333pt;}
.y173{bottom:917.413333pt;}
.y43{bottom:917.653333pt;}
.y7d{bottom:925.413333pt;}
.ye4{bottom:929.733333pt;}
.y42{bottom:933.973333pt;}
.y14{bottom:934.293333pt;}
.y172{bottom:935.173333pt;}
.y7c{bottom:943.200000pt;}
.ye3{bottom:947.520000pt;}
.y41{bottom:950.320000pt;}
.y171{bottom:953.040000pt;}
.y13{bottom:955.120000pt;}
.y7b{bottom:961.040000pt;}
.y40{bottom:966.640000pt;}
.y1ac{bottom:970.800000pt;}
.y12{bottom:974.800000pt;}
.y7a{bottom:978.800000pt;}
.y3f{bottom:982.960000pt;}
.y6{bottom:991.600000pt;}
.y79{bottom:996.640000pt;}
.y3e{bottom:999.200000pt;}
.y1{bottom:1008.160000pt;}
.y78{bottom:1014.400000pt;}
.y3d{bottom:1015.520000pt;}
.hf{height:29.520000pt;}
.he{height:29.600000pt;}
.hc{height:29.626667pt;}
.h13{height:31.280000pt;}
.h4{height:46.159844pt;}
.h11{height:48.400000pt;}
.h6{height:50.578125pt;}
.h7{height:54.927899pt;}
.ha{height:55.281250pt;}
.h3{height:56.310312pt;}
.h8{height:61.705312pt;}
.h5{height:63.656250pt;}
.h9{height:64.402656pt;}
.hb{height:67.437500pt;}
.h12{height:72.480000pt;}
.h2{height:76.560000pt;}
.hd{height:120.240000pt;}
.h10{height:139.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.w6{width:75.706667pt;}
.w9{width:91.520000pt;}
.wa{width:120.906667pt;}
.wc{width:120.960000pt;}
.wb{width:120.986667pt;}
.w7{width:161.706667pt;}
.w8{width:275.786667pt;}
.w4{width:293.066667pt;}
.w2{width:295.013333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:4.080000pt;}
.x4{left:7.200000pt;}
.x18{left:10.160000pt;}
.xc{left:12.720000pt;}
.x11{left:14.320000pt;}
.x12{left:15.306667pt;}
.x15{left:16.480000pt;}
.x24{left:17.546667pt;}
.x17{left:22.240000pt;}
.xe{left:23.520000pt;}
.x21{left:26.346667pt;}
.x14{left:27.440000pt;}
.x19{left:30.986667pt;}
.x1b{left:32.000000pt;}
.x23{left:33.466667pt;}
.x13{left:34.720000pt;}
.x16{left:38.400000pt;}
.x1c{left:42.000000pt;}
.x22{left:46.400000pt;}
.x7{left:93.039988pt;}
.x1{left:94.560000pt;}
.x9{left:141.866655pt;}
.x2{left:165.226667pt;}
.xd{left:170.266667pt;}
.x1a{left:215.466667pt;}
.xf{left:331.973333pt;}
.x1d{left:336.453333pt;}
.x3{left:389.573333pt;}
.x6{left:396.933322pt;}
.xb{left:420.533322pt;}
.x5{left:434.773333pt;}
.x1f{left:457.413333pt;}
.x20{left:578.320000pt;}
.x10{left:607.760000pt;}
.x25{left:637.359988pt;}
.xa{left:683.039988pt;}
.x8{left:691.199988pt;}
}




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