
    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_05c67351d9d6450f87c06aa6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_0c4008f80c8aca0615dde198.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_924de41c274e8c079ebcc71d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_cb9c0b09574714335134ccc5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717300;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_401dd35f94a5186896fcd10d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_d5f06b8e645307023c804a60.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_daa4b9d452c126b00fd743bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_5f38935bdcb227e9068c11b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_84724cccafa19781fe69f2ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710449;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);}
.v2{vertical-align:-38.880000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:30.240000px;}
.v3{vertical-align:33.120000px;}
.v1{vertical-align:48.240000px;}
.lsa{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.262200px;}
.ls9{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.057600px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.109200px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.513600px;}
.ls16{letter-spacing:0.720000px;}
.lsc{letter-spacing:10.746720px;}
.lsd{letter-spacing:11.466720px;}
.lsb{letter-spacing:13.626720px;}
.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:-36.288000px;}
.ws3{word-spacing:-27.000000px;}
.ws12{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws13{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.280000px;}
.ws11{word-spacing:-16.669200px;}
.wse{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.297800px;}
.wsd{word-spacing:-16.254600px;}
.wsb{word-spacing:-15.453600px;}
.wsa{word-spacing:-14.940000px;}
.ws0{word-spacing:-11.700000px;}
.wsf{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._27{margin-left:-10.800000px;}
._28{margin-left:-4.464000px;}
._1a{margin-left:-2.748480px;}
._0{margin-left:-1.484160px;}
._1{width:1.056960px;}
._a{width:2.270400px;}
._b{width:4.176000px;}
._8{width:5.904000px;}
._9{width:7.128000px;}
._12{width:8.568000px;}
._13{width:9.720000px;}
._c{width:10.944000px;}
._d{width:12.096000px;}
._19{width:13.512000px;}
._1b{width:14.596800px;}
._10{width:15.624000px;}
._11{width:16.971360px;}
._14{width:19.391040px;}
._15{width:21.173760px;}
._16{width:22.392000px;}
._f{width:23.944320px;}
._e{width:25.248000px;}
._1d{width:26.479680px;}
._1e{width:27.648000px;}
._17{width:28.656000px;}
._18{width:29.880000px;}
._1f{width:31.824000px;}
._20{width:32.976000px;}
._23{width:34.200000px;}
._7{width:35.612160px;}
._6{width:37.128000px;}
._1c{width:38.544000px;}
._26{width:40.008000px;}
._2b{width:41.472000px;}
._21{width:42.480000px;}
._22{width:43.560000px;}
._2c{width:45.288000px;}
._29{width:46.800000px;}
._2a{width:47.952000px;}
._2{width:86.552640px;}
._25{width:149.702400px;}
._24{width:194.376000px;}
._4{width:196.860000px;}
._3{width:198.180000px;}
._5{width:1909.356000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:3.960000px;}
.yb7{bottom:4.140000px;}
.yd4{bottom:7.560000px;}
.yda{bottom:8.820000px;}
.yd0{bottom:9.000000px;}
.yba{bottom:22.860000px;}
.yb6{bottom:23.040000px;}
.yd2{bottom:23.400000px;}
.yce{bottom:24.510000px;}
.y2c{bottom:29.160000px;}
.ycc{bottom:31.500000px;}
.y2b{bottom:48.240000px;}
.y3{bottom:56.880000px;}
.y9e{bottom:110.016000px;}
.y29{bottom:111.816000px;}
.yff{bottom:116.136000px;}
.y15b{bottom:116.316000px;}
.ya7{bottom:116.856000px;}
.y55{bottom:117.216000px;}
.yb3{bottom:125.316000px;}
.y9d{bottom:127.296000px;}
.ya6{bottom:128.016000px;}
.y8c{bottom:131.436000px;}
.y28{bottom:131.796000px;}
.ye4{bottom:134.136000px;}
.y9c{bottom:144.396000px;}
.ye3{bottom:145.296000px;}
.y54{bottom:146.376000px;}
.yfe{bottom:147.276000px;}
.y27{bottom:148.896000px;}
.y140{bottom:151.230000px;}
.yb2{bottom:156.270000px;}
.y116{bottom:157.530000px;}
.y9b{bottom:161.670000px;}
.y13f{bottom:162.390000px;}
.y8b{bottom:162.570000px;}
.y26{bottom:166.170000px;}
.y53{bottom:167.430000px;}
.y12d{bottom:167.970000px;}
.y158{bottom:168.510000px;}
.ya5{bottom:177.510000px;}
.yfd{bottom:178.230000px;}
.y9a{bottom:178.950000px;}
.y25{bottom:183.450000px;}
.yaa{bottom:185.790000px;}
.ye2{bottom:186.150000px;}
.yb1{bottom:187.410000px;}
.y52{bottom:188.130000px;}
.y115{bottom:188.670000px;}
.y8a{bottom:193.530000px;}
.y99{bottom:196.230000px;}
.y12c{bottom:198.930000px;}
.y24{bottom:200.730000px;}
.ya3{bottom:208.650000px;}
.y51{bottom:208.830000px;}
.yfc{bottom:209.190000px;}
.y13e{bottom:209.370000px;}
.y98{bottom:213.510000px;}
.y23{bottom:218.010000px;}
.yb0{bottom:218.370000px;}
.y114{bottom:219.630000px;}
.y157{bottom:220.350000px;}
.ye1{bottom:221.070000px;}
.y89{bottom:224.670000px;}
.y50{bottom:229.530000px;}
.y12b{bottom:230.070000px;}
.y97{bottom:230.790000px;}
.y156{bottom:231.510000px;}
.y22{bottom:235.290000px;}
.ya2{bottom:239.610000px;}
.yfb{bottom:240.330000px;}
.y96{bottom:247.890000px;}
.yaf{bottom:249.510000px;}
.y4f{bottom:250.230000px;}
.y113{bottom:250.590000px;}
.ye0{bottom:251.490000px;}
.y21{bottom:252.390000px;}
.y88{bottom:255.630000px;}
.ydf{bottom:259.050000px;}
.y12a{bottom:261.030000px;}
.y13d{bottom:261.210000px;}
.y20{bottom:269.670000px;}
.ya1{bottom:270.750000px;}
.y4e{bottom:270.930000px;}
.yfa{bottom:271.290000px;}
.y95{bottom:272.010000px;}
.yae{bottom:280.470000px;}
.y112{bottom:281.730000px;}
.y13c{bottom:281.910000px;}
.yde{bottom:282.270000px;}
.ya9{bottom:282.450000px;}
.y94{bottom:283.170000px;}
.y87{bottom:286.770000px;}
.y1f{bottom:286.950000px;}
.y4d{bottom:291.630000px;}
.y129{bottom:291.990000px;}
.ya0{bottom:301.710000px;}
.yf9{bottom:302.250000px;}
.y15a{bottom:302.430000px;}
.y13b{bottom:302.610000px;}
.y1e{bottom:304.230000px;}
.ydd{bottom:305.670000px;}
.ya8{bottom:306.570000px;}
.yad{bottom:311.610000px;}
.y4c{bottom:312.330000px;}
.y111{bottom:312.690000px;}
.y86{bottom:317.730000px;}
.y1d{bottom:321.510000px;}
.y128{bottom:323.130000px;}
.y13a{bottom:323.310000px;}
.ydc{bottom:328.890000px;}
.ya4{bottom:332.490000px;}
.y9f{bottom:332.850000px;}
.y4b{bottom:333.030000px;}
.yf8{bottom:333.390000px;}
.y147{bottom:333.570000px;}
.y1c{bottom:338.790000px;}
.yac{bottom:340.230000px;}
.y110{bottom:343.650000px;}
.y139{bottom:343.830000px;}
.y85{bottom:348.915000px;}
.ydb{bottom:352.155000px;}
.y4a{bottom:353.775000px;}
.y127{bottom:354.135000px;}
.y146{bottom:354.315000px;}
.y1b{bottom:355.935000px;}
.y93{bottom:363.855000px;}
.yf7{bottom:364.395000px;}
.y138{bottom:364.575000px;}
.yab{bottom:368.175000px;}
.y1a{bottom:373.215000px;}
.y49{bottom:374.475000px;}
.y10f{bottom:374.835000px;}
.y145{bottom:375.015000px;}
.yd9{bottom:376.815000px;}
.y84{bottom:379.875000px;}
.y126{bottom:385.095000px;}
.y137{bottom:385.275000px;}
.y19{bottom:390.495000px;}
.y92{bottom:394.995000px;}
.y48{bottom:395.175000px;}
.yf6{bottom:395.355000px;}
.y159{bottom:395.535000px;}
.y144{bottom:395.715000px;}
.yd8{bottom:401.295000px;}
.y10e{bottom:405.795000px;}
.y136{bottom:405.975000px;}
.y18{bottom:407.775000px;}
.y83{bottom:411.015000px;}
.y47{bottom:415.875000px;}
.y125{bottom:416.235000px;}
.y143{bottom:416.415000px;}
.yd7{bottom:424.515000px;}
.y17{bottom:425.055000px;}
.y91{bottom:425.955000px;}
.yf5{bottom:426.495000px;}
.y135{bottom:426.675000px;}
.y46{bottom:436.395000px;}
.y10d{bottom:436.935000px;}
.y142{bottom:437.115000px;}
.y6b{bottom:441.255000px;}
.y82{bottom:441.975000px;}
.y16{bottom:444.495000px;}
.y124{bottom:447.195000px;}
.yd6{bottom:449.175000px;}
.y90{bottom:456.915000px;}
.y45{bottom:457.095000px;}
.yf4{bottom:457.455000px;}
.y141{bottom:457.635000px;}
.y10c{bottom:467.895000px;}
.yd5{bottom:472.395000px;}
.y6a{bottom:472.575000px;}
.y81{bottom:473.115000px;}
.y15{bottom:473.295000px;}
.y123{bottom:478.155000px;}
.y44{bottom:488.055000px;}
.yf3{bottom:488.595000px;}
.y14{bottom:491.295000px;}
.yd3{bottom:497.055000px;}
.y10b{bottom:498.855000px;}
.y69{bottom:503.175000px;}
.y80{bottom:504.075000px;}
.y13{bottom:507.495000px;}
.y122{bottom:509.295000px;}
.y43{bottom:518.655000px;}
.y8f{bottom:519.015000px;}
.yf2{bottom:519.555000px;}
.y10a{bottom:519.735000px;}
.yd1{bottom:520.275000px;}
.y155{bottom:529.995000px;}
.y68{bottom:534.675000px;}
.y7f{bottom:535.215000px;}
.y121{bottom:540.255000px;}
.y109{bottom:540.435000px;}
.y12{bottom:544.935000px;}
.y42{bottom:550.155000px;}
.yf1{bottom:550.515000px;}
.ycf{bottom:559.335000px;}
.y154{bottom:560.955000px;}
.y108{bottom:561.135000px;}
.y67{bottom:565.635000px;}
.y7e{bottom:566.175000px;}
.y120{bottom:571.215000px;}
.y11{bottom:578.775000px;}
.y41{bottom:581.115000px;}
.yf0{bottom:581.655000px;}
.y107{bottom:581.835000px;}
.ycd{bottom:583.995000px;}
.y153{bottom:591.915000px;}
.y10{bottom:593.175000px;}
.y66{bottom:596.775000px;}
.y7d{bottom:597.315000px;}
.y11f{bottom:602.355000px;}
.y106{bottom:602.535000px;}
.y40{bottom:612.285000px;}
.yef{bottom:612.645000px;}
.y152{bottom:623.085000px;}
.y105{bottom:623.265000px;}
.ycb{bottom:624.165000px;}
.yf{bottom:627.045000px;}
.y65{bottom:627.765000px;}
.y7c{bottom:628.305000px;}
.y11e{bottom:633.345000px;}
.ye{bottom:636.585000px;}
.y3f{bottom:643.245000px;}
.yee{bottom:643.605000px;}
.y134{bottom:643.785000px;}
.y104{bottom:643.965000px;}
.y151{bottom:654.045000px;}
.y64{bottom:658.905000px;}
.y7b{bottom:659.445000px;}
.yd{bottom:663.765000px;}
.y11d{bottom:664.305000px;}
.y3e{bottom:674.385000px;}
.yed{bottom:674.745000px;}
.y150{bottom:685.005000px;}
.y63{bottom:689.865000px;}
.yca{bottom:690.045000px;}
.y7a{bottom:690.405000px;}
.yc{bottom:694.725000px;}
.y11c{bottom:695.445000px;}
.y3d{bottom:705.345000px;}
.yec{bottom:705.705000px;}
.y14f{bottom:716.145000px;}
.y11b{bottom:716.325000px;}
.y62{bottom:721.005000px;}
.y79{bottom:721.545000px;}
.yb{bottom:723.525000px;}
.yc9{bottom:724.605000px;}
.y3c{bottom:736.485000px;}
.yeb{bottom:736.665000px;}
.y103{bottom:736.845000px;}
.y11a{bottom:737.025000px;}
.yc8{bottom:744.765000px;}
.ya{bottom:745.125000px;}
.y14e{bottom:747.105000px;}
.y61{bottom:751.965000px;}
.y78{bottom:752.505000px;}
.y119{bottom:757.725000px;}
.yc7{bottom:762.045000px;}
.y3b{bottom:767.445000px;}
.yea{bottom:767.805000px;}
.y9{bottom:770.685000px;}
.yc6{bottom:776.265000px;}
.y14d{bottom:778.065000px;}
.y118{bottom:778.245000px;}
.y60{bottom:783.105000px;}
.y77{bottom:783.465000px;}
.yc5{bottom:795.885000px;}
.y3a{bottom:798.585000px;}
.ye9{bottom:798.765000px;}
.y117{bottom:798.945000px;}
.y14c{bottom:809.205000px;}
.y8{bottom:812.085000px;}
.y5f{bottom:814.065000px;}
.y76{bottom:814.605000px;}
.yc4{bottom:815.685000px;}
.y133{bottom:819.645000px;}
.y39{bottom:829.545000px;}
.ye8{bottom:829.725000px;}
.y102{bottom:829.905000px;}
.y14b{bottom:830.085000px;}
.y132{bottom:840.345000px;}
.y162{bottom:841.605000px;}
.y5e{bottom:845.205000px;}
.y75{bottom:845.565000px;}
.y14a{bottom:850.785000px;}
.y7{bottom:853.125000px;}
.yc3{bottom:854.385000px;}
.y38{bottom:860.685000px;}
.ye7{bottom:860.865000px;}
.y131{bottom:861.045000px;}
.y149{bottom:871.350000px;}
.yc2{bottom:874.050000px;}
.y5d{bottom:876.210000px;}
.y74{bottom:876.750000px;}
.y130{bottom:881.790000px;}
.y37{bottom:891.690000px;}
.ye6{bottom:891.870000px;}
.y148{bottom:892.050000px;}
.yc1{bottom:893.850000px;}
.y6{bottom:894.570000px;}
.y12f{bottom:902.490000px;}
.y5c{bottom:907.350000px;}
.y73{bottom:907.710000px;}
.yc0{bottom:913.470000px;}
.y36{bottom:922.830000px;}
.y101{bottom:923.010000px;}
.y12e{bottom:923.190000px;}
.ybf{bottom:933.270000px;}
.y5{bottom:935.970000px;}
.y5b{bottom:938.310000px;}
.y161{bottom:943.890000px;}
.y72{bottom:946.410000px;}
.ybe{bottom:952.890000px;}
.y35{bottom:953.790000px;}
.ye5{bottom:953.970000px;}
.y160{bottom:964.590000px;}
.y5a{bottom:969.270000px;}
.ybd{bottom:972.690000px;}
.y71{bottom:977.370000px;}
.y4{bottom:977.730000px;}
.y34{bottom:984.930000px;}
.y15f{bottom:985.110000px;}
.ybc{bottom:992.310000px;}
.y59{bottom:1000.410000px;}
.y15e{bottom:1005.810000px;}
.y70{bottom:1008.510000px;}
.y2a{bottom:1010.850000px;}
.yb9{bottom:1012.110000px;}
.y33{bottom:1015.890000px;}
.y100{bottom:1016.070000px;}
.y15d{bottom:1026.510000px;}
.y58{bottom:1031.370000px;}
.y6f{bottom:1039.470000px;}
.y32{bottom:1047.030000px;}
.y15c{bottom:1047.210000px;}
.yb8{bottom:1050.630000px;}
.y57{bottom:1062.510000px;}
.y6e{bottom:1070.610000px;}
.y31{bottom:1077.990000px;}
.yb5{bottom:1089.330000px;}
.y56{bottom:1093.110000px;}
.y6d{bottom:1101.570000px;}
.y30{bottom:1108.770000px;}
.y8e{bottom:1109.130000px;}
.y2f{bottom:1131.450000px;}
.y6c{bottom:1139.760000px;}
.y8d{bottom:1140.120000px;}
.yb4{bottom:1141.200000px;}
.y2{bottom:1171.980000px;}
.y2e{bottom:1181.160000px;}
.y1{bottom:1192.680000px;}
.y2d{bottom:1196.640000px;}
.h16{height:18.900000px;}
.h17{height:18.936000px;}
.h18{height:19.080000px;}
.h1e{height:22.500000px;}
.h20{height:22.536000px;}
.h1f{height:23.760000px;}
.h1c{height:23.940000px;}
.h21{height:27.109688px;}
.h11{height:34.855313px;}
.h14{height:37.800000px;}
.h12{height:37.980000px;}
.h1d{height:38.340000px;}
.h1b{height:39.456000px;}
.hb{height:41.493516px;}
.h3{height:43.246406px;}
.h1a{height:46.440000px;}
.h8{height:48.410156px;}
.h22{height:49.992188px;}
.h6{height:50.661190px;}
.hd{height:53.573906px;}
.h19{height:58.833281px;}
.h13{height:59.383125px;}
.hf{height:63.949219px;}
.h2{height:64.546875px;}
.h15{height:67.677187px;}
.h9{height:75.519844px;}
.ha{height:75.991785px;}
.h10{height:76.366406px;}
.hc{height:95.923828px;}
.h7{height:110.205000px;}
.h5{height:127.898438px;}
.h4{height:129.093750px;}
.he{height:132.156000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:32.040000px;}
.w3{width:33.480000px;}
.wa{width:49.320000px;}
.w4{width:52.416000px;}
.w8{width:69.480000px;}
.w6{width:99.216000px;}
.w7{width:101.340000px;}
.w5{width:105.660000px;}
.wc{width:115.020000px;}
.wd{width:188.715000px;}
.wb{width:227.775000px;}
.w2{width:761.040000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x10{left:66.060000px;}
.x17{left:100.296000px;}
.x2{left:110.916000px;}
.x14{left:121.176000px;}
.x1{left:127.656000px;}
.x9{left:136.476000px;}
.x24{left:138.636000px;}
.x6{left:144.036000px;}
.x7{left:149.976000px;}
.x4{left:153.930000px;}
.x1d{left:164.010000px;}
.xf{left:166.890000px;}
.x25{left:171.390000px;}
.xc{left:175.890000px;}
.x3{left:177.510000px;}
.x19{left:180.750000px;}
.x29{left:191.550000px;}
.xd{left:197.670000px;}
.x2a{left:202.170000px;}
.x26{left:221.430000px;}
.x16{left:225.030000px;}
.x1a{left:233.490000px;}
.x1e{left:251.355000px;}
.x13{left:270.615000px;}
.x23{left:277.635000px;}
.x1c{left:334.335000px;}
.x1f{left:357.735000px;}
.xe{left:361.875000px;}
.x1b{left:362.955000px;}
.xa{left:374.115000px;}
.x5{left:390.495000px;}
.x15{left:393.195000px;}
.x18{left:396.255000px;}
.x8{left:446.505000px;}
.x27{left:449.925000px;}
.x20{left:457.665000px;}
.x21{left:559.725000px;}
.x28{left:565.665000px;}
.x22{left:659.670000px;}
.x11{left:720.720000px;}
.xb{left:765.540000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:26.880000pt;}
.v3{vertical-align:29.440000pt;}
.v1{vertical-align:42.880000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.051200pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.097067pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.456533pt;}
.ls16{letter-spacing:0.640000pt;}
.lsc{letter-spacing:9.552640pt;}
.lsd{letter-spacing:10.192640pt;}
.lsb{letter-spacing:12.112640pt;}
.ws1{word-spacing:-32.256000pt;}
.ws3{word-spacing:-24.000000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws13{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.360000pt;}
.ws11{word-spacing:-14.817067pt;}
.wse{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.486933pt;}
.wsd{word-spacing:-14.448533pt;}
.wsb{word-spacing:-13.736533pt;}
.wsa{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.400000pt;}
.wsf{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._27{margin-left:-9.600000pt;}
._28{margin-left:-3.968000pt;}
._1a{margin-left:-2.443093pt;}
._0{margin-left:-1.319253pt;}
._1{width:0.939520pt;}
._a{width:2.018133pt;}
._b{width:3.712000pt;}
._8{width:5.248000pt;}
._9{width:6.336000pt;}
._12{width:7.616000pt;}
._13{width:8.640000pt;}
._c{width:9.728000pt;}
._d{width:10.752000pt;}
._19{width:12.010667pt;}
._1b{width:12.974933pt;}
._10{width:13.888000pt;}
._11{width:15.085653pt;}
._14{width:17.236480pt;}
._15{width:18.821120pt;}
._16{width:19.904000pt;}
._f{width:21.283840pt;}
._e{width:22.442667pt;}
._1d{width:23.537493pt;}
._1e{width:24.576000pt;}
._17{width:25.472000pt;}
._18{width:26.560000pt;}
._1f{width:28.288000pt;}
._20{width:29.312000pt;}
._23{width:30.400000pt;}
._7{width:31.655253pt;}
._6{width:33.002667pt;}
._1c{width:34.261333pt;}
._26{width:35.562667pt;}
._2b{width:36.864000pt;}
._21{width:37.760000pt;}
._22{width:38.720000pt;}
._2c{width:40.256000pt;}
._29{width:41.600000pt;}
._2a{width:42.624000pt;}
._2{width:76.935680pt;}
._25{width:133.068800pt;}
._24{width:172.778667pt;}
._4{width:174.986667pt;}
._3{width:176.160000pt;}
._5{width:1697.205333pt;}
.fsb{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:3.520000pt;}
.yb7{bottom:3.680000pt;}
.yd4{bottom:6.720000pt;}
.yda{bottom:7.840000pt;}
.yd0{bottom:8.000000pt;}
.yba{bottom:20.320000pt;}
.yb6{bottom:20.480000pt;}
.yd2{bottom:20.800000pt;}
.yce{bottom:21.786667pt;}
.y2c{bottom:25.920000pt;}
.ycc{bottom:28.000000pt;}
.y2b{bottom:42.880000pt;}
.y3{bottom:50.560000pt;}
.y9e{bottom:97.792000pt;}
.y29{bottom:99.392000pt;}
.yff{bottom:103.232000pt;}
.y15b{bottom:103.392000pt;}
.ya7{bottom:103.872000pt;}
.y55{bottom:104.192000pt;}
.yb3{bottom:111.392000pt;}
.y9d{bottom:113.152000pt;}
.ya6{bottom:113.792000pt;}
.y8c{bottom:116.832000pt;}
.y28{bottom:117.152000pt;}
.ye4{bottom:119.232000pt;}
.y9c{bottom:128.352000pt;}
.ye3{bottom:129.152000pt;}
.y54{bottom:130.112000pt;}
.yfe{bottom:130.912000pt;}
.y27{bottom:132.352000pt;}
.y140{bottom:134.426667pt;}
.yb2{bottom:138.906667pt;}
.y116{bottom:140.026667pt;}
.y9b{bottom:143.706667pt;}
.y13f{bottom:144.346667pt;}
.y8b{bottom:144.506667pt;}
.y26{bottom:147.706667pt;}
.y53{bottom:148.826667pt;}
.y12d{bottom:149.306667pt;}
.y158{bottom:149.786667pt;}
.ya5{bottom:157.786667pt;}
.yfd{bottom:158.426667pt;}
.y9a{bottom:159.066667pt;}
.y25{bottom:163.066667pt;}
.yaa{bottom:165.146667pt;}
.ye2{bottom:165.466667pt;}
.yb1{bottom:166.586667pt;}
.y52{bottom:167.226667pt;}
.y115{bottom:167.706667pt;}
.y8a{bottom:172.026667pt;}
.y99{bottom:174.426667pt;}
.y12c{bottom:176.826667pt;}
.y24{bottom:178.426667pt;}
.ya3{bottom:185.466667pt;}
.y51{bottom:185.626667pt;}
.yfc{bottom:185.946667pt;}
.y13e{bottom:186.106667pt;}
.y98{bottom:189.786667pt;}
.y23{bottom:193.786667pt;}
.yb0{bottom:194.106667pt;}
.y114{bottom:195.226667pt;}
.y157{bottom:195.866667pt;}
.ye1{bottom:196.506667pt;}
.y89{bottom:199.706667pt;}
.y50{bottom:204.026667pt;}
.y12b{bottom:204.506667pt;}
.y97{bottom:205.146667pt;}
.y156{bottom:205.786667pt;}
.y22{bottom:209.146667pt;}
.ya2{bottom:212.986667pt;}
.yfb{bottom:213.626667pt;}
.y96{bottom:220.346667pt;}
.yaf{bottom:221.786667pt;}
.y4f{bottom:222.426667pt;}
.y113{bottom:222.746667pt;}
.ye0{bottom:223.546667pt;}
.y21{bottom:224.346667pt;}
.y88{bottom:227.226667pt;}
.ydf{bottom:230.266667pt;}
.y12a{bottom:232.026667pt;}
.y13d{bottom:232.186667pt;}
.y20{bottom:239.706667pt;}
.ya1{bottom:240.666667pt;}
.y4e{bottom:240.826667pt;}
.yfa{bottom:241.146667pt;}
.y95{bottom:241.786667pt;}
.yae{bottom:249.306667pt;}
.y112{bottom:250.426667pt;}
.y13c{bottom:250.586667pt;}
.yde{bottom:250.906667pt;}
.ya9{bottom:251.066667pt;}
.y94{bottom:251.706667pt;}
.y87{bottom:254.906667pt;}
.y1f{bottom:255.066667pt;}
.y4d{bottom:259.226667pt;}
.y129{bottom:259.546667pt;}
.ya0{bottom:268.186667pt;}
.yf9{bottom:268.666667pt;}
.y15a{bottom:268.826667pt;}
.y13b{bottom:268.986667pt;}
.y1e{bottom:270.426667pt;}
.ydd{bottom:271.706667pt;}
.ya8{bottom:272.506667pt;}
.yad{bottom:276.986667pt;}
.y4c{bottom:277.626667pt;}
.y111{bottom:277.946667pt;}
.y86{bottom:282.426667pt;}
.y1d{bottom:285.786667pt;}
.y128{bottom:287.226667pt;}
.y13a{bottom:287.386667pt;}
.ydc{bottom:292.346667pt;}
.ya4{bottom:295.546667pt;}
.y9f{bottom:295.866667pt;}
.y4b{bottom:296.026667pt;}
.yf8{bottom:296.346667pt;}
.y147{bottom:296.506667pt;}
.y1c{bottom:301.146667pt;}
.yac{bottom:302.426667pt;}
.y110{bottom:305.466667pt;}
.y139{bottom:305.626667pt;}
.y85{bottom:310.146667pt;}
.ydb{bottom:313.026667pt;}
.y4a{bottom:314.466667pt;}
.y127{bottom:314.786667pt;}
.y146{bottom:314.946667pt;}
.y1b{bottom:316.386667pt;}
.y93{bottom:323.426667pt;}
.yf7{bottom:323.906667pt;}
.y138{bottom:324.066667pt;}
.yab{bottom:327.266667pt;}
.y1a{bottom:331.746667pt;}
.y49{bottom:332.866667pt;}
.y10f{bottom:333.186667pt;}
.y145{bottom:333.346667pt;}
.yd9{bottom:334.946667pt;}
.y84{bottom:337.666667pt;}
.y126{bottom:342.306667pt;}
.y137{bottom:342.466667pt;}
.y19{bottom:347.106667pt;}
.y92{bottom:351.106667pt;}
.y48{bottom:351.266667pt;}
.yf6{bottom:351.426667pt;}
.y159{bottom:351.586667pt;}
.y144{bottom:351.746667pt;}
.yd8{bottom:356.706667pt;}
.y10e{bottom:360.706667pt;}
.y136{bottom:360.866667pt;}
.y18{bottom:362.466667pt;}
.y83{bottom:365.346667pt;}
.y47{bottom:369.666667pt;}
.y125{bottom:369.986667pt;}
.y143{bottom:370.146667pt;}
.yd7{bottom:377.346667pt;}
.y17{bottom:377.826667pt;}
.y91{bottom:378.626667pt;}
.yf5{bottom:379.106667pt;}
.y135{bottom:379.266667pt;}
.y46{bottom:387.906667pt;}
.y10d{bottom:388.386667pt;}
.y142{bottom:388.546667pt;}
.y6b{bottom:392.226667pt;}
.y82{bottom:392.866667pt;}
.y16{bottom:395.106667pt;}
.y124{bottom:397.506667pt;}
.yd6{bottom:399.266667pt;}
.y90{bottom:406.146667pt;}
.y45{bottom:406.306667pt;}
.yf4{bottom:406.626667pt;}
.y141{bottom:406.786667pt;}
.y10c{bottom:415.906667pt;}
.yd5{bottom:419.906667pt;}
.y6a{bottom:420.066667pt;}
.y81{bottom:420.546667pt;}
.y15{bottom:420.706667pt;}
.y123{bottom:425.026667pt;}
.y44{bottom:433.826667pt;}
.yf3{bottom:434.306667pt;}
.y14{bottom:436.706667pt;}
.yd3{bottom:441.826667pt;}
.y10b{bottom:443.426667pt;}
.y69{bottom:447.266667pt;}
.y80{bottom:448.066667pt;}
.y13{bottom:451.106667pt;}
.y122{bottom:452.706667pt;}
.y43{bottom:461.026667pt;}
.y8f{bottom:461.346667pt;}
.yf2{bottom:461.826667pt;}
.y10a{bottom:461.986667pt;}
.yd1{bottom:462.466667pt;}
.y155{bottom:471.106667pt;}
.y68{bottom:475.266667pt;}
.y7f{bottom:475.746667pt;}
.y121{bottom:480.226667pt;}
.y109{bottom:480.386667pt;}
.y12{bottom:484.386667pt;}
.y42{bottom:489.026667pt;}
.yf1{bottom:489.346667pt;}
.ycf{bottom:497.186667pt;}
.y154{bottom:498.626667pt;}
.y108{bottom:498.786667pt;}
.y67{bottom:502.786667pt;}
.y7e{bottom:503.266667pt;}
.y120{bottom:507.746667pt;}
.y11{bottom:514.466667pt;}
.y41{bottom:516.546667pt;}
.yf0{bottom:517.026667pt;}
.y107{bottom:517.186667pt;}
.ycd{bottom:519.106667pt;}
.y153{bottom:526.146667pt;}
.y10{bottom:527.266667pt;}
.y66{bottom:530.466667pt;}
.y7d{bottom:530.946667pt;}
.y11f{bottom:535.426667pt;}
.y106{bottom:535.586667pt;}
.y40{bottom:544.253333pt;}
.yef{bottom:544.573333pt;}
.y152{bottom:553.853333pt;}
.y105{bottom:554.013333pt;}
.ycb{bottom:554.813333pt;}
.yf{bottom:557.373333pt;}
.y65{bottom:558.013333pt;}
.y7c{bottom:558.493333pt;}
.y11e{bottom:562.973333pt;}
.ye{bottom:565.853333pt;}
.y3f{bottom:571.773333pt;}
.yee{bottom:572.093333pt;}
.y134{bottom:572.253333pt;}
.y104{bottom:572.413333pt;}
.y151{bottom:581.373333pt;}
.y64{bottom:585.693333pt;}
.y7b{bottom:586.173333pt;}
.yd{bottom:590.013333pt;}
.y11d{bottom:590.493333pt;}
.y3e{bottom:599.453333pt;}
.yed{bottom:599.773333pt;}
.y150{bottom:608.893333pt;}
.y63{bottom:613.213333pt;}
.yca{bottom:613.373333pt;}
.y7a{bottom:613.693333pt;}
.yc{bottom:617.533333pt;}
.y11c{bottom:618.173333pt;}
.y3d{bottom:626.973333pt;}
.yec{bottom:627.293333pt;}
.y14f{bottom:636.573333pt;}
.y11b{bottom:636.733333pt;}
.y62{bottom:640.893333pt;}
.y79{bottom:641.373333pt;}
.yb{bottom:643.133333pt;}
.yc9{bottom:644.093333pt;}
.y3c{bottom:654.653333pt;}
.yeb{bottom:654.813333pt;}
.y103{bottom:654.973333pt;}
.y11a{bottom:655.133333pt;}
.yc8{bottom:662.013333pt;}
.ya{bottom:662.333333pt;}
.y14e{bottom:664.093333pt;}
.y61{bottom:668.413333pt;}
.y78{bottom:668.893333pt;}
.y119{bottom:673.533333pt;}
.yc7{bottom:677.373333pt;}
.y3b{bottom:682.173333pt;}
.yea{bottom:682.493333pt;}
.y9{bottom:685.053333pt;}
.yc6{bottom:690.013333pt;}
.y14d{bottom:691.613333pt;}
.y118{bottom:691.773333pt;}
.y60{bottom:696.093333pt;}
.y77{bottom:696.413333pt;}
.yc5{bottom:707.453333pt;}
.y3a{bottom:709.853333pt;}
.ye9{bottom:710.013333pt;}
.y117{bottom:710.173333pt;}
.y14c{bottom:719.293333pt;}
.y8{bottom:721.853333pt;}
.y5f{bottom:723.613333pt;}
.y76{bottom:724.093333pt;}
.yc4{bottom:725.053333pt;}
.y133{bottom:728.573333pt;}
.y39{bottom:737.373333pt;}
.ye8{bottom:737.533333pt;}
.y102{bottom:737.693333pt;}
.y14b{bottom:737.853333pt;}
.y132{bottom:746.973333pt;}
.y162{bottom:748.093333pt;}
.y5e{bottom:751.293333pt;}
.y75{bottom:751.613333pt;}
.y14a{bottom:756.253333pt;}
.y7{bottom:758.333333pt;}
.yc3{bottom:759.453333pt;}
.y38{bottom:765.053333pt;}
.ye7{bottom:765.213333pt;}
.y131{bottom:765.373333pt;}
.y149{bottom:774.533333pt;}
.yc2{bottom:776.933333pt;}
.y5d{bottom:778.853333pt;}
.y74{bottom:779.333333pt;}
.y130{bottom:783.813333pt;}
.y37{bottom:792.613333pt;}
.ye6{bottom:792.773333pt;}
.y148{bottom:792.933333pt;}
.yc1{bottom:794.533333pt;}
.y6{bottom:795.173333pt;}
.y12f{bottom:802.213333pt;}
.y5c{bottom:806.533333pt;}
.y73{bottom:806.853333pt;}
.yc0{bottom:811.973333pt;}
.y36{bottom:820.293333pt;}
.y101{bottom:820.453333pt;}
.y12e{bottom:820.613333pt;}
.ybf{bottom:829.573333pt;}
.y5{bottom:831.973333pt;}
.y5b{bottom:834.053333pt;}
.y161{bottom:839.013333pt;}
.y72{bottom:841.253333pt;}
.ybe{bottom:847.013333pt;}
.y35{bottom:847.813333pt;}
.ye5{bottom:847.973333pt;}
.y160{bottom:857.413333pt;}
.y5a{bottom:861.573333pt;}
.ybd{bottom:864.613333pt;}
.y71{bottom:868.773333pt;}
.y4{bottom:869.093333pt;}
.y34{bottom:875.493333pt;}
.y15f{bottom:875.653333pt;}
.ybc{bottom:882.053333pt;}
.y59{bottom:889.253333pt;}
.y15e{bottom:894.053333pt;}
.y70{bottom:896.453333pt;}
.y2a{bottom:898.533333pt;}
.yb9{bottom:899.653333pt;}
.y33{bottom:903.013333pt;}
.y100{bottom:903.173333pt;}
.y15d{bottom:912.453333pt;}
.y58{bottom:916.773333pt;}
.y6f{bottom:923.973333pt;}
.y32{bottom:930.693333pt;}
.y15c{bottom:930.853333pt;}
.yb8{bottom:933.893333pt;}
.y57{bottom:944.453333pt;}
.y6e{bottom:951.653333pt;}
.y31{bottom:958.213333pt;}
.yb5{bottom:968.293333pt;}
.y56{bottom:971.653333pt;}
.y6d{bottom:979.173333pt;}
.y30{bottom:985.573333pt;}
.y8e{bottom:985.893333pt;}
.y2f{bottom:1005.733333pt;}
.y6c{bottom:1013.120000pt;}
.y8d{bottom:1013.440000pt;}
.yb4{bottom:1014.400000pt;}
.y2{bottom:1041.760000pt;}
.y2e{bottom:1049.920000pt;}
.y1{bottom:1060.160000pt;}
.y2d{bottom:1063.680000pt;}
.h16{height:16.800000pt;}
.h17{height:16.832000pt;}
.h18{height:16.960000pt;}
.h1e{height:20.000000pt;}
.h20{height:20.032000pt;}
.h1f{height:21.120000pt;}
.h1c{height:21.280000pt;}
.h21{height:24.097500pt;}
.h11{height:30.982500pt;}
.h14{height:33.600000pt;}
.h12{height:33.760000pt;}
.h1d{height:34.080000pt;}
.h1b{height:35.072000pt;}
.hb{height:36.883125pt;}
.h3{height:38.441250pt;}
.h1a{height:41.280000pt;}
.h8{height:43.031250pt;}
.h22{height:44.437500pt;}
.h6{height:45.032169pt;}
.hd{height:47.621250pt;}
.h19{height:52.296250pt;}
.h13{height:52.785000pt;}
.hf{height:56.843750pt;}
.h2{height:57.375000pt;}
.h15{height:60.157500pt;}
.h9{height:67.128750pt;}
.ha{height:67.548254pt;}
.h10{height:67.881250pt;}
.hc{height:85.265625pt;}
.h7{height:97.960000pt;}
.h5{height:113.687500pt;}
.h4{height:114.750000pt;}
.he{height:117.472000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:28.480000pt;}
.w3{width:29.760000pt;}
.wa{width:43.840000pt;}
.w4{width:46.592000pt;}
.w8{width:61.760000pt;}
.w6{width:88.192000pt;}
.w7{width:90.080000pt;}
.w5{width:93.920000pt;}
.wc{width:102.240000pt;}
.wd{width:167.746667pt;}
.wb{width:202.466667pt;}
.w2{width:676.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x10{left:58.720000pt;}
.x17{left:89.152000pt;}
.x2{left:98.592000pt;}
.x14{left:107.712000pt;}
.x1{left:113.472000pt;}
.x9{left:121.312000pt;}
.x24{left:123.232000pt;}
.x6{left:128.032000pt;}
.x7{left:133.312000pt;}
.x4{left:136.826667pt;}
.x1d{left:145.786667pt;}
.xf{left:148.346667pt;}
.x25{left:152.346667pt;}
.xc{left:156.346667pt;}
.x3{left:157.786667pt;}
.x19{left:160.666667pt;}
.x29{left:170.266667pt;}
.xd{left:175.706667pt;}
.x2a{left:179.706667pt;}
.x26{left:196.826667pt;}
.x16{left:200.026667pt;}
.x1a{left:207.546667pt;}
.x1e{left:223.426667pt;}
.x13{left:240.546667pt;}
.x23{left:246.786667pt;}
.x1c{left:297.186667pt;}
.x1f{left:317.986667pt;}
.xe{left:321.666667pt;}
.x1b{left:322.626667pt;}
.xa{left:332.546667pt;}
.x5{left:347.106667pt;}
.x15{left:349.506667pt;}
.x18{left:352.226667pt;}
.x8{left:396.893333pt;}
.x27{left:399.933333pt;}
.x20{left:406.813333pt;}
.x21{left:497.533333pt;}
.x28{left:502.813333pt;}
.x22{left:586.373333pt;}
.x11{left:640.640000pt;}
.xb{left:680.480000pt;}
}




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