
    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_b034c0caf205ea4196b0ccb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_be0441130f7582a6bfea8944.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_59e502d00ff7ab34a4562044.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4cc153ba0e08c9516a618fe9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-2.880000px;}
.ls3{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.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;}
}
.ws8{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.568000px;}
.ws7{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.832000px;}
.ws1{word-spacing:-14.616000px;}
.ws2{word-spacing:-14.328000px;}
.ws6{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.144000px;}
._4{margin-left:-9.360000px;}
._5{margin-left:-8.136000px;}
._6{margin-left:-5.472000px;}
._3{margin-left:-4.248000px;}
._2{margin-left:-3.048000px;}
._0{margin-left:-1.224000px;}
._1{width:1.272000px;}
._7{width:2.880000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:7.200000px;}
.yff{bottom:7.380000px;}
.y18{bottom:7.560000px;}
.y62{bottom:7.914000px;}
.y4a{bottom:7.920000px;}
.y15{bottom:8.100000px;}
.y6{bottom:8.280000px;}
.yef{bottom:8.310000px;}
.y146{bottom:8.325000px;}
.y5{bottom:8.460000px;}
.yee{bottom:8.490000px;}
.y145{bottom:8.505000px;}
.y61{bottom:8.634000px;}
.y57{bottom:8.640000px;}
.y39{bottom:8.820000px;}
.y11{bottom:9.720000px;}
.y3e{bottom:16.200000px;}
.y126{bottom:16.245000px;}
.y7c{bottom:16.380000px;}
.y15f{bottom:31.140000px;}
.y31{bottom:31.314000px;}
.y19{bottom:31.500000px;}
.y17{bottom:31.680000px;}
.y87{bottom:32.214000px;}
.y78{bottom:32.220000px;}
.yc9{bottom:32.265000px;}
.y45{bottom:32.400000px;}
.ya4{bottom:32.430000px;}
.y38{bottom:32.940000px;}
.y15d{bottom:34.200000px;}
.y10{bottom:35.100000px;}
.y52{bottom:35.460000px;}
.yec{bottom:35.490000px;}
.y30{bottom:55.254000px;}
.yf7{bottom:56.160000px;}
.y86{bottom:56.334000px;}
.y6d{bottom:56.340000px;}
.y89{bottom:56.370000px;}
.y70{bottom:56.385000px;}
.y37{bottom:57.060000px;}
.y15c{bottom:58.134000px;}
.yfd{bottom:58.314000px;}
.y13b{bottom:59.394000px;}
.y143{bottom:59.445000px;}
.yf{bottom:60.660000px;}
.y4d{bottom:65.160000px;}
.y5a{bottom:65.340000px;}
.y7f{bottom:65.385000px;}
.y2f{bottom:79.194000px;}
.y6c{bottom:80.280000px;}
.y170{bottom:80.310000px;}
.yd9{bottom:80.325000px;}
.y6f{bottom:80.505000px;}
.y36{bottom:81.000000px;}
.yfc{bottom:82.254000px;}
.ye2{bottom:83.160000px;}
.y94{bottom:83.340000px;}
.ye{bottom:86.085000px;}
.y65{bottom:86.760000px;}
.y42{bottom:89.280000px;}
.y4c{bottom:89.310000px;}
.y59{bottom:89.325000px;}
.y153{bottom:89.505000px;}
.y2e{bottom:103.134000px;}
.y6b{bottom:104.220000px;}
.y16f{bottom:104.250000px;}
.y12b{bottom:104.400000px;}
.y10b{bottom:104.445000px;}
.y35{bottom:104.970000px;}
.ycc{bottom:107.280000px;}
.yc1{bottom:110.700000px;}
.y15b{bottom:110.736000px;}
.yd{bottom:111.645000px;}
.y41{bottom:113.220000px;}
.y75{bottom:113.250000px;}
.y8f{bottom:113.265000px;}
.yac{bottom:113.400000px;}
.y13e{bottom:114.876000px;}
.ybf{bottom:115.956000px;}
.ydb{bottom:116.316000px;}
.y63{bottom:120.456000px;}
.y12{bottom:123.156000px;}
.y83{bottom:125.316000px;}
.y2d{bottom:127.074000px;}
.yfb{bottom:127.836000px;}
.y11d{bottom:128.160000px;}
.y182{bottom:128.340000px;}
.y150{bottom:128.370000px;}
.y9d{bottom:129.096000px;}
.y115{bottom:131.616000px;}
.y17b{bottom:136.476000px;}
.yc{bottom:137.025000px;}
.yf4{bottom:137.160000px;}
.y12e{bottom:137.190000px;}
.y136{bottom:137.205000px;}
.yab{bottom:137.340000px;}
.y13a{bottom:140.256000px;}
.ybe{bottom:142.956000px;}
.y60{bottom:147.456000px;}
.y2c{bottom:151.194000px;}
.y11c{bottom:152.280000px;}
.y14f{bottom:152.310000px;}
.ya2{bottom:153.750000px;}
.y84{bottom:155.154000px;}
.y118{bottom:158.610000px;}
.y15e{bottom:160.590000px;}
.y108{bottom:161.145000px;}
.y129{bottom:161.280000px;}
.y16c{bottom:161.310000px;}
.y17a{bottom:161.850000px;}
.yb{bottom:162.405000px;}
.y13d{bottom:165.810000px;}
.ybd{bottom:170.670000px;}
.y2b{bottom:175.134000px;}
.y5f{bottom:175.170000px;}
.y11b{bottom:176.220000px;}
.yda{bottom:178.770000px;}
.ya1{bottom:179.130000px;}
.y172{bottom:180.390000px;}
.y10e{bottom:182.190000px;}
.y128{bottom:185.220000px;}
.y16b{bottom:185.250000px;}
.y107{bottom:185.265000px;}
.y15a{bottom:187.590000px;}
.ya{bottom:187.965000px;}
.y13c{bottom:191.190000px;}
.yd5{bottom:197.130000px;}
.y2a{bottom:199.074000px;}
.y85{bottom:200.190000px;}
.y11a{bottom:200.205000px;}
.yfe{bottom:201.630000px;}
.yd6{bottom:206.325000px;}
.y14c{bottom:209.190000px;}
.yb8{bottom:209.205000px;}
.y17f{bottom:209.385000px;}
.y9{bottom:213.345000px;}
.y8{bottom:213.525000px;}
.y159{bottom:215.130000px;}
.y135{bottom:216.750000px;}
.y29{bottom:223.059000px;}
.y119{bottom:224.145000px;}
.ya0{bottom:228.630000px;}
.y179{bottom:231.330000px;}
.ybc{bottom:233.130000px;}
.y5e{bottom:237.630000px;}
.y139{bottom:243.570000px;}
.y28{bottom:246.999000px;}
.yb7{bottom:251.490000px;}
.y117{bottom:254.199000px;}
.y58{bottom:255.990000px;}
.yfa{bottom:256.350000px;}
.y138{bottom:270.570000px;}
.y27{bottom:271.119000px;}
.y158{bottom:277.770000px;}
.y116{bottom:278.139000px;}
.y69{bottom:278.145000px;}
.y9e{bottom:278.859000px;}
.y178{bottom:282.270000px;}
.y5d{bottom:282.990000px;}
.y26{bottom:295.059000px;}
.yd8{bottom:296.130000px;}
.y7e{bottom:297.570000px;}
.y9f{bottom:302.070000px;}
.y157{bottom:303.150000px;}
.y185{bottom:304.950000px;}
.y177{bottom:309.270000px;}
.y5c{bottom:309.990000px;}
.y173{bottom:313.965000px;}
.yf9{bottom:318.810000px;}
.y25{bottom:318.999000px;}
.y152{bottom:321.510000px;}
.y82{bottom:324.570000px;}
.y5b{bottom:337.035000px;}
.yf3{bottom:337.395000px;}
.y24{bottom:342.939000px;}
.y137{bottom:345.675000px;}
.y156{bottom:348.555000px;}
.ybb{bottom:350.535000px;}
.y81{bottom:351.615000px;}
.y176{bottom:360.255000px;}
.y56{bottom:364.035000px;}
.yf8{bottom:364.395000px;}
.y23{bottom:366.879000px;}
.y134{bottom:372.495000px;}
.y155{bottom:375.555000px;}
.y80{bottom:378.615000px;}
.y22{bottom:390.999000px;}
.yf6{bottom:391.395000px;}
.y55{bottom:391.755000px;}
.yd7{bottom:394.995000px;}
.y133{bottom:400.215000px;}
.yba{bottom:401.475000px;}
.y154{bottom:402.555000px;}
.y7d{bottom:405.615000px;}
.y175{bottom:411.195000px;}
.y21{bottom:414.939000px;}
.yd1{bottom:420.555000px;}
.y99{bottom:425.055000px;}
.y14b{bottom:428.115000px;}
.y114{bottom:428.295000px;}
.y7b{bottom:433.155000px;}
.y20{bottom:438.879000px;}
.yd4{bottom:447.555000px;}
.y9c{bottom:452.055000px;}
.yb9{bottom:452.415000px;}
.y54{bottom:454.215000px;}
.y151{bottom:454.935000px;}
.y113{bottom:456.015000px;}
.y174{bottom:462.135000px;}
.y1f{bottom:462.819000px;}
.y132{bottom:462.855000px;}
.yf5{bottom:466.275000px;}
.y51{bottom:472.575000px;}
.yd3{bottom:474.375000px;}
.yb3{bottom:477.795000px;}
.y9b{bottom:478.875000px;}
.y12d{bottom:481.215000px;}
.y14e{bottom:481.935000px;}
.y1e{bottom:486.789000px;}
.y18c{bottom:491.295000px;}
.yf2{bottom:493.275000px;}
.y7a{bottom:495.795000px;}
.y53{bottom:499.575000px;}
.yb6{bottom:504.795000px;}
.y18b{bottom:509.655000px;}
.y1d{bottom:510.909000px;}
.y16a{bottom:511.455000px;}
.y74{bottom:514.155000px;}
.y112{bottom:518.655000px;}
.yf1{bottom:520.995000px;}
.y4b{bottom:525.135000px;}
.yd2{bottom:525.495000px;}
.y9a{bottom:529.995000px;}
.yb5{bottom:531.795000px;}
.y1c{bottom:534.849000px;}
.y184{bottom:535.215000px;}
.y111{bottom:537.015000px;}
.y171{bottom:538.455000px;}
.y79{bottom:541.155000px;}
.y50{bottom:551.955000px;}
.yd0{bottom:552.315000px;}
.y131{bottom:556.095000px;}
.y98{bottom:556.815000px;}
.y1b{bottom:558.789000px;}
.y10d{bottom:562.575000px;}
.y16e{bottom:565.455000px;}
.y77{bottom:568.155000px;}
.y4f{bottom:578.955000px;}
.ycf{bottom:580.035000px;}
.y33{bottom:582.549000px;}
.y1a{bottom:582.729000px;}
.yb4{bottom:582.735000px;}
.y130{bottom:583.095000px;}
.yf0{bottom:583.455000px;}
.y97{bottom:584.535000px;}
.y110{bottom:587.955000px;}
.yeb{bottom:601.815000px;}
.y4e{bottom:605.985000px;}
.yb2{bottom:609.765000px;}
.y12f{bottom:610.125000px;}
.y76{bottom:619.125000px;}
.yed{bottom:628.845000px;}
.y49{bottom:632.985000px;}
.y18a{bottom:634.065000px;}
.y127{bottom:635.505000px;}
.yb1{bottom:637.485000px;}
.yce{bottom:642.705000px;}
.y73{bottom:646.125000px;}
.y96{bottom:647.205000px;}
.y14d{bottom:652.785000px;}
.ye7{bottom:654.405000px;}
.y13{bottom:656.889000px;}
.y189{bottom:659.625000px;}
.y48{bottom:660.705000px;}
.ycb{bottom:661.065000px;}
.y12c{bottom:662.505000px;}
.y93{bottom:665.565000px;}
.y72{bottom:673.845000px;}
.y14a{bottom:679.785000px;}
.yea{bottom:681.225000px;}
.y10f{bottom:686.805000px;}
.y16d{bottom:688.425000px;}
.y12a{bottom:689.505000px;}
.yb0{bottom:699.945000px;}
.y149{bottom:707.505000px;}
.ye9{bottom:708.225000px;}
.y188{bottom:708.945000px;}
.y169{bottom:715.425000px;}
.y95{bottom:716.505000px;}
.yaa{bottom:718.305000px;}
.y16{bottom:722.985000px;}
.y47{bottom:723.165000px;}
.ycd{bottom:735.945000px;}
.y71{bottom:736.305000px;}
.y40{bottom:741.705000px;}
.y168{bottom:743.145000px;}
.yaf{bottom:745.305000px;}
.y68{bottom:754.665000px;}
.y187{bottom:758.445000px;}
.ye8{bottom:759.165000px;}
.y106{bottom:761.865000px;}
.y8e{bottom:766.005000px;}
.y46{bottom:768.525000px;}
.y148{bottom:769.965000px;}
.y14{bottom:771.765000px;}
.yae{bottom:772.305000px;}
.yc6{bottom:785.445000px;}
.ye6{bottom:786.165000px;}
.y147{bottom:788.505000px;}
.y10c{bottom:788.865000px;}
.y92{bottom:793.005000px;}
.y44{bottom:795.525000px;}
.y7{bottom:797.145000px;}
.y167{bottom:805.605000px;}
.y186{bottom:807.945000px;}
.yca{bottom:812.445000px;}
.ye5{bottom:813.885000px;}
.y10a{bottom:815.685000px;}
.y91{bottom:819.825000px;}
.y163{bottom:823.965000px;}
.y6e{bottom:829.545000px;}
.yc8{bottom:839.445000px;}
.y43{bottom:846.465000px;}
.yad{bottom:847.185000px;}
.y166{bottom:850.965000px;}
.y17e{bottom:857.265000px;}
.y144{bottom:864.825000px;}
.y125{bottom:867.165000px;}
.y90{bottom:870.810000px;}
.y3f{bottom:873.510000px;}
.ya9{bottom:874.230000px;}
.ye4{bottom:876.390000px;}
.y165{bottom:878.010000px;}
.y183{bottom:884.310000px;}
.yc7{bottom:890.430000px;}
.ye1{bottom:894.930000px;}
.y8d{bottom:897.810000px;}
.y3d{bottom:901.230000px;}
.ya8{bottom:901.950000px;}
.y164{bottom:905.010000px;}
.y181{bottom:911.310000px;}
.yc5{bottom:917.430000px;}
.y8c{bottom:925.530000px;}
.y6a{bottom:928.590000px;}
.y124{bottom:929.670000px;}
.y162{bottom:930.390000px;}
.y109{bottom:938.670000px;}
.y142{bottom:944.430000px;}
.yc4{bottom:944.970000px;}
.y123{bottom:955.050000px;}
.y161{bottom:957.390000px;}
.y3c{bottom:963.690000px;}
.ya7{bottom:964.410000px;}
.y105{bottom:965.670000px;}
.ye3{bottom:969.810000px;}
.y11f{bottom:973.590000px;}
.y3b{bottom:982.230000px;}
.ya6{bottom:982.950000px;}
.y160{bottom:984.390000px;}
.y8b{bottom:987.990000px;}
.y104{bottom:993.390000px;}
.ydd{bottom:995.190000px;}
.y141{bottom:995.370000px;}
.y8a{bottom:1006.530000px;}
.y3a{bottom:1007.610000px;}
.ye0{bottom:1022.190000px;}
.yc0{bottom:1025.970000px;}
.y4{bottom:1027.770000px;}
.y34{bottom:1033.170000px;}
.y122{bottom:1048.470000px;}
.ydf{bottom:1049.190000px;}
.y64{bottom:1049.910000px;}
.yc3{bottom:1052.970000px;}
.y103{bottom:1055.850000px;}
.ya5{bottom:1056.390000px;}
.y180{bottom:1058.190000px;}
.y102{bottom:1074.210000px;}
.y3{bottom:1075.290000px;}
.y121{bottom:1075.470000px;}
.y67{bottom:1076.910000px;}
.yc2{bottom:1079.970000px;}
.y88{bottom:1081.410000px;}
.y17d{bottom:1085.190000px;}
.yde{bottom:1100.130000px;}
.y101{bottom:1101.210000px;}
.y120{bottom:1102.470000px;}
.y66{bottom:1103.910000px;}
.ya3{bottom:1105.710000px;}
.y140{bottom:1112.550000px;}
.y2{bottom:1112.730000px;}
.y17c{bottom:1112.910000px;}
.ydc{bottom:1127.130000px;}
.y11e{bottom:1127.850000px;}
.y100{bottom:1128.210000px;}
.y1{bottom:1136.850000px;}
.y13f{bottom:1137.960000px;}
.h24{height:24.660000px;}
.h36{height:25.236000px;}
.h8{height:25.380000px;}
.h1c{height:25.416000px;}
.h4{height:25.560000px;}
.hf{height:25.596000px;}
.h13{height:26.100000px;}
.hd{height:26.280000px;}
.h2e{height:26.316000px;}
.hc{height:41.940000px;}
.h21{height:41.976000px;}
.h1b{height:42.120000px;}
.h44{height:48.240000px;}
.h9{height:48.780000px;}
.h25{height:49.176000px;}
.h26{height:49.320000px;}
.h1a{height:49.356000px;}
.h10{height:49.500000px;}
.h15{height:49.536000px;}
.h12{height:52.560000px;}
.h31{height:52.596000px;}
.h2{height:58.921875px;}
.h3{height:62.226562px;}
.h5{height:64.546875px;}
.h35{height:72.360000px;}
.h33{height:73.260000px;}
.h19{height:73.440000px;}
.h1f{height:73.476000px;}
.h43{height:75.240000px;}
.h3e{height:76.500000px;}
.h3f{height:76.536000px;}
.h1e{height:97.380000px;}
.h2a{height:97.416000px;}
.h18{height:97.596000px;}
.h34{height:99.360000px;}
.h30{height:100.260000px;}
.h20{height:100.440000px;}
.h14{height:103.536000px;}
.h11{height:106.416000px;}
.h42{height:106.596000px;}
.h17{height:121.320000px;}
.h46{height:121.356000px;}
.h3c{height:121.500000px;}
.h38{height:121.536000px;}
.hb{height:121.716000px;}
.h2c{height:124.380000px;}
.h2b{height:127.476000px;}
.h22{height:130.320000px;}
.he{height:130.356000px;}
.h2f{height:130.500000px;}
.h28{height:130.536000px;}
.h49{height:145.440000px;}
.h32{height:154.260000px;}
.h3d{height:154.290000px;}
.h27{height:154.470000px;}
.h45{height:169.050000px;}
.h41{height:169.410000px;}
.h1d{height:172.260000px;}
.h39{height:199.290000px;}
.h3b{height:202.320000px;}
.h37{height:202.350000px;}
.h2d{height:223.410000px;}
.h29{height:226.290000px;}
.h48{height:226.470000px;}
.h6{height:230.610000px;}
.h3a{height:241.230000px;}
.h40{height:250.230000px;}
.h16{height:295.230000px;}
.h23{height:295.950000px;}
.h4a{height:322.050000px;}
.h47{height:331.050000px;}
.ha{height:599.835000px;}
.h7{height:673.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:73.980000px;}
.wb{width:76.536000px;}
.wd{width:85.320000px;}
.w11{width:118.440000px;}
.w9{width:119.700000px;}
.wf{width:122.400000px;}
.wa{width:132.660000px;}
.w6{width:203.970000px;}
.w4{width:206.670000px;}
.w8{width:209.190000px;}
.w3{width:277.950000px;}
.wc{width:294.510000px;}
.w10{width:327.630000px;}
.w7{width:329.070000px;}
.we{width:331.590000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.060000px;}
.x23{left:4.140000px;}
.x22{left:5.220000px;}
.xa{left:6.660000px;}
.xd{left:8.820000px;}
.x18{left:10.800000px;}
.x19{left:12.780000px;}
.x2c{left:14.220000px;}
.x7{left:15.300000px;}
.x25{left:16.380000px;}
.x4{left:17.820000px;}
.x1a{left:18.900000px;}
.x9{left:20.340000px;}
.x1d{left:21.420000px;}
.x5{left:22.860000px;}
.x8{left:24.840000px;}
.x14{left:26.460000px;}
.x27{left:27.540000px;}
.x2b{left:28.620000px;}
.x21{left:29.700000px;}
.x2e{left:30.780000px;}
.x1f{left:31.860000px;}
.x1e{left:33.300000px;}
.x15{left:34.560000px;}
.x16{left:36.000000px;}
.x17{left:37.800000px;}
.x20{left:38.880000px;}
.x11{left:39.960000px;}
.x1b{left:41.220000px;}
.x6{left:43.740000px;}
.x24{left:45.720000px;}
.x2d{left:47.340000px;}
.x26{left:48.780000px;}
.x2a{left:49.860000px;}
.x28{left:51.840000px;}
.x29{left:53.280000px;}
.x13{left:55.080000px;}
.x1c{left:56.340000px;}
.xf{left:59.580000px;}
.xb{left:88.410000px;}
.xe{left:102.810000px;}
.x1{left:108.035987px;}
.xc{left:182.010000px;}
.x12{left:240.690000px;}
.x10{left:317.235000px;}
.x3{left:385.995000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.560000pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.616000pt;}
.ws7{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.184000pt;}
.ws1{word-spacing:-12.992000pt;}
.ws2{word-spacing:-12.736000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.128000pt;}
._4{margin-left:-8.320000pt;}
._5{margin-left:-7.232000pt;}
._6{margin-left:-4.864000pt;}
._3{margin-left:-3.776000pt;}
._2{margin-left:-2.709333pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.130667pt;}
._7{width:2.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:6.400000pt;}
.yff{bottom:6.560000pt;}
.y18{bottom:6.720000pt;}
.y62{bottom:7.034667pt;}
.y4a{bottom:7.040000pt;}
.y15{bottom:7.200000pt;}
.y6{bottom:7.360000pt;}
.yef{bottom:7.386667pt;}
.y146{bottom:7.400000pt;}
.y5{bottom:7.520000pt;}
.yee{bottom:7.546667pt;}
.y145{bottom:7.560000pt;}
.y61{bottom:7.674667pt;}
.y57{bottom:7.680000pt;}
.y39{bottom:7.840000pt;}
.y11{bottom:8.640000pt;}
.y3e{bottom:14.400000pt;}
.y126{bottom:14.440000pt;}
.y7c{bottom:14.560000pt;}
.y15f{bottom:27.680000pt;}
.y31{bottom:27.834667pt;}
.y19{bottom:28.000000pt;}
.y17{bottom:28.160000pt;}
.y87{bottom:28.634667pt;}
.y78{bottom:28.640000pt;}
.yc9{bottom:28.680000pt;}
.y45{bottom:28.800000pt;}
.ya4{bottom:28.826667pt;}
.y38{bottom:29.280000pt;}
.y15d{bottom:30.400000pt;}
.y10{bottom:31.200000pt;}
.y52{bottom:31.520000pt;}
.yec{bottom:31.546667pt;}
.y30{bottom:49.114667pt;}
.yf7{bottom:49.920000pt;}
.y86{bottom:50.074667pt;}
.y6d{bottom:50.080000pt;}
.y89{bottom:50.106667pt;}
.y70{bottom:50.120000pt;}
.y37{bottom:50.720000pt;}
.y15c{bottom:51.674667pt;}
.yfd{bottom:51.834667pt;}
.y13b{bottom:52.794667pt;}
.y143{bottom:52.840000pt;}
.yf{bottom:53.920000pt;}
.y4d{bottom:57.920000pt;}
.y5a{bottom:58.080000pt;}
.y7f{bottom:58.120000pt;}
.y2f{bottom:70.394667pt;}
.y6c{bottom:71.360000pt;}
.y170{bottom:71.386667pt;}
.yd9{bottom:71.400000pt;}
.y6f{bottom:71.560000pt;}
.y36{bottom:72.000000pt;}
.yfc{bottom:73.114667pt;}
.ye2{bottom:73.920000pt;}
.y94{bottom:74.080000pt;}
.ye{bottom:76.520000pt;}
.y65{bottom:77.120000pt;}
.y42{bottom:79.360000pt;}
.y4c{bottom:79.386667pt;}
.y59{bottom:79.400000pt;}
.y153{bottom:79.560000pt;}
.y2e{bottom:91.674667pt;}
.y6b{bottom:92.640000pt;}
.y16f{bottom:92.666667pt;}
.y12b{bottom:92.800000pt;}
.y10b{bottom:92.840000pt;}
.y35{bottom:93.306667pt;}
.ycc{bottom:95.360000pt;}
.yc1{bottom:98.400000pt;}
.y15b{bottom:98.432000pt;}
.yd{bottom:99.240000pt;}
.y41{bottom:100.640000pt;}
.y75{bottom:100.666667pt;}
.y8f{bottom:100.680000pt;}
.yac{bottom:100.800000pt;}
.y13e{bottom:102.112000pt;}
.ybf{bottom:103.072000pt;}
.ydb{bottom:103.392000pt;}
.y63{bottom:107.072000pt;}
.y12{bottom:109.472000pt;}
.y83{bottom:111.392000pt;}
.y2d{bottom:112.954667pt;}
.yfb{bottom:113.632000pt;}
.y11d{bottom:113.920000pt;}
.y182{bottom:114.080000pt;}
.y150{bottom:114.106667pt;}
.y9d{bottom:114.752000pt;}
.y115{bottom:116.992000pt;}
.y17b{bottom:121.312000pt;}
.yc{bottom:121.800000pt;}
.yf4{bottom:121.920000pt;}
.y12e{bottom:121.946667pt;}
.y136{bottom:121.960000pt;}
.yab{bottom:122.080000pt;}
.y13a{bottom:124.672000pt;}
.ybe{bottom:127.072000pt;}
.y60{bottom:131.072000pt;}
.y2c{bottom:134.394667pt;}
.y11c{bottom:135.360000pt;}
.y14f{bottom:135.386667pt;}
.ya2{bottom:136.666667pt;}
.y84{bottom:137.914667pt;}
.y118{bottom:140.986667pt;}
.y15e{bottom:142.746667pt;}
.y108{bottom:143.240000pt;}
.y129{bottom:143.360000pt;}
.y16c{bottom:143.386667pt;}
.y17a{bottom:143.866667pt;}
.yb{bottom:144.360000pt;}
.y13d{bottom:147.386667pt;}
.ybd{bottom:151.706667pt;}
.y2b{bottom:155.674667pt;}
.y5f{bottom:155.706667pt;}
.y11b{bottom:156.640000pt;}
.yda{bottom:158.906667pt;}
.ya1{bottom:159.226667pt;}
.y172{bottom:160.346667pt;}
.y10e{bottom:161.946667pt;}
.y128{bottom:164.640000pt;}
.y16b{bottom:164.666667pt;}
.y107{bottom:164.680000pt;}
.y15a{bottom:166.746667pt;}
.ya{bottom:167.080000pt;}
.y13c{bottom:169.946667pt;}
.yd5{bottom:175.226667pt;}
.y2a{bottom:176.954667pt;}
.y85{bottom:177.946667pt;}
.y11a{bottom:177.960000pt;}
.yfe{bottom:179.226667pt;}
.yd6{bottom:183.400000pt;}
.y14c{bottom:185.946667pt;}
.yb8{bottom:185.960000pt;}
.y17f{bottom:186.120000pt;}
.y9{bottom:189.640000pt;}
.y8{bottom:189.800000pt;}
.y159{bottom:191.226667pt;}
.y135{bottom:192.666667pt;}
.y29{bottom:198.274667pt;}
.y119{bottom:199.240000pt;}
.ya0{bottom:203.226667pt;}
.y179{bottom:205.626667pt;}
.ybc{bottom:207.226667pt;}
.y5e{bottom:211.226667pt;}
.y139{bottom:216.506667pt;}
.y28{bottom:219.554667pt;}
.yb7{bottom:223.546667pt;}
.y117{bottom:225.954667pt;}
.y58{bottom:227.546667pt;}
.yfa{bottom:227.866667pt;}
.y138{bottom:240.506667pt;}
.y27{bottom:240.994667pt;}
.y158{bottom:246.906667pt;}
.y116{bottom:247.234667pt;}
.y69{bottom:247.240000pt;}
.y9e{bottom:247.874667pt;}
.y178{bottom:250.906667pt;}
.y5d{bottom:251.546667pt;}
.y26{bottom:262.274667pt;}
.yd8{bottom:263.226667pt;}
.y7e{bottom:264.506667pt;}
.y9f{bottom:268.506667pt;}
.y157{bottom:269.466667pt;}
.y185{bottom:271.066667pt;}
.y177{bottom:274.906667pt;}
.y5c{bottom:275.546667pt;}
.y173{bottom:279.080000pt;}
.yf9{bottom:283.386667pt;}
.y25{bottom:283.554667pt;}
.y152{bottom:285.786667pt;}
.y82{bottom:288.506667pt;}
.y5b{bottom:299.586667pt;}
.yf3{bottom:299.906667pt;}
.y24{bottom:304.834667pt;}
.y137{bottom:307.266667pt;}
.y156{bottom:309.826667pt;}
.ybb{bottom:311.586667pt;}
.y81{bottom:312.546667pt;}
.y176{bottom:320.226667pt;}
.y56{bottom:323.586667pt;}
.yf8{bottom:323.906667pt;}
.y23{bottom:326.114667pt;}
.y134{bottom:331.106667pt;}
.y155{bottom:333.826667pt;}
.y80{bottom:336.546667pt;}
.y22{bottom:347.554667pt;}
.yf6{bottom:347.906667pt;}
.y55{bottom:348.226667pt;}
.yd7{bottom:351.106667pt;}
.y133{bottom:355.746667pt;}
.yba{bottom:356.866667pt;}
.y154{bottom:357.826667pt;}
.y7d{bottom:360.546667pt;}
.y175{bottom:365.506667pt;}
.y21{bottom:368.834667pt;}
.yd1{bottom:373.826667pt;}
.y99{bottom:377.826667pt;}
.y14b{bottom:380.546667pt;}
.y114{bottom:380.706667pt;}
.y7b{bottom:385.026667pt;}
.y20{bottom:390.114667pt;}
.yd4{bottom:397.826667pt;}
.y9c{bottom:401.826667pt;}
.yb9{bottom:402.146667pt;}
.y54{bottom:403.746667pt;}
.y151{bottom:404.386667pt;}
.y113{bottom:405.346667pt;}
.y174{bottom:410.786667pt;}
.y1f{bottom:411.394667pt;}
.y132{bottom:411.426667pt;}
.yf5{bottom:414.466667pt;}
.y51{bottom:420.066667pt;}
.yd3{bottom:421.666667pt;}
.yb3{bottom:424.706667pt;}
.y9b{bottom:425.666667pt;}
.y12d{bottom:427.746667pt;}
.y14e{bottom:428.386667pt;}
.y1e{bottom:432.701333pt;}
.y18c{bottom:436.706667pt;}
.yf2{bottom:438.466667pt;}
.y7a{bottom:440.706667pt;}
.y53{bottom:444.066667pt;}
.yb6{bottom:448.706667pt;}
.y18b{bottom:453.026667pt;}
.y1d{bottom:454.141333pt;}
.y16a{bottom:454.626667pt;}
.y74{bottom:457.026667pt;}
.y112{bottom:461.026667pt;}
.yf1{bottom:463.106667pt;}
.y4b{bottom:466.786667pt;}
.yd2{bottom:467.106667pt;}
.y9a{bottom:471.106667pt;}
.yb5{bottom:472.706667pt;}
.y1c{bottom:475.421333pt;}
.y184{bottom:475.746667pt;}
.y111{bottom:477.346667pt;}
.y171{bottom:478.626667pt;}
.y79{bottom:481.026667pt;}
.y50{bottom:490.626667pt;}
.yd0{bottom:490.946667pt;}
.y131{bottom:494.306667pt;}
.y98{bottom:494.946667pt;}
.y1b{bottom:496.701333pt;}
.y10d{bottom:500.066667pt;}
.y16e{bottom:502.626667pt;}
.y77{bottom:505.026667pt;}
.y4f{bottom:514.626667pt;}
.ycf{bottom:515.586667pt;}
.y33{bottom:517.821333pt;}
.y1a{bottom:517.981333pt;}
.yb4{bottom:517.986667pt;}
.y130{bottom:518.306667pt;}
.yf0{bottom:518.626667pt;}
.y97{bottom:519.586667pt;}
.y110{bottom:522.626667pt;}
.yeb{bottom:534.946667pt;}
.y4e{bottom:538.653333pt;}
.yb2{bottom:542.013333pt;}
.y12f{bottom:542.333333pt;}
.y76{bottom:550.333333pt;}
.yed{bottom:558.973333pt;}
.y49{bottom:562.653333pt;}
.y18a{bottom:563.613333pt;}
.y127{bottom:564.893333pt;}
.yb1{bottom:566.653333pt;}
.yce{bottom:571.293333pt;}
.y73{bottom:574.333333pt;}
.y96{bottom:575.293333pt;}
.y14d{bottom:580.253333pt;}
.ye7{bottom:581.693333pt;}
.y13{bottom:583.901333pt;}
.y189{bottom:586.333333pt;}
.y48{bottom:587.293333pt;}
.ycb{bottom:587.613333pt;}
.y12c{bottom:588.893333pt;}
.y93{bottom:591.613333pt;}
.y72{bottom:598.973333pt;}
.y14a{bottom:604.253333pt;}
.yea{bottom:605.533333pt;}
.y10f{bottom:610.493333pt;}
.y16d{bottom:611.933333pt;}
.y12a{bottom:612.893333pt;}
.yb0{bottom:622.173333pt;}
.y149{bottom:628.893333pt;}
.ye9{bottom:629.533333pt;}
.y188{bottom:630.173333pt;}
.y169{bottom:635.933333pt;}
.y95{bottom:636.893333pt;}
.yaa{bottom:638.493333pt;}
.y16{bottom:642.653333pt;}
.y47{bottom:642.813333pt;}
.ycd{bottom:654.173333pt;}
.y71{bottom:654.493333pt;}
.y40{bottom:659.293333pt;}
.y168{bottom:660.573333pt;}
.yaf{bottom:662.493333pt;}
.y68{bottom:670.813333pt;}
.y187{bottom:674.173333pt;}
.ye8{bottom:674.813333pt;}
.y106{bottom:677.213333pt;}
.y8e{bottom:680.893333pt;}
.y46{bottom:683.133333pt;}
.y148{bottom:684.413333pt;}
.y14{bottom:686.013333pt;}
.yae{bottom:686.493333pt;}
.yc6{bottom:698.173333pt;}
.ye6{bottom:698.813333pt;}
.y147{bottom:700.893333pt;}
.y10c{bottom:701.213333pt;}
.y92{bottom:704.893333pt;}
.y44{bottom:707.133333pt;}
.y7{bottom:708.573333pt;}
.y167{bottom:716.093333pt;}
.y186{bottom:718.173333pt;}
.yca{bottom:722.173333pt;}
.ye5{bottom:723.453333pt;}
.y10a{bottom:725.053333pt;}
.y91{bottom:728.733333pt;}
.y163{bottom:732.413333pt;}
.y6e{bottom:737.373333pt;}
.yc8{bottom:746.173333pt;}
.y43{bottom:752.413333pt;}
.yad{bottom:753.053333pt;}
.y166{bottom:756.413333pt;}
.y17e{bottom:762.013333pt;}
.y144{bottom:768.733333pt;}
.y125{bottom:770.813333pt;}
.y90{bottom:774.053333pt;}
.y3f{bottom:776.453333pt;}
.ya9{bottom:777.093333pt;}
.ye4{bottom:779.013333pt;}
.y165{bottom:780.453333pt;}
.y183{bottom:786.053333pt;}
.yc7{bottom:791.493333pt;}
.ye1{bottom:795.493333pt;}
.y8d{bottom:798.053333pt;}
.y3d{bottom:801.093333pt;}
.ya8{bottom:801.733333pt;}
.y164{bottom:804.453333pt;}
.y181{bottom:810.053333pt;}
.yc5{bottom:815.493333pt;}
.y8c{bottom:822.693333pt;}
.y6a{bottom:825.413333pt;}
.y124{bottom:826.373333pt;}
.y162{bottom:827.013333pt;}
.y109{bottom:834.373333pt;}
.y142{bottom:839.493333pt;}
.yc4{bottom:839.973333pt;}
.y123{bottom:848.933333pt;}
.y161{bottom:851.013333pt;}
.y3c{bottom:856.613333pt;}
.ya7{bottom:857.253333pt;}
.y105{bottom:858.373333pt;}
.ye3{bottom:862.053333pt;}
.y11f{bottom:865.413333pt;}
.y3b{bottom:873.093333pt;}
.ya6{bottom:873.733333pt;}
.y160{bottom:875.013333pt;}
.y8b{bottom:878.213333pt;}
.y104{bottom:883.013333pt;}
.ydd{bottom:884.613333pt;}
.y141{bottom:884.773333pt;}
.y8a{bottom:894.693333pt;}
.y3a{bottom:895.653333pt;}
.ye0{bottom:908.613333pt;}
.yc0{bottom:911.973333pt;}
.y4{bottom:913.573333pt;}
.y34{bottom:918.373333pt;}
.y122{bottom:931.973333pt;}
.ydf{bottom:932.613333pt;}
.y64{bottom:933.253333pt;}
.yc3{bottom:935.973333pt;}
.y103{bottom:938.533333pt;}
.ya5{bottom:939.013333pt;}
.y180{bottom:940.613333pt;}
.y102{bottom:954.853333pt;}
.y3{bottom:955.813333pt;}
.y121{bottom:955.973333pt;}
.y67{bottom:957.253333pt;}
.yc2{bottom:959.973333pt;}
.y88{bottom:961.253333pt;}
.y17d{bottom:964.613333pt;}
.yde{bottom:977.893333pt;}
.y101{bottom:978.853333pt;}
.y120{bottom:979.973333pt;}
.y66{bottom:981.253333pt;}
.ya3{bottom:982.853333pt;}
.y140{bottom:988.933333pt;}
.y2{bottom:989.093333pt;}
.y17c{bottom:989.253333pt;}
.ydc{bottom:1001.893333pt;}
.y11e{bottom:1002.533333pt;}
.y100{bottom:1002.853333pt;}
.y1{bottom:1010.533333pt;}
.y13f{bottom:1011.520000pt;}
.h24{height:21.920000pt;}
.h36{height:22.432000pt;}
.h8{height:22.560000pt;}
.h1c{height:22.592000pt;}
.h4{height:22.720000pt;}
.hf{height:22.752000pt;}
.h13{height:23.200000pt;}
.hd{height:23.360000pt;}
.h2e{height:23.392000pt;}
.hc{height:37.280000pt;}
.h21{height:37.312000pt;}
.h1b{height:37.440000pt;}
.h44{height:42.880000pt;}
.h9{height:43.360000pt;}
.h25{height:43.712000pt;}
.h26{height:43.840000pt;}
.h1a{height:43.872000pt;}
.h10{height:44.000000pt;}
.h15{height:44.032000pt;}
.h12{height:46.720000pt;}
.h31{height:46.752000pt;}
.h2{height:52.375000pt;}
.h3{height:55.312500pt;}
.h5{height:57.375000pt;}
.h35{height:64.320000pt;}
.h33{height:65.120000pt;}
.h19{height:65.280000pt;}
.h1f{height:65.312000pt;}
.h43{height:66.880000pt;}
.h3e{height:68.000000pt;}
.h3f{height:68.032000pt;}
.h1e{height:86.560000pt;}
.h2a{height:86.592000pt;}
.h18{height:86.752000pt;}
.h34{height:88.320000pt;}
.h30{height:89.120000pt;}
.h20{height:89.280000pt;}
.h14{height:92.032000pt;}
.h11{height:94.592000pt;}
.h42{height:94.752000pt;}
.h17{height:107.840000pt;}
.h46{height:107.872000pt;}
.h3c{height:108.000000pt;}
.h38{height:108.032000pt;}
.hb{height:108.192000pt;}
.h2c{height:110.560000pt;}
.h2b{height:113.312000pt;}
.h22{height:115.840000pt;}
.he{height:115.872000pt;}
.h2f{height:116.000000pt;}
.h28{height:116.032000pt;}
.h49{height:129.280000pt;}
.h32{height:137.120000pt;}
.h3d{height:137.146667pt;}
.h27{height:137.306667pt;}
.h45{height:150.266667pt;}
.h41{height:150.586667pt;}
.h1d{height:153.120000pt;}
.h39{height:177.146667pt;}
.h3b{height:179.840000pt;}
.h37{height:179.866667pt;}
.h2d{height:198.586667pt;}
.h29{height:201.146667pt;}
.h48{height:201.306667pt;}
.h6{height:204.986667pt;}
.h3a{height:214.426667pt;}
.h40{height:222.426667pt;}
.h16{height:262.426667pt;}
.h23{height:263.066667pt;}
.h4a{height:286.266667pt;}
.h47{height:294.266667pt;}
.ha{height:533.186667pt;}
.h7{height:599.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:65.760000pt;}
.wb{width:68.032000pt;}
.wd{width:75.840000pt;}
.w11{width:105.280000pt;}
.w9{width:106.400000pt;}
.wf{width:108.800000pt;}
.wa{width:117.920000pt;}
.w6{width:181.306667pt;}
.w4{width:183.706667pt;}
.w8{width:185.946667pt;}
.w3{width:247.066667pt;}
.wc{width:261.786667pt;}
.w10{width:291.226667pt;}
.w7{width:292.506667pt;}
.we{width:294.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:2.720000pt;}
.x23{left:3.680000pt;}
.x22{left:4.640000pt;}
.xa{left:5.920000pt;}
.xd{left:7.840000pt;}
.x18{left:9.600000pt;}
.x19{left:11.360000pt;}
.x2c{left:12.640000pt;}
.x7{left:13.600000pt;}
.x25{left:14.560000pt;}
.x4{left:15.840000pt;}
.x1a{left:16.800000pt;}
.x9{left:18.080000pt;}
.x1d{left:19.040000pt;}
.x5{left:20.320000pt;}
.x8{left:22.080000pt;}
.x14{left:23.520000pt;}
.x27{left:24.480000pt;}
.x2b{left:25.440000pt;}
.x21{left:26.400000pt;}
.x2e{left:27.360000pt;}
.x1f{left:28.320000pt;}
.x1e{left:29.600000pt;}
.x15{left:30.720000pt;}
.x16{left:32.000000pt;}
.x17{left:33.600000pt;}
.x20{left:34.560000pt;}
.x11{left:35.520000pt;}
.x1b{left:36.640000pt;}
.x6{left:38.880000pt;}
.x24{left:40.640000pt;}
.x2d{left:42.080000pt;}
.x26{left:43.360000pt;}
.x2a{left:44.320000pt;}
.x28{left:46.080000pt;}
.x29{left:47.360000pt;}
.x13{left:48.960000pt;}
.x1c{left:50.080000pt;}
.xf{left:52.960000pt;}
.xb{left:78.586667pt;}
.xe{left:91.386667pt;}
.x1{left:96.031988pt;}
.xc{left:161.786667pt;}
.x12{left:213.946667pt;}
.x10{left:281.986667pt;}
.x3{left:343.106667pt;}
}




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