
    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_18b85d4b5b7fbf4876bb0d01.woff')format("woff");}.ff1{font-family:ff1;line-height:0.961914;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_29f8ac9a99025a34e47b5292.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_38d99f631e9d86c62ce4cc5d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_42d50369578316235bdb7bc9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_c0613a021eac48052a529168.woff')format("woff");}.ff5{font-family:ff5;line-height:0.892578;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_a7b3391d2de6b2df6731f01e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.720703;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_5bf4fa488b8eb197f29e2186.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_0456b501cec8850d0c26a7cb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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:-17.976000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.238080px;}
.ls2{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.305280px;}
.lsd{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.666000px;}
.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;}
}
.ws3{word-spacing:-27.000000px;}
.ws9{word-spacing:-26.602560px;}
.wsc{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.ws8{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.584000px;}
.ws6{word-spacing:-18.305520px;}
.wse{word-spacing:-17.225280px;}
.wsb{word-spacing:-16.613280px;}
.wsa{word-spacing:-16.506480px;}
.ws0{word-spacing:-15.228000px;}
.ws1{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.508000px;}
.ws4{word-spacing:-1.601280px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-5.901120px;}
._12{margin-left:-4.752000px;}
._7{margin-left:-3.672000px;}
._6{margin-left:-2.067120px;}
._0{margin-left:-1.010880px;}
._1{width:1.194000px;}
._8{width:2.429040px;}
._f{width:3.456000px;}
._3{width:4.476000px;}
._2{width:5.616000px;}
._b{width:7.515360px;}
._a{width:9.018000px;}
._9{width:10.314000px;}
._18{width:11.453760px;}
._e{width:12.483120px;}
._d{width:13.770000px;}
._16{width:15.006240px;}
._c{width:16.848000px;}
._17{width:18.576000px;}
._10{width:19.656000px;}
._21{width:21.645360px;}
._19{width:22.872000px;}
._1c{width:23.910000px;}
._5{width:25.056000px;}
._11{width:26.145120px;}
._15{width:28.140240px;}
._14{width:29.232000px;}
._1d{width:30.314880px;}
._1a{width:31.464000px;}
._1b{width:32.739120px;}
._1f{width:34.182720px;}
._33{width:35.280000px;}
._20{width:37.230480px;}
._28{width:38.394000px;}
._3a{width:41.094000px;}
._42{width:44.388000px;}
._4{width:46.614000px;}
._1e{width:47.687280px;}
._2b{width:51.732000px;}
._39{width:53.316000px;}
._48{width:54.900000px;}
._36{width:57.672000px;}
._32{width:61.992000px;}
._3c{width:63.288000px;}
._3e{width:64.476000px;}
._2d{width:66.528000px;}
._27{width:72.522000px;}
._3f{width:74.034000px;}
._26{width:76.572000px;}
._30{width:91.794000px;}
._2e{width:93.420000px;}
._3b{width:95.328000px;}
._4e{width:99.978480px;}
._4f{width:101.168640px;}
._4a{width:106.910640px;}
._4b{width:108.408240px;}
._43{width:112.050000px;}
._31{width:123.390000px;}
._4c{width:125.496000px;}
._51{width:136.372320px;}
._2f{width:142.824000px;}
._40{width:157.032000px;}
._2c{width:159.678000px;}
._34{width:160.812000px;}
._38{width:166.104000px;}
._44{width:169.452000px;}
._47{width:171.126000px;}
._46{width:174.474000px;}
._35{width:175.878000px;}
._29{width:193.914000px;}
._2a{width:197.226000px;}
._37{width:202.122000px;}
._24{width:211.734000px;}
._3d{width:222.264000px;}
._4d{width:224.578080px;}
._41{width:249.858000px;}
._25{width:262.062000px;}
._45{width:297.810000px;}
._50{width:322.454880px;}
._23{width:328.032000px;}
._22{width:843.318000px;}
._49{width:2040.028320px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:5.760000px;}
.fs7{font-size:36.000000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:2.880000px;}
.y90{bottom:3.240000px;}
.y9b{bottom:3.270000px;}
.ye0{bottom:3.960000px;}
.y14{bottom:5.580000px;}
.y8c{bottom:6.120000px;}
.y96{bottom:7.200000px;}
.yee{bottom:10.620000px;}
.ye6{bottom:18.360000px;}
.yf0{bottom:18.540000px;}
.y9a{bottom:20.370000px;}
.y8f{bottom:20.520000px;}
.yf6{bottom:26.100000px;}
.yed{bottom:26.280000px;}
.yfc{bottom:33.840000px;}
.ye5{bottom:34.020000px;}
.y99{bottom:37.650000px;}
.y8e{bottom:37.800000px;}
.yec{bottom:41.760000px;}
.ye2{bottom:49.500000px;}
.y11{bottom:51.840000px;}
.y9{bottom:54.396000px;}
.y98{bottom:54.930000px;}
.y94{bottom:55.080000px;}
.yeb{bottom:57.240000px;}
.ye4{bottom:64.980000px;}
.y12{bottom:72.180000px;}
.yea{bottom:72.720000px;}
.y10{bottom:78.300000px;}
.ye3{bottom:80.460000px;}
.yef{bottom:80.640000px;}
.yf5{bottom:88.200000px;}
.ye9{bottom:88.380000px;}
.yf1{bottom:88.425000px;}
.yfa{bottom:95.940000px;}
.yfe{bottom:95.970000px;}
.ye7{bottom:96.120000px;}
.yf2{bottom:96.165000px;}
.yfd{bottom:103.710000px;}
.yf4{bottom:103.860000px;}
.yf9{bottom:111.600000px;}
.yff{bottom:111.630000px;}
.yf7{bottom:119.340000px;}
.yf8{bottom:127.080000px;}
.y33{bottom:130.356000px;}
.y138{bottom:132.156000px;}
.y12d{bottom:133.236000px;}
.y11c{bottom:137.736000px;}
.y88{bottom:140.796000px;}
.y10c{bottom:144.036000px;}
.y78{bottom:146.736000px;}
.y56{bottom:147.456000px;}
.y32{bottom:150.330000px;}
.yde{bottom:152.130000px;}
.y137{bottom:152.850000px;}
.y12c{bottom:153.930000px;}
.y14d{bottom:157.170000px;}
.y11b{bottom:158.430000px;}
.y31{bottom:161.310000px;}
.y87{bottom:161.490000px;}
.y10b{bottom:164.730000px;}
.yb2{bottom:165.450000px;}
.y77{bottom:167.430000px;}
.y55{bottom:168.150000px;}
.y113{bottom:169.050000px;}
.y14c{bottom:174.450000px;}
.y12b{bottom:174.630000px;}
.y30{bottom:176.970000px;}
.y2f{bottom:181.470000px;}
.y86{bottom:182.190000px;}
.y10a{bottom:185.430000px;}
.yb1{bottom:186.150000px;}
.y16f{bottom:187.230000px;}
.y112{bottom:187.410000px;}
.yd0{bottom:187.590000px;}
.y76{bottom:188.130000px;}
.y54{bottom:188.850000px;}
.ydd{bottom:190.830000px;}
.y136{bottom:191.550000px;}
.y11a{bottom:192.090000px;}
.y12a{bottom:195.330000px;}
.y85{bottom:202.890000px;}
.y2e{bottom:206.850000px;}
.ycf{bottom:208.290000px;}
.y75{bottom:208.830000px;}
.y53{bottom:209.550000px;}
.ydc{bottom:211.530000px;}
.y119{bottom:211.890000px;}
.y135{bottom:212.250000px;}
.ya9{bottom:216.570000px;}
.y16e{bottom:222.330000px;}
.y84{bottom:223.590000px;}
.y109{bottom:224.130000px;}
.y14b{bottom:226.830000px;}
.yb0{bottom:227.550000px;}
.yce{bottom:228.990000px;}
.y74{bottom:229.530000px;}
.ydb{bottom:232.230000px;}
.y134{bottom:232.950000px;}
.y129{bottom:235.290000px;}
.ya8{bottom:237.270000px;}
.y16d{bottom:239.610000px;}
.y14a{bottom:244.110000px;}
.y108{bottom:244.830000px;}
.y52{bottom:248.250000px;}
.ycd{bottom:249.690000px;}
.yda{bottom:252.930000px;}
.y133{bottom:253.650000px;}
.y16c{bottom:256.890000px;}
.ya7{bottom:257.970000px;}
.y149{bottom:261.390000px;}
.y83{bottom:262.290000px;}
.y2d{bottom:264.630000px;}
.y107{bottom:265.530000px;}
.y51{bottom:268.950000px;}
.ycc{bottom:270.390000px;}
.yd9{bottom:273.630000px;}
.ya6{bottom:278.670000px;}
.y128{bottom:279.570000px;}
.y2c{bottom:284.970000px;}
.y82{bottom:286.050000px;}
.y106{bottom:286.230000px;}
.y50{bottom:289.650000px;}
.y16b{bottom:292.215000px;}
.y132{bottom:292.395000px;}
.yd8{bottom:294.375000px;}
.y148{bottom:296.715000px;}
.ya5{bottom:299.415000px;}
.y127{bottom:300.315000px;}
.y2b{bottom:303.915000px;}
.y105{bottom:306.975000px;}
.ycb{bottom:309.135000px;}
.y16a{bottom:309.495000px;}
.y4f{bottom:310.395000px;}
.y73{bottom:311.655000px;}
.y131{bottom:313.095000px;}
.y147{bottom:313.995000px;}
.ya4{bottom:320.115000px;}
.y126{bottom:321.015000px;}
.y2a{bottom:322.995000px;}
.y169{bottom:326.775000px;}
.y104{bottom:327.675000px;}
.yca{bottom:329.835000px;}
.y4e{bottom:331.095000px;}
.yd7{bottom:333.075000px;}
.y130{bottom:333.795000px;}
.ya3{bottom:340.815000px;}
.y29{bottom:341.355000px;}
.y125{bottom:341.715000px;}
.y103{bottom:348.375000px;}
.y146{bottom:349.095000px;}
.yc9{bottom:350.535000px;}
.y4d{bottom:351.795000px;}
.yd6{bottom:353.775000px;}
.y72{bottom:355.935000px;}
.y28{bottom:356.835000px;}
.ya2{bottom:361.515000px;}
.y168{bottom:361.875000px;}
.y124{bottom:362.415000px;}
.y145{bottom:366.375000px;}
.y102{bottom:369.075000px;}
.yc8{bottom:371.235000px;}
.y27{bottom:372.495000px;}
.y12f{bottom:373.755000px;}
.yd5{bottom:374.475000px;}
.y71{bottom:376.635000px;}
.y167{bottom:379.155000px;}
.ya1{bottom:382.215000px;}
.y123{bottom:383.115000px;}
.y144{bottom:383.655000px;}
.y26{bottom:387.975000px;}
.yc7{bottom:391.935000px;}
.y4c{bottom:393.195000px;}
.yd4{bottom:395.175000px;}
.y70{bottom:397.335000px;}
.y101{bottom:402.555000px;}
.ya0{bottom:402.915000px;}
.y25{bottom:403.455000px;}
.y122{bottom:403.815000px;}
.yaf{bottom:411.195000px;}
.yc6{bottom:412.635000px;}
.y166{bottom:414.435000px;}
.y6f{bottom:418.035000px;}
.y24{bottom:418.935000px;}
.y100{bottom:423.435000px;}
.y9f{bottom:423.615000px;}
.y121{bottom:424.515000px;}
.y165{bottom:431.715000px;}
.y4b{bottom:431.895000px;}
.y23{bottom:434.415000px;}
.yd3{bottom:435.135000px;}
.y143{bottom:436.215000px;}
.y6e{bottom:438.735000px;}
.y9e{bottom:444.315000px;}
.y120{bottom:446.835000px;}
.y164{bottom:448.995000px;}
.y22{bottom:450.075000px;}
.yc5{bottom:451.335000px;}
.y4a{bottom:452.595000px;}
.y142{bottom:453.315000px;}
.y6d{bottom:459.435000px;}
.yfb{bottom:460.515000px;}
.y21{bottom:465.555000px;}
.y11f{bottom:469.155000px;}
.yc4{bottom:472.035000px;}
.y49{bottom:473.295000px;}
.y9d{bottom:477.975000px;}
.yd2{bottom:479.775000px;}
.y6c{bottom:480.135000px;}
.y20{bottom:481.035000px;}
.y163{bottom:484.275000px;}
.y11e{bottom:487.695000px;}
.y141{bottom:488.595000px;}
.yc3{bottom:492.735000px;}
.y48{bottom:493.995000px;}
.y9c{bottom:494.355000px;}
.y118{bottom:500.835000px;}
.y162{bottom:501.555000px;}
.y140{bottom:505.875000px;}
.y111{bottom:508.575000px;}
.y1f{bottom:509.655000px;}
.yd1{bottom:510.195000px;}
.yc2{bottom:513.435000px;}
.y47{bottom:514.695000px;}
.y161{bottom:518.655000px;}
.y6b{bottom:518.835000px;}
.y12e{bottom:521.535000px;}
.y13f{bottom:523.155000px;}
.y1e{bottom:526.395000px;}
.yc1{bottom:534.135000px;}
.y46{bottom:535.395000px;}
.y160{bottom:535.935000px;}
.y6a{bottom:539.535000px;}
.y13e{bottom:540.435000px;}
.y1d{bottom:541.875000px;}
.y110{bottom:542.235000px;}
.y97{bottom:546.915000px;}
.yc0{bottom:554.865000px;}
.y45{bottom:556.125000px;}
.y1c{bottom:557.385000px;}
.y13d{bottom:557.745000px;}
.y69{bottom:560.265000px;}
.y81{bottom:562.965000px;}
.y10f{bottom:564.405000px;}
.y15f{bottom:571.245000px;}
.y1b{bottom:572.865000px;}
.yae{bottom:574.125000px;}
.ybf{bottom:575.565000px;}
.y68{bottom:580.965000px;}
.yf3{bottom:585.465000px;}
.y1a{bottom:588.525000px;}
.y44{bottom:594.825000px;}
.ybe{bottom:596.265000px;}
.y10e{bottom:598.245000px;}
.y117{bottom:598.965000px;}
.y67{bottom:601.665000px;}
.y19{bottom:604.005000px;}
.y15e{bottom:605.805000px;}
.y43{bottom:615.525000px;}
.y95{bottom:616.605000px;}
.ybd{bottom:616.965000px;}
.y18{bottom:619.485000px;}
.y116{bottom:619.665000px;}
.y66{bottom:622.365000px;}
.y10d{bottom:627.945000px;}
.y17{bottom:634.965000px;}
.y42{bottom:636.225000px;}
.ybc{bottom:637.665000px;}
.y93{bottom:638.565000px;}
.y13c{bottom:639.105000px;}
.y115{bottom:640.365000px;}
.y15d{bottom:640.905000px;}
.y65{bottom:643.065000px;}
.y16{bottom:650.625000px;}
.y41{bottom:656.925000px;}
.y15c{bottom:658.185000px;}
.ybb{bottom:658.365000px;}
.y13b{bottom:659.805000px;}
.y114{bottom:661.065000px;}
.y80{bottom:663.765000px;}
.y15{bottom:667.005000px;}
.y15b{bottom:675.465000px;}
.y40{bottom:677.625000px;}
.yba{bottom:679.065000px;}
.y64{bottom:681.765000px;}
.y13{bottom:683.925000px;}
.y7f{bottom:684.465000px;}
.y3f{bottom:698.145000px;}
.yb9{bottom:699.765000px;}
.y63{bottom:702.465000px;}
.y7e{bottom:705.165000px;}
.yf{bottom:706.425000px;}
.y15a{bottom:710.745000px;}
.yad{bottom:716.145000px;}
.y3e{bottom:718.845000px;}
.yb8{bottom:720.465000px;}
.y62{bottom:723.165000px;}
.y92{bottom:725.505000px;}
.y7d{bottom:725.865000px;}
.y159{bottom:728.025000px;}
.yac{bottom:736.845000px;}
.y3d{bottom:739.545000px;}
.yb7{bottom:741.165000px;}
.y13a{bottom:743.685000px;}
.y61{bottom:743.865000px;}
.y158{bottom:745.305000px;}
.yab{bottom:757.545000px;}
.y3c{bottom:760.245000px;}
.y91{bottom:760.785000px;}
.yb6{bottom:761.865000px;}
.y60{bottom:764.565000px;}
.yaa{bottom:778.245000px;}
.y157{bottom:780.405000px;}
.y139{bottom:782.385000px;}
.yb5{bottom:782.565000px;}
.y5f{bottom:785.265000px;}
.y11d{bottom:787.965000px;}
.y156{bottom:797.685000px;}
.y3b{bottom:798.945000px;}
.yb4{bottom:803.265000px;}
.y5e{bottom:805.965000px;}
.y8d{bottom:813.390000px;}
.y3a{bottom:819.690000px;}
.yb3{bottom:824.010000px;}
.ye{bottom:824.550000px;}
.y7c{bottom:826.710000px;}
.y155{bottom:833.010000px;}
.ye1{bottom:835.350000px;}
.y39{bottom:840.390000px;}
.y5d{bottom:844.710000px;}
.y7b{bottom:847.410000px;}
.y154{bottom:850.290000px;}
.yd{bottom:852.090000px;}
.y38{bottom:861.090000px;}
.y5c{bottom:865.410000px;}
.y8b{bottom:865.770000px;}
.y153{bottom:867.570000px;}
.y7a{bottom:868.110000px;}
.y37{bottom:881.790000px;}
.y152{bottom:884.850000px;}
.y5b{bottom:886.110000px;}
.y79{bottom:888.810000px;}
.y8a{bottom:890.250000px;}
.yc{bottom:898.530000px;}
.y36{bottom:902.490000px;}
.y5a{bottom:906.810000px;}
.y89{bottom:909.510000px;}
.y151{bottom:919.950000px;}
.y35{bottom:923.190000px;}
.y59{bottom:927.510000px;}
.yb{bottom:929.490000px;}
.y150{bottom:937.230000px;}
.ydf{bottom:944.790000px;}
.y58{bottom:948.210000px;}
.y14f{bottom:954.510000px;}
.ya{bottom:960.630000px;}
.y34{bottom:963.330000px;}
.y57{bottom:968.910000px;}
.y14e{bottom:971.790000px;}
.y8{bottom:1004.010000px;}
.y7{bottom:1019.670000px;}
.y6{bottom:1035.150000px;}
.y5{bottom:1050.630000px;}
.y4{bottom:1066.110000px;}
.y3{bottom:1081.800000px;}
.y2{bottom:1097.280000px;}
.y1{bottom:1114.380000px;}
.h19{height:17.820000px;}
.h10{height:20.160000px;}
.h17{height:21.240000px;}
.ha{height:22.500000px;}
.he{height:32.273438px;}
.h15{height:34.560000px;}
.h20{height:44.907539px;}
.h3{height:48.410156px;}
.h2{height:48.858398px;}
.h8{height:49.992188px;}
.h12{height:51.660000px;}
.h14{height:51.876000px;}
.h13{height:53.573906px;}
.h11{height:54.069961px;}
.h1f{height:59.221406px;}
.hc{height:59.383125px;}
.h1e{height:59.932969px;}
.h1{height:63.303398px;}
.hb{height:64.546875px;}
.hd{height:65.144531px;}
.h18{height:68.976000px;}
.h5{height:74.408203px;}
.h4{height:74.988281px;}
.hf{height:76.219102px;}
.h9{height:85.847344px;}
.h16{height:86.220000px;}
.h6{height:86.642227px;}
.h7{height:95.040000px;}
.h1a{height:108.720000px;}
.h1b{height:108.756000px;}
.h1d{height:124.236000px;}
.h1c{height:139.680000px;}
.h0{height:1188.000000px;}
.w6{width:63.756000px;}
.w5{width:106.380000px;}
.w8{width:118.980000px;}
.we{width:119.880000px;}
.wf{width:135.216000px;}
.wc{width:136.116000px;}
.wd{width:138.276000px;}
.wb{width:143.496000px;}
.wa{width:148.896000px;}
.w3{width:226.290000px;}
.w2{width:226.515000px;}
.w9{width:274.395000px;}
.w7{width:489.165000px;}
.w4{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x24{left:10.440000px;}
.x19{left:14.040000px;}
.x14{left:15.120000px;}
.x11{left:17.280000px;}
.x1a{left:18.900000px;}
.x18{left:21.060000px;}
.x16{left:23.214000px;}
.x1e{left:27.174000px;}
.x7{left:28.845000px;}
.x20{left:31.005000px;}
.xf{left:33.114000px;}
.x17{left:34.734000px;}
.x1b{left:39.414000px;}
.xa{left:41.400000px;}
.x22{left:43.560000px;}
.x9{left:57.285000px;}
.x1{left:127.655986px;}
.xd{left:132.695986px;}
.x1c{left:162.029986px;}
.x3{left:164.189986px;}
.x29{left:170.129986px;}
.x5{left:189.569986px;}
.x2{left:196.769986px;}
.x13{left:208.290000px;}
.x6{left:232.590000px;}
.x10{left:234.030000px;}
.x1f{left:246.630000px;}
.x12{left:297.795000px;}
.xc{left:343.694986px;}
.x4{left:382.574986px;}
.xb{left:403.274986px;}
.x8{left:459.105000px;}
.x21{left:521.025000px;}
.xe{left:615.749986px;}
.x25{left:659.309986px;}
.x23{left:669.930000px;}
.x27{left:686.309986px;}
.x1d{left:690.809986px;}
.x28{left:694.589986px;}
.x26{left:711.509986px;}
@media print{
.v1{vertical-align:-15.978667pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.211627pt;}
.ls2{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.271360pt;}
.lsd{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.592000pt;}
.ws3{word-spacing:-24.000000pt;}
.ws9{word-spacing:-23.646720pt;}
.wsc{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.408000pt;}
.ws6{word-spacing:-16.271573pt;}
.wse{word-spacing:-15.311360pt;}
.wsb{word-spacing:-14.767360pt;}
.wsa{word-spacing:-14.672427pt;}
.ws0{word-spacing:-13.536000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.896000pt;}
.ws4{word-spacing:-1.423360pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-5.245440pt;}
._12{margin-left:-4.224000pt;}
._7{margin-left:-3.264000pt;}
._6{margin-left:-1.837440pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.061333pt;}
._8{width:2.159147pt;}
._f{width:3.072000pt;}
._3{width:3.978667pt;}
._2{width:4.992000pt;}
._b{width:6.680320pt;}
._a{width:8.016000pt;}
._9{width:9.168000pt;}
._18{width:10.181120pt;}
._e{width:11.096107pt;}
._d{width:12.240000pt;}
._16{width:13.338880pt;}
._c{width:14.976000pt;}
._17{width:16.512000pt;}
._10{width:17.472000pt;}
._21{width:19.240320pt;}
._19{width:20.330667pt;}
._1c{width:21.253333pt;}
._5{width:22.272000pt;}
._11{width:23.240107pt;}
._15{width:25.013547pt;}
._14{width:25.984000pt;}
._1d{width:26.946560pt;}
._1a{width:27.968000pt;}
._1b{width:29.101440pt;}
._1f{width:30.384640pt;}
._33{width:31.360000pt;}
._20{width:33.093760pt;}
._28{width:34.128000pt;}
._3a{width:36.528000pt;}
._42{width:39.456000pt;}
._4{width:41.434667pt;}
._1e{width:42.388693pt;}
._2b{width:45.984000pt;}
._39{width:47.392000pt;}
._48{width:48.800000pt;}
._36{width:51.264000pt;}
._32{width:55.104000pt;}
._3c{width:56.256000pt;}
._3e{width:57.312000pt;}
._2d{width:59.136000pt;}
._27{width:64.464000pt;}
._3f{width:65.808000pt;}
._26{width:68.064000pt;}
._30{width:81.594667pt;}
._2e{width:83.040000pt;}
._3b{width:84.736000pt;}
._4e{width:88.869760pt;}
._4f{width:89.927680pt;}
._4a{width:95.031680pt;}
._4b{width:96.362880pt;}
._43{width:99.600000pt;}
._31{width:109.680000pt;}
._4c{width:111.552000pt;}
._51{width:121.219840pt;}
._2f{width:126.954667pt;}
._40{width:139.584000pt;}
._2c{width:141.936000pt;}
._34{width:142.944000pt;}
._38{width:147.648000pt;}
._44{width:150.624000pt;}
._47{width:152.112000pt;}
._46{width:155.088000pt;}
._35{width:156.336000pt;}
._29{width:172.368000pt;}
._2a{width:175.312000pt;}
._37{width:179.664000pt;}
._24{width:188.208000pt;}
._3d{width:197.568000pt;}
._4d{width:199.624960pt;}
._41{width:222.096000pt;}
._25{width:232.944000pt;}
._45{width:264.720000pt;}
._50{width:286.626560pt;}
._23{width:291.584000pt;}
._22{width:749.616000pt;}
._49{width:1813.358507pt;}
.fs5{font-size:5.120000pt;}
.fs7{font-size:32.000000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:2.560000pt;}
.y90{bottom:2.880000pt;}
.y9b{bottom:2.906667pt;}
.ye0{bottom:3.520000pt;}
.y14{bottom:4.960000pt;}
.y8c{bottom:5.440000pt;}
.y96{bottom:6.400000pt;}
.yee{bottom:9.440000pt;}
.ye6{bottom:16.320000pt;}
.yf0{bottom:16.480000pt;}
.y9a{bottom:18.106667pt;}
.y8f{bottom:18.240000pt;}
.yf6{bottom:23.200000pt;}
.yed{bottom:23.360000pt;}
.yfc{bottom:30.080000pt;}
.ye5{bottom:30.240000pt;}
.y99{bottom:33.466667pt;}
.y8e{bottom:33.600000pt;}
.yec{bottom:37.120000pt;}
.ye2{bottom:44.000000pt;}
.y11{bottom:46.080000pt;}
.y9{bottom:48.352000pt;}
.y98{bottom:48.826667pt;}
.y94{bottom:48.960000pt;}
.yeb{bottom:50.880000pt;}
.ye4{bottom:57.760000pt;}
.y12{bottom:64.160000pt;}
.yea{bottom:64.640000pt;}
.y10{bottom:69.600000pt;}
.ye3{bottom:71.520000pt;}
.yef{bottom:71.680000pt;}
.yf5{bottom:78.400000pt;}
.ye9{bottom:78.560000pt;}
.yf1{bottom:78.600000pt;}
.yfa{bottom:85.280000pt;}
.yfe{bottom:85.306667pt;}
.ye7{bottom:85.440000pt;}
.yf2{bottom:85.480000pt;}
.yfd{bottom:92.186667pt;}
.yf4{bottom:92.320000pt;}
.yf9{bottom:99.200000pt;}
.yff{bottom:99.226667pt;}
.yf7{bottom:106.080000pt;}
.yf8{bottom:112.960000pt;}
.y33{bottom:115.872000pt;}
.y138{bottom:117.472000pt;}
.y12d{bottom:118.432000pt;}
.y11c{bottom:122.432000pt;}
.y88{bottom:125.152000pt;}
.y10c{bottom:128.032000pt;}
.y78{bottom:130.432000pt;}
.y56{bottom:131.072000pt;}
.y32{bottom:133.626667pt;}
.yde{bottom:135.226667pt;}
.y137{bottom:135.866667pt;}
.y12c{bottom:136.826667pt;}
.y14d{bottom:139.706667pt;}
.y11b{bottom:140.826667pt;}
.y31{bottom:143.386667pt;}
.y87{bottom:143.546667pt;}
.y10b{bottom:146.426667pt;}
.yb2{bottom:147.066667pt;}
.y77{bottom:148.826667pt;}
.y55{bottom:149.466667pt;}
.y113{bottom:150.266667pt;}
.y14c{bottom:155.066667pt;}
.y12b{bottom:155.226667pt;}
.y30{bottom:157.306667pt;}
.y2f{bottom:161.306667pt;}
.y86{bottom:161.946667pt;}
.y10a{bottom:164.826667pt;}
.yb1{bottom:165.466667pt;}
.y16f{bottom:166.426667pt;}
.y112{bottom:166.586667pt;}
.yd0{bottom:166.746667pt;}
.y76{bottom:167.226667pt;}
.y54{bottom:167.866667pt;}
.ydd{bottom:169.626667pt;}
.y136{bottom:170.266667pt;}
.y11a{bottom:170.746667pt;}
.y12a{bottom:173.626667pt;}
.y85{bottom:180.346667pt;}
.y2e{bottom:183.866667pt;}
.ycf{bottom:185.146667pt;}
.y75{bottom:185.626667pt;}
.y53{bottom:186.266667pt;}
.ydc{bottom:188.026667pt;}
.y119{bottom:188.346667pt;}
.y135{bottom:188.666667pt;}
.ya9{bottom:192.506667pt;}
.y16e{bottom:197.626667pt;}
.y84{bottom:198.746667pt;}
.y109{bottom:199.226667pt;}
.y14b{bottom:201.626667pt;}
.yb0{bottom:202.266667pt;}
.yce{bottom:203.546667pt;}
.y74{bottom:204.026667pt;}
.ydb{bottom:206.426667pt;}
.y134{bottom:207.066667pt;}
.y129{bottom:209.146667pt;}
.ya8{bottom:210.906667pt;}
.y16d{bottom:212.986667pt;}
.y14a{bottom:216.986667pt;}
.y108{bottom:217.626667pt;}
.y52{bottom:220.666667pt;}
.ycd{bottom:221.946667pt;}
.yda{bottom:224.826667pt;}
.y133{bottom:225.466667pt;}
.y16c{bottom:228.346667pt;}
.ya7{bottom:229.306667pt;}
.y149{bottom:232.346667pt;}
.y83{bottom:233.146667pt;}
.y2d{bottom:235.226667pt;}
.y107{bottom:236.026667pt;}
.y51{bottom:239.066667pt;}
.ycc{bottom:240.346667pt;}
.yd9{bottom:243.226667pt;}
.ya6{bottom:247.706667pt;}
.y128{bottom:248.506667pt;}
.y2c{bottom:253.306667pt;}
.y82{bottom:254.266667pt;}
.y106{bottom:254.426667pt;}
.y50{bottom:257.466667pt;}
.y16b{bottom:259.746667pt;}
.y132{bottom:259.906667pt;}
.yd8{bottom:261.666667pt;}
.y148{bottom:263.746667pt;}
.ya5{bottom:266.146667pt;}
.y127{bottom:266.946667pt;}
.y2b{bottom:270.146667pt;}
.y105{bottom:272.866667pt;}
.ycb{bottom:274.786667pt;}
.y16a{bottom:275.106667pt;}
.y4f{bottom:275.906667pt;}
.y73{bottom:277.026667pt;}
.y131{bottom:278.306667pt;}
.y147{bottom:279.106667pt;}
.ya4{bottom:284.546667pt;}
.y126{bottom:285.346667pt;}
.y2a{bottom:287.106667pt;}
.y169{bottom:290.466667pt;}
.y104{bottom:291.266667pt;}
.yca{bottom:293.186667pt;}
.y4e{bottom:294.306667pt;}
.yd7{bottom:296.066667pt;}
.y130{bottom:296.706667pt;}
.ya3{bottom:302.946667pt;}
.y29{bottom:303.426667pt;}
.y125{bottom:303.746667pt;}
.y103{bottom:309.666667pt;}
.y146{bottom:310.306667pt;}
.yc9{bottom:311.586667pt;}
.y4d{bottom:312.706667pt;}
.yd6{bottom:314.466667pt;}
.y72{bottom:316.386667pt;}
.y28{bottom:317.186667pt;}
.ya2{bottom:321.346667pt;}
.y168{bottom:321.666667pt;}
.y124{bottom:322.146667pt;}
.y145{bottom:325.666667pt;}
.y102{bottom:328.066667pt;}
.yc8{bottom:329.986667pt;}
.y27{bottom:331.106667pt;}
.y12f{bottom:332.226667pt;}
.yd5{bottom:332.866667pt;}
.y71{bottom:334.786667pt;}
.y167{bottom:337.026667pt;}
.ya1{bottom:339.746667pt;}
.y123{bottom:340.546667pt;}
.y144{bottom:341.026667pt;}
.y26{bottom:344.866667pt;}
.yc7{bottom:348.386667pt;}
.y4c{bottom:349.506667pt;}
.yd4{bottom:351.266667pt;}
.y70{bottom:353.186667pt;}
.y101{bottom:357.826667pt;}
.ya0{bottom:358.146667pt;}
.y25{bottom:358.626667pt;}
.y122{bottom:358.946667pt;}
.yaf{bottom:365.506667pt;}
.yc6{bottom:366.786667pt;}
.y166{bottom:368.386667pt;}
.y6f{bottom:371.586667pt;}
.y24{bottom:372.386667pt;}
.y100{bottom:376.386667pt;}
.y9f{bottom:376.546667pt;}
.y121{bottom:377.346667pt;}
.y165{bottom:383.746667pt;}
.y4b{bottom:383.906667pt;}
.y23{bottom:386.146667pt;}
.yd3{bottom:386.786667pt;}
.y143{bottom:387.746667pt;}
.y6e{bottom:389.986667pt;}
.y9e{bottom:394.946667pt;}
.y120{bottom:397.186667pt;}
.y164{bottom:399.106667pt;}
.y22{bottom:400.066667pt;}
.yc5{bottom:401.186667pt;}
.y4a{bottom:402.306667pt;}
.y142{bottom:402.946667pt;}
.y6d{bottom:408.386667pt;}
.yfb{bottom:409.346667pt;}
.y21{bottom:413.826667pt;}
.y11f{bottom:417.026667pt;}
.yc4{bottom:419.586667pt;}
.y49{bottom:420.706667pt;}
.y9d{bottom:424.866667pt;}
.yd2{bottom:426.466667pt;}
.y6c{bottom:426.786667pt;}
.y20{bottom:427.586667pt;}
.y163{bottom:430.466667pt;}
.y11e{bottom:433.506667pt;}
.y141{bottom:434.306667pt;}
.yc3{bottom:437.986667pt;}
.y48{bottom:439.106667pt;}
.y9c{bottom:439.426667pt;}
.y118{bottom:445.186667pt;}
.y162{bottom:445.826667pt;}
.y140{bottom:449.666667pt;}
.y111{bottom:452.066667pt;}
.y1f{bottom:453.026667pt;}
.yd1{bottom:453.506667pt;}
.yc2{bottom:456.386667pt;}
.y47{bottom:457.506667pt;}
.y161{bottom:461.026667pt;}
.y6b{bottom:461.186667pt;}
.y12e{bottom:463.586667pt;}
.y13f{bottom:465.026667pt;}
.y1e{bottom:467.906667pt;}
.yc1{bottom:474.786667pt;}
.y46{bottom:475.906667pt;}
.y160{bottom:476.386667pt;}
.y6a{bottom:479.586667pt;}
.y13e{bottom:480.386667pt;}
.y1d{bottom:481.666667pt;}
.y110{bottom:481.986667pt;}
.y97{bottom:486.146667pt;}
.yc0{bottom:493.213333pt;}
.y45{bottom:494.333333pt;}
.y1c{bottom:495.453333pt;}
.y13d{bottom:495.773333pt;}
.y69{bottom:498.013333pt;}
.y81{bottom:500.413333pt;}
.y10f{bottom:501.693333pt;}
.y15f{bottom:507.773333pt;}
.y1b{bottom:509.213333pt;}
.yae{bottom:510.333333pt;}
.ybf{bottom:511.613333pt;}
.y68{bottom:516.413333pt;}
.yf3{bottom:520.413333pt;}
.y1a{bottom:523.133333pt;}
.y44{bottom:528.733333pt;}
.ybe{bottom:530.013333pt;}
.y10e{bottom:531.773333pt;}
.y117{bottom:532.413333pt;}
.y67{bottom:534.813333pt;}
.y19{bottom:536.893333pt;}
.y15e{bottom:538.493333pt;}
.y43{bottom:547.133333pt;}
.y95{bottom:548.093333pt;}
.ybd{bottom:548.413333pt;}
.y18{bottom:550.653333pt;}
.y116{bottom:550.813333pt;}
.y66{bottom:553.213333pt;}
.y10d{bottom:558.173333pt;}
.y17{bottom:564.413333pt;}
.y42{bottom:565.533333pt;}
.ybc{bottom:566.813333pt;}
.y93{bottom:567.613333pt;}
.y13c{bottom:568.093333pt;}
.y115{bottom:569.213333pt;}
.y15d{bottom:569.693333pt;}
.y65{bottom:571.613333pt;}
.y16{bottom:578.333333pt;}
.y41{bottom:583.933333pt;}
.y15c{bottom:585.053333pt;}
.ybb{bottom:585.213333pt;}
.y13b{bottom:586.493333pt;}
.y114{bottom:587.613333pt;}
.y80{bottom:590.013333pt;}
.y15{bottom:592.893333pt;}
.y15b{bottom:600.413333pt;}
.y40{bottom:602.333333pt;}
.yba{bottom:603.613333pt;}
.y64{bottom:606.013333pt;}
.y13{bottom:607.933333pt;}
.y7f{bottom:608.413333pt;}
.y3f{bottom:620.573333pt;}
.yb9{bottom:622.013333pt;}
.y63{bottom:624.413333pt;}
.y7e{bottom:626.813333pt;}
.yf{bottom:627.933333pt;}
.y15a{bottom:631.773333pt;}
.yad{bottom:636.573333pt;}
.y3e{bottom:638.973333pt;}
.yb8{bottom:640.413333pt;}
.y62{bottom:642.813333pt;}
.y92{bottom:644.893333pt;}
.y7d{bottom:645.213333pt;}
.y159{bottom:647.133333pt;}
.yac{bottom:654.973333pt;}
.y3d{bottom:657.373333pt;}
.yb7{bottom:658.813333pt;}
.y13a{bottom:661.053333pt;}
.y61{bottom:661.213333pt;}
.y158{bottom:662.493333pt;}
.yab{bottom:673.373333pt;}
.y3c{bottom:675.773333pt;}
.y91{bottom:676.253333pt;}
.yb6{bottom:677.213333pt;}
.y60{bottom:679.613333pt;}
.yaa{bottom:691.773333pt;}
.y157{bottom:693.693333pt;}
.y139{bottom:695.453333pt;}
.yb5{bottom:695.613333pt;}
.y5f{bottom:698.013333pt;}
.y11d{bottom:700.413333pt;}
.y156{bottom:709.053333pt;}
.y3b{bottom:710.173333pt;}
.yb4{bottom:714.013333pt;}
.y5e{bottom:716.413333pt;}
.y8d{bottom:723.013333pt;}
.y3a{bottom:728.613333pt;}
.yb3{bottom:732.453333pt;}
.ye{bottom:732.933333pt;}
.y7c{bottom:734.853333pt;}
.y155{bottom:740.453333pt;}
.ye1{bottom:742.533333pt;}
.y39{bottom:747.013333pt;}
.y5d{bottom:750.853333pt;}
.y7b{bottom:753.253333pt;}
.y154{bottom:755.813333pt;}
.yd{bottom:757.413333pt;}
.y38{bottom:765.413333pt;}
.y5c{bottom:769.253333pt;}
.y8b{bottom:769.573333pt;}
.y153{bottom:771.173333pt;}
.y7a{bottom:771.653333pt;}
.y37{bottom:783.813333pt;}
.y152{bottom:786.533333pt;}
.y5b{bottom:787.653333pt;}
.y79{bottom:790.053333pt;}
.y8a{bottom:791.333333pt;}
.yc{bottom:798.693333pt;}
.y36{bottom:802.213333pt;}
.y5a{bottom:806.053333pt;}
.y89{bottom:808.453333pt;}
.y151{bottom:817.733333pt;}
.y35{bottom:820.613333pt;}
.y59{bottom:824.453333pt;}
.yb{bottom:826.213333pt;}
.y150{bottom:833.093333pt;}
.ydf{bottom:839.813333pt;}
.y58{bottom:842.853333pt;}
.y14f{bottom:848.453333pt;}
.ya{bottom:853.893333pt;}
.y34{bottom:856.293333pt;}
.y57{bottom:861.253333pt;}
.y14e{bottom:863.813333pt;}
.y8{bottom:892.453333pt;}
.y7{bottom:906.373333pt;}
.y6{bottom:920.133333pt;}
.y5{bottom:933.893333pt;}
.y4{bottom:947.653333pt;}
.y3{bottom:961.600000pt;}
.y2{bottom:975.360000pt;}
.y1{bottom:990.560000pt;}
.h19{height:15.840000pt;}
.h10{height:17.920000pt;}
.h17{height:18.880000pt;}
.ha{height:20.000000pt;}
.he{height:28.687500pt;}
.h15{height:30.720000pt;}
.h20{height:39.917813pt;}
.h3{height:43.031250pt;}
.h2{height:43.429688pt;}
.h8{height:44.437500pt;}
.h12{height:45.920000pt;}
.h14{height:46.112000pt;}
.h13{height:47.621250pt;}
.h11{height:48.062188pt;}
.h1f{height:52.641250pt;}
.hc{height:52.785000pt;}
.h1e{height:53.273750pt;}
.h1{height:56.269687pt;}
.hb{height:57.375000pt;}
.hd{height:57.906250pt;}
.h18{height:61.312000pt;}
.h5{height:66.140625pt;}
.h4{height:66.656250pt;}
.hf{height:67.750312pt;}
.h9{height:76.308750pt;}
.h16{height:76.640000pt;}
.h6{height:77.015312pt;}
.h7{height:84.480000pt;}
.h1a{height:96.640000pt;}
.h1b{height:96.672000pt;}
.h1d{height:110.432000pt;}
.h1c{height:124.160000pt;}
.h0{height:1056.000000pt;}
.w6{width:56.672000pt;}
.w5{width:94.560000pt;}
.w8{width:105.760000pt;}
.we{width:106.560000pt;}
.wf{width:120.192000pt;}
.wc{width:120.992000pt;}
.wd{width:122.912000pt;}
.wb{width:127.552000pt;}
.wa{width:132.352000pt;}
.w3{width:201.146667pt;}
.w2{width:201.346667pt;}
.w9{width:243.906667pt;}
.w7{width:434.813333pt;}
.w4{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x24{left:9.280000pt;}
.x19{left:12.480000pt;}
.x14{left:13.440000pt;}
.x11{left:15.360000pt;}
.x1a{left:16.800000pt;}
.x18{left:18.720000pt;}
.x16{left:20.634667pt;}
.x1e{left:24.154667pt;}
.x7{left:25.640000pt;}
.x20{left:27.560000pt;}
.xf{left:29.434667pt;}
.x17{left:30.874667pt;}
.x1b{left:35.034667pt;}
.xa{left:36.800000pt;}
.x22{left:38.720000pt;}
.x9{left:50.920000pt;}
.x1{left:113.471988pt;}
.xd{left:117.951988pt;}
.x1c{left:144.026655pt;}
.x3{left:145.946655pt;}
.x29{left:151.226655pt;}
.x5{left:168.506655pt;}
.x2{left:174.906655pt;}
.x13{left:185.146667pt;}
.x6{left:206.746667pt;}
.x10{left:208.026667pt;}
.x1f{left:219.226667pt;}
.x12{left:264.706667pt;}
.xc{left:305.506655pt;}
.x4{left:340.066655pt;}
.xb{left:358.466655pt;}
.x8{left:408.093333pt;}
.x21{left:463.133333pt;}
.xe{left:547.333321pt;}
.x25{left:586.053321pt;}
.x23{left:595.493333pt;}
.x27{left:610.053321pt;}
.x1d{left:614.053321pt;}
.x28{left:617.413321pt;}
.x26{left:632.453321pt;}
}




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