
    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_ce7de1aca3b0a5ccf45b4e9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_cc70bb596c21cadf846cf165.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_4576f72c135cc7e3cb7c2bfb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f4d4bc5ea9816c5dabb5d531.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_c902e15d05d9316d165cd68d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_bad9f96da409fc366a88a54e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.052980px;}
.lsc{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.439920px;}
.ls8{letter-spacing:0.480000px;}
.lsb{letter-spacing:41.682720px;}
.ls4{letter-spacing:46.002720px;}
.ls6{letter-spacing:64.002720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:84.300000px;}
.ws8{word-spacing:84.360000px;}
.ws6{word-spacing:84.468000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._2{width:2.742240px;}
._6{width:4.500000px;}
._d{width:5.880960px;}
._f{width:7.497600px;}
._8{width:9.203040px;}
._7{width:10.458000px;}
._e{width:11.593440px;}
._15{width:13.803840px;}
._11{width:16.493760px;}
._10{width:18.128880px;}
._16{width:20.487600px;}
._29{width:21.954000px;}
._12{width:24.371520px;}
._a{width:25.398000px;}
._9{width:26.413920px;}
._2a{width:28.027440px;}
._b{width:35.011680px;}
._c{width:36.102720px;}
._22{width:85.710432px;}
._26{width:89.082000px;}
._17{width:92.862000px;}
._1c{width:95.442000px;}
._21{width:97.602000px;}
._23{width:113.369568px;}
._27{width:115.698000px;}
._18{width:119.418000px;}
._1d{width:121.878000px;}
._5{width:136.056000px;}
._25{width:183.627120px;}
._20{width:192.252000px;}
._1b{width:195.756000px;}
._24{width:243.063264px;}
._28{width:246.594000px;}
._19{width:250.314000px;}
._1e{width:252.894000px;}
._1f{width:262.938000px;}
._1a{width:266.418000px;}
._14{width:327.036000px;}
._4{width:636.906000px;}
._3{width:748.236000px;}
._13{width:1583.016000px;}
.fc5{color:transparent;}
.fc4{color:rgb(26,28,30);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.234000px;}
.y96{bottom:3.240000px;}
.y92{bottom:6.120000px;}
.y8f{bottom:6.840000px;}
.y90{bottom:7.065000px;}
.ycf{bottom:17.715000px;}
.yc1{bottom:17.745000px;}
.y88{bottom:19.080000px;}
.y8d{bottom:19.260000px;}
.y8a{bottom:19.800000px;}
.yb{bottom:36.000000px;}
.ybf{bottom:47.625000px;}
.yf0{bottom:47.670000px;}
.ya{bottom:54.180000px;}
.yd1{bottom:65.160000px;}
.yb5{bottom:65.190000px;}
.yea{bottom:65.235000px;}
.yb6{bottom:89.640000px;}
.yeb{bottom:89.850000px;}
.yc7{bottom:91.515000px;}
.yd2{bottom:95.370000px;}
.y5e{bottom:113.796000px;}
.yb7{bottom:114.045000px;}
.yec{bottom:114.480000px;}
.ye8{bottom:115.776000px;}
.y9f{bottom:117.756000px;}
.yc8{bottom:117.825000px;}
.y3f{bottom:124.956000px;}
.yd3{bottom:125.565000px;}
.y114{bottom:128.916000px;}
.y5d{bottom:131.076000px;}
.ye7{bottom:133.056000px;}
.y9e{bottom:135.036000px;}
.yb8{bottom:138.495000px;}
.yed{bottom:139.110000px;}
.y3e{bottom:142.056000px;}
.yc9{bottom:144.150000px;}
.y113{bottom:146.016000px;}
.y5f{bottom:147.636000px;}
.y5c{bottom:148.356000px;}
.y107{bottom:149.076000px;}
.y9c{bottom:149.796000px;}
.ye6{bottom:150.150000px;}
.yd4{bottom:155.775000px;}
.y3d{bottom:159.330000px;}
.yb9{bottom:162.930000px;}
.y112{bottom:163.290000px;}
.yee{bottom:163.725000px;}
.ye5{bottom:164.190000px;}
.y5b{bottom:165.630000px;}
.y9b{bottom:167.790000px;}
.yca{bottom:170.460000px;}
.y67{bottom:171.174000px;}
.y3c{bottom:176.610000px;}
.y111{bottom:177.330000px;}
.y6f{bottom:178.194000px;}
.yfe{bottom:180.210000px;}
.y5a{bottom:182.910000px;}
.y9a{bottom:185.790000px;}
.yd5{bottom:185.970000px;}
.yba{bottom:187.380000px;}
.yef{bottom:188.385000px;}
.y66{bottom:190.299000px;}
.y3b{bottom:193.890000px;}
.ycb{bottom:196.770000px;}
.yfd{bottom:197.310000px;}
.y6e{bottom:197.319000px;}
.y59{bottom:200.190000px;}
.y99{bottom:203.790000px;}
.y65{bottom:209.379000px;}
.y3a{bottom:211.170000px;}
.ybb{bottom:211.785000px;}
.yfc{bottom:214.590000px;}
.yd6{bottom:216.150000px;}
.y6d{bottom:216.399000px;}
.yf1{bottom:216.570000px;}
.y58{bottom:217.290000px;}
.y98{bottom:221.790000px;}
.ycc{bottom:223.095000px;}
.y64{bottom:228.279000px;}
.y39{bottom:228.450000px;}
.yfb{bottom:228.630000px;}
.y57{bottom:234.570000px;}
.y6c{bottom:235.299000px;}
.ybc{bottom:236.235000px;}
.y97{bottom:239.790000px;}
.y38{bottom:245.550000px;}
.yd7{bottom:246.345000px;}
.y63{bottom:247.179000px;}
.ycd{bottom:249.405000px;}
.y56{bottom:251.850000px;}
.y6b{bottom:254.379000px;}
.y95{bottom:257.790000px;}
.ybd{bottom:260.670000px;}
.y37{bottom:262.830000px;}
.y62{bottom:266.259000px;}
.y55{bottom:269.130000px;}
.y6a{bottom:273.279000px;}
.yd8{bottom:276.555000px;}
.yce{bottom:277.590000px;}
.y94{bottom:279.030000px;}
.y36{bottom:280.110000px;}
.y133{bottom:281.190000px;}
.ybe{bottom:285.120000px;}
.y61{bottom:285.159000px;}
.y54{bottom:286.410000px;}
.y69{bottom:292.179000px;}
.y93{bottom:296.310000px;}
.y35{bottom:297.390000px;}
.y132{bottom:298.290000px;}
.y53{bottom:303.690000px;}
.y60{bottom:304.239000px;}
.yd9{bottom:306.750000px;}
.y91{bottom:311.070000px;}
.y68{bottom:311.259000px;}
.yc0{bottom:313.305000px;}
.y34{bottom:314.670000px;}
.y131{bottom:315.570000px;}
.y52{bottom:320.790000px;}
.y33{bottom:331.950000px;}
.y130{bottom:332.850000px;}
.yda{bottom:334.950000px;}
.y51{bottom:338.115000px;}
.yc5{bottom:343.155000px;}
.y32{bottom:349.095000px;}
.y12f{bottom:350.175000px;}
.yb3{bottom:351.255000px;}
.y8e{bottom:353.775000px;}
.y50{bottom:355.395000px;}
.yc4{bottom:357.195000px;}
.yd0{bottom:357.300000px;}
.yb2{bottom:365.295000px;}
.yb4{bottom:365.400000px;}
.y31{bottom:366.375000px;}
.y12e{bottom:367.455000px;}
.y4f{bottom:372.675000px;}
.y8c{bottom:375.375000px;}
.y30{bottom:383.655000px;}
.y12d{bottom:384.735000px;}
.y4e{bottom:389.955000px;}
.y2f{bottom:400.935000px;}
.y12c{bottom:401.835000px;}
.y106{bottom:404.895000px;}
.y4d{bottom:407.235000px;}
.y8b{bottom:409.395000px;}
.y2e{bottom:418.215000px;}
.y12b{bottom:419.115000px;}
.y105{bottom:422.175000px;}
.y4c{bottom:424.335000px;}
.y2d{bottom:435.315000px;}
.y12a{bottom:436.395000px;}
.y104{bottom:439.455000px;}
.y4b{bottom:441.615000px;}
.y89{bottom:443.235000px;}
.y2c{bottom:452.595000px;}
.y103{bottom:453.315000px;}
.y129{bottom:453.675000px;}
.y110{bottom:457.455000px;}
.y4a{bottom:458.895000px;}
.y2b{bottom:469.875000px;}
.y128{bottom:470.955000px;}
.y10f{bottom:474.555000px;}
.y49{bottom:476.175000px;}
.y87{bottom:477.795000px;}
.ye4{bottom:480.315000px;}
.y2a{bottom:487.155000px;}
.y127{bottom:488.235000px;}
.y48{bottom:490.215000px;}
.y10e{bottom:491.835000px;}
.ye3{bottom:497.595000px;}
.y29{bottom:504.435000px;}
.y126{bottom:505.335000px;}
.yfa{bottom:506.955000px;}
.y10d{bottom:509.115000px;}
.ye2{bottom:514.695000px;}
.y86{bottom:514.875000px;}
.y28{bottom:521.715000px;}
.y125{bottom:522.615000px;}
.y10c{bottom:523.155000px;}
.yf9{bottom:524.235000px;}
.ye1{bottom:528.735000px;}
.y85{bottom:532.155000px;}
.y27{bottom:538.815000px;}
.y124{bottom:539.895000px;}
.yf8{bottom:541.515000px;}
.y84{bottom:549.435000px;}
.yf7{bottom:555.555000px;}
.y123{bottom:557.175000px;}
.y26{bottom:557.355000px;}
.y83{bottom:566.715000px;}
.y122{bottom:574.455000px;}
.y25{bottom:574.635000px;}
.y82{bottom:583.995000px;}
.y121{bottom:591.555000px;}
.y24{bottom:591.735000px;}
.y81{bottom:601.275000px;}
.y120{bottom:608.865000px;}
.y23{bottom:609.045000px;}
.y80{bottom:619.485000px;}
.y11f{bottom:626.145000px;}
.y22{bottom:626.325000px;}
.y7f{bottom:636.765000px;}
.y11e{bottom:643.425000px;}
.y21{bottom:643.605000px;}
.y7e{bottom:654.045000px;}
.y11d{bottom:660.705000px;}
.y20{bottom:660.885000px;}
.y7d{bottom:672.405000px;}
.y11c{bottom:677.985000px;}
.y1f{bottom:678.165000px;}
.y7c{bottom:689.685000px;}
.y11b{bottom:695.085000px;}
.y1e{bottom:695.265000px;}
.yf6{bottom:698.325000px;}
.y7b{bottom:706.785000px;}
.y10b{bottom:709.485000px;}
.y11a{bottom:712.365000px;}
.y1d{bottom:712.545000px;}
.yb1{bottom:713.265000px;}
.yf5{bottom:715.425000px;}
.ye0{bottom:718.845000px;}
.y7a{bottom:725.145000px;}
.y10a{bottom:726.585000px;}
.yc3{bottom:726.765000px;}
.y119{bottom:729.645000px;}
.y1c{bottom:729.825000px;}
.yb0{bottom:730.365000px;}
.yf4{bottom:732.705000px;}
.ydf{bottom:736.125000px;}
.y102{bottom:737.925000px;}
.yc2{bottom:740.805000px;}
.yc6{bottom:740.880000px;}
.y79{bottom:742.425000px;}
.y109{bottom:743.865000px;}
.yaf{bottom:745.125000px;}
.y118{bottom:746.925000px;}
.y1b{bottom:747.105000px;}
.yf3{bottom:749.985000px;}
.yde{bottom:753.225000px;}
.y101{bottom:755.205000px;}
.y108{bottom:757.905000px;}
.y78{bottom:759.705000px;}
.yae{bottom:763.125000px;}
.yf2{bottom:764.025000px;}
.y117{bottom:764.205000px;}
.y1a{bottom:764.385000px;}
.ydd{bottom:770.505000px;}
.y100{bottom:772.485000px;}
.y77{bottom:776.985000px;}
.yad{bottom:781.125000px;}
.y116{bottom:781.485000px;}
.y19{bottom:781.665000px;}
.yff{bottom:786.345000px;}
.ydc{bottom:787.785000px;}
.y76{bottom:794.265000px;}
.y115{bottom:795.345000px;}
.y18{bottom:798.765000px;}
.yac{bottom:799.125000px;}
.ydb{bottom:801.825000px;}
.ye9{bottom:801.900000px;}
.y75{bottom:811.365000px;}
.yab{bottom:817.125000px;}
.y17{bottom:818.565000px;}
.y74{bottom:828.645000px;}
.yaa{bottom:835.125000px;}
.y16{bottom:837.645000px;}
.y73{bottom:845.925000px;}
.ya9{bottom:853.125000px;}
.y15{bottom:856.725000px;}
.y72{bottom:863.205000px;}
.ya8{bottom:874.410000px;}
.y14{bottom:875.670000px;}
.y71{bottom:880.530000px;}
.ya7{bottom:891.690000px;}
.y13{bottom:894.750000px;}
.y70{bottom:897.630000px;}
.ya6{bottom:906.450000px;}
.y12{bottom:913.650000px;}
.y47{bottom:914.910000px;}
.ya5{bottom:924.450000px;}
.y46{bottom:932.190000px;}
.y11{bottom:932.730000px;}
.ya4{bottom:942.450000px;}
.y45{bottom:949.470000px;}
.y10{bottom:951.630000px;}
.ya3{bottom:960.450000px;}
.y44{bottom:966.750000px;}
.yf{bottom:970.890000px;}
.ya2{bottom:978.450000px;}
.y43{bottom:984.030000px;}
.ye{bottom:991.590000px;}
.ya1{bottom:996.450000px;}
.y42{bottom:1001.130000px;}
.yd{bottom:1012.290000px;}
.ya0{bottom:1014.450000px;}
.y41{bottom:1018.410000px;}
.yc{bottom:1032.990000px;}
.y40{bottom:1035.690000px;}
.y9{bottom:1053.330000px;}
.y8{bottom:1071.690000px;}
.y7{bottom:1087.530000px;}
.y6{bottom:1105.350000px;}
.y5{bottom:1122.090000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h11{height:17.280000px;}
.h10{height:20.160000px;}
.he{height:20.880000px;}
.hf{height:21.096000px;}
.hc{height:33.120000px;}
.hd{height:33.840000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.506914px;}
.h3{height:46.251562px;}
.h7{height:46.736719px;}
.h19{height:48.027656px;}
.hb{height:48.496641px;}
.h4{height:50.800781px;}
.h13{height:53.709961px;}
.h14{height:53.853187px;}
.h15{height:83.787539px;}
.h18{height:247.860000px;}
.h16{height:308.880000px;}
.h8{height:319.530000px;}
.h9{height:326.550000px;}
.h12{height:344.700000px;}
.h17{height:366.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:85.320000px;}
.w7{width:92.160000px;}
.wa{width:111.960000px;}
.wb{width:111.996000px;}
.w8{width:121.356000px;}
.w6{width:124.056000px;}
.w5{width:126.576000px;}
.w4{width:130.680000px;}
.w3{width:344.235000px;}
.we{width:665.280000px;}
.wf{width:669.240000px;}
.wd{width:678.780000px;}
.wc{width:681.660000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x3d{left:9.756000px;}
.x16{left:10.800000px;}
.x35{left:13.680000px;}
.x3c{left:16.632000px;}
.x37{left:18.720000px;}
.x2c{left:21.600000px;}
.x25{left:24.660000px;}
.x21{left:26.100000px;}
.x32{left:27.180000px;}
.x28{left:29.160000px;}
.x23{left:31.860000px;}
.x1e{left:32.940000px;}
.x30{left:36.030000px;}
.x34{left:37.800000px;}
.x36{left:39.060000px;}
.x29{left:43.740000px;}
.x27{left:45.000000px;}
.x26{left:46.485000px;}
.x48{left:59.400000px;}
.x44{left:60.480000px;}
.x3e{left:66.990000px;}
.x2b{left:100.296000px;}
.x1b{left:104.616000px;}
.x1{left:108.035987px;}
.x4d{left:111.780000px;}
.x47{left:113.760000px;}
.x15{left:123.336000px;}
.x2{left:134.495987px;}
.xe{left:145.295987px;}
.x4{left:157.169987px;}
.x18{left:162.029987px;}
.x7{left:176.429987px;}
.x49{left:188.970000px;}
.x4f{left:190.950000px;}
.x46{left:195.660000px;}
.x40{left:197.175000px;}
.x38{left:200.009987px;}
.x2a{left:209.549987px;}
.x2d{left:212.970000px;}
.x8{left:216.929987px;}
.x1a{left:219.629987px;}
.x43{left:233.489987px;}
.x1d{left:236.190000px;}
.x3b{left:243.209987px;}
.x39{left:253.109987px;}
.x4e{left:254.955000px;}
.x45{left:259.665000px;}
.x3f{left:261.030000px;}
.xc{left:311.474987px;}
.x2e{left:325.695000px;}
.x53{left:341.714987px;}
.x19{left:349.814987px;}
.x12{left:352.694987px;}
.xf{left:360.794987px;}
.x1f{left:363.495000px;}
.x13{left:368.174987px;}
.x11{left:379.154987px;}
.x52{left:383.114987px;}
.x4c{left:384.374987px;}
.x51{left:386.894987px;}
.xb{left:389.594987px;}
.x50{left:391.574987px;}
.x9{left:392.654987px;}
.x6{left:396.434987px;}
.x54{left:398.594987px;}
.x5{left:412.274987px;}
.x2f{left:438.375000px;}
.xa{left:446.654987px;}
.xd{left:451.694987px;}
.x10{left:456.914987px;}
.x20{left:488.265000px;}
.x17{left:501.405000px;}
.x3{left:518.324987px;}
.x31{left:551.085000px;}
.x22{left:581.145000px;}
.x4b{left:602.924987px;}
.x33{left:663.990000px;}
.x24{left:703.230000px;}
.x14{left:751.829987px;}
.x42{left:779.189987px;}
.x4a{left:781.169987px;}
.x41{left:786.929987px;}
.x3a{left:789.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047093pt;}
.lsc{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.391040pt;}
.ls8{letter-spacing:0.426667pt;}
.lsb{letter-spacing:37.051307pt;}
.ls4{letter-spacing:40.891307pt;}
.ls6{letter-spacing:56.891307pt;}
.ws5{word-spacing:-53.120000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:74.933333pt;}
.ws8{word-spacing:74.986667pt;}
.ws6{word-spacing:75.082667pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._2{width:2.437547pt;}
._6{width:4.000000pt;}
._d{width:5.227520pt;}
._f{width:6.664533pt;}
._8{width:8.180480pt;}
._7{width:9.296000pt;}
._e{width:10.305280pt;}
._15{width:12.270080pt;}
._11{width:14.661120pt;}
._10{width:16.114560pt;}
._16{width:18.211200pt;}
._29{width:19.514667pt;}
._12{width:21.663573pt;}
._a{width:22.576000pt;}
._9{width:23.479040pt;}
._2a{width:24.913280pt;}
._b{width:31.121493pt;}
._c{width:32.091307pt;}
._22{width:76.187051pt;}
._26{width:79.184000pt;}
._17{width:82.544000pt;}
._1c{width:84.837333pt;}
._21{width:86.757333pt;}
._23{width:100.772949pt;}
._27{width:102.842667pt;}
._18{width:106.149333pt;}
._1d{width:108.336000pt;}
._5{width:120.938667pt;}
._25{width:163.224107pt;}
._20{width:170.890667pt;}
._1b{width:174.005333pt;}
._24{width:216.056235pt;}
._28{width:219.194667pt;}
._19{width:222.501333pt;}
._1e{width:224.794667pt;}
._1f{width:233.722667pt;}
._1a{width:236.816000pt;}
._14{width:290.698667pt;}
._4{width:566.138667pt;}
._3{width:665.098667pt;}
._13{width:1407.125333pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:2.874667pt;}
.y96{bottom:2.880000pt;}
.y92{bottom:5.440000pt;}
.y8f{bottom:6.080000pt;}
.y90{bottom:6.280000pt;}
.ycf{bottom:15.746667pt;}
.yc1{bottom:15.773333pt;}
.y88{bottom:16.960000pt;}
.y8d{bottom:17.120000pt;}
.y8a{bottom:17.600000pt;}
.yb{bottom:32.000000pt;}
.ybf{bottom:42.333333pt;}
.yf0{bottom:42.373333pt;}
.ya{bottom:48.160000pt;}
.yd1{bottom:57.920000pt;}
.yb5{bottom:57.946667pt;}
.yea{bottom:57.986667pt;}
.yb6{bottom:79.680000pt;}
.yeb{bottom:79.866667pt;}
.yc7{bottom:81.346667pt;}
.yd2{bottom:84.773333pt;}
.y5e{bottom:101.152000pt;}
.yb7{bottom:101.373333pt;}
.yec{bottom:101.760000pt;}
.ye8{bottom:102.912000pt;}
.y9f{bottom:104.672000pt;}
.yc8{bottom:104.733333pt;}
.y3f{bottom:111.072000pt;}
.yd3{bottom:111.613333pt;}
.y114{bottom:114.592000pt;}
.y5d{bottom:116.512000pt;}
.ye7{bottom:118.272000pt;}
.y9e{bottom:120.032000pt;}
.yb8{bottom:123.106667pt;}
.yed{bottom:123.653333pt;}
.y3e{bottom:126.272000pt;}
.yc9{bottom:128.133333pt;}
.y113{bottom:129.792000pt;}
.y5f{bottom:131.232000pt;}
.y5c{bottom:131.872000pt;}
.y107{bottom:132.512000pt;}
.y9c{bottom:133.152000pt;}
.ye6{bottom:133.466667pt;}
.yd4{bottom:138.466667pt;}
.y3d{bottom:141.626667pt;}
.yb9{bottom:144.826667pt;}
.y112{bottom:145.146667pt;}
.yee{bottom:145.533333pt;}
.ye5{bottom:145.946667pt;}
.y5b{bottom:147.226667pt;}
.y9b{bottom:149.146667pt;}
.yca{bottom:151.520000pt;}
.y67{bottom:152.154667pt;}
.y3c{bottom:156.986667pt;}
.y111{bottom:157.626667pt;}
.y6f{bottom:158.394667pt;}
.yfe{bottom:160.186667pt;}
.y5a{bottom:162.586667pt;}
.y9a{bottom:165.146667pt;}
.yd5{bottom:165.306667pt;}
.yba{bottom:166.560000pt;}
.yef{bottom:167.453333pt;}
.y66{bottom:169.154667pt;}
.y3b{bottom:172.346667pt;}
.ycb{bottom:174.906667pt;}
.yfd{bottom:175.386667pt;}
.y6e{bottom:175.394667pt;}
.y59{bottom:177.946667pt;}
.y99{bottom:181.146667pt;}
.y65{bottom:186.114667pt;}
.y3a{bottom:187.706667pt;}
.ybb{bottom:188.253333pt;}
.yfc{bottom:190.746667pt;}
.yd6{bottom:192.133333pt;}
.y6d{bottom:192.354667pt;}
.yf1{bottom:192.506667pt;}
.y58{bottom:193.146667pt;}
.y98{bottom:197.146667pt;}
.ycc{bottom:198.306667pt;}
.y64{bottom:202.914667pt;}
.y39{bottom:203.066667pt;}
.yfb{bottom:203.226667pt;}
.y57{bottom:208.506667pt;}
.y6c{bottom:209.154667pt;}
.ybc{bottom:209.986667pt;}
.y97{bottom:213.146667pt;}
.y38{bottom:218.266667pt;}
.yd7{bottom:218.973333pt;}
.y63{bottom:219.714667pt;}
.ycd{bottom:221.693333pt;}
.y56{bottom:223.866667pt;}
.y6b{bottom:226.114667pt;}
.y95{bottom:229.146667pt;}
.ybd{bottom:231.706667pt;}
.y37{bottom:233.626667pt;}
.y62{bottom:236.674667pt;}
.y55{bottom:239.226667pt;}
.y6a{bottom:242.914667pt;}
.yd8{bottom:245.826667pt;}
.yce{bottom:246.746667pt;}
.y94{bottom:248.026667pt;}
.y36{bottom:248.986667pt;}
.y133{bottom:249.946667pt;}
.ybe{bottom:253.440000pt;}
.y61{bottom:253.474667pt;}
.y54{bottom:254.586667pt;}
.y69{bottom:259.714667pt;}
.y93{bottom:263.386667pt;}
.y35{bottom:264.346667pt;}
.y132{bottom:265.146667pt;}
.y53{bottom:269.946667pt;}
.y60{bottom:270.434667pt;}
.yd9{bottom:272.666667pt;}
.y91{bottom:276.506667pt;}
.y68{bottom:276.674667pt;}
.yc0{bottom:278.493333pt;}
.y34{bottom:279.706667pt;}
.y131{bottom:280.506667pt;}
.y52{bottom:285.146667pt;}
.y33{bottom:295.066667pt;}
.y130{bottom:295.866667pt;}
.yda{bottom:297.733333pt;}
.y51{bottom:300.546667pt;}
.yc5{bottom:305.026667pt;}
.y32{bottom:310.306667pt;}
.y12f{bottom:311.266667pt;}
.yb3{bottom:312.226667pt;}
.y8e{bottom:314.466667pt;}
.y50{bottom:315.906667pt;}
.yc4{bottom:317.506667pt;}
.yd0{bottom:317.600000pt;}
.yb2{bottom:324.706667pt;}
.yb4{bottom:324.800000pt;}
.y31{bottom:325.666667pt;}
.y12e{bottom:326.626667pt;}
.y4f{bottom:331.266667pt;}
.y8c{bottom:333.666667pt;}
.y30{bottom:341.026667pt;}
.y12d{bottom:341.986667pt;}
.y4e{bottom:346.626667pt;}
.y2f{bottom:356.386667pt;}
.y12c{bottom:357.186667pt;}
.y106{bottom:359.906667pt;}
.y4d{bottom:361.986667pt;}
.y8b{bottom:363.906667pt;}
.y2e{bottom:371.746667pt;}
.y12b{bottom:372.546667pt;}
.y105{bottom:375.266667pt;}
.y4c{bottom:377.186667pt;}
.y2d{bottom:386.946667pt;}
.y12a{bottom:387.906667pt;}
.y104{bottom:390.626667pt;}
.y4b{bottom:392.546667pt;}
.y89{bottom:393.986667pt;}
.y2c{bottom:402.306667pt;}
.y103{bottom:402.946667pt;}
.y129{bottom:403.266667pt;}
.y110{bottom:406.626667pt;}
.y4a{bottom:407.906667pt;}
.y2b{bottom:417.666667pt;}
.y128{bottom:418.626667pt;}
.y10f{bottom:421.826667pt;}
.y49{bottom:423.266667pt;}
.y87{bottom:424.706667pt;}
.ye4{bottom:426.946667pt;}
.y2a{bottom:433.026667pt;}
.y127{bottom:433.986667pt;}
.y48{bottom:435.746667pt;}
.y10e{bottom:437.186667pt;}
.ye3{bottom:442.306667pt;}
.y29{bottom:448.386667pt;}
.y126{bottom:449.186667pt;}
.yfa{bottom:450.626667pt;}
.y10d{bottom:452.546667pt;}
.ye2{bottom:457.506667pt;}
.y86{bottom:457.666667pt;}
.y28{bottom:463.746667pt;}
.y125{bottom:464.546667pt;}
.y10c{bottom:465.026667pt;}
.yf9{bottom:465.986667pt;}
.ye1{bottom:469.986667pt;}
.y85{bottom:473.026667pt;}
.y27{bottom:478.946667pt;}
.y124{bottom:479.906667pt;}
.yf8{bottom:481.346667pt;}
.y84{bottom:488.386667pt;}
.yf7{bottom:493.826667pt;}
.y123{bottom:495.266667pt;}
.y26{bottom:495.426667pt;}
.y83{bottom:503.746667pt;}
.y122{bottom:510.626667pt;}
.y25{bottom:510.786667pt;}
.y82{bottom:519.106667pt;}
.y121{bottom:525.826667pt;}
.y24{bottom:525.986667pt;}
.y81{bottom:534.466667pt;}
.y120{bottom:541.213333pt;}
.y23{bottom:541.373333pt;}
.y80{bottom:550.653333pt;}
.y11f{bottom:556.573333pt;}
.y22{bottom:556.733333pt;}
.y7f{bottom:566.013333pt;}
.y11e{bottom:571.933333pt;}
.y21{bottom:572.093333pt;}
.y7e{bottom:581.373333pt;}
.y11d{bottom:587.293333pt;}
.y20{bottom:587.453333pt;}
.y7d{bottom:597.693333pt;}
.y11c{bottom:602.653333pt;}
.y1f{bottom:602.813333pt;}
.y7c{bottom:613.053333pt;}
.y11b{bottom:617.853333pt;}
.y1e{bottom:618.013333pt;}
.yf6{bottom:620.733333pt;}
.y7b{bottom:628.253333pt;}
.y10b{bottom:630.653333pt;}
.y11a{bottom:633.213333pt;}
.y1d{bottom:633.373333pt;}
.yb1{bottom:634.013333pt;}
.yf5{bottom:635.933333pt;}
.ye0{bottom:638.973333pt;}
.y7a{bottom:644.573333pt;}
.y10a{bottom:645.853333pt;}
.yc3{bottom:646.013333pt;}
.y119{bottom:648.573333pt;}
.y1c{bottom:648.733333pt;}
.yb0{bottom:649.213333pt;}
.yf4{bottom:651.293333pt;}
.ydf{bottom:654.333333pt;}
.y102{bottom:655.933333pt;}
.yc2{bottom:658.493333pt;}
.yc6{bottom:658.560000pt;}
.y79{bottom:659.933333pt;}
.y109{bottom:661.213333pt;}
.yaf{bottom:662.333333pt;}
.y118{bottom:663.933333pt;}
.y1b{bottom:664.093333pt;}
.yf3{bottom:666.653333pt;}
.yde{bottom:669.533333pt;}
.y101{bottom:671.293333pt;}
.y108{bottom:673.693333pt;}
.y78{bottom:675.293333pt;}
.yae{bottom:678.333333pt;}
.yf2{bottom:679.133333pt;}
.y117{bottom:679.293333pt;}
.y1a{bottom:679.453333pt;}
.ydd{bottom:684.893333pt;}
.y100{bottom:686.653333pt;}
.y77{bottom:690.653333pt;}
.yad{bottom:694.333333pt;}
.y116{bottom:694.653333pt;}
.y19{bottom:694.813333pt;}
.yff{bottom:698.973333pt;}
.ydc{bottom:700.253333pt;}
.y76{bottom:706.013333pt;}
.y115{bottom:706.973333pt;}
.y18{bottom:710.013333pt;}
.yac{bottom:710.333333pt;}
.ydb{bottom:712.733333pt;}
.ye9{bottom:712.800000pt;}
.y75{bottom:721.213333pt;}
.yab{bottom:726.333333pt;}
.y17{bottom:727.613333pt;}
.y74{bottom:736.573333pt;}
.yaa{bottom:742.333333pt;}
.y16{bottom:744.573333pt;}
.y73{bottom:751.933333pt;}
.ya9{bottom:758.333333pt;}
.y15{bottom:761.533333pt;}
.y72{bottom:767.293333pt;}
.ya8{bottom:777.253333pt;}
.y14{bottom:778.373333pt;}
.y71{bottom:782.693333pt;}
.ya7{bottom:792.613333pt;}
.y13{bottom:795.333333pt;}
.y70{bottom:797.893333pt;}
.ya6{bottom:805.733333pt;}
.y12{bottom:812.133333pt;}
.y47{bottom:813.253333pt;}
.ya5{bottom:821.733333pt;}
.y46{bottom:828.613333pt;}
.y11{bottom:829.093333pt;}
.ya4{bottom:837.733333pt;}
.y45{bottom:843.973333pt;}
.y10{bottom:845.893333pt;}
.ya3{bottom:853.733333pt;}
.y44{bottom:859.333333pt;}
.yf{bottom:863.013333pt;}
.ya2{bottom:869.733333pt;}
.y43{bottom:874.693333pt;}
.ye{bottom:881.413333pt;}
.ya1{bottom:885.733333pt;}
.y42{bottom:889.893333pt;}
.yd{bottom:899.813333pt;}
.ya0{bottom:901.733333pt;}
.y41{bottom:905.253333pt;}
.yc{bottom:918.213333pt;}
.y40{bottom:920.613333pt;}
.y9{bottom:936.293333pt;}
.y8{bottom:952.613333pt;}
.y7{bottom:966.693333pt;}
.y6{bottom:982.533333pt;}
.y5{bottom:997.413333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h11{height:15.360000pt;}
.h10{height:17.920000pt;}
.he{height:18.560000pt;}
.hf{height:18.752000pt;}
.hc{height:29.440000pt;}
.hd{height:30.080000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.672812pt;}
.h3{height:41.112500pt;}
.h7{height:41.543750pt;}
.h19{height:42.691250pt;}
.hb{height:43.108125pt;}
.h4{height:45.156250pt;}
.h13{height:47.742188pt;}
.h14{height:47.869500pt;}
.h15{height:74.477812pt;}
.h18{height:220.320000pt;}
.h16{height:274.560000pt;}
.h8{height:284.026667pt;}
.h9{height:290.266667pt;}
.h12{height:306.400000pt;}
.h17{height:325.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:75.840000pt;}
.w7{width:81.920000pt;}
.wa{width:99.520000pt;}
.wb{width:99.552000pt;}
.w8{width:107.872000pt;}
.w6{width:110.272000pt;}
.w5{width:112.512000pt;}
.w4{width:116.160000pt;}
.w3{width:305.986667pt;}
.we{width:591.360000pt;}
.wf{width:594.880000pt;}
.wd{width:603.360000pt;}
.wc{width:605.920000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x3d{left:8.672000pt;}
.x16{left:9.600000pt;}
.x35{left:12.160000pt;}
.x3c{left:14.784000pt;}
.x37{left:16.640000pt;}
.x2c{left:19.200000pt;}
.x25{left:21.920000pt;}
.x21{left:23.200000pt;}
.x32{left:24.160000pt;}
.x28{left:25.920000pt;}
.x23{left:28.320000pt;}
.x1e{left:29.280000pt;}
.x30{left:32.026667pt;}
.x34{left:33.600000pt;}
.x36{left:34.720000pt;}
.x29{left:38.880000pt;}
.x27{left:40.000000pt;}
.x26{left:41.320000pt;}
.x48{left:52.800000pt;}
.x44{left:53.760000pt;}
.x3e{left:59.546667pt;}
.x2b{left:89.152000pt;}
.x1b{left:92.992000pt;}
.x1{left:96.031988pt;}
.x4d{left:99.360000pt;}
.x47{left:101.120000pt;}
.x15{left:109.632000pt;}
.x2{left:119.551988pt;}
.xe{left:129.151988pt;}
.x4{left:139.706655pt;}
.x18{left:144.026655pt;}
.x7{left:156.826655pt;}
.x49{left:167.973333pt;}
.x4f{left:169.733333pt;}
.x46{left:173.920000pt;}
.x40{left:175.266667pt;}
.x38{left:177.786655pt;}
.x2a{left:186.266655pt;}
.x2d{left:189.306667pt;}
.x8{left:192.826655pt;}
.x1a{left:195.226655pt;}
.x43{left:207.546655pt;}
.x1d{left:209.946667pt;}
.x3b{left:216.186655pt;}
.x39{left:224.986655pt;}
.x4e{left:226.626667pt;}
.x45{left:230.813333pt;}
.x3f{left:232.026667pt;}
.xc{left:276.866655pt;}
.x2e{left:289.506667pt;}
.x53{left:303.746655pt;}
.x19{left:310.946655pt;}
.x12{left:313.506655pt;}
.xf{left:320.706655pt;}
.x1f{left:323.106667pt;}
.x13{left:327.266655pt;}
.x11{left:337.026655pt;}
.x52{left:340.546655pt;}
.x4c{left:341.666655pt;}
.x51{left:343.906655pt;}
.xb{left:346.306655pt;}
.x50{left:348.066655pt;}
.x9{left:349.026655pt;}
.x6{left:352.386655pt;}
.x54{left:354.306655pt;}
.x5{left:366.466655pt;}
.x2f{left:389.666667pt;}
.xa{left:397.026655pt;}
.xd{left:401.506655pt;}
.x10{left:406.146655pt;}
.x20{left:434.013333pt;}
.x17{left:445.693333pt;}
.x3{left:460.733322pt;}
.x31{left:489.853333pt;}
.x22{left:516.573333pt;}
.x4b{left:535.933322pt;}
.x33{left:590.213333pt;}
.x24{left:625.093333pt;}
.x14{left:668.293322pt;}
.x42{left:692.613322pt;}
.x4a{left:694.373322pt;}
.x41{left:699.493322pt;}
.x3a{left:702.053322pt;}
}




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