
    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_f7c64fb36557c7e2d3160e94.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_530a173fd0400e353e92ccbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_5c47d822e6e2f2242744c008.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_82a80807089e62da53bf340e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_283a81290d04ff52f0b5ef1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.513600px;}
.ls4{letter-spacing:0.828000px;}
.ls10{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.ls6{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws5{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-2.458080px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._1{width:2.371920px;}
._3{width:3.864720px;}
._9{width:4.903920px;}
._f{width:5.916240px;}
._4{width:7.589520px;}
._b{width:8.964000px;}
._8{width:10.277280px;}
._7{width:11.473920px;}
._10{width:12.609360px;}
._a{width:13.625280px;}
._6{width:16.846560px;}
._5{width:17.987760px;}
._e{width:19.146000px;}
._11{width:20.176080px;}
._d{width:21.582000px;}
._c{width:23.485680px;}
._13{width:24.501600px;}
._14{width:26.335200px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y81{bottom:3.240000px;}
.yb7{bottom:3.414000px;}
.ya2{bottom:3.420000px;}
.y9a{bottom:3.600000px;}
.y83{bottom:3.780000px;}
.y5{bottom:4.500000px;}
.y7f{bottom:11.880000px;}
.yb5{bottom:12.054000px;}
.y158{bottom:12.060000px;}
.ybe{bottom:12.105000px;}
.yc5{bottom:12.240000px;}
.ya5{bottom:12.420000px;}
.y80{bottom:20.520000px;}
.ybf{bottom:20.565000px;}
.yb6{bottom:20.694000px;}
.ya1{bottom:20.700000px;}
.ya4{bottom:20.880000px;}
.ya7{bottom:21.060000px;}
.y4{bottom:24.120000px;}
.y157{bottom:29.340000px;}
.y159{bottom:37.800000px;}
.y13f{bottom:61.560000px;}
.ybb{bottom:62.460000px;}
.y45{bottom:63.540000px;}
.ye7{bottom:65.160000px;}
.y86{bottom:69.840000px;}
.y175{bottom:70.560000px;}
.y154{bottom:71.280000px;}
.y13e{bottom:78.840000px;}
.y44{bottom:80.820000px;}
.ye6{bottom:82.440000px;}
.yba{bottom:84.240000px;}
.y174{bottom:87.840000px;}
.y153{bottom:88.560000px;}
.y126{bottom:89.640000px;}
.y85{bottom:91.620000px;}
.y13d{bottom:96.120000px;}
.y43{bottom:98.136000px;}
.ye5{bottom:99.576000px;}
.y173{bottom:105.156000px;}
.y152{bottom:105.876000px;}
.yb9{bottom:106.056000px;}
.y125{bottom:106.956000px;}
.y84{bottom:113.436000px;}
.y42{bottom:115.416000px;}
.ye4{bottom:116.856000px;}
.y172{bottom:122.436000px;}
.y151{bottom:123.156000px;}
.y124{bottom:124.236000px;}
.yb8{bottom:127.836000px;}
.y13c{bottom:130.716000px;}
.y41{bottom:132.516000px;}
.ye3{bottom:134.136000px;}
.y82{bottom:135.216000px;}
.y171{bottom:139.536000px;}
.y150{bottom:140.436000px;}
.y123{bottom:141.336000px;}
.y13b{bottom:147.816000px;}
.yb4{bottom:149.436000px;}
.y40{bottom:149.796000px;}
.ye2{bottom:151.410000px;}
.y170{bottom:156.810000px;}
.y7e{bottom:156.990000px;}
.y14f{bottom:157.530000px;}
.y122{bottom:158.610000px;}
.y13a{bottom:165.090000px;}
.y3f{bottom:167.070000px;}
.ye1{bottom:168.690000px;}
.y16f{bottom:174.090000px;}
.y14e{bottom:174.810000px;}
.y121{bottom:175.890000px;}
.y139{bottom:182.370000px;}
.y3e{bottom:184.350000px;}
.ye0{bottom:185.970000px;}
.yb3{bottom:191.190000px;}
.y16e{bottom:191.370000px;}
.y14d{bottom:192.090000px;}
.y120{bottom:193.170000px;}
.y7d{bottom:198.570000px;}
.y138{bottom:199.650000px;}
.y3d{bottom:201.630000px;}
.ydf{bottom:203.070000px;}
.yb2{bottom:208.290000px;}
.y16d{bottom:208.650000px;}
.y14c{bottom:209.370000px;}
.y11f{bottom:210.450000px;}
.y7c{bottom:215.850000px;}
.y137{bottom:216.930000px;}
.y3c{bottom:218.730000px;}
.yde{bottom:220.350000px;}
.yb1{bottom:225.570000px;}
.y16c{bottom:225.930000px;}
.y14b{bottom:226.650000px;}
.y11e{bottom:227.730000px;}
.y7b{bottom:232.950000px;}
.y136{bottom:234.030000px;}
.y3b{bottom:236.010000px;}
.ydd{bottom:237.270000px;}
.yb0{bottom:242.850000px;}
.y16b{bottom:243.030000px;}
.y14a{bottom:243.930000px;}
.y11d{bottom:244.830000px;}
.y7a{bottom:250.230000px;}
.y135{bottom:250.950000px;}
.y3a{bottom:253.290000px;}
.ydc{bottom:255.990000px;}
.yaf{bottom:260.130000px;}
.y16a{bottom:260.310000px;}
.y149{bottom:261.030000px;}
.y11c{bottom:262.110000px;}
.y79{bottom:267.510000px;}
.y134{bottom:268.590000px;}
.y39{bottom:270.570000px;}
.ydb{bottom:273.270000px;}
.yae{bottom:277.410000px;}
.y169{bottom:277.590000px;}
.y148{bottom:278.310000px;}
.y11b{bottom:279.390000px;}
.y78{bottom:284.790000px;}
.y133{bottom:285.870000px;}
.y38{bottom:287.850000px;}
.yda{bottom:290.370000px;}
.yad{bottom:294.690000px;}
.y168{bottom:294.870000px;}
.y147{bottom:295.590000px;}
.y11a{bottom:296.670000px;}
.y77{bottom:302.070000px;}
.y132{bottom:303.150000px;}
.y37{bottom:305.130000px;}
.yd9{bottom:307.650000px;}
.yac{bottom:311.790000px;}
.y167{bottom:312.150000px;}
.y146{bottom:312.870000px;}
.y119{bottom:313.590000px;}
.y76{bottom:319.350000px;}
.y131{bottom:320.430000px;}
.y36{bottom:322.230000px;}
.yd8{bottom:324.930000px;}
.yab{bottom:329.070000px;}
.y166{bottom:329.430000px;}
.y145{bottom:329.790000px;}
.y118{bottom:331.230000px;}
.y75{bottom:336.450000px;}
.y130{bottom:337.530000px;}
.y35{bottom:339.510000px;}
.yd7{bottom:342.210000px;}
.yaa{bottom:345.990000px;}
.y165{bottom:346.530000px;}
.y117{bottom:348.330000px;}
.y144{bottom:351.390000px;}
.y74{bottom:353.730000px;}
.y12f{bottom:354.810000px;}
.y34{bottom:356.790000px;}
.yd6{bottom:359.175000px;}
.y164{bottom:363.855000px;}
.ya9{bottom:364.395000px;}
.y116{bottom:365.655000px;}
.y73{bottom:371.055000px;}
.y12e{bottom:372.135000px;}
.y143{bottom:373.215000px;}
.y33{bottom:374.115000px;}
.yd5{bottom:377.895000px;}
.y163{bottom:381.135000px;}
.y115{bottom:382.935000px;}
.y72{bottom:387.975000px;}
.y12d{bottom:389.415000px;}
.y32{bottom:391.395000px;}
.yd4{bottom:394.995000px;}
.y162{bottom:398.415000px;}
.y114{bottom:399.855000px;}
.ya8{bottom:403.275000px;}
.y71{bottom:406.335000px;}
.y12c{bottom:406.695000px;}
.y31{bottom:408.675000px;}
.yd3{bottom:412.275000px;}
.y161{bottom:415.335000px;}
.y142{bottom:416.775000px;}
.y113{bottom:417.495000px;}
.y70{bottom:423.975000px;}
.y30{bottom:425.775000px;}
.yd2{bottom:429.555000px;}
.y112{bottom:434.595000px;}
.y6f{bottom:441.075000px;}
.ya6{bottom:442.335000px;}
.y2f{bottom:443.055000px;}
.yd1{bottom:446.835000px;}
.y111{bottom:451.875000px;}
.y160{bottom:454.215000px;}
.y6e{bottom:458.355000px;}
.y2e{bottom:460.335000px;}
.yd0{bottom:463.755000px;}
.y110{bottom:469.155000px;}
.y6d{bottom:475.635000px;}
.y2d{bottom:477.615000px;}
.ya3{bottom:481.395000px;}
.y10f{bottom:486.435000px;}
.y6c{bottom:492.915000px;}
.y15f{bottom:493.275000px;}
.y2c{bottom:494.895000px;}
.ycf{bottom:498.495000px;}
.y10e{bottom:503.715000px;}
.y6b{bottom:510.195000px;}
.y2b{bottom:511.995000px;}
.y15e{bottom:515.055000px;}
.yce{bottom:515.775000px;}
.ya0{bottom:520.275000px;}
.y10d{bottom:520.635000px;}
.y6a{bottom:527.295000px;}
.y2a{bottom:529.275000px;}
.ycd{bottom:533.055000px;}
.y10c{bottom:539.175000px;}
.y69{bottom:544.575000px;}
.y29{bottom:546.555000px;}
.ycc{bottom:550.335000px;}
.y15d{bottom:553.935000px;}
.y10b{bottom:556.455000px;}
.y68{bottom:561.855000px;}
.y9f{bottom:562.035000px;}
.y28{bottom:563.835000px;}
.ycb{bottom:567.615000px;}
.y10a{bottom:573.735000px;}
.y67{bottom:579.135000px;}
.y27{bottom:581.115000px;}
.yca{bottom:584.715000px;}
.y109{bottom:591.015000px;}
.y15c{bottom:592.995000px;}
.y66{bottom:596.415000px;}
.y26{bottom:598.395000px;}
.yc9{bottom:601.995000px;}
.y108{bottom:607.935000px;}
.y12b{bottom:613.335000px;}
.y65{bottom:613.695000px;}
.y25{bottom:615.495000px;}
.yc8{bottom:619.305000px;}
.y107{bottom:626.685000px;}
.y141{bottom:630.465000px;}
.y64{bottom:630.825000px;}
.y9e{bottom:631.005000px;}
.y15b{bottom:632.085000px;}
.y24{bottom:632.805000px;}
.yc7{bottom:636.585000px;}
.y106{bottom:643.785000px;}
.y63{bottom:648.105000px;}
.y9d{bottom:648.285000px;}
.y23{bottom:650.085000px;}
.yc6{bottom:653.505000px;}
.y105{bottom:661.065000px;}
.y62{bottom:665.385000px;}
.y9c{bottom:665.565000px;}
.y22{bottom:667.365000px;}
.yc4{bottom:670.785000px;}
.y15a{bottom:670.965000px;}
.y104{bottom:678.345000px;}
.y61{bottom:682.665000px;}
.y21{bottom:684.285000px;}
.y103{bottom:695.265000px;}
.y60{bottom:699.945000px;}
.y20{bottom:701.925000px;}
.yc3{bottom:709.665000px;}
.y156{bottom:710.025000px;}
.y102{bottom:713.985000px;}
.y5f{bottom:717.225000px;}
.y1f{bottom:719.025000px;}
.y101{bottom:731.085000px;}
.y9b{bottom:734.145000px;}
.y5e{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.y100{bottom:748.365000px;}
.yc2{bottom:748.725000px;}
.y5d{bottom:751.605000px;}
.y99{bottom:752.505000px;}
.y1d{bottom:753.585000px;}
.yff{bottom:765.645000px;}
.y5c{bottom:768.885000px;}
.y1c{bottom:770.865000px;}
.y98{bottom:774.105000px;}
.yfe{bottom:782.925000px;}
.y5b{bottom:786.165000px;}
.yc1{bottom:787.605000px;}
.y1b{bottom:788.145000px;}
.y97{bottom:795.885000px;}
.yfd{bottom:800.205000px;}
.y5a{bottom:803.085000px;}
.y12a{bottom:803.445000px;}
.y1a{bottom:805.425000px;}
.yfc{bottom:817.485000px;}
.y96{bottom:817.665000px;}
.y59{bottom:820.725000px;}
.y19{bottom:822.525000px;}
.yc0{bottom:826.665000px;}
.yfb{bottom:834.585000px;}
.y176{bottom:837.465000px;}
.y58{bottom:837.825000px;}
.y95{bottom:839.445000px;}
.y18{bottom:839.805000px;}
.yfa{bottom:851.865000px;}
.y57{bottom:855.105000px;}
.y17{bottom:857.085000px;}
.y94{bottom:861.225000px;}
.ybd{bottom:865.725000px;}
.yf9{bottom:869.145000px;}
.y56{bottom:872.385000px;}
.y16{bottom:874.365000px;}
.y93{bottom:883.050000px;}
.yf8{bottom:886.470000px;}
.y155{bottom:889.350000px;}
.y129{bottom:889.710000px;}
.y15{bottom:891.690000px;}
.yf7{bottom:903.390000px;}
.y55{bottom:906.630000px;}
.y128{bottom:906.990000px;}
.ybc{bottom:907.350000px;}
.y14{bottom:908.430000px;}
.yf6{bottom:922.110000px;}
.y54{bottom:924.090000px;}
.y92{bottom:924.630000px;}
.y13{bottom:926.430000px;}
.yf5{bottom:939.210000px;}
.y53{bottom:941.370000px;}
.y91{bottom:941.910000px;}
.y12{bottom:944.070000px;}
.yf4{bottom:956.490000px;}
.y52{bottom:958.650000px;}
.y90{bottom:959.010000px;}
.y11{bottom:961.350000px;}
.yf3{bottom:973.770000px;}
.y51{bottom:975.930000px;}
.y8f{bottom:976.290000px;}
.y10{bottom:978.630000px;}
.yf2{bottom:991.050000px;}
.y127{bottom:992.850000px;}
.y50{bottom:993.210000px;}
.y8e{bottom:993.570000px;}
.yf{bottom:995.910000px;}
.yf1{bottom:1008.330000px;}
.y140{bottom:1010.130000px;}
.y4f{bottom:1010.490000px;}
.y8d{bottom:1010.850000px;}
.ye{bottom:1013.190000px;}
.yf0{bottom:1025.430000px;}
.y4e{bottom:1027.590000px;}
.y8c{bottom:1028.130000px;}
.yd{bottom:1030.470000px;}
.yef{bottom:1042.710000px;}
.y4d{bottom:1044.870000px;}
.y8b{bottom:1045.410000px;}
.yc{bottom:1048.290000px;}
.yee{bottom:1059.630000px;}
.y4c{bottom:1062.150000px;}
.y8a{bottom:1062.510000px;}
.yb{bottom:1065.570000px;}
.yed{bottom:1078.350000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.yec{bottom:1095.630000px;}
.y4a{bottom:1096.710000px;}
.y89{bottom:1097.790000px;}
.y9{bottom:1100.490000px;}
.yeb{bottom:1112.910000px;}
.y49{bottom:1113.990000px;}
.y88{bottom:1119.570000px;}
.y8{bottom:1121.190000px;}
.yea{bottom:1130.010000px;}
.y48{bottom:1131.090000px;}
.y87{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.ye9{bottom:1147.320000px;}
.y47{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.ye8{bottom:1164.240000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.hc{height:17.100000px;}
.ha{height:17.280000px;}
.hb{height:17.316000px;}
.h9{height:34.380000px;}
.he{height:34.416000px;}
.hd{height:34.560000px;}
.h10{height:34.596000px;}
.h8{height:41.726953px;}
.hf{height:51.660000px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h7{height:61.423863px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:58.176000px;}
.w1b{width:65.700000px;}
.w1e{width:73.800000px;}
.w1f{width:79.776000px;}
.w1c{width:80.100000px;}
.w15{width:82.620000px;}
.w18{width:101.700000px;}
.w17{width:102.096000px;}
.w1a{width:104.076000px;}
.w19{width:104.436000px;}
.w12{width:109.296000px;}
.w14{width:140.616000px;}
.wb{width:144.576000px;}
.w11{width:187.590000px;}
.wa{width:204.870000px;}
.w8{width:211.530000px;}
.w9{width:219.315000px;}
.wd{width:225.750000px;}
.wf{width:232.095000px;}
.we{width:234.975000px;}
.w2{width:235.155000px;}
.w5{width:244.875000px;}
.w10{width:245.910000px;}
.w3{width:249.330000px;}
.w6{width:254.190000px;}
.w16{width:255.675000px;}
.w7{width:276.915000px;}
.w4{width:284.295000px;}
.w13{width:301.755000px;}
.wc{width:305.355000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:1.260000px;}
.x21{left:2.700000px;}
.x2e{left:3.780000px;}
.x29{left:5.580000px;}
.x2b{left:8.460000px;}
.x38{left:10.260000px;}
.x30{left:11.925000px;}
.x25{left:12.960000px;}
.x48{left:14.220000px;}
.x24{left:15.840000px;}
.x58{left:17.100000px;}
.x15{left:18.360000px;}
.x60{left:19.800000px;}
.x61{left:20.880000px;}
.x1d{left:21.960000px;}
.x4a{left:23.760000px;}
.x12{left:25.740000px;}
.x33{left:27.540000px;}
.x13{left:30.060000px;}
.x45{left:32.040000px;}
.x5f{left:33.480000px;}
.x59{left:34.920000px;}
.x40{left:36.036000px;}
.x22{left:38.520000px;}
.x28{left:40.896000px;}
.x4b{left:42.156000px;}
.x3b{left:43.776000px;}
.x39{left:46.116000px;}
.x1b{left:47.196000px;}
.x2d{left:52.920000px;}
.x5{left:54.000000px;}
.x1f{left:56.340000px;}
.x3f{left:58.176000px;}
.x10{left:59.940000px;}
.x16{left:61.740000px;}
.x2a{left:63.576000px;}
.x37{left:64.800000px;}
.x54{left:69.696000px;}
.x11{left:70.776000px;}
.x17{left:72.216000px;}
.x1c{left:73.836000px;}
.x56{left:76.140000px;}
.xe{left:81.000000px;}
.x4d{left:86.220000px;}
.x55{left:88.236000px;}
.x47{left:90.000000px;}
.x49{left:91.476000px;}
.x1a{left:95.790000px;}
.x53{left:96.885000px;}
.x36{left:98.640000px;}
.x35{left:102.105000px;}
.xf{left:105.696000px;}
.xd{left:108.036000px;}
.x4c{left:109.800000px;}
.x3e{left:113.625000px;}
.x46{left:115.560000px;}
.x18{left:117.000000px;}
.x26{left:119.520000px;}
.x4f{left:122.790000px;}
.x27{left:131.085000px;}
.x19{left:134.685000px;}
.x3a{left:158.070000px;}
.x1e{left:179.850000px;}
.x41{left:189.210000px;}
.x6{left:190.470000px;}
.x2c{left:231.510000px;}
.xa{left:248.790000px;}
.xb{left:253.290000px;}
.x3{left:254.550000px;}
.x4e{left:259.230000px;}
.x8{left:261.390000px;}
.x2f{left:266.790000px;}
.x42{left:290.055000px;}
.x7{left:297.615000px;}
.x2{left:300.675000px;}
.x20{left:303.555000px;}
.x1{left:345.135000px;}
.x50{left:356.835000px;}
.x57{left:367.635000px;}
.x3c{left:368.895000px;}
.x9{left:426.315000px;}
.xc{left:458.385000px;}
.x5a{left:473.865000px;}
.x31{left:488.445000px;}
.x51{left:499.785000px;}
.x43{left:538.125000px;}
.x5b{left:541.905000px;}
.x14{left:548.925000px;}
.x23{left:559.905000px;}
.x52{left:584.565000px;}
.x3d{left:596.985000px;}
.x5c{left:624.165000px;}
.x5d{left:684.690000px;}
.x34{left:695.670000px;}
.x44{left:728.070000px;}
.x5e{left:760.650000px;}
.x4{left:812.130000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.456533pt;}
.ls4{letter-spacing:0.736000pt;}
.ls10{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls6{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-2.184960pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._1{width:2.108373pt;}
._3{width:3.435307pt;}
._9{width:4.359040pt;}
._f{width:5.258880pt;}
._4{width:6.746240pt;}
._b{width:7.968000pt;}
._8{width:9.135360pt;}
._7{width:10.199040pt;}
._10{width:11.208320pt;}
._a{width:12.111360pt;}
._6{width:14.974720pt;}
._5{width:15.989120pt;}
._e{width:17.018667pt;}
._11{width:17.934293pt;}
._d{width:19.184000pt;}
._c{width:20.876160pt;}
._13{width:21.779200pt;}
._14{width:23.409067pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:2.880000pt;}
.yb7{bottom:3.034667pt;}
.ya2{bottom:3.040000pt;}
.y9a{bottom:3.200000pt;}
.y83{bottom:3.360000pt;}
.y5{bottom:4.000000pt;}
.y7f{bottom:10.560000pt;}
.yb5{bottom:10.714667pt;}
.y158{bottom:10.720000pt;}
.ybe{bottom:10.760000pt;}
.yc5{bottom:10.880000pt;}
.ya5{bottom:11.040000pt;}
.y80{bottom:18.240000pt;}
.ybf{bottom:18.280000pt;}
.yb6{bottom:18.394667pt;}
.ya1{bottom:18.400000pt;}
.ya4{bottom:18.560000pt;}
.ya7{bottom:18.720000pt;}
.y4{bottom:21.440000pt;}
.y157{bottom:26.080000pt;}
.y159{bottom:33.600000pt;}
.y13f{bottom:54.720000pt;}
.ybb{bottom:55.520000pt;}
.y45{bottom:56.480000pt;}
.ye7{bottom:57.920000pt;}
.y86{bottom:62.080000pt;}
.y175{bottom:62.720000pt;}
.y154{bottom:63.360000pt;}
.y13e{bottom:70.080000pt;}
.y44{bottom:71.840000pt;}
.ye6{bottom:73.280000pt;}
.yba{bottom:74.880000pt;}
.y174{bottom:78.080000pt;}
.y153{bottom:78.720000pt;}
.y126{bottom:79.680000pt;}
.y85{bottom:81.440000pt;}
.y13d{bottom:85.440000pt;}
.y43{bottom:87.232000pt;}
.ye5{bottom:88.512000pt;}
.y173{bottom:93.472000pt;}
.y152{bottom:94.112000pt;}
.yb9{bottom:94.272000pt;}
.y125{bottom:95.072000pt;}
.y84{bottom:100.832000pt;}
.y42{bottom:102.592000pt;}
.ye4{bottom:103.872000pt;}
.y172{bottom:108.832000pt;}
.y151{bottom:109.472000pt;}
.y124{bottom:110.432000pt;}
.yb8{bottom:113.632000pt;}
.y13c{bottom:116.192000pt;}
.y41{bottom:117.792000pt;}
.ye3{bottom:119.232000pt;}
.y82{bottom:120.192000pt;}
.y171{bottom:124.032000pt;}
.y150{bottom:124.832000pt;}
.y123{bottom:125.632000pt;}
.y13b{bottom:131.392000pt;}
.yb4{bottom:132.832000pt;}
.y40{bottom:133.152000pt;}
.ye2{bottom:134.586667pt;}
.y170{bottom:139.386667pt;}
.y7e{bottom:139.546667pt;}
.y14f{bottom:140.026667pt;}
.y122{bottom:140.986667pt;}
.y13a{bottom:146.746667pt;}
.y3f{bottom:148.506667pt;}
.ye1{bottom:149.946667pt;}
.y16f{bottom:154.746667pt;}
.y14e{bottom:155.386667pt;}
.y121{bottom:156.346667pt;}
.y139{bottom:162.106667pt;}
.y3e{bottom:163.866667pt;}
.ye0{bottom:165.306667pt;}
.yb3{bottom:169.946667pt;}
.y16e{bottom:170.106667pt;}
.y14d{bottom:170.746667pt;}
.y120{bottom:171.706667pt;}
.y7d{bottom:176.506667pt;}
.y138{bottom:177.466667pt;}
.y3d{bottom:179.226667pt;}
.ydf{bottom:180.506667pt;}
.yb2{bottom:185.146667pt;}
.y16d{bottom:185.466667pt;}
.y14c{bottom:186.106667pt;}
.y11f{bottom:187.066667pt;}
.y7c{bottom:191.866667pt;}
.y137{bottom:192.826667pt;}
.y3c{bottom:194.426667pt;}
.yde{bottom:195.866667pt;}
.yb1{bottom:200.506667pt;}
.y16c{bottom:200.826667pt;}
.y14b{bottom:201.466667pt;}
.y11e{bottom:202.426667pt;}
.y7b{bottom:207.066667pt;}
.y136{bottom:208.026667pt;}
.y3b{bottom:209.786667pt;}
.ydd{bottom:210.906667pt;}
.yb0{bottom:215.866667pt;}
.y16b{bottom:216.026667pt;}
.y14a{bottom:216.826667pt;}
.y11d{bottom:217.626667pt;}
.y7a{bottom:222.426667pt;}
.y135{bottom:223.066667pt;}
.y3a{bottom:225.146667pt;}
.ydc{bottom:227.546667pt;}
.yaf{bottom:231.226667pt;}
.y16a{bottom:231.386667pt;}
.y149{bottom:232.026667pt;}
.y11c{bottom:232.986667pt;}
.y79{bottom:237.786667pt;}
.y134{bottom:238.746667pt;}
.y39{bottom:240.506667pt;}
.ydb{bottom:242.906667pt;}
.yae{bottom:246.586667pt;}
.y169{bottom:246.746667pt;}
.y148{bottom:247.386667pt;}
.y11b{bottom:248.346667pt;}
.y78{bottom:253.146667pt;}
.y133{bottom:254.106667pt;}
.y38{bottom:255.866667pt;}
.yda{bottom:258.106667pt;}
.yad{bottom:261.946667pt;}
.y168{bottom:262.106667pt;}
.y147{bottom:262.746667pt;}
.y11a{bottom:263.706667pt;}
.y77{bottom:268.506667pt;}
.y132{bottom:269.466667pt;}
.y37{bottom:271.226667pt;}
.yd9{bottom:273.466667pt;}
.yac{bottom:277.146667pt;}
.y167{bottom:277.466667pt;}
.y146{bottom:278.106667pt;}
.y119{bottom:278.746667pt;}
.y76{bottom:283.866667pt;}
.y131{bottom:284.826667pt;}
.y36{bottom:286.426667pt;}
.yd8{bottom:288.826667pt;}
.yab{bottom:292.506667pt;}
.y166{bottom:292.826667pt;}
.y145{bottom:293.146667pt;}
.y118{bottom:294.426667pt;}
.y75{bottom:299.066667pt;}
.y130{bottom:300.026667pt;}
.y35{bottom:301.786667pt;}
.yd7{bottom:304.186667pt;}
.yaa{bottom:307.546667pt;}
.y165{bottom:308.026667pt;}
.y117{bottom:309.626667pt;}
.y144{bottom:312.346667pt;}
.y74{bottom:314.426667pt;}
.y12f{bottom:315.386667pt;}
.y34{bottom:317.146667pt;}
.yd6{bottom:319.266667pt;}
.y164{bottom:323.426667pt;}
.ya9{bottom:323.906667pt;}
.y116{bottom:325.026667pt;}
.y73{bottom:329.826667pt;}
.y12e{bottom:330.786667pt;}
.y143{bottom:331.746667pt;}
.y33{bottom:332.546667pt;}
.yd5{bottom:335.906667pt;}
.y163{bottom:338.786667pt;}
.y115{bottom:340.386667pt;}
.y72{bottom:344.866667pt;}
.y12d{bottom:346.146667pt;}
.y32{bottom:347.906667pt;}
.yd4{bottom:351.106667pt;}
.y162{bottom:354.146667pt;}
.y114{bottom:355.426667pt;}
.ya8{bottom:358.466667pt;}
.y71{bottom:361.186667pt;}
.y12c{bottom:361.506667pt;}
.y31{bottom:363.266667pt;}
.yd3{bottom:366.466667pt;}
.y161{bottom:369.186667pt;}
.y142{bottom:370.466667pt;}
.y113{bottom:371.106667pt;}
.y70{bottom:376.866667pt;}
.y30{bottom:378.466667pt;}
.yd2{bottom:381.826667pt;}
.y112{bottom:386.306667pt;}
.y6f{bottom:392.066667pt;}
.ya6{bottom:393.186667pt;}
.y2f{bottom:393.826667pt;}
.yd1{bottom:397.186667pt;}
.y111{bottom:401.666667pt;}
.y160{bottom:403.746667pt;}
.y6e{bottom:407.426667pt;}
.y2e{bottom:409.186667pt;}
.yd0{bottom:412.226667pt;}
.y110{bottom:417.026667pt;}
.y6d{bottom:422.786667pt;}
.y2d{bottom:424.546667pt;}
.ya3{bottom:427.906667pt;}
.y10f{bottom:432.386667pt;}
.y6c{bottom:438.146667pt;}
.y15f{bottom:438.466667pt;}
.y2c{bottom:439.906667pt;}
.ycf{bottom:443.106667pt;}
.y10e{bottom:447.746667pt;}
.y6b{bottom:453.506667pt;}
.y2b{bottom:455.106667pt;}
.y15e{bottom:457.826667pt;}
.yce{bottom:458.466667pt;}
.ya0{bottom:462.466667pt;}
.y10d{bottom:462.786667pt;}
.y6a{bottom:468.706667pt;}
.y2a{bottom:470.466667pt;}
.ycd{bottom:473.826667pt;}
.y10c{bottom:479.266667pt;}
.y69{bottom:484.066667pt;}
.y29{bottom:485.826667pt;}
.ycc{bottom:489.186667pt;}
.y15d{bottom:492.386667pt;}
.y10b{bottom:494.626667pt;}
.y68{bottom:499.426667pt;}
.y9f{bottom:499.586667pt;}
.y28{bottom:501.186667pt;}
.ycb{bottom:504.546667pt;}
.y10a{bottom:509.986667pt;}
.y67{bottom:514.786667pt;}
.y27{bottom:516.546667pt;}
.yca{bottom:519.746667pt;}
.y109{bottom:525.346667pt;}
.y15c{bottom:527.106667pt;}
.y66{bottom:530.146667pt;}
.y26{bottom:531.906667pt;}
.yc9{bottom:535.106667pt;}
.y108{bottom:540.386667pt;}
.y12b{bottom:545.186667pt;}
.y65{bottom:545.506667pt;}
.y25{bottom:547.106667pt;}
.yc8{bottom:550.493333pt;}
.y107{bottom:557.053333pt;}
.y141{bottom:560.413333pt;}
.y64{bottom:560.733333pt;}
.y9e{bottom:560.893333pt;}
.y15b{bottom:561.853333pt;}
.y24{bottom:562.493333pt;}
.yc7{bottom:565.853333pt;}
.y106{bottom:572.253333pt;}
.y63{bottom:576.093333pt;}
.y9d{bottom:576.253333pt;}
.y23{bottom:577.853333pt;}
.yc6{bottom:580.893333pt;}
.y105{bottom:587.613333pt;}
.y62{bottom:591.453333pt;}
.y9c{bottom:591.613333pt;}
.y22{bottom:593.213333pt;}
.yc4{bottom:596.253333pt;}
.y15a{bottom:596.413333pt;}
.y104{bottom:602.973333pt;}
.y61{bottom:606.813333pt;}
.y21{bottom:608.253333pt;}
.y103{bottom:618.013333pt;}
.y60{bottom:622.173333pt;}
.y20{bottom:623.933333pt;}
.yc3{bottom:630.813333pt;}
.y156{bottom:631.133333pt;}
.y102{bottom:634.653333pt;}
.y5f{bottom:637.533333pt;}
.y1f{bottom:639.133333pt;}
.y101{bottom:649.853333pt;}
.y9b{bottom:652.573333pt;}
.y5e{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.y100{bottom:665.213333pt;}
.yc2{bottom:665.533333pt;}
.y5d{bottom:668.093333pt;}
.y99{bottom:668.893333pt;}
.y1d{bottom:669.853333pt;}
.yff{bottom:680.573333pt;}
.y5c{bottom:683.453333pt;}
.y1c{bottom:685.213333pt;}
.y98{bottom:688.093333pt;}
.yfe{bottom:695.933333pt;}
.y5b{bottom:698.813333pt;}
.yc1{bottom:700.093333pt;}
.y1b{bottom:700.573333pt;}
.y97{bottom:707.453333pt;}
.yfd{bottom:711.293333pt;}
.y5a{bottom:713.853333pt;}
.y12a{bottom:714.173333pt;}
.y1a{bottom:715.933333pt;}
.yfc{bottom:726.653333pt;}
.y96{bottom:726.813333pt;}
.y59{bottom:729.533333pt;}
.y19{bottom:731.133333pt;}
.yc0{bottom:734.813333pt;}
.yfb{bottom:741.853333pt;}
.y176{bottom:744.413333pt;}
.y58{bottom:744.733333pt;}
.y95{bottom:746.173333pt;}
.y18{bottom:746.493333pt;}
.yfa{bottom:757.213333pt;}
.y57{bottom:760.093333pt;}
.y17{bottom:761.853333pt;}
.y94{bottom:765.533333pt;}
.ybd{bottom:769.533333pt;}
.yf9{bottom:772.573333pt;}
.y56{bottom:775.453333pt;}
.y16{bottom:777.213333pt;}
.y93{bottom:784.933333pt;}
.yf8{bottom:787.973333pt;}
.y155{bottom:790.533333pt;}
.y129{bottom:790.853333pt;}
.y15{bottom:792.613333pt;}
.yf7{bottom:803.013333pt;}
.y55{bottom:805.893333pt;}
.y128{bottom:806.213333pt;}
.ybc{bottom:806.533333pt;}
.y14{bottom:807.493333pt;}
.yf6{bottom:819.653333pt;}
.y54{bottom:821.413333pt;}
.y92{bottom:821.893333pt;}
.y13{bottom:823.493333pt;}
.yf5{bottom:834.853333pt;}
.y53{bottom:836.773333pt;}
.y91{bottom:837.253333pt;}
.y12{bottom:839.173333pt;}
.yf4{bottom:850.213333pt;}
.y52{bottom:852.133333pt;}
.y90{bottom:852.453333pt;}
.y11{bottom:854.533333pt;}
.yf3{bottom:865.573333pt;}
.y51{bottom:867.493333pt;}
.y8f{bottom:867.813333pt;}
.y10{bottom:869.893333pt;}
.yf2{bottom:880.933333pt;}
.y127{bottom:882.533333pt;}
.y50{bottom:882.853333pt;}
.y8e{bottom:883.173333pt;}
.yf{bottom:885.253333pt;}
.yf1{bottom:896.293333pt;}
.y140{bottom:897.893333pt;}
.y4f{bottom:898.213333pt;}
.y8d{bottom:898.533333pt;}
.ye{bottom:900.613333pt;}
.yf0{bottom:911.493333pt;}
.y4e{bottom:913.413333pt;}
.y8c{bottom:913.893333pt;}
.yd{bottom:915.973333pt;}
.yef{bottom:926.853333pt;}
.y4d{bottom:928.773333pt;}
.y8b{bottom:929.253333pt;}
.yc{bottom:931.813333pt;}
.yee{bottom:941.893333pt;}
.y4c{bottom:944.133333pt;}
.y8a{bottom:944.453333pt;}
.yb{bottom:947.173333pt;}
.yed{bottom:958.533333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.yec{bottom:973.893333pt;}
.y4a{bottom:974.853333pt;}
.y89{bottom:975.813333pt;}
.y9{bottom:978.213333pt;}
.yeb{bottom:989.253333pt;}
.y49{bottom:990.213333pt;}
.y88{bottom:995.173333pt;}
.y8{bottom:996.613333pt;}
.yea{bottom:1004.453333pt;}
.y48{bottom:1005.413333pt;}
.y87{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.ye9{bottom:1019.840000pt;}
.y47{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.ye8{bottom:1034.880000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.hc{height:15.200000pt;}
.ha{height:15.360000pt;}
.hb{height:15.392000pt;}
.h9{height:30.560000pt;}
.he{height:30.592000pt;}
.hd{height:30.720000pt;}
.h10{height:30.752000pt;}
.h8{height:37.090625pt;}
.hf{height:45.920000pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h7{height:54.598989pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:51.712000pt;}
.w1b{width:58.400000pt;}
.w1e{width:65.600000pt;}
.w1f{width:70.912000pt;}
.w1c{width:71.200000pt;}
.w15{width:73.440000pt;}
.w18{width:90.400000pt;}
.w17{width:90.752000pt;}
.w1a{width:92.512000pt;}
.w19{width:92.832000pt;}
.w12{width:97.152000pt;}
.w14{width:124.992000pt;}
.wb{width:128.512000pt;}
.w11{width:166.746667pt;}
.wa{width:182.106667pt;}
.w8{width:188.026667pt;}
.w9{width:194.946667pt;}
.wd{width:200.666667pt;}
.wf{width:206.306667pt;}
.we{width:208.866667pt;}
.w2{width:209.026667pt;}
.w5{width:217.666667pt;}
.w10{width:218.586667pt;}
.w3{width:221.626667pt;}
.w6{width:225.946667pt;}
.w16{width:227.266667pt;}
.w7{width:246.146667pt;}
.w4{width:252.706667pt;}
.w13{width:268.226667pt;}
.wc{width:271.426667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:1.120000pt;}
.x21{left:2.400000pt;}
.x2e{left:3.360000pt;}
.x29{left:4.960000pt;}
.x2b{left:7.520000pt;}
.x38{left:9.120000pt;}
.x30{left:10.600000pt;}
.x25{left:11.520000pt;}
.x48{left:12.640000pt;}
.x24{left:14.080000pt;}
.x58{left:15.200000pt;}
.x15{left:16.320000pt;}
.x60{left:17.600000pt;}
.x61{left:18.560000pt;}
.x1d{left:19.520000pt;}
.x4a{left:21.120000pt;}
.x12{left:22.880000pt;}
.x33{left:24.480000pt;}
.x13{left:26.720000pt;}
.x45{left:28.480000pt;}
.x5f{left:29.760000pt;}
.x59{left:31.040000pt;}
.x40{left:32.032000pt;}
.x22{left:34.240000pt;}
.x28{left:36.352000pt;}
.x4b{left:37.472000pt;}
.x3b{left:38.912000pt;}
.x39{left:40.992000pt;}
.x1b{left:41.952000pt;}
.x2d{left:47.040000pt;}
.x5{left:48.000000pt;}
.x1f{left:50.080000pt;}
.x3f{left:51.712000pt;}
.x10{left:53.280000pt;}
.x16{left:54.880000pt;}
.x2a{left:56.512000pt;}
.x37{left:57.600000pt;}
.x54{left:61.952000pt;}
.x11{left:62.912000pt;}
.x17{left:64.192000pt;}
.x1c{left:65.632000pt;}
.x56{left:67.680000pt;}
.xe{left:72.000000pt;}
.x4d{left:76.640000pt;}
.x55{left:78.432000pt;}
.x47{left:80.000000pt;}
.x49{left:81.312000pt;}
.x1a{left:85.146667pt;}
.x53{left:86.120000pt;}
.x36{left:87.680000pt;}
.x35{left:90.760000pt;}
.xf{left:93.952000pt;}
.xd{left:96.032000pt;}
.x4c{left:97.600000pt;}
.x3e{left:101.000000pt;}
.x46{left:102.720000pt;}
.x18{left:104.000000pt;}
.x26{left:106.240000pt;}
.x4f{left:109.146667pt;}
.x27{left:116.520000pt;}
.x19{left:119.720000pt;}
.x3a{left:140.506667pt;}
.x1e{left:159.866667pt;}
.x41{left:168.186667pt;}
.x6{left:169.306667pt;}
.x2c{left:205.786667pt;}
.xa{left:221.146667pt;}
.xb{left:225.146667pt;}
.x3{left:226.266667pt;}
.x4e{left:230.426667pt;}
.x8{left:232.346667pt;}
.x2f{left:237.146667pt;}
.x42{left:257.826667pt;}
.x7{left:264.546667pt;}
.x2{left:267.266667pt;}
.x20{left:269.826667pt;}
.x1{left:306.786667pt;}
.x50{left:317.186667pt;}
.x57{left:326.786667pt;}
.x3c{left:327.906667pt;}
.x9{left:378.946667pt;}
.xc{left:407.453333pt;}
.x5a{left:421.213333pt;}
.x31{left:434.173333pt;}
.x51{left:444.253333pt;}
.x43{left:478.333333pt;}
.x5b{left:481.693333pt;}
.x14{left:487.933333pt;}
.x23{left:497.693333pt;}
.x52{left:519.613333pt;}
.x3d{left:530.653333pt;}
.x5c{left:554.813333pt;}
.x5d{left:608.613333pt;}
.x34{left:618.373333pt;}
.x44{left:647.173333pt;}
.x5e{left:676.133333pt;}
.x4{left:721.893333pt;}
}




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