
    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_845021b88e92445249db2d84.woff')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_10136c6e6c691619085fdfab.woff')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_4c4414ec57525c1330998749.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e32fc879550fe6f7a9b6ab97.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_2a1854aea0ea13319da53037.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4caed7b7f43490f32c26d182.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fb11a4618c09135d550994da.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919434;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.206400px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.460200px;}
.ls10{letter-spacing:0.466800px;}
.ls9{letter-spacing:0.978000px;}
.lsf{letter-spacing:16.506720px;}
.lse{letter-spacing:46.002720px;}
.ls4{letter-spacing:64.002720px;}
.ls3{letter-spacing:201.036000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.918000px;}
.wse{word-spacing:-15.406800px;}
.ws5{word-spacing:-15.400200px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.479800px;}
.ws4{word-spacing:0.000000px;}
._23{margin-left:-2.040000px;}
._2{margin-left:-1.019760px;}
._0{width:1.195200px;}
._1{width:2.885520px;}
._b{width:4.130400px;}
._f{width:5.301120px;}
._6{width:6.733920px;}
._5{width:7.828560px;}
._8{width:8.882400px;}
._c{width:10.527360px;}
._11{width:11.672880px;}
._10{width:12.728880px;}
._12{width:13.804560px;}
._13{width:16.378080px;}
._3{width:17.688960px;}
._4{width:18.817200px;}
._14{width:19.918320px;}
._9{width:21.214800px;}
._a{width:22.230720px;}
._d{width:23.904000px;}
._e{width:25.039440px;}
._15{width:26.593200px;}
._16{width:27.660240px;}
._17{width:29.564640px;}
._18{width:32.210640px;}
._19{width:33.266640px;}
._20{width:35.505120px;}
._1f{width:36.752400px;}
._21{width:38.931360px;}
._1a{width:135.771600px;}
._7{width:201.036000px;}
._22{width:263.922720px;}
._1e{width:313.151520px;}
._1d{width:327.800160px;}
._1b{width:420.607200px;}
._1c{width:424.526880px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y13f{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:3.240000px;}
.ya7{bottom:3.420000px;}
.yad{bottom:3.600000px;}
.ya9{bottom:3.780000px;}
.y152{bottom:12.060000px;}
.y156{bottom:12.240000px;}
.y159{bottom:12.420000px;}
.y153{bottom:20.700000px;}
.y155{bottom:20.880000px;}
.y158{bottom:21.060000px;}
.y5{bottom:38.340000px;}
.y4{bottom:55.980000px;}
.ya2{bottom:112.716000px;}
.y13e{bottom:114.516000px;}
.y7c{bottom:119.196000px;}
.yb2{bottom:119.736000px;}
.y181{bottom:120.816000px;}
.ye0{bottom:122.076000px;}
.y99{bottom:123.516000px;}
.y40{bottom:125.496000px;}
.y14f{bottom:126.576000px;}
.ya1{bottom:129.996000px;}
.y13d{bottom:131.796000px;}
.y116{bottom:135.576000px;}
.y7b{bottom:136.476000px;}
.yb1{bottom:137.016000px;}
.y180{bottom:137.916000px;}
.ydf{bottom:139.356000px;}
.y178{bottom:140.076000px;}
.y98{bottom:140.796000px;}
.y3f{bottom:142.776000px;}
.ya0{bottom:146.916000px;}
.y13c{bottom:149.076000px;}
.y115{bottom:152.850000px;}
.y7a{bottom:153.750000px;}
.yb0{bottom:153.930000px;}
.yde{bottom:156.270000px;}
.y177{bottom:157.350000px;}
.y9e{bottom:157.710000px;}
.y97{bottom:158.070000px;}
.y3e{bottom:160.050000px;}
.y9f{bottom:160.950000px;}
.y13b{bottom:166.350000px;}
.y114{bottom:169.770000px;}
.y79{bottom:171.030000px;}
.ydd{bottom:173.730000px;}
.y176{bottom:174.630000px;}
.y96{bottom:175.350000px;}
.yaf{bottom:175.710000px;}
.y3d{bottom:177.330000px;}
.y13a{bottom:183.630000px;}
.y113{bottom:187.230000px;}
.y78{bottom:188.310000px;}
.ydc{bottom:191.010000px;}
.y175{bottom:191.730000px;}
.y95{bottom:192.630000px;}
.y3c{bottom:194.430000px;}
.yae{bottom:197.490000px;}
.y139{bottom:200.730000px;}
.y112{bottom:204.510000px;}
.y77{bottom:205.230000px;}
.ydb{bottom:208.290000px;}
.y174{bottom:209.010000px;}
.y17c{bottom:209.370000px;}
.y94{bottom:209.730000px;}
.y3b{bottom:211.710000px;}
.y138{bottom:218.010000px;}
.yac{bottom:219.270000px;}
.y111{bottom:221.790000px;}
.y76{bottom:222.690000px;}
.yda{bottom:225.570000px;}
.y173{bottom:226.290000px;}
.y93{bottom:227.010000px;}
.y3a{bottom:228.990000px;}
.y137{bottom:234.930000px;}
.y110{bottom:239.070000px;}
.y75{bottom:239.970000px;}
.yab{bottom:240.870000px;}
.yd9{bottom:242.850000px;}
.y172{bottom:243.570000px;}
.y92{bottom:243.930000px;}
.y9d{bottom:244.290000px;}
.y39{bottom:246.270000px;}
.y10f{bottom:256.350000px;}
.y136{bottom:256.710000px;}
.y74{bottom:257.250000px;}
.yd8{bottom:260.130000px;}
.y171{bottom:260.850000px;}
.y91{bottom:261.570000px;}
.yaa{bottom:262.650000px;}
.y38{bottom:263.550000px;}
.y10e{bottom:273.630000px;}
.y73{bottom:274.530000px;}
.yd7{bottom:277.230000px;}
.y170{bottom:278.130000px;}
.y135{bottom:278.490000px;}
.y90{bottom:278.850000px;}
.y37{bottom:280.830000px;}
.ya8{bottom:284.430000px;}
.y10d{bottom:290.730000px;}
.y72{bottom:291.810000px;}
.yd6{bottom:294.150000px;}
.y16f{bottom:295.230000px;}
.y8f{bottom:296.130000px;}
.y36{bottom:297.930000px;}
.y134{bottom:300.090000px;}
.ya6{bottom:306.210000px;}
.y10c{bottom:307.650000px;}
.y71{bottom:308.910000px;}
.y16e{bottom:312.510000px;}
.y8e{bottom:313.230000px;}
.y35{bottom:315.210000px;}
.yd5{bottom:315.930000px;}
.y133{bottom:321.870000px;}
.y70{bottom:326.190000px;}
.y10b{bottom:329.430000px;}
.y16d{bottom:329.790000px;}
.y8d{bottom:330.510000px;}
.y34{bottom:332.490000px;}
.yd4{bottom:337.710000px;}
.y6f{bottom:343.470000px;}
.y132{bottom:346.350000px;}
.y16c{bottom:346.710000px;}
.y8c{bottom:347.790000px;}
.y33{bottom:349.770000px;}
.y10a{bottom:351.210000px;}
.yd3{bottom:359.535000px;}
.y6e{bottom:360.795000px;}
.y131{bottom:363.675000px;}
.y16b{bottom:364.035000px;}
.y8b{bottom:365.115000px;}
.y32{bottom:367.095000px;}
.y109{bottom:373.035000px;}
.y6d{bottom:378.075000px;}
.y130{bottom:380.775000px;}
.yd2{bottom:381.135000px;}
.y16a{bottom:381.495000px;}
.ya5{bottom:382.035000px;}
.y8a{bottom:382.395000px;}
.y31{bottom:384.015000px;}
.y108{bottom:394.635000px;}
.y6c{bottom:395.355000px;}
.y12f{bottom:398.055000px;}
.y169{bottom:398.775000px;}
.y89{bottom:399.675000px;}
.y30{bottom:401.475000px;}
.yd1{bottom:402.915000px;}
.y6b{bottom:412.455000px;}
.y12e{bottom:415.335000px;}
.y168{bottom:415.695000px;}
.y88{bottom:416.415000px;}
.y9c{bottom:416.775000px;}
.y2f{bottom:418.755000px;}
.y107{bottom:419.115000px;}
.y6a{bottom:429.375000px;}
.y12d{bottom:432.615000px;}
.y87{bottom:434.055000px;}
.y2e{bottom:436.035000px;}
.y106{bottom:436.395000px;}
.y167{bottom:437.475000px;}
.yd0{bottom:444.495000px;}
.y69{bottom:447.015000px;}
.y12c{bottom:449.895000px;}
.ya4{bottom:450.975000px;}
.y86{bottom:451.335000px;}
.y2d{bottom:453.315000px;}
.y105{bottom:453.495000px;}
.y166{bottom:459.255000px;}
.ycf{bottom:461.775000px;}
.y68{bottom:464.295000px;}
.y12b{bottom:466.635000px;}
.y85{bottom:468.615000px;}
.y104{bottom:470.415000px;}
.y2c{bottom:470.595000px;}
.yce{bottom:478.695000px;}
.y165{bottom:481.035000px;}
.y67{bottom:482.655000px;}
.y12a{bottom:484.275000px;}
.y84{bottom:485.895000px;}
.y2b{bottom:487.695000px;}
.y103{bottom:488.055000px;}
.ycd{bottom:496.335000px;}
.y66{bottom:499.935000px;}
.y129{bottom:501.555000px;}
.y83{bottom:502.995000px;}
.y2a{bottom:504.975000px;}
.y102{bottom:505.335000px;}
.ycc{bottom:513.615000px;}
.y65{bottom:518.115000px;}
.y128{bottom:518.835000px;}
.y9b{bottom:519.915000px;}
.y82{bottom:520.275000px;}
.y29{bottom:522.255000px;}
.y101{bottom:522.615000px;}
.ycb{bottom:530.895000px;}
.y127{bottom:536.115000px;}
.y64{bottom:536.475000px;}
.y81{bottom:537.555000px;}
.y28{bottom:539.535000px;}
.y100{bottom:539.895000px;}
.yca{bottom:547.995000px;}
.y126{bottom:553.395000px;}
.y63{bottom:554.475000px;}
.y80{bottom:554.835000px;}
.y27{bottom:556.455000px;}
.yff{bottom:556.995000px;}
.yc9{bottom:565.275000px;}
.y125{bottom:570.495000px;}
.y17b{bottom:571.755000px;}
.y62{bottom:572.115000px;}
.y164{bottom:573.915000px;}
.y26{bottom:574.095000px;}
.yfe{bottom:574.275000px;}
.yc8{bottom:582.195000px;}
.y124{bottom:587.775000px;}
.y61{bottom:589.395000px;}
.y25{bottom:591.195000px;}
.yfd{bottom:591.555000px;}
.yc7{bottom:603.975000px;}
.y123{bottom:605.055000px;}
.y60{bottom:606.495000px;}
.y24{bottom:608.475000px;}
.y163{bottom:608.835000px;}
.y14e{bottom:611.895000px;}
.y122{bottom:622.365000px;}
.y5f{bottom:623.805000px;}
.y23{bottom:625.785000px;}
.y162{bottom:626.145000px;}
.y14d{bottom:629.025000px;}
.yfc{bottom:630.285000px;}
.y121{bottom:639.645000px;}
.y5e{bottom:641.085000px;}
.y22{bottom:642.705000px;}
.y161{bottom:642.885000px;}
.y14c{bottom:646.305000px;}
.yc6{bottom:647.385000px;}
.yfb{bottom:651.885000px;}
.y120{bottom:656.925000px;}
.y5d{bottom:658.365000px;}
.y21{bottom:660.345000px;}
.y14b{bottom:663.585000px;}
.y160{bottom:664.665000px;}
.yc5{bottom:669.165000px;}
.yfa{bottom:673.665000px;}
.y11f{bottom:674.025000px;}
.ya3{bottom:675.285000px;}
.y5c{bottom:675.645000px;}
.y20{bottom:677.625000px;}
.y14a{bottom:680.865000px;}
.y15f{bottom:686.445000px;}
.yc4{bottom:690.945000px;}
.y11e{bottom:691.305000px;}
.y5b{bottom:692.925000px;}
.y1f{bottom:694.725000px;}
.yf9{bottom:695.445000px;}
.y149{bottom:697.785000px;}
.y15e{bottom:708.225000px;}
.y11d{bottom:708.585000px;}
.y5a{bottom:710.025000px;}
.y1e{bottom:712.005000px;}
.yc3{bottom:715.425000px;}
.yf8{bottom:719.925000px;}
.y11c{bottom:725.865000px;}
.y59{bottom:727.305000px;}
.y1d{bottom:729.285000px;}
.y15d{bottom:730.005000px;}
.yc2{bottom:732.525000px;}
.yf7{bottom:737.025000px;}
.y11b{bottom:743.145000px;}
.y58{bottom:744.585000px;}
.y1c{bottom:746.565000px;}
.yc1{bottom:749.805000px;}
.yf6{bottom:754.305000px;}
.y11a{bottom:760.245000px;}
.y57{bottom:761.505000px;}
.y7f{bottom:761.865000px;}
.y1b{bottom:763.845000px;}
.yc0{bottom:766.725000px;}
.y148{bottom:767.085000px;}
.yf5{bottom:771.225000px;}
.y15c{bottom:771.585000px;}
.y119{bottom:777.525000px;}
.y56{bottom:779.145000px;}
.y1a{bottom:781.125000px;}
.ybf{bottom:784.365000px;}
.yf4{bottom:788.865000px;}
.y118{bottom:794.445000px;}
.y55{bottom:796.245000px;}
.y19{bottom:798.225000px;}
.ybe{bottom:801.645000px;}
.y15b{bottom:805.785000px;}
.yf3{bottom:806.145000px;}
.y17f{bottom:813.165000px;}
.y54{bottom:813.525000px;}
.y18{bottom:815.505000px;}
.y117{bottom:816.225000px;}
.ybd{bottom:818.745000px;}
.yf2{bottom:823.245000px;}
.y53{bottom:830.805000px;}
.y17{bottom:832.785000px;}
.ybc{bottom:836.025000px;}
.yf1{bottom:840.525000px;}
.y15a{bottom:844.665000px;}
.y17a{bottom:847.725000px;}
.y52{bottom:848.085000px;}
.y16{bottom:850.065000px;}
.ybb{bottom:853.305000px;}
.yf0{bottom:857.805000px;}
.y51{bottom:865.365000px;}
.y15{bottom:867.345000px;}
.yba{bottom:870.585000px;}
.yef{bottom:875.130000px;}
.y9a{bottom:882.330000px;}
.y50{bottom:882.690000px;}
.y157{bottom:883.770000px;}
.y14{bottom:884.490000px;}
.yb9{bottom:887.550000px;}
.y147{bottom:887.910000px;}
.yee{bottom:892.050000px;}
.y4f{bottom:899.790000px;}
.y13{bottom:901.770000px;}
.y146{bottom:905.190000px;}
.yb8{bottom:909.330000px;}
.yed{bottom:909.690000px;}
.y17e{bottom:916.710000px;}
.y4e{bottom:917.070000px;}
.y12{bottom:918.690000px;}
.y145{bottom:922.290000px;}
.y154{bottom:922.830000px;}
.yec{bottom:926.790000px;}
.yb7{bottom:930.930000px;}
.y4d{bottom:933.990000px;}
.y7e{bottom:934.350000px;}
.y11{bottom:937.050000px;}
.y144{bottom:939.210000px;}
.yeb{bottom:944.070000px;}
.y4c{bottom:951.630000px;}
.yb6{bottom:952.710000px;}
.y10{bottom:954.330000px;}
.y143{bottom:956.850000px;}
.yea{bottom:961.350000px;}
.y151{bottom:961.710000px;}
.y4b{bottom:968.910000px;}
.yf{bottom:971.610000px;}
.y142{bottom:973.770000px;}
.yb5{bottom:974.490000px;}
.ye9{bottom:978.630000px;}
.y4a{bottom:986.190000px;}
.ye{bottom:988.890000px;}
.y141{bottom:991.410000px;}
.ye8{bottom:995.910000px;}
.yb4{bottom:996.270000px;}
.y49{bottom:1003.290000px;}
.yd{bottom:1005.990000px;}
.y140{bottom:1008.150000px;}
.ye7{bottom:1013.190000px;}
.y17d{bottom:1020.210000px;}
.y48{bottom:1020.570000px;}
.yc{bottom:1023.270000px;}
.ye6{bottom:1029.930000px;}
.y47{bottom:1037.850000px;}
.yb{bottom:1041.270000px;}
.ye5{bottom:1051.710000px;}
.y46{bottom:1055.130000px;}
.ya{bottom:1058.550000px;}
.yb3{bottom:1072.050000px;}
.y45{bottom:1072.410000px;}
.ye4{bottom:1073.490000px;}
.y9{bottom:1076.190000px;}
.y150{bottom:1089.330000px;}
.y44{bottom:1089.690000px;}
.ye3{bottom:1095.270000px;}
.y8{bottom:1096.890000px;}
.y179{bottom:1106.430000px;}
.y43{bottom:1106.790000px;}
.ye1{bottom:1117.050000px;}
.y7{bottom:1117.590000px;}
.y42{bottom:1124.070000px;}
.y6{bottom:1138.320000px;}
.y7d{bottom:1141.020000px;}
.y41{bottom:1141.380000px;}
.y3{bottom:1161.360000px;}
.y2{bottom:1178.640000px;}
.y1{bottom:1195.920000px;}
.h9{height:17.100000px;}
.hb{height:17.136000px;}
.h8{height:17.280000px;}
.ha{height:17.316000px;}
.hd{height:34.380000px;}
.hc{height:34.560000px;}
.he{height:34.596000px;}
.h6{height:42.806602px;}
.h2{height:58.621992px;}
.h4{height:58.651172px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.h10{height:70.664062px;}
.h3{height:72.562500px;}
.hf{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w30{width:34.020000px;}
.w2a{width:34.200000px;}
.w2b{width:43.416000px;}
.w1e{width:50.580000px;}
.w34{width:57.960000px;}
.w35{width:57.996000px;}
.w15{width:69.876000px;}
.w1c{width:70.740000px;}
.w1b{width:73.260000px;}
.w26{width:73.296000px;}
.w29{width:82.980000px;}
.w19{width:84.456000px;}
.w23{width:85.140000px;}
.w2f{width:86.796000px;}
.w16{width:89.820000px;}
.w18{width:93.060000px;}
.w32{width:96.480000px;}
.w1a{width:110.916000px;}
.w1f{width:117.576000px;}
.w38{width:118.080000px;}
.w13{width:119.556000px;}
.w31{width:119.916000px;}
.w2c{width:120.060000px;}
.w39{width:123.156000px;}
.w2d{width:125.280000px;}
.w22{width:130.716000px;}
.wc{width:141.660000px;}
.w10{width:141.696000px;}
.w28{width:142.956000px;}
.w3{width:159.150000px;}
.w36{width:161.310000px;}
.wd{width:163.290000px;}
.w14{width:166.680000px;}
.wb{width:174.810000px;}
.w8{width:175.890000px;}
.w24{width:186.690000px;}
.w5{width:190.830000px;}
.we{width:192.630000px;}
.w9{width:198.210000px;}
.w2e{width:205.230000px;}
.w3a{width:210.090000px;}
.w20{width:220.350000px;}
.w2{width:220.710000px;}
.w37{width:220.890000px;}
.w12{width:224.490000px;}
.w6{width:230.430000px;}
.w11{width:233.670000px;}
.w17{width:235.830000px;}
.w27{width:244.110000px;}
.w7{width:253.650000px;}
.w21{width:270.030000px;}
.w33{width:274.890000px;}
.w1d{width:283.890000px;}
.w4{width:294.870000px;}
.wf{width:299.550000px;}
.wa{width:300.630000px;}
.w25{width:376.995000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x75{left:1.080000px;}
.x67{left:3.960000px;}
.x79{left:6.300000px;}
.x63{left:8.100000px;}
.x32{left:11.340000px;}
.x33{left:12.960000px;}
.x35{left:15.300000px;}
.x73{left:16.770000px;}
.x41{left:18.360000px;}
.x4f{left:19.620000px;}
.x7f{left:20.700000px;}
.x6a{left:21.780000px;}
.x5e{left:23.400000px;}
.x43{left:25.020000px;}
.x13{left:26.820000px;}
.x54{left:28.440000px;}
.x4e{left:29.520000px;}
.x70{left:30.600000px;}
.x2e{left:32.760000px;}
.x78{left:35.280000px;}
.x19{left:36.720000px;}
.x47{left:38.700000px;}
.x23{left:40.140000px;}
.x69{left:41.940000px;}
.x26{left:43.194000px;}
.x2b{left:44.994000px;}
.x68{left:46.800000px;}
.x15{left:48.600000px;}
.x3b{left:51.660000px;}
.x20{left:52.920000px;}
.x16{left:55.074000px;}
.x57{left:57.054000px;}
.x1c{left:58.134000px;}
.x24{left:59.394000px;}
.x86{left:61.590000px;}
.x46{left:63.900000px;}
.x17{left:66.420000px;}
.x28{left:67.494000px;}
.x30{left:68.754000px;}
.x7b{left:71.685000px;}
.x1b{left:74.514000px;}
.x7a{left:76.365000px;}
.x1a{left:77.754000px;}
.x82{left:80.505000px;}
.x3c{left:81.714000px;}
.x36{left:83.205000px;}
.x3f{left:84.234000px;}
.x2c{left:85.860000px;}
.x52{left:87.114000px;}
.x11{left:89.814000px;}
.x1d{left:91.074000px;}
.x83{left:92.874000px;}
.x3d{left:94.494000px;}
.x21{left:102.060000px;}
.x7d{left:105.294000px;}
.x10{left:106.956000px;}
.x5{left:108.036000px;}
.x25{left:113.625000px;}
.x22{left:117.405000px;}
.x38{left:119.694000px;}
.x5d{left:121.854000px;}
.x5f{left:125.634000px;}
.xd{left:135.036000px;}
.x18{left:138.060000px;}
.x2f{left:142.740000px;}
.x2d{left:146.520000px;}
.x59{left:156.234000px;}
.xe{left:162.030000px;}
.x6d{left:209.730000px;}
.x71{left:234.570000px;}
.x58{left:238.890000px;}
.x60{left:251.670000px;}
.x6e{left:256.350000px;}
.xc{left:257.610000px;}
.x7c{left:260.310000px;}
.x6{left:265.890000px;}
.x1{left:270.210000px;}
.x7{left:272.775000px;}
.x3e{left:274.575000px;}
.x37{left:277.095000px;}
.x6b{left:278.175000px;}
.x31{left:284.115000px;}
.x29{left:285.195000px;}
.xa{left:296.175000px;}
.x1e{left:299.955000px;}
.x48{left:302.115000px;}
.x27{left:314.175000px;}
.x6c{left:317.955000px;}
.x12{left:329.835000px;}
.x40{left:333.615000px;}
.x49{left:345.135000px;}
.x61{left:353.415000px;}
.x53{left:379.155000px;}
.x7e{left:384.015000px;}
.x50{left:393.015000px;}
.x39{left:408.675000px;}
.x9{left:427.215000px;}
.x8{left:432.615000px;}
.x4a{left:440.355000px;}
.x72{left:442.155000px;}
.x3{left:443.235000px;}
.xb{left:445.215000px;}
.x84{left:450.615000px;}
.x42{left:455.505000px;}
.x2{left:473.325000px;}
.x2a{left:485.565000px;}
.x14{left:491.325000px;}
.x62{left:498.525000px;}
.x80{left:504.645000px;}
.x55{left:512.205000px;}
.x4b{left:526.965000px;}
.x74{left:531.285000px;}
.x1f{left:532.725000px;}
.x3a{left:552.705000px;}
.x5a{left:561.705000px;}
.x81{left:564.765000px;}
.x51{left:565.845000px;}
.x76{left:567.465000px;}
.x85{left:576.105000px;}
.x64{left:583.845000px;}
.x34{left:593.565000px;}
.x56{left:599.505000px;}
.x65{left:620.385000px;}
.x44{left:624.525000px;}
.x5b{left:637.350000px;}
.x4c{left:640.050000px;}
.x66{left:666.150000px;}
.x6f{left:681.630000px;}
.x77{left:689.730000px;}
.x45{left:696.570000px;}
.x5c{left:712.950000px;}
.x4d{left:715.470000px;}
.x4{left:767.130000px;}
.xf{left:781.170000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.409067pt;}
.ls10{letter-spacing:0.414933pt;}
.ls9{letter-spacing:0.869333pt;}
.lsf{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.891307pt;}
.ls4{letter-spacing:56.891307pt;}
.ls3{letter-spacing:178.698667pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.149333pt;}
.wse{word-spacing:-13.694933pt;}
.ws5{word-spacing:-13.689067pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.870933pt;}
.ws4{word-spacing:0.000000pt;}
._23{margin-left:-1.813333pt;}
._2{margin-left:-0.906453pt;}
._0{width:1.062400pt;}
._1{width:2.564907pt;}
._b{width:3.671467pt;}
._f{width:4.712107pt;}
._6{width:5.985707pt;}
._5{width:6.958720pt;}
._8{width:7.895467pt;}
._c{width:9.357653pt;}
._11{width:10.375893pt;}
._10{width:11.314560pt;}
._12{width:12.270720pt;}
._13{width:14.558293pt;}
._3{width:15.723520pt;}
._4{width:16.726400pt;}
._14{width:17.705173pt;}
._9{width:18.857600pt;}
._a{width:19.760640pt;}
._d{width:21.248000pt;}
._e{width:22.257280pt;}
._15{width:23.638400pt;}
._16{width:24.586880pt;}
._17{width:26.279680pt;}
._18{width:28.631680pt;}
._19{width:29.570347pt;}
._20{width:31.560107pt;}
._1f{width:32.668800pt;}
._21{width:34.605653pt;}
._1a{width:120.685867pt;}
._7{width:178.698667pt;}
._22{width:234.597973pt;}
._1e{width:278.356907pt;}
._1d{width:291.377920pt;}
._1b{width:373.873067pt;}
._1c{width:377.357227pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y13f{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:2.880000pt;}
.ya7{bottom:3.040000pt;}
.yad{bottom:3.200000pt;}
.ya9{bottom:3.360000pt;}
.y152{bottom:10.720000pt;}
.y156{bottom:10.880000pt;}
.y159{bottom:11.040000pt;}
.y153{bottom:18.400000pt;}
.y155{bottom:18.560000pt;}
.y158{bottom:18.720000pt;}
.y5{bottom:34.080000pt;}
.y4{bottom:49.760000pt;}
.ya2{bottom:100.192000pt;}
.y13e{bottom:101.792000pt;}
.y7c{bottom:105.952000pt;}
.yb2{bottom:106.432000pt;}
.y181{bottom:107.392000pt;}
.ye0{bottom:108.512000pt;}
.y99{bottom:109.792000pt;}
.y40{bottom:111.552000pt;}
.y14f{bottom:112.512000pt;}
.ya1{bottom:115.552000pt;}
.y13d{bottom:117.152000pt;}
.y116{bottom:120.512000pt;}
.y7b{bottom:121.312000pt;}
.yb1{bottom:121.792000pt;}
.y180{bottom:122.592000pt;}
.ydf{bottom:123.872000pt;}
.y178{bottom:124.512000pt;}
.y98{bottom:125.152000pt;}
.y3f{bottom:126.912000pt;}
.ya0{bottom:130.592000pt;}
.y13c{bottom:132.512000pt;}
.y115{bottom:135.866667pt;}
.y7a{bottom:136.666667pt;}
.yb0{bottom:136.826667pt;}
.yde{bottom:138.906667pt;}
.y177{bottom:139.866667pt;}
.y9e{bottom:140.186667pt;}
.y97{bottom:140.506667pt;}
.y3e{bottom:142.266667pt;}
.y9f{bottom:143.066667pt;}
.y13b{bottom:147.866667pt;}
.y114{bottom:150.906667pt;}
.y79{bottom:152.026667pt;}
.ydd{bottom:154.426667pt;}
.y176{bottom:155.226667pt;}
.y96{bottom:155.866667pt;}
.yaf{bottom:156.186667pt;}
.y3d{bottom:157.626667pt;}
.y13a{bottom:163.226667pt;}
.y113{bottom:166.426667pt;}
.y78{bottom:167.386667pt;}
.ydc{bottom:169.786667pt;}
.y175{bottom:170.426667pt;}
.y95{bottom:171.226667pt;}
.y3c{bottom:172.826667pt;}
.yae{bottom:175.546667pt;}
.y139{bottom:178.426667pt;}
.y112{bottom:181.786667pt;}
.y77{bottom:182.426667pt;}
.ydb{bottom:185.146667pt;}
.y174{bottom:185.786667pt;}
.y17c{bottom:186.106667pt;}
.y94{bottom:186.426667pt;}
.y3b{bottom:188.186667pt;}
.y138{bottom:193.786667pt;}
.yac{bottom:194.906667pt;}
.y111{bottom:197.146667pt;}
.y76{bottom:197.946667pt;}
.yda{bottom:200.506667pt;}
.y173{bottom:201.146667pt;}
.y93{bottom:201.786667pt;}
.y3a{bottom:203.546667pt;}
.y137{bottom:208.826667pt;}
.y110{bottom:212.506667pt;}
.y75{bottom:213.306667pt;}
.yab{bottom:214.106667pt;}
.yd9{bottom:215.866667pt;}
.y172{bottom:216.506667pt;}
.y92{bottom:216.826667pt;}
.y9d{bottom:217.146667pt;}
.y39{bottom:218.906667pt;}
.y10f{bottom:227.866667pt;}
.y136{bottom:228.186667pt;}
.y74{bottom:228.666667pt;}
.yd8{bottom:231.226667pt;}
.y171{bottom:231.866667pt;}
.y91{bottom:232.506667pt;}
.yaa{bottom:233.466667pt;}
.y38{bottom:234.266667pt;}
.y10e{bottom:243.226667pt;}
.y73{bottom:244.026667pt;}
.yd7{bottom:246.426667pt;}
.y170{bottom:247.226667pt;}
.y135{bottom:247.546667pt;}
.y90{bottom:247.866667pt;}
.y37{bottom:249.626667pt;}
.ya8{bottom:252.826667pt;}
.y10d{bottom:258.426667pt;}
.y72{bottom:259.386667pt;}
.yd6{bottom:261.466667pt;}
.y16f{bottom:262.426667pt;}
.y8f{bottom:263.226667pt;}
.y36{bottom:264.826667pt;}
.y134{bottom:266.746667pt;}
.ya6{bottom:272.186667pt;}
.y10c{bottom:273.466667pt;}
.y71{bottom:274.586667pt;}
.y16e{bottom:277.786667pt;}
.y8e{bottom:278.426667pt;}
.y35{bottom:280.186667pt;}
.yd5{bottom:280.826667pt;}
.y133{bottom:286.106667pt;}
.y70{bottom:289.946667pt;}
.y10b{bottom:292.826667pt;}
.y16d{bottom:293.146667pt;}
.y8d{bottom:293.786667pt;}
.y34{bottom:295.546667pt;}
.yd4{bottom:300.186667pt;}
.y6f{bottom:305.306667pt;}
.y132{bottom:307.866667pt;}
.y16c{bottom:308.186667pt;}
.y8c{bottom:309.146667pt;}
.y33{bottom:310.906667pt;}
.y10a{bottom:312.186667pt;}
.yd3{bottom:319.586667pt;}
.y6e{bottom:320.706667pt;}
.y131{bottom:323.266667pt;}
.y16b{bottom:323.586667pt;}
.y8b{bottom:324.546667pt;}
.y32{bottom:326.306667pt;}
.y109{bottom:331.586667pt;}
.y6d{bottom:336.066667pt;}
.y130{bottom:338.466667pt;}
.yd2{bottom:338.786667pt;}
.y16a{bottom:339.106667pt;}
.ya5{bottom:339.586667pt;}
.y8a{bottom:339.906667pt;}
.y31{bottom:341.346667pt;}
.y108{bottom:350.786667pt;}
.y6c{bottom:351.426667pt;}
.y12f{bottom:353.826667pt;}
.y169{bottom:354.466667pt;}
.y89{bottom:355.266667pt;}
.y30{bottom:356.866667pt;}
.yd1{bottom:358.146667pt;}
.y6b{bottom:366.626667pt;}
.y12e{bottom:369.186667pt;}
.y168{bottom:369.506667pt;}
.y88{bottom:370.146667pt;}
.y9c{bottom:370.466667pt;}
.y2f{bottom:372.226667pt;}
.y107{bottom:372.546667pt;}
.y6a{bottom:381.666667pt;}
.y12d{bottom:384.546667pt;}
.y87{bottom:385.826667pt;}
.y2e{bottom:387.586667pt;}
.y106{bottom:387.906667pt;}
.y167{bottom:388.866667pt;}
.yd0{bottom:395.106667pt;}
.y69{bottom:397.346667pt;}
.y12c{bottom:399.906667pt;}
.ya4{bottom:400.866667pt;}
.y86{bottom:401.186667pt;}
.y2d{bottom:402.946667pt;}
.y105{bottom:403.106667pt;}
.y166{bottom:408.226667pt;}
.ycf{bottom:410.466667pt;}
.y68{bottom:412.706667pt;}
.y12b{bottom:414.786667pt;}
.y85{bottom:416.546667pt;}
.y104{bottom:418.146667pt;}
.y2c{bottom:418.306667pt;}
.yce{bottom:425.506667pt;}
.y165{bottom:427.586667pt;}
.y67{bottom:429.026667pt;}
.y12a{bottom:430.466667pt;}
.y84{bottom:431.906667pt;}
.y2b{bottom:433.506667pt;}
.y103{bottom:433.826667pt;}
.ycd{bottom:441.186667pt;}
.y66{bottom:444.386667pt;}
.y129{bottom:445.826667pt;}
.y83{bottom:447.106667pt;}
.y2a{bottom:448.866667pt;}
.y102{bottom:449.186667pt;}
.ycc{bottom:456.546667pt;}
.y65{bottom:460.546667pt;}
.y128{bottom:461.186667pt;}
.y9b{bottom:462.146667pt;}
.y82{bottom:462.466667pt;}
.y29{bottom:464.226667pt;}
.y101{bottom:464.546667pt;}
.ycb{bottom:471.906667pt;}
.y127{bottom:476.546667pt;}
.y64{bottom:476.866667pt;}
.y81{bottom:477.826667pt;}
.y28{bottom:479.586667pt;}
.y100{bottom:479.906667pt;}
.yca{bottom:487.106667pt;}
.y126{bottom:491.906667pt;}
.y63{bottom:492.866667pt;}
.y80{bottom:493.186667pt;}
.y27{bottom:494.626667pt;}
.yff{bottom:495.106667pt;}
.yc9{bottom:502.466667pt;}
.y125{bottom:507.106667pt;}
.y17b{bottom:508.226667pt;}
.y62{bottom:508.546667pt;}
.y164{bottom:510.146667pt;}
.y26{bottom:510.306667pt;}
.yfe{bottom:510.466667pt;}
.yc8{bottom:517.506667pt;}
.y124{bottom:522.466667pt;}
.y61{bottom:523.906667pt;}
.y25{bottom:525.506667pt;}
.yfd{bottom:525.826667pt;}
.yc7{bottom:536.866667pt;}
.y123{bottom:537.826667pt;}
.y60{bottom:539.106667pt;}
.y24{bottom:540.866667pt;}
.y163{bottom:541.186667pt;}
.y14e{bottom:543.906667pt;}
.y122{bottom:553.213333pt;}
.y5f{bottom:554.493333pt;}
.y23{bottom:556.253333pt;}
.y162{bottom:556.573333pt;}
.y14d{bottom:559.133333pt;}
.yfc{bottom:560.253333pt;}
.y121{bottom:568.573333pt;}
.y5e{bottom:569.853333pt;}
.y22{bottom:571.293333pt;}
.y161{bottom:571.453333pt;}
.y14c{bottom:574.493333pt;}
.yc6{bottom:575.453333pt;}
.yfb{bottom:579.453333pt;}
.y120{bottom:583.933333pt;}
.y5d{bottom:585.213333pt;}
.y21{bottom:586.973333pt;}
.y14b{bottom:589.853333pt;}
.y160{bottom:590.813333pt;}
.yc5{bottom:594.813333pt;}
.yfa{bottom:598.813333pt;}
.y11f{bottom:599.133333pt;}
.ya3{bottom:600.253333pt;}
.y5c{bottom:600.573333pt;}
.y20{bottom:602.333333pt;}
.y14a{bottom:605.213333pt;}
.y15f{bottom:610.173333pt;}
.yc4{bottom:614.173333pt;}
.y11e{bottom:614.493333pt;}
.y5b{bottom:615.933333pt;}
.y1f{bottom:617.533333pt;}
.yf9{bottom:618.173333pt;}
.y149{bottom:620.253333pt;}
.y15e{bottom:629.533333pt;}
.y11d{bottom:629.853333pt;}
.y5a{bottom:631.133333pt;}
.y1e{bottom:632.893333pt;}
.yc3{bottom:635.933333pt;}
.yf8{bottom:639.933333pt;}
.y11c{bottom:645.213333pt;}
.y59{bottom:646.493333pt;}
.y1d{bottom:648.253333pt;}
.y15d{bottom:648.893333pt;}
.yc2{bottom:651.133333pt;}
.yf7{bottom:655.133333pt;}
.y11b{bottom:660.573333pt;}
.y58{bottom:661.853333pt;}
.y1c{bottom:663.613333pt;}
.yc1{bottom:666.493333pt;}
.yf6{bottom:670.493333pt;}
.y11a{bottom:675.773333pt;}
.y57{bottom:676.893333pt;}
.y7f{bottom:677.213333pt;}
.y1b{bottom:678.973333pt;}
.yc0{bottom:681.533333pt;}
.y148{bottom:681.853333pt;}
.yf5{bottom:685.533333pt;}
.y15c{bottom:685.853333pt;}
.y119{bottom:691.133333pt;}
.y56{bottom:692.573333pt;}
.y1a{bottom:694.333333pt;}
.ybf{bottom:697.213333pt;}
.yf4{bottom:701.213333pt;}
.y118{bottom:706.173333pt;}
.y55{bottom:707.773333pt;}
.y19{bottom:709.533333pt;}
.ybe{bottom:712.573333pt;}
.y15b{bottom:716.253333pt;}
.yf3{bottom:716.573333pt;}
.y17f{bottom:722.813333pt;}
.y54{bottom:723.133333pt;}
.y18{bottom:724.893333pt;}
.y117{bottom:725.533333pt;}
.ybd{bottom:727.773333pt;}
.yf2{bottom:731.773333pt;}
.y53{bottom:738.493333pt;}
.y17{bottom:740.253333pt;}
.ybc{bottom:743.133333pt;}
.yf1{bottom:747.133333pt;}
.y15a{bottom:750.813333pt;}
.y17a{bottom:753.533333pt;}
.y52{bottom:753.853333pt;}
.y16{bottom:755.613333pt;}
.ybb{bottom:758.493333pt;}
.yf0{bottom:762.493333pt;}
.y51{bottom:769.213333pt;}
.y15{bottom:770.973333pt;}
.yba{bottom:773.853333pt;}
.yef{bottom:777.893333pt;}
.y9a{bottom:784.293333pt;}
.y50{bottom:784.613333pt;}
.y157{bottom:785.573333pt;}
.y14{bottom:786.213333pt;}
.yb9{bottom:788.933333pt;}
.y147{bottom:789.253333pt;}
.yee{bottom:792.933333pt;}
.y4f{bottom:799.813333pt;}
.y13{bottom:801.573333pt;}
.y146{bottom:804.613333pt;}
.yb8{bottom:808.293333pt;}
.yed{bottom:808.613333pt;}
.y17e{bottom:814.853333pt;}
.y4e{bottom:815.173333pt;}
.y12{bottom:816.613333pt;}
.y145{bottom:819.813333pt;}
.y154{bottom:820.293333pt;}
.yec{bottom:823.813333pt;}
.yb7{bottom:827.493333pt;}
.y4d{bottom:830.213333pt;}
.y7e{bottom:830.533333pt;}
.y11{bottom:832.933333pt;}
.y144{bottom:834.853333pt;}
.yeb{bottom:839.173333pt;}
.y4c{bottom:845.893333pt;}
.yb6{bottom:846.853333pt;}
.y10{bottom:848.293333pt;}
.y143{bottom:850.533333pt;}
.yea{bottom:854.533333pt;}
.y151{bottom:854.853333pt;}
.y4b{bottom:861.253333pt;}
.yf{bottom:863.653333pt;}
.y142{bottom:865.573333pt;}
.yb5{bottom:866.213333pt;}
.ye9{bottom:869.893333pt;}
.y4a{bottom:876.613333pt;}
.ye{bottom:879.013333pt;}
.y141{bottom:881.253333pt;}
.ye8{bottom:885.253333pt;}
.yb4{bottom:885.573333pt;}
.y49{bottom:891.813333pt;}
.yd{bottom:894.213333pt;}
.y140{bottom:896.133333pt;}
.ye7{bottom:900.613333pt;}
.y17d{bottom:906.853333pt;}
.y48{bottom:907.173333pt;}
.yc{bottom:909.573333pt;}
.ye6{bottom:915.493333pt;}
.y47{bottom:922.533333pt;}
.yb{bottom:925.573333pt;}
.ye5{bottom:934.853333pt;}
.y46{bottom:937.893333pt;}
.ya{bottom:940.933333pt;}
.yb3{bottom:952.933333pt;}
.y45{bottom:953.253333pt;}
.ye4{bottom:954.213333pt;}
.y9{bottom:956.613333pt;}
.y150{bottom:968.293333pt;}
.y44{bottom:968.613333pt;}
.ye3{bottom:973.573333pt;}
.y8{bottom:975.013333pt;}
.y179{bottom:983.493333pt;}
.y43{bottom:983.813333pt;}
.ye1{bottom:992.933333pt;}
.y7{bottom:993.413333pt;}
.y42{bottom:999.173333pt;}
.y6{bottom:1011.840000pt;}
.y7d{bottom:1014.240000pt;}
.y41{bottom:1014.560000pt;}
.y3{bottom:1032.320000pt;}
.y2{bottom:1047.680000pt;}
.y1{bottom:1063.040000pt;}
.h9{height:15.200000pt;}
.hb{height:15.232000pt;}
.h8{height:15.360000pt;}
.ha{height:15.392000pt;}
.hd{height:30.560000pt;}
.hc{height:30.720000pt;}
.he{height:30.752000pt;}
.h6{height:38.050313pt;}
.h2{height:52.108438pt;}
.h4{height:52.134375pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.h10{height:62.812500pt;}
.h3{height:64.500000pt;}
.hf{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w30{width:30.240000pt;}
.w2a{width:30.400000pt;}
.w2b{width:38.592000pt;}
.w1e{width:44.960000pt;}
.w34{width:51.520000pt;}
.w35{width:51.552000pt;}
.w15{width:62.112000pt;}
.w1c{width:62.880000pt;}
.w1b{width:65.120000pt;}
.w26{width:65.152000pt;}
.w29{width:73.760000pt;}
.w19{width:75.072000pt;}
.w23{width:75.680000pt;}
.w2f{width:77.152000pt;}
.w16{width:79.840000pt;}
.w18{width:82.720000pt;}
.w32{width:85.760000pt;}
.w1a{width:98.592000pt;}
.w1f{width:104.512000pt;}
.w38{width:104.960000pt;}
.w13{width:106.272000pt;}
.w31{width:106.592000pt;}
.w2c{width:106.720000pt;}
.w39{width:109.472000pt;}
.w2d{width:111.360000pt;}
.w22{width:116.192000pt;}
.wc{width:125.920000pt;}
.w10{width:125.952000pt;}
.w28{width:127.072000pt;}
.w3{width:141.466667pt;}
.w36{width:143.386667pt;}
.wd{width:145.146667pt;}
.w14{width:148.160000pt;}
.wb{width:155.386667pt;}
.w8{width:156.346667pt;}
.w24{width:165.946667pt;}
.w5{width:169.626667pt;}
.we{width:171.226667pt;}
.w9{width:176.186667pt;}
.w2e{width:182.426667pt;}
.w3a{width:186.746667pt;}
.w20{width:195.866667pt;}
.w2{width:196.186667pt;}
.w37{width:196.346667pt;}
.w12{width:199.546667pt;}
.w6{width:204.826667pt;}
.w11{width:207.706667pt;}
.w17{width:209.626667pt;}
.w27{width:216.986667pt;}
.w7{width:225.466667pt;}
.w21{width:240.026667pt;}
.w33{width:244.346667pt;}
.w1d{width:252.346667pt;}
.w4{width:262.106667pt;}
.wf{width:266.266667pt;}
.wa{width:267.226667pt;}
.w25{width:335.106667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x75{left:0.960000pt;}
.x67{left:3.520000pt;}
.x79{left:5.600000pt;}
.x63{left:7.200000pt;}
.x32{left:10.080000pt;}
.x33{left:11.520000pt;}
.x35{left:13.600000pt;}
.x73{left:14.906667pt;}
.x41{left:16.320000pt;}
.x4f{left:17.440000pt;}
.x7f{left:18.400000pt;}
.x6a{left:19.360000pt;}
.x5e{left:20.800000pt;}
.x43{left:22.240000pt;}
.x13{left:23.840000pt;}
.x54{left:25.280000pt;}
.x4e{left:26.240000pt;}
.x70{left:27.200000pt;}
.x2e{left:29.120000pt;}
.x78{left:31.360000pt;}
.x19{left:32.640000pt;}
.x47{left:34.400000pt;}
.x23{left:35.680000pt;}
.x69{left:37.280000pt;}
.x26{left:38.394667pt;}
.x2b{left:39.994667pt;}
.x68{left:41.600000pt;}
.x15{left:43.200000pt;}
.x3b{left:45.920000pt;}
.x20{left:47.040000pt;}
.x16{left:48.954667pt;}
.x57{left:50.714667pt;}
.x1c{left:51.674667pt;}
.x24{left:52.794667pt;}
.x86{left:54.746667pt;}
.x46{left:56.800000pt;}
.x17{left:59.040000pt;}
.x28{left:59.994667pt;}
.x30{left:61.114667pt;}
.x7b{left:63.720000pt;}
.x1b{left:66.234667pt;}
.x7a{left:67.880000pt;}
.x1a{left:69.114667pt;}
.x82{left:71.560000pt;}
.x3c{left:72.634667pt;}
.x36{left:73.960000pt;}
.x3f{left:74.874667pt;}
.x2c{left:76.320000pt;}
.x52{left:77.434667pt;}
.x11{left:79.834667pt;}
.x1d{left:80.954667pt;}
.x83{left:82.554667pt;}
.x3d{left:83.994667pt;}
.x21{left:90.720000pt;}
.x7d{left:93.594667pt;}
.x10{left:95.072000pt;}
.x5{left:96.032000pt;}
.x25{left:101.000000pt;}
.x22{left:104.360000pt;}
.x38{left:106.394667pt;}
.x5d{left:108.314667pt;}
.x5f{left:111.674667pt;}
.xd{left:120.032000pt;}
.x18{left:122.720000pt;}
.x2f{left:126.880000pt;}
.x2d{left:130.240000pt;}
.x59{left:138.874667pt;}
.xe{left:144.026667pt;}
.x6d{left:186.426667pt;}
.x71{left:208.506667pt;}
.x58{left:212.346667pt;}
.x60{left:223.706667pt;}
.x6e{left:227.866667pt;}
.xc{left:228.986667pt;}
.x7c{left:231.386667pt;}
.x6{left:236.346667pt;}
.x1{left:240.186667pt;}
.x7{left:242.466667pt;}
.x3e{left:244.066667pt;}
.x37{left:246.306667pt;}
.x6b{left:247.266667pt;}
.x31{left:252.546667pt;}
.x29{left:253.506667pt;}
.xa{left:263.266667pt;}
.x1e{left:266.626667pt;}
.x48{left:268.546667pt;}
.x27{left:279.266667pt;}
.x6c{left:282.626667pt;}
.x12{left:293.186667pt;}
.x40{left:296.546667pt;}
.x49{left:306.786667pt;}
.x61{left:314.146667pt;}
.x53{left:337.026667pt;}
.x7e{left:341.346667pt;}
.x50{left:349.346667pt;}
.x39{left:363.266667pt;}
.x9{left:379.746667pt;}
.x8{left:384.546667pt;}
.x4a{left:391.426667pt;}
.x72{left:393.026667pt;}
.x3{left:393.986667pt;}
.xb{left:395.746667pt;}
.x84{left:400.546667pt;}
.x42{left:404.893333pt;}
.x2{left:420.733333pt;}
.x2a{left:431.613333pt;}
.x14{left:436.733333pt;}
.x62{left:443.133333pt;}
.x80{left:448.573333pt;}
.x55{left:455.293333pt;}
.x4b{left:468.413333pt;}
.x74{left:472.253333pt;}
.x1f{left:473.533333pt;}
.x3a{left:491.293333pt;}
.x5a{left:499.293333pt;}
.x81{left:502.013333pt;}
.x51{left:502.973333pt;}
.x76{left:504.413333pt;}
.x85{left:512.093333pt;}
.x64{left:518.973333pt;}
.x34{left:527.613333pt;}
.x56{left:532.893333pt;}
.x65{left:551.453333pt;}
.x44{left:555.133333pt;}
.x5b{left:566.533333pt;}
.x4c{left:568.933333pt;}
.x66{left:592.133333pt;}
.x6f{left:605.893333pt;}
.x77{left:613.093333pt;}
.x45{left:619.173333pt;}
.x5c{left:633.733333pt;}
.x4d{left:635.973333pt;}
.x4{left:681.893333pt;}
.xf{left:694.373333pt;}
}




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