
    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_a1f9199343167edc4812dfe1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4aeb940a07cae8391b839490.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e4875f5636ea621d8de6dbe0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_e497fd59ff47b8db00426889.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_fa55211e2f29fb8fdd218ddf.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_429cd409e6e9af0940307f28.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1ad8c793cb9ff0467f5402fb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_0be404b5d7f3b9915343b5b6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_6644330a9b2925cfd6aed4a2.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_eb38c242810455823e2e70ff.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.008000px;}
.ls26{letter-spacing:-0.576000px;}
.ls21{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.224400px;}
.ls8{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.091200px;}
.ls1b{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.034560px;}
.ls10{letter-spacing:-0.018000px;}
.ls7{letter-spacing:-0.017280px;}
.ls9{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls1d{letter-spacing:0.034560px;}
.ls17{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.269280px;}
.ls23{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.501000px;}
.ls16{letter-spacing:0.576000px;}
.ls25{letter-spacing:0.720000px;}
.ls1a{letter-spacing:2.160000px;}
.ls1e{letter-spacing:2.340000px;}
.ls20{letter-spacing:5.040000px;}
.ls27{letter-spacing:7.200000px;}
.lsb{letter-spacing:7.920000px;}
.ls13{letter-spacing:10.260000px;}
.lsc{letter-spacing:10.800000px;}
.ls14{letter-spacing:11.700000px;}
.ls19{letter-spacing:12.960000px;}
.ls12{letter-spacing:25.920000px;}
.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;}
}
.ws1{word-spacing:-19.457280px;}
.wsd{word-spacing:-19.440000px;}
.ws5{word-spacing:-19.431360px;}
.ws2{word-spacing:-19.422720px;}
.ws13{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.576000px;}
.ws7{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.055600px;}
.ws12{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.wsf{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:167.784000px;}
._11{margin-left:-2.407200px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._10{width:4.320000px;}
._7{width:6.266400px;}
._6{width:7.344000px;}
._a{width:8.352000px;}
._9{width:9.648000px;}
._15{width:11.224800px;}
._14{width:12.530400px;}
._1e{width:13.651200px;}
._13{width:14.834400px;}
._12{width:15.912000px;}
._22{width:16.961760px;}
._17{width:19.408080px;}
._23{width:20.448000px;}
._f{width:21.504000px;}
._b{width:22.680000px;}
._c{width:23.824080px;}
._1a{width:25.272000px;}
._19{width:26.930400px;}
._8{width:28.874400px;}
._16{width:30.095280px;}
._18{width:31.728720px;}
._24{width:33.040560px;}
._27{width:35.064000px;}
._1b{width:36.432000px;}
._1c{width:37.442400px;}
._1d{width:38.932800px;}
._1f{width:40.735440px;}
._d{width:42.552000px;}
._e{width:43.914480px;}
._26{width:61.708800px;}
._25{width:62.858400px;}
._5{width:219.369120px;}
._20{width:325.416000px;}
._21{width:392.008080px;}
._2{width:1208.520000px;}
._3{width:2033.573280px;}
.fc5{color:rgb(54,95,145);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fsb{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fsa{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.yd9{bottom:-2.160000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:3.960000px;}
.yb5{bottom:4.125000px;}
.yed{bottom:7.020000px;}
.y99{bottom:7.200000px;}
.ya1{bottom:7.365000px;}
.y9f{bottom:7.380000px;}
.y111{bottom:7.425000px;}
.y9a{bottom:13.500000px;}
.yb3{bottom:13.665000px;}
.y54{bottom:17.640000px;}
.y9b{bottom:22.860000px;}
.yb4{bottom:23.025000px;}
.y97{bottom:27.000000px;}
.y53{bottom:43.845000px;}
.y7{bottom:44.676000px;}
.y6{bottom:58.536000px;}
.y4b{bottom:75.960000px;}
.y4c{bottom:104.250000px;}
.y2c{bottom:131.076000px;}
.y4d{bottom:132.510000px;}
.yeb{bottom:135.036000px;}
.y2b{bottom:136.296000px;}
.y78{bottom:139.896000px;}
.ya5{bottom:141.516000px;}
.y49{bottom:144.756000px;}
.y14e{bottom:146.196000px;}
.y12d{bottom:147.456000px;}
.y2a{bottom:149.256000px;}
.ycd{bottom:155.010000px;}
.y77{bottom:160.590000px;}
.y4e{bottom:160.815000px;}
.y107{bottom:161.310000px;}
.yea{bottom:164.730000px;}
.y48{bottom:165.450000px;}
.y14d{bottom:166.890000px;}
.ycc{bottom:175.710000px;}
.y76{bottom:181.290000px;}
.ya4{bottom:181.830000px;}
.y106{bottom:182.010000px;}
.y29{bottom:185.610000px;}
.y12c{bottom:187.770000px;}
.y4f{bottom:189.105000px;}
.y169{bottom:191.010000px;}
.ye9{bottom:194.430000px;}
.ycb{bottom:196.410000px;}
.y75{bottom:201.990000px;}
.y105{bottom:202.710000px;}
.y47{bottom:203.790000px;}
.y14c{bottom:205.590000px;}
.y28{bottom:206.310000px;}
.y168{bottom:212.610000px;}
.yca{bottom:217.110000px;}
.y50{bottom:217.365000px;}
.ya3{bottom:221.610000px;}
.y104{bottom:223.410000px;}
.ye8{bottom:224.130000px;}
.y14b{bottom:226.290000px;}
.y27{bottom:227.010000px;}
.y12b{bottom:228.450000px;}
.yc9{bottom:237.810000px;}
.y74{bottom:240.330000px;}
.y103{bottom:244.110000px;}
.y46{bottom:244.470000px;}
.y51{bottom:245.670000px;}
.ya2{bottom:246.810000px;}
.y14a{bottom:246.990000px;}
.ya0{bottom:248.805000px;}
.y12a{bottom:249.150000px;}
.y167{bottom:251.310000px;}
.ye7{bottom:253.650000px;}
.yc8{bottom:258.510000px;}
.y102{bottom:264.810000px;}
.y45{bottom:265.170000px;}
.y26{bottom:265.710000px;}
.y129{bottom:269.850000px;}
.y166{bottom:272.010000px;}
.y52{bottom:273.960000px;}
.y9e{bottom:274.395000px;}
.yc7{bottom:279.255000px;}
.y73{bottom:281.055000px;}
.y149{bottom:285.735000px;}
.y44{bottom:285.915000px;}
.y25{bottom:286.455000px;}
.y128{bottom:290.595000px;}
.ye6{bottom:295.095000px;}
.y9d{bottom:299.955000px;}
.y72{bottom:301.755000px;}
.y101{bottom:303.555000px;}
.y148{bottom:306.435000px;}
.y43{bottom:306.615000px;}
.y24{bottom:307.155000px;}
.y165{bottom:310.755000px;}
.y127{bottom:311.295000px;}
.ye5{bottom:315.795000px;}
.yc6{bottom:320.655000px;}
.y71{bottom:322.455000px;}
.y100{bottom:324.255000px;}
.y96{bottom:326.235000px;}
.y147{bottom:327.135000px;}
.y42{bottom:327.315000px;}
.y23{bottom:327.855000px;}
.y164{bottom:331.455000px;}
.y126{bottom:331.995000px;}
.ye4{bottom:336.495000px;}
.yc5{bottom:341.355000px;}
.y70{bottom:343.155000px;}
.yff{bottom:344.955000px;}
.y41{bottom:348.015000px;}
.y22{bottom:348.555000px;}
.ye3{bottom:357.195000px;}
.yc4{bottom:362.055000px;}
.y6f{bottom:363.855000px;}
.y98{bottom:365.655000px;}
.y146{bottom:365.835000px;}
.y40{bottom:368.715000px;}
.y21{bottom:369.255000px;}
.y163{bottom:370.155000px;}
.y125{bottom:370.695000px;}
.y6e{bottom:384.555000px;}
.y145{bottom:386.535000px;}
.y3f{bottom:389.415000px;}
.y20{bottom:389.955000px;}
.y162{bottom:390.855000px;}
.y124{bottom:391.395000px;}
.ye2{bottom:395.895000px;}
.yc3{bottom:400.755000px;}
.yfe{bottom:404.355000px;}
.y6d{bottom:405.255000px;}
.y95{bottom:405.435000px;}
.y3e{bottom:410.115000px;}
.y123{bottom:412.095000px;}
.y144{bottom:425.235000px;}
.y6c{bottom:425.955000px;}
.y1f{bottom:428.295000px;}
.y161{bottom:429.555000px;}
.y122{bottom:432.795000px;}
.ye1{bottom:434.235000px;}
.y94{bottom:435.135000px;}
.yc2{bottom:439.455000px;}
.yfd{bottom:443.055000px;}
.y143{bottom:445.935000px;}
.y6b{bottom:446.655000px;}
.y3d{bottom:448.815000px;}
.y160{bottom:450.255000px;}
.ye0{bottom:453.135000px;}
.y121{bottom:453.495000px;}
.y93{bottom:455.835000px;}
.y6a{bottom:467.355000px;}
.y173{bottom:468.075000px;}
.y1e{bottom:468.255000px;}
.yfc{bottom:468.435000px;}
.y3c{bottom:469.515000px;}
.ydf{bottom:472.215000px;}
.y120{bottom:474.195000px;}
.yc1{bottom:474.375000px;}
.y92{bottom:476.535000px;}
.y142{bottom:484.635000px;}
.y1d{bottom:485.535000px;}
.y69{bottom:488.055000px;}
.y15f{bottom:488.955000px;}
.y3b{bottom:490.215000px;}
.yde{bottom:491.115000px;}
.y11f{bottom:494.895000px;}
.y91{bottom:497.235000px;}
.yc0{bottom:499.935000px;}
.y1c{bottom:502.815000px;}
.y141{bottom:505.335000px;}
.y172{bottom:506.955000px;}
.y68{bottom:508.755000px;}
.y15e{bottom:509.655000px;}
.ydd{bottom:510.015000px;}
.y3a{bottom:510.915000px;}
.y11e{bottom:515.595000px;}
.y140{bottom:525.855000px;}
.ybf{bottom:526.215000px;}
.y171{bottom:527.655000px;}
.y67{bottom:529.455000px;}
.y39{bottom:531.615000px;}
.y90{bottom:535.575000px;}
.y11d{bottom:536.295000px;}
.y1b{bottom:538.815000px;}
.ydc{bottom:543.855000px;}
.y15d{bottom:548.355000px;}
.y66{bottom:550.155000px;}
.y11c{bottom:557.025000px;}
.y1a{bottom:559.365000px;}
.y13f{bottom:564.585000px;}
.ybe{bottom:565.845000px;}
.y170{bottom:566.385000px;}
.y15c{bottom:569.085000px;}
.ydb{bottom:569.265000px;}
.y65{bottom:570.885000px;}
.y38{bottom:573.225000px;}
.y8f{bottom:576.285000px;}
.y11b{bottom:577.725000px;}
.y13e{bottom:585.285000px;}
.y16f{bottom:587.085000px;}
.y64{bottom:591.585000px;}
.yda{bottom:594.825000px;}
.ybd{bottom:595.545000px;}
.y8e{bottom:596.985000px;}
.y37{bottom:597.165000px;}
.y11a{bottom:598.425000px;}
.y19{bottom:599.865000px;}
.y13d{bottom:605.985000px;}
.y15b{bottom:607.785000px;}
.y63{bottom:612.285000px;}
.ybc{bottom:616.245000px;}
.y8d{bottom:617.685000px;}
.y119{bottom:619.125000px;}
.y18{bottom:620.565000px;}
.yd8{bottom:621.105000px;}
.y16e{bottom:625.785000px;}
.y15a{bottom:628.485000px;}
.y36{bottom:632.805000px;}
.y62{bottom:632.985000px;}
.y4a{bottom:633.060000px;}
.ybb{bottom:636.945000px;}
.y118{bottom:639.825000px;}
.y17{bottom:641.265000px;}
.y13c{bottom:644.685000px;}
.y16d{bottom:646.485000px;}
.yd7{bottom:647.385000px;}
.y61{bottom:653.685000px;}
.y8c{bottom:656.385000px;}
.y117{bottom:660.525000px;}
.y16{bottom:661.965000px;}
.y13b{bottom:665.385000px;}
.y159{bottom:667.185000px;}
.y60{bottom:674.385000px;}
.yba{bottom:675.285000px;}
.y8b{bottom:677.085000px;}
.y15{bottom:682.665000px;}
.yd6{bottom:686.985000px;}
.y158{bottom:687.885000px;}
.y5f{bottom:695.085000px;}
.y8a{bottom:697.785000px;}
.y116{bottom:698.865000px;}
.yb9{bottom:700.485000px;}
.yb8{bottom:702.465000px;}
.y14{bottom:703.365000px;}
.y13a{bottom:704.085000px;}
.y16c{bottom:705.885000px;}
.yfb{bottom:706.965000px;}
.yd5{bottom:716.685000px;}
.y89{bottom:718.485000px;}
.y13{bottom:724.065000px;}
.y139{bottom:724.785000px;}
.y157{bottom:726.585000px;}
.yfa{bottom:727.665000px;}
.yb7{bottom:728.025000px;}
.y5e{bottom:733.785000px;}
.y115{bottom:734.145000px;}
.yd4{bottom:737.385000px;}
.y88{bottom:739.185000px;}
.y12{bottom:744.765000px;}
.y138{bottom:745.485000px;}
.y156{bottom:747.285000px;}
.yf9{bottom:748.365000px;}
.yb6{bottom:753.585000px;}
.y5d{bottom:754.485000px;}
.yd3{bottom:758.085000px;}
.y114{bottom:759.720000px;}
.y87{bottom:759.885000px;}
.yf8{bottom:769.065000px;}
.y5c{bottom:775.185000px;}
.yd2{bottom:778.785000px;}
.yb2{bottom:779.700000px;}
.y86{bottom:780.585000px;}
.y11{bottom:783.285000px;}
.y137{bottom:784.185000px;}
.y113{bottom:785.265000px;}
.y155{bottom:785.985000px;}
.yf7{bottom:789.765000px;}
.y5b{bottom:795.885000px;}
.yd1{bottom:799.485000px;}
.y85{bottom:801.285000px;}
.y136{bottom:804.885000px;}
.y154{bottom:806.685000px;}
.yf6{bottom:810.465000px;}
.y112{bottom:810.645000px;}
.y5a{bottom:816.585000px;}
.yd0{bottom:820.185000px;}
.y84{bottom:821.985000px;}
.y10{bottom:824.145000px;}
.y135{bottom:825.585000px;}
.y153{bottom:827.385000px;}
.yb1{bottom:831.885000px;}
.y110{bottom:836.205000px;}
.y59{bottom:837.285000px;}
.ycf{bottom:840.930000px;}
.y83{bottom:842.730000px;}
.y16b{bottom:845.430000px;}
.yf{bottom:847.050000px;}
.yf5{bottom:849.210000px;}
.y58{bottom:858.030000px;}
.yb0{bottom:861.630000px;}
.y10f{bottom:861.810000px;}
.y82{bottom:863.430000px;}
.y134{bottom:864.330000px;}
.y152{bottom:866.130000px;}
.ye{bottom:870.810000px;}
.y57{bottom:878.730000px;}
.yce{bottom:879.990000px;}
.yaf{bottom:882.330000px;}
.y81{bottom:884.130000px;}
.y133{bottom:885.030000px;}
.y151{bottom:886.830000px;}
.y10e{bottom:887.190000px;}
.yf4{bottom:887.550000px;}
.yc{bottom:893.490000px;}
.y56{bottom:899.430000px;}
.yd{bottom:901.050000px;}
.yae{bottom:903.030000px;}
.y80{bottom:904.830000px;}
.y132{bottom:905.730000px;}
.y150{bottom:907.530000px;}
.yf3{bottom:912.210000px;}
.y10d{bottom:912.750000px;}
.y55{bottom:920.130000px;}
.yad{bottom:923.730000px;}
.y7f{bottom:925.530000px;}
.yb{bottom:937.230000px;}
.yf2{bottom:937.590000px;}
.y10c{bottom:938.310000px;}
.y35{bottom:940.830000px;}
.y131{bottom:944.430000px;}
.y7e{bottom:946.230000px;}
.y34{bottom:961.530000px;}
.yac{bottom:962.430000px;}
.yf1{bottom:963.150000px;}
.y10b{bottom:963.690000px;}
.y130{bottom:965.130000px;}
.y7d{bottom:966.930000px;}
.y33{bottom:982.230000px;}
.yab{bottom:983.130000px;}
.y16a{bottom:984.930000px;}
.y12f{bottom:985.830000px;}
.y14f{bottom:987.630000px;}
.yf0{bottom:988.710000px;}
.ya{bottom:989.790000px;}
.y10a{bottom:989.970000px;}
.y32{bottom:1002.930000px;}
.yaa{bottom:1003.830000px;}
.y7c{bottom:1005.630000px;}
.yef{bottom:1014.090000px;}
.y109{bottom:1016.250000px;}
.y31{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.ya9{bottom:1024.530000px;}
.y7b{bottom:1026.330000px;}
.yee{bottom:1040.370000px;}
.y30{bottom:1044.330000px;}
.ya8{bottom:1045.230000px;}
.y7a{bottom:1047.030000px;}
.y108{bottom:1056.030000px;}
.y2f{bottom:1065.030000px;}
.ya7{bottom:1065.930000px;}
.yec{bottom:1066.650000px;}
.y79{bottom:1067.730000px;}
.y8{bottom:1076.730000px;}
.y2e{bottom:1085.730000px;}
.y12e{bottom:1104.450000px;}
.ya6{bottom:1104.990000px;}
.y2d{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h1a{height:5.653125px;}
.h16{height:25.365000px;}
.h1d{height:25.380000px;}
.h21{height:25.410000px;}
.h18{height:25.545000px;}
.h1e{height:25.560000px;}
.h19{height:25.581000px;}
.h24{height:25.582500px;}
.he{height:26.995781px;}
.h12{height:36.834961px;}
.h13{height:36.933188px;}
.ha{height:37.494141px;}
.h17{height:37.785000px;}
.h1c{height:37.965000px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h23{height:50.027344px;}
.hf{height:58.621992px;}
.h2{height:58.651172px;}
.h5{height:58.905000px;}
.h3{height:60.226875px;}
.h14{height:64.785000px;}
.h15{height:65.010937px;}
.h22{height:66.757500px;}
.h1f{height:70.628906px;}
.hd{height:70.664062px;}
.h10{height:72.562500px;}
.h20{height:74.004654px;}
.h1b{height:76.279219px;}
.hb{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:82.676953px;}
.h7{height:121.179375px;}
.h11{height:294.300000px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:48.945000px;}
.w1c{width:78.105000px;}
.w1d{width:78.141000px;}
.w9{width:84.981000px;}
.w8{width:85.125000px;}
.wa{width:85.140000px;}
.w5{width:86.436000px;}
.w1b{width:89.496000px;}
.w23{width:90.525000px;}
.w21{width:90.540000px;}
.w20{width:90.561000px;}
.w22{width:90.576000px;}
.w13{width:104.061000px;}
.w16{width:107.985000px;}
.w18{width:118.785000px;}
.we{width:118.791000px;}
.w12{width:118.821000px;}
.w10{width:118.836000px;}
.wc{width:118.965000px;}
.wd{width:119.001000px;}
.wb{width:119.016000px;}
.w14{width:129.600000px;}
.w15{width:129.636000px;}
.w2{width:136.282500px;}
.w11{width:140.385000px;}
.wf{width:140.421000px;}
.w1a{width:245.775000px;}
.w19{width:246.615000px;}
.w6{width:255.255000px;}
.w7{width:357.015000px;}
.w1f{width:362.220000px;}
.w17{width:475.290000px;}
.w4{width:597.960000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x67{left:2.865000px;}
.x36{left:8.625000px;}
.x14{left:9.870000px;}
.x3d{left:11.520000px;}
.x34{left:13.125000px;}
.x5a{left:14.580000px;}
.x3f{left:16.056000px;}
.x5b{left:17.445000px;}
.x5c{left:18.705000px;}
.x3c{left:20.196000px;}
.x3e{left:21.276000px;}
.x44{left:22.665000px;}
.x37{left:24.480000px;}
.x30{left:26.676000px;}
.x38{left:29.880000px;}
.x4a{left:30.945000px;}
.x47{left:33.105000px;}
.x13{left:37.230000px;}
.x4b{left:39.225000px;}
.x3b{left:41.610000px;}
.x48{left:43.545000px;}
.x53{left:52.005000px;}
.x52{left:53.805000px;}
.x2{left:55.777500px;}
.x66{left:62.670000px;}
.x15{left:66.270000px;}
.x16{left:86.865000px;}
.x2f{left:97.200000px;}
.x17{left:107.460000px;}
.x32{left:108.705000px;}
.x42{left:119.565000px;}
.x5f{left:123.330000px;}
.x1{left:127.656000px;}
.x10{left:129.456000px;}
.xe{left:132.516000px;}
.x12{left:147.420000px;}
.xc{left:148.896000px;}
.x54{left:154.845000px;}
.xb{left:159.510000px;}
.x56{left:164.910000px;}
.x18{left:169.230000px;}
.x4d{left:170.850000px;}
.x9{left:173.190000px;}
.xa{left:180.750000px;}
.x31{left:183.645000px;}
.x4{left:184.710000px;}
.x19{left:189.825000px;}
.x5e{left:200.385000px;}
.x4f{left:205.605000px;}
.x1a{left:210.420000px;}
.x4e{left:213.870000px;}
.x5d{left:218.910000px;}
.x1b{left:231.045000px;}
.x2c{left:236.445000px;}
.x43{left:238.365000px;}
.x64{left:240.885000px;}
.x63{left:248.970000px;}
.x1c{left:251.640000px;}
.x55{left:262.845000px;}
.x35{left:268.785000px;}
.x1d{left:272.235000px;}
.x5{left:275.250000px;}
.x65{left:289.845000px;}
.x41{left:291.630000px;}
.x1e{left:292.830000px;}
.x2d{left:296.895000px;}
.x50{left:309.675000px;}
.x1f{left:313.410000px;}
.x2e{left:323.355000px;}
.x11{left:330.375000px;}
.x20{left:334.005000px;}
.xd{left:343.695000px;}
.x21{left:354.600000px;}
.x6{left:358.815000px;}
.x22{left:375.195000px;}
.x45{left:378.795000px;}
.x68{left:380.415000px;}
.x57{left:381.675000px;}
.x23{left:395.790000px;}
.x24{left:416.370000px;}
.x25{left:436.965000px;}
.x33{left:438.915000px;}
.x40{left:446.655000px;}
.x3{left:457.275000px;}
.x69{left:470.955000px;}
.x4c{left:473.655000px;}
.x26{left:478.185000px;}
.x46{left:497.640000px;}
.x27{left:498.780000px;}
.x58{left:500.520000px;}
.x28{left:519.375000px;}
.x60{left:536.520000px;}
.x29{left:539.970000px;}
.x7{left:548.902500px;}
.x8{left:555.765000px;}
.x39{left:557.940000px;}
.x2a{left:560.550000px;}
.x51{left:568.920000px;}
.x2b{left:581.145000px;}
.x61{left:614.640000px;}
.x59{left:619.320000px;}
.x49{left:638.040000px;}
.x3a{left:676.920000px;}
.xf{left:745.710000px;}
.x62{left:755.790000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls26{letter-spacing:-0.512000pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.199467pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.081067pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.030720pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls1d{letter-spacing:0.030720pt;}
.ls17{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.239360pt;}
.ls23{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.445333pt;}
.ls16{letter-spacing:0.512000pt;}
.ls25{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls20{letter-spacing:4.480000pt;}
.ls27{letter-spacing:6.400000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls13{letter-spacing:9.120000pt;}
.lsc{letter-spacing:9.600000pt;}
.ls14{letter-spacing:10.400000pt;}
.ls19{letter-spacing:11.520000pt;}
.ls12{letter-spacing:23.040000pt;}
.ws1{word-spacing:-17.295360pt;}
.wsd{word-spacing:-17.280000pt;}
.ws5{word-spacing:-17.272320pt;}
.ws2{word-spacing:-17.264640pt;}
.ws13{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.512000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.160533pt;}
.ws12{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:149.141333pt;}
._11{margin-left:-2.139733pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._10{width:3.840000pt;}
._7{width:5.570133pt;}
._6{width:6.528000pt;}
._a{width:7.424000pt;}
._9{width:8.576000pt;}
._15{width:9.977600pt;}
._14{width:11.138133pt;}
._1e{width:12.134400pt;}
._13{width:13.186133pt;}
._12{width:14.144000pt;}
._22{width:15.077120pt;}
._17{width:17.251627pt;}
._23{width:18.176000pt;}
._f{width:19.114667pt;}
._b{width:20.160000pt;}
._c{width:21.176960pt;}
._1a{width:22.464000pt;}
._19{width:23.938133pt;}
._8{width:25.666133pt;}
._16{width:26.751360pt;}
._18{width:28.203307pt;}
._24{width:29.369387pt;}
._27{width:31.168000pt;}
._1b{width:32.384000pt;}
._1c{width:33.282133pt;}
._1d{width:34.606933pt;}
._1f{width:36.209280pt;}
._d{width:37.824000pt;}
._e{width:39.035093pt;}
._26{width:54.852267pt;}
._25{width:55.874133pt;}
._5{width:194.994773pt;}
._20{width:289.258667pt;}
._21{width:348.451627pt;}
._2{width:1074.240000pt;}
._3{width:1807.620693pt;}
.fsc{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fsb{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fsa{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.yd9{bottom:-1.920000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:3.520000pt;}
.yb5{bottom:3.666667pt;}
.yed{bottom:6.240000pt;}
.y99{bottom:6.400000pt;}
.ya1{bottom:6.546667pt;}
.y9f{bottom:6.560000pt;}
.y111{bottom:6.600000pt;}
.y9a{bottom:12.000000pt;}
.yb3{bottom:12.146667pt;}
.y54{bottom:15.680000pt;}
.y9b{bottom:20.320000pt;}
.yb4{bottom:20.466667pt;}
.y97{bottom:24.000000pt;}
.y53{bottom:38.973333pt;}
.y7{bottom:39.712000pt;}
.y6{bottom:52.032000pt;}
.y4b{bottom:67.520000pt;}
.y4c{bottom:92.666667pt;}
.y2c{bottom:116.512000pt;}
.y4d{bottom:117.786667pt;}
.yeb{bottom:120.032000pt;}
.y2b{bottom:121.152000pt;}
.y78{bottom:124.352000pt;}
.ya5{bottom:125.792000pt;}
.y49{bottom:128.672000pt;}
.y14e{bottom:129.952000pt;}
.y12d{bottom:131.072000pt;}
.y2a{bottom:132.672000pt;}
.ycd{bottom:137.786667pt;}
.y77{bottom:142.746667pt;}
.y4e{bottom:142.946667pt;}
.y107{bottom:143.386667pt;}
.yea{bottom:146.426667pt;}
.y48{bottom:147.066667pt;}
.y14d{bottom:148.346667pt;}
.ycc{bottom:156.186667pt;}
.y76{bottom:161.146667pt;}
.ya4{bottom:161.626667pt;}
.y106{bottom:161.786667pt;}
.y29{bottom:164.986667pt;}
.y12c{bottom:166.906667pt;}
.y4f{bottom:168.093333pt;}
.y169{bottom:169.786667pt;}
.ye9{bottom:172.826667pt;}
.ycb{bottom:174.586667pt;}
.y75{bottom:179.546667pt;}
.y105{bottom:180.186667pt;}
.y47{bottom:181.146667pt;}
.y14c{bottom:182.746667pt;}
.y28{bottom:183.386667pt;}
.y168{bottom:188.986667pt;}
.yca{bottom:192.986667pt;}
.y50{bottom:193.213333pt;}
.ya3{bottom:196.986667pt;}
.y104{bottom:198.586667pt;}
.ye8{bottom:199.226667pt;}
.y14b{bottom:201.146667pt;}
.y27{bottom:201.786667pt;}
.y12b{bottom:203.066667pt;}
.yc9{bottom:211.386667pt;}
.y74{bottom:213.626667pt;}
.y103{bottom:216.986667pt;}
.y46{bottom:217.306667pt;}
.y51{bottom:218.373333pt;}
.ya2{bottom:219.386667pt;}
.y14a{bottom:219.546667pt;}
.ya0{bottom:221.160000pt;}
.y12a{bottom:221.466667pt;}
.y167{bottom:223.386667pt;}
.ye7{bottom:225.466667pt;}
.yc8{bottom:229.786667pt;}
.y102{bottom:235.386667pt;}
.y45{bottom:235.706667pt;}
.y26{bottom:236.186667pt;}
.y129{bottom:239.866667pt;}
.y166{bottom:241.786667pt;}
.y52{bottom:243.520000pt;}
.y9e{bottom:243.906667pt;}
.yc7{bottom:248.226667pt;}
.y73{bottom:249.826667pt;}
.y149{bottom:253.986667pt;}
.y44{bottom:254.146667pt;}
.y25{bottom:254.626667pt;}
.y128{bottom:258.306667pt;}
.ye6{bottom:262.306667pt;}
.y9d{bottom:266.626667pt;}
.y72{bottom:268.226667pt;}
.y101{bottom:269.826667pt;}
.y148{bottom:272.386667pt;}
.y43{bottom:272.546667pt;}
.y24{bottom:273.026667pt;}
.y165{bottom:276.226667pt;}
.y127{bottom:276.706667pt;}
.ye5{bottom:280.706667pt;}
.yc6{bottom:285.026667pt;}
.y71{bottom:286.626667pt;}
.y100{bottom:288.226667pt;}
.y96{bottom:289.986667pt;}
.y147{bottom:290.786667pt;}
.y42{bottom:290.946667pt;}
.y23{bottom:291.426667pt;}
.y164{bottom:294.626667pt;}
.y126{bottom:295.106667pt;}
.ye4{bottom:299.106667pt;}
.yc5{bottom:303.426667pt;}
.y70{bottom:305.026667pt;}
.yff{bottom:306.626667pt;}
.y41{bottom:309.346667pt;}
.y22{bottom:309.826667pt;}
.ye3{bottom:317.506667pt;}
.yc4{bottom:321.826667pt;}
.y6f{bottom:323.426667pt;}
.y98{bottom:325.026667pt;}
.y146{bottom:325.186667pt;}
.y40{bottom:327.746667pt;}
.y21{bottom:328.226667pt;}
.y163{bottom:329.026667pt;}
.y125{bottom:329.506667pt;}
.y6e{bottom:341.826667pt;}
.y145{bottom:343.586667pt;}
.y3f{bottom:346.146667pt;}
.y20{bottom:346.626667pt;}
.y162{bottom:347.426667pt;}
.y124{bottom:347.906667pt;}
.ye2{bottom:351.906667pt;}
.yc3{bottom:356.226667pt;}
.yfe{bottom:359.426667pt;}
.y6d{bottom:360.226667pt;}
.y95{bottom:360.386667pt;}
.y3e{bottom:364.546667pt;}
.y123{bottom:366.306667pt;}
.y144{bottom:377.986667pt;}
.y6c{bottom:378.626667pt;}
.y1f{bottom:380.706667pt;}
.y161{bottom:381.826667pt;}
.y122{bottom:384.706667pt;}
.ye1{bottom:385.986667pt;}
.y94{bottom:386.786667pt;}
.yc2{bottom:390.626667pt;}
.yfd{bottom:393.826667pt;}
.y143{bottom:396.386667pt;}
.y6b{bottom:397.026667pt;}
.y3d{bottom:398.946667pt;}
.y160{bottom:400.226667pt;}
.ye0{bottom:402.786667pt;}
.y121{bottom:403.106667pt;}
.y93{bottom:405.186667pt;}
.y6a{bottom:415.426667pt;}
.y173{bottom:416.066667pt;}
.y1e{bottom:416.226667pt;}
.yfc{bottom:416.386667pt;}
.y3c{bottom:417.346667pt;}
.ydf{bottom:419.746667pt;}
.y120{bottom:421.506667pt;}
.yc1{bottom:421.666667pt;}
.y92{bottom:423.586667pt;}
.y142{bottom:430.786667pt;}
.y1d{bottom:431.586667pt;}
.y69{bottom:433.826667pt;}
.y15f{bottom:434.626667pt;}
.y3b{bottom:435.746667pt;}
.yde{bottom:436.546667pt;}
.y11f{bottom:439.906667pt;}
.y91{bottom:441.986667pt;}
.yc0{bottom:444.386667pt;}
.y1c{bottom:446.946667pt;}
.y141{bottom:449.186667pt;}
.y172{bottom:450.626667pt;}
.y68{bottom:452.226667pt;}
.y15e{bottom:453.026667pt;}
.ydd{bottom:453.346667pt;}
.y3a{bottom:454.146667pt;}
.y11e{bottom:458.306667pt;}
.y140{bottom:467.426667pt;}
.ybf{bottom:467.746667pt;}
.y171{bottom:469.026667pt;}
.y67{bottom:470.626667pt;}
.y39{bottom:472.546667pt;}
.y90{bottom:476.066667pt;}
.y11d{bottom:476.706667pt;}
.y1b{bottom:478.946667pt;}
.ydc{bottom:483.426667pt;}
.y15d{bottom:487.426667pt;}
.y66{bottom:489.026667pt;}
.y11c{bottom:495.133333pt;}
.y1a{bottom:497.213333pt;}
.y13f{bottom:501.853333pt;}
.ybe{bottom:502.973333pt;}
.y170{bottom:503.453333pt;}
.y15c{bottom:505.853333pt;}
.ydb{bottom:506.013333pt;}
.y65{bottom:507.453333pt;}
.y38{bottom:509.533333pt;}
.y8f{bottom:512.253333pt;}
.y11b{bottom:513.533333pt;}
.y13e{bottom:520.253333pt;}
.y16f{bottom:521.853333pt;}
.y64{bottom:525.853333pt;}
.yda{bottom:528.733333pt;}
.ybd{bottom:529.373333pt;}
.y8e{bottom:530.653333pt;}
.y37{bottom:530.813333pt;}
.y11a{bottom:531.933333pt;}
.y19{bottom:533.213333pt;}
.y13d{bottom:538.653333pt;}
.y15b{bottom:540.253333pt;}
.y63{bottom:544.253333pt;}
.ybc{bottom:547.773333pt;}
.y8d{bottom:549.053333pt;}
.y119{bottom:550.333333pt;}
.y18{bottom:551.613333pt;}
.yd8{bottom:552.093333pt;}
.y16e{bottom:556.253333pt;}
.y15a{bottom:558.653333pt;}
.y36{bottom:562.493333pt;}
.y62{bottom:562.653333pt;}
.y4a{bottom:562.720000pt;}
.ybb{bottom:566.173333pt;}
.y118{bottom:568.733333pt;}
.y17{bottom:570.013333pt;}
.y13c{bottom:573.053333pt;}
.y16d{bottom:574.653333pt;}
.yd7{bottom:575.453333pt;}
.y61{bottom:581.053333pt;}
.y8c{bottom:583.453333pt;}
.y117{bottom:587.133333pt;}
.y16{bottom:588.413333pt;}
.y13b{bottom:591.453333pt;}
.y159{bottom:593.053333pt;}
.y60{bottom:599.453333pt;}
.yba{bottom:600.253333pt;}
.y8b{bottom:601.853333pt;}
.y15{bottom:606.813333pt;}
.yd6{bottom:610.653333pt;}
.y158{bottom:611.453333pt;}
.y5f{bottom:617.853333pt;}
.y8a{bottom:620.253333pt;}
.y116{bottom:621.213333pt;}
.yb9{bottom:622.653333pt;}
.yb8{bottom:624.413333pt;}
.y14{bottom:625.213333pt;}
.y13a{bottom:625.853333pt;}
.y16c{bottom:627.453333pt;}
.yfb{bottom:628.413333pt;}
.yd5{bottom:637.053333pt;}
.y89{bottom:638.653333pt;}
.y13{bottom:643.613333pt;}
.y139{bottom:644.253333pt;}
.y157{bottom:645.853333pt;}
.yfa{bottom:646.813333pt;}
.yb7{bottom:647.133333pt;}
.y5e{bottom:652.253333pt;}
.y115{bottom:652.573333pt;}
.yd4{bottom:655.453333pt;}
.y88{bottom:657.053333pt;}
.y12{bottom:662.013333pt;}
.y138{bottom:662.653333pt;}
.y156{bottom:664.253333pt;}
.yf9{bottom:665.213333pt;}
.yb6{bottom:669.853333pt;}
.y5d{bottom:670.653333pt;}
.yd3{bottom:673.853333pt;}
.y114{bottom:675.306667pt;}
.y87{bottom:675.453333pt;}
.yf8{bottom:683.613333pt;}
.y5c{bottom:689.053333pt;}
.yd2{bottom:692.253333pt;}
.yb2{bottom:693.066667pt;}
.y86{bottom:693.853333pt;}
.y11{bottom:696.253333pt;}
.y137{bottom:697.053333pt;}
.y113{bottom:698.013333pt;}
.y155{bottom:698.653333pt;}
.yf7{bottom:702.013333pt;}
.y5b{bottom:707.453333pt;}
.yd1{bottom:710.653333pt;}
.y85{bottom:712.253333pt;}
.y136{bottom:715.453333pt;}
.y154{bottom:717.053333pt;}
.yf6{bottom:720.413333pt;}
.y112{bottom:720.573333pt;}
.y5a{bottom:725.853333pt;}
.yd0{bottom:729.053333pt;}
.y84{bottom:730.653333pt;}
.y10{bottom:732.573333pt;}
.y135{bottom:733.853333pt;}
.y153{bottom:735.453333pt;}
.yb1{bottom:739.453333pt;}
.y110{bottom:743.293333pt;}
.y59{bottom:744.253333pt;}
.ycf{bottom:747.493333pt;}
.y83{bottom:749.093333pt;}
.y16b{bottom:751.493333pt;}
.yf{bottom:752.933333pt;}
.yf5{bottom:754.853333pt;}
.y58{bottom:762.693333pt;}
.yb0{bottom:765.893333pt;}
.y10f{bottom:766.053333pt;}
.y82{bottom:767.493333pt;}
.y134{bottom:768.293333pt;}
.y152{bottom:769.893333pt;}
.ye{bottom:774.053333pt;}
.y57{bottom:781.093333pt;}
.yce{bottom:782.213333pt;}
.yaf{bottom:784.293333pt;}
.y81{bottom:785.893333pt;}
.y133{bottom:786.693333pt;}
.y151{bottom:788.293333pt;}
.y10e{bottom:788.613333pt;}
.yf4{bottom:788.933333pt;}
.yc{bottom:794.213333pt;}
.y56{bottom:799.493333pt;}
.yd{bottom:800.933333pt;}
.yae{bottom:802.693333pt;}
.y80{bottom:804.293333pt;}
.y132{bottom:805.093333pt;}
.y150{bottom:806.693333pt;}
.yf3{bottom:810.853333pt;}
.y10d{bottom:811.333333pt;}
.y55{bottom:817.893333pt;}
.yad{bottom:821.093333pt;}
.y7f{bottom:822.693333pt;}
.yb{bottom:833.093333pt;}
.yf2{bottom:833.413333pt;}
.y10c{bottom:834.053333pt;}
.y35{bottom:836.293333pt;}
.y131{bottom:839.493333pt;}
.y7e{bottom:841.093333pt;}
.y34{bottom:854.693333pt;}
.yac{bottom:855.493333pt;}
.yf1{bottom:856.133333pt;}
.y10b{bottom:856.613333pt;}
.y130{bottom:857.893333pt;}
.y7d{bottom:859.493333pt;}
.y33{bottom:873.093333pt;}
.yab{bottom:873.893333pt;}
.y16a{bottom:875.493333pt;}
.y12f{bottom:876.293333pt;}
.y14f{bottom:877.893333pt;}
.yf0{bottom:878.853333pt;}
.ya{bottom:879.813333pt;}
.y10a{bottom:879.973333pt;}
.y32{bottom:891.493333pt;}
.yaa{bottom:892.293333pt;}
.y7c{bottom:893.893333pt;}
.yef{bottom:901.413333pt;}
.y109{bottom:903.333333pt;}
.y31{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.ya9{bottom:910.693333pt;}
.y7b{bottom:912.293333pt;}
.yee{bottom:924.773333pt;}
.y30{bottom:928.293333pt;}
.ya8{bottom:929.093333pt;}
.y7a{bottom:930.693333pt;}
.y108{bottom:938.693333pt;}
.y2f{bottom:946.693333pt;}
.ya7{bottom:947.493333pt;}
.yec{bottom:948.133333pt;}
.y79{bottom:949.093333pt;}
.y8{bottom:957.093333pt;}
.y2e{bottom:965.093333pt;}
.y12e{bottom:981.733333pt;}
.ya6{bottom:982.213333pt;}
.y2d{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h1a{height:5.025000pt;}
.h16{height:22.546667pt;}
.h1d{height:22.560000pt;}
.h21{height:22.586667pt;}
.h18{height:22.706667pt;}
.h1e{height:22.720000pt;}
.h19{height:22.738667pt;}
.h24{height:22.740000pt;}
.he{height:23.996250pt;}
.h12{height:32.742188pt;}
.h13{height:32.829500pt;}
.ha{height:33.328125pt;}
.h17{height:33.586667pt;}
.h1c{height:33.746667pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h23{height:44.468750pt;}
.hf{height:52.108438pt;}
.h2{height:52.134375pt;}
.h5{height:52.360000pt;}
.h3{height:53.535000pt;}
.h14{height:57.586667pt;}
.h15{height:57.787500pt;}
.h22{height:59.340000pt;}
.h1f{height:62.781250pt;}
.hd{height:62.812500pt;}
.h10{height:64.500000pt;}
.h20{height:65.781915pt;}
.h1b{height:67.803750pt;}
.hb{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:73.490625pt;}
.h7{height:107.715000pt;}
.h11{height:261.600000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:43.506667pt;}
.w1c{width:69.426667pt;}
.w1d{width:69.458667pt;}
.w9{width:75.538667pt;}
.w8{width:75.666667pt;}
.wa{width:75.680000pt;}
.w5{width:76.832000pt;}
.w1b{width:79.552000pt;}
.w23{width:80.466667pt;}
.w21{width:80.480000pt;}
.w20{width:80.498667pt;}
.w22{width:80.512000pt;}
.w13{width:92.498667pt;}
.w16{width:95.986667pt;}
.w18{width:105.586667pt;}
.we{width:105.592000pt;}
.w12{width:105.618667pt;}
.w10{width:105.632000pt;}
.wc{width:105.746667pt;}
.wd{width:105.778667pt;}
.wb{width:105.792000pt;}
.w14{width:115.200000pt;}
.w15{width:115.232000pt;}
.w2{width:121.140000pt;}
.w11{width:124.786667pt;}
.wf{width:124.818667pt;}
.w1a{width:218.466667pt;}
.w19{width:219.213333pt;}
.w6{width:226.893333pt;}
.w7{width:317.346667pt;}
.w1f{width:321.973333pt;}
.w17{width:422.480000pt;}
.w4{width:531.520000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x67{left:2.546667pt;}
.x36{left:7.666667pt;}
.x14{left:8.773333pt;}
.x3d{left:10.240000pt;}
.x34{left:11.666667pt;}
.x5a{left:12.960000pt;}
.x3f{left:14.272000pt;}
.x5b{left:15.506667pt;}
.x5c{left:16.626667pt;}
.x3c{left:17.952000pt;}
.x3e{left:18.912000pt;}
.x44{left:20.146667pt;}
.x37{left:21.760000pt;}
.x30{left:23.712000pt;}
.x38{left:26.560000pt;}
.x4a{left:27.506667pt;}
.x47{left:29.426667pt;}
.x13{left:33.093333pt;}
.x4b{left:34.866667pt;}
.x3b{left:36.986667pt;}
.x48{left:38.706667pt;}
.x53{left:46.226667pt;}
.x52{left:47.826667pt;}
.x2{left:49.580000pt;}
.x66{left:55.706667pt;}
.x15{left:58.906667pt;}
.x16{left:77.213333pt;}
.x2f{left:86.400000pt;}
.x17{left:95.520000pt;}
.x32{left:96.626667pt;}
.x42{left:106.280000pt;}
.x5f{left:109.626667pt;}
.x1{left:113.472000pt;}
.x10{left:115.072000pt;}
.xe{left:117.792000pt;}
.x12{left:131.040000pt;}
.xc{left:132.352000pt;}
.x54{left:137.640000pt;}
.xb{left:141.786667pt;}
.x56{left:146.586667pt;}
.x18{left:150.426667pt;}
.x4d{left:151.866667pt;}
.x9{left:153.946667pt;}
.xa{left:160.666667pt;}
.x31{left:163.240000pt;}
.x4{left:164.186667pt;}
.x19{left:168.733333pt;}
.x5e{left:178.120000pt;}
.x4f{left:182.760000pt;}
.x1a{left:187.040000pt;}
.x4e{left:190.106667pt;}
.x5d{left:194.586667pt;}
.x1b{left:205.373333pt;}
.x2c{left:210.173333pt;}
.x43{left:211.880000pt;}
.x64{left:214.120000pt;}
.x63{left:221.306667pt;}
.x1c{left:223.680000pt;}
.x55{left:233.640000pt;}
.x35{left:238.920000pt;}
.x1d{left:241.986667pt;}
.x5{left:244.666667pt;}
.x65{left:257.640000pt;}
.x41{left:259.226667pt;}
.x1e{left:260.293333pt;}
.x2d{left:263.906667pt;}
.x50{left:275.266667pt;}
.x1f{left:278.586667pt;}
.x2e{left:287.426667pt;}
.x11{left:293.666667pt;}
.x20{left:296.893333pt;}
.xd{left:305.506667pt;}
.x21{left:315.200000pt;}
.x6{left:318.946667pt;}
.x22{left:333.506667pt;}
.x45{left:336.706667pt;}
.x68{left:338.146667pt;}
.x57{left:339.266667pt;}
.x23{left:351.813333pt;}
.x24{left:370.106667pt;}
.x25{left:388.413333pt;}
.x33{left:390.146667pt;}
.x40{left:397.026667pt;}
.x3{left:406.466667pt;}
.x69{left:418.626667pt;}
.x4c{left:421.026667pt;}
.x26{left:425.053333pt;}
.x46{left:442.346667pt;}
.x27{left:443.360000pt;}
.x58{left:444.906667pt;}
.x28{left:461.666667pt;}
.x60{left:476.906667pt;}
.x29{left:479.973333pt;}
.x7{left:487.913333pt;}
.x8{left:494.013333pt;}
.x39{left:495.946667pt;}
.x2a{left:498.266667pt;}
.x51{left:505.706667pt;}
.x2b{left:516.573333pt;}
.x61{left:546.346667pt;}
.x59{left:550.506667pt;}
.x49{left:567.146667pt;}
.x3a{left:601.706667pt;}
.xf{left:662.853333pt;}
.x62{left:671.813333pt;}
}




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