
    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_0c878927d002f83f40f1eb92.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_b994b052f6202421614b98eb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_bc645f064348ff0e10123142.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e68a88d3d0d5f9c303d764d8.woff')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_36505ecc6212f6e8d5ee4af5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ac5892f5ec4acd9d3be476ed.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f4065ff8ab0c566fa2436590.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_28cc42b04b16f1c89f871df9.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e63548f92a0d2d7b81dd669f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0c0e8c1ef06f6376d14fa42d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5b0262e8df1bde139ea659cc.woff')format("woff");}.ffc{font-family:ffc;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.229800px;}
.ls6{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.072000px;}
.ls1{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.720000px;}
.lsb{letter-spacing:27.504000px;}
.ls10{letter-spacing:64.002720px;}
.lsc{letter-spacing:141.960000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.wsf{word-spacing:-59.760000px;}
.ws2{word-spacing:-41.040000px;}
.ws5{word-spacing:-18.808440px;}
.ws9{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.432000px;}
.wse{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-4.220640px;}
._b{margin-left:-3.024000px;}
._0{margin-left:-1.179360px;}
._1{width:1.395360px;}
._4{width:2.797920px;}
._2{width:4.104000px;}
._3{width:5.400000px;}
._5{width:6.564000px;}
._e{width:8.268000px;}
._f{width:9.804000px;}
._15{width:11.664000px;}
._12{width:12.709920px;}
._11{width:13.779360px;}
._17{width:14.818560px;}
._10{width:15.840000px;}
._16{width:16.875360px;}
._9{width:19.728000px;}
._a{width:20.880000px;}
._13{width:22.512000px;}
._14{width:24.132000px;}
._1b{width:25.731360px;}
._6{width:26.784000px;}
._7{width:27.864000px;}
._c{width:29.304000px;}
._8{width:30.915360px;}
._18{width:32.472000px;}
._19{width:33.552000px;}
._1a{width:35.451360px;}
._1c{width:37.440000px;}
._20{width:38.880000px;}
._21{width:41.931360px;}
._1e{width:90.360000px;}
._1f{width:91.800000px;}
._24{width:98.136000px;}
._25{width:100.008000px;}
._22{width:140.688000px;}
._23{width:142.128000px;}
._1d{width:290.772000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:59.904000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.yf{bottom:-9.360000px;}
.yd{bottom:-6.285000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:3.960000px;}
.y138{bottom:4.140000px;}
.y139{bottom:4.500000px;}
.y13b{bottom:4.530000px;}
.yc5{bottom:5.400000px;}
.y11d{bottom:5.580000px;}
.yd1{bottom:5.760000px;}
.yc9{bottom:5.940000px;}
.ycf{bottom:6.105000px;}
.ycc{bottom:6.120000px;}
.yd7{bottom:6.300000px;}
.yfb{bottom:6.660000px;}
.y102{bottom:7.020000px;}
.yce{bottom:7.725000px;}
.ycb{bottom:7.740000px;}
.yd3{bottom:7.920000px;}
.y36{bottom:8.280000px;}
.yb9{bottom:11.625000px;}
.yc0{bottom:11.985000px;}
.yb{bottom:14.730000px;}
.y8{bottom:15.840000px;}
.yf9{bottom:16.920000px;}
.yc7{bottom:17.280000px;}
.ybc{bottom:21.030000px;}
.ye{bottom:25.020000px;}
.yfa{bottom:27.360000px;}
.y101{bottom:27.720000px;}
.yb8{bottom:29.985000px;}
.y7{bottom:32.436000px;}
.ya{bottom:39.210000px;}
.ye8{bottom:95.796000px;}
.y184{bottom:100.476000px;}
.y5e{bottom:103.176000px;}
.yb3{bottom:105.156000px;}
.y153{bottom:105.876000px;}
.y7c{bottom:109.116000px;}
.ye7{bottom:116.496000px;}
.y95{bottom:117.756000px;}
.y183{bottom:121.176000px;}
.y5d{bottom:123.876000px;}
.y110{bottom:124.416000px;}
.yb2{bottom:125.856000px;}
.y152{bottom:126.576000px;}
.y7b{bottom:129.816000px;}
.y133{bottom:131.256000px;}
.ye6{bottom:137.196000px;}
.y94{bottom:138.456000px;}
.y35{bottom:139.896000px;}
.y182{bottom:141.876000px;}
.y5c{bottom:144.576000px;}
.y10f{bottom:145.476000px;}
.yb1{bottom:146.556000px;}
.y151{bottom:147.276000px;}
.y7a{bottom:150.510000px;}
.y132{bottom:151.950000px;}
.y93{bottom:159.150000px;}
.y34{bottom:160.950000px;}
.y181{bottom:162.570000px;}
.ye5{bottom:163.290000px;}
.y5b{bottom:165.270000px;}
.y10e{bottom:166.170000px;}
.y150{bottom:167.970000px;}
.y79{bottom:171.210000px;}
.y131{bottom:172.650000px;}
.yb0{bottom:172.830000px;}
.y92{bottom:179.850000px;}
.y33{bottom:181.650000px;}
.y180{bottom:183.270000px;}
.ye4{bottom:184.170000px;}
.y5a{bottom:185.970000px;}
.y10d{bottom:186.870000px;}
.y14f{bottom:188.670000px;}
.y78{bottom:191.910000px;}
.y130{bottom:193.350000px;}
.yaf{bottom:199.470000px;}
.y91{bottom:200.550000px;}
.y32{bottom:201.990000px;}
.y17f{bottom:203.970000px;}
.ye3{bottom:205.230000px;}
.y59{bottom:206.670000px;}
.y10c{bottom:207.570000px;}
.y168{bottom:209.370000px;}
.y142{bottom:212.070000px;}
.y77{bottom:212.610000px;}
.y12f{bottom:214.050000px;}
.y14e{bottom:214.770000px;}
.yae{bottom:220.710000px;}
.y90{bottom:221.250000px;}
.y31{bottom:223.050000px;}
.y17e{bottom:224.670000px;}
.ye2{bottom:225.930000px;}
.y58{bottom:227.370000px;}
.y10b{bottom:228.270000px;}
.y167{bottom:230.070000px;}
.y141{bottom:232.950000px;}
.y76{bottom:233.310000px;}
.y12e{bottom:234.750000px;}
.yad{bottom:241.410000px;}
.y8f{bottom:241.950000px;}
.y30{bottom:243.750000px;}
.y17d{bottom:245.370000px;}
.ye1{bottom:246.630000px;}
.y10a{bottom:248.970000px;}
.y166{bottom:250.770000px;}
.y57{bottom:253.470000px;}
.y75{bottom:254.010000px;}
.y12d{bottom:255.450000px;}
.yac{bottom:262.110000px;}
.y14d{bottom:262.650000px;}
.y2f{bottom:264.450000px;}
.y17c{bottom:266.070000px;}
.ye0{bottom:267.330000px;}
.y8e{bottom:268.230000px;}
.y109{bottom:269.670000px;}
.y165{bottom:271.470000px;}
.y74{bottom:274.710000px;}
.y56{bottom:280.110000px;}
.y12c{bottom:281.730000px;}
.yab{bottom:282.810000px;}
.y14c{bottom:283.350000px;}
.y2e{bottom:285.150000px;}
.y17b{bottom:286.770000px;}
.ydf{bottom:288.075000px;}
.y108{bottom:290.415000px;}
.y164{bottom:292.215000px;}
.y8d{bottom:294.915000px;}
.y73{bottom:295.455000px;}
.y55{bottom:301.395000px;}
.y12b{bottom:302.655000px;}
.yaa{bottom:303.555000px;}
.y14b{bottom:304.095000px;}
.y2d{bottom:305.895000px;}
.y17a{bottom:307.515000px;}
.yde{bottom:308.775000px;}
.y107{bottom:311.115000px;}
.y163{bottom:312.915000px;}
.y72{bottom:316.155000px;}
.y12a{bottom:319.935000px;}
.y54{bottom:322.095000px;}
.ya9{bottom:324.255000px;}
.y14a{bottom:324.795000px;}
.y2c{bottom:326.415000px;}
.y179{bottom:328.215000px;}
.ydd{bottom:329.475000px;}
.y106{bottom:331.815000px;}
.y162{bottom:333.615000px;}
.y71{bottom:336.855000px;}
.y53{bottom:342.795000px;}
.y129{bottom:343.155000px;}
.y149{bottom:345.495000px;}
.y2b{bottom:347.115000px;}
.y178{bottom:348.915000px;}
.ydc{bottom:350.175000px;}
.ya8{bottom:350.355000px;}
.y105{bottom:352.515000px;}
.y161{bottom:354.315000px;}
.y70{bottom:357.555000px;}
.y52{bottom:363.495000px;}
.y148{bottom:366.195000px;}
.y128{bottom:367.095000px;}
.y2a{bottom:367.815000px;}
.y177{bottom:369.615000px;}
.ydb{bottom:370.875000px;}
.y160{bottom:375.015000px;}
.ya7{bottom:377.175000px;}
.y140{bottom:377.895000px;}
.y6f{bottom:378.255000px;}
.y104{bottom:378.615000px;}
.y51{bottom:384.195000px;}
.y147{bottom:386.895000px;}
.y29{bottom:388.515000px;}
.y176{bottom:390.315000px;}
.y127{bottom:391.215000px;}
.yda{bottom:396.975000px;}
.ya6{bottom:398.415000px;}
.y6e{bottom:398.955000px;}
.y103{bottom:399.495000px;}
.y50{bottom:404.895000px;}
.y15f{bottom:407.235000px;}
.y28{bottom:409.215000px;}
.y175{bottom:411.015000px;}
.y146{bottom:413.175000px;}
.y126{bottom:415.155000px;}
.y100{bottom:416.955000px;}
.yd9{bottom:417.855000px;}
.ya5{bottom:419.115000px;}
.y8c{bottom:419.655000px;}
.y6d{bottom:425.055000px;}
.y4f{bottom:425.595000px;}
.y15e{bottom:427.935000px;}
.y27{bottom:429.915000px;}
.y174{bottom:431.715000px;}
.yd8{bottom:438.915000px;}
.ya4{bottom:439.815000px;}
.y8b{bottom:440.355000px;}
.y4e{bottom:446.295000px;}
.y15d{bottom:448.995000px;}
.y26{bottom:450.615000px;}
.y173{bottom:452.415000px;}
.yd6{bottom:455.835000px;}
.y13f{bottom:457.275000px;}
.ya3{bottom:460.515000px;}
.y8a{bottom:461.055000px;}
.yff{bottom:463.395000px;}
.y4d{bottom:466.995000px;}
.y125{bottom:468.075000px;}
.y15c{bottom:469.695000px;}
.y25{bottom:471.315000px;}
.y172{bottom:473.115000px;}
.y13e{bottom:478.695000px;}
.yd5{bottom:479.955000px;}
.ya2{bottom:481.215000px;}
.y89{bottom:481.755000px;}
.yfe{bottom:486.615000px;}
.y4c{bottom:487.695000px;}
.y124{bottom:489.135000px;}
.y15b{bottom:490.395000px;}
.y24{bottom:492.015000px;}
.y171{bottom:493.815000px;}
.y13d{bottom:500.115000px;}
.ya1{bottom:501.915000px;}
.y88{bottom:502.455000px;}
.yd4{bottom:503.175000px;}
.y4b{bottom:508.395000px;}
.yfd{bottom:509.835000px;}
.y15a{bottom:511.095000px;}
.y23{bottom:512.715000px;}
.y170{bottom:514.515000px;}
.y13c{bottom:521.715000px;}
.ya0{bottom:522.615000px;}
.y87{bottom:523.155000px;}
.yd2{bottom:527.115000px;}
.y4a{bottom:529.095000px;}
.y123{bottom:530.535000px;}
.y159{bottom:531.795000px;}
.yfc{bottom:533.055000px;}
.y22{bottom:533.415000px;}
.y16f{bottom:535.215000px;}
.y13a{bottom:543.135000px;}
.y9f{bottom:543.315000px;}
.y86{bottom:543.855000px;}
.y49{bottom:549.825000px;}
.yd0{bottom:551.265000px;}
.y158{bottom:552.525000px;}
.y16e{bottom:555.945000px;}
.yf8{bottom:557.205000px;}
.y85{bottom:564.585000px;}
.y21{bottom:565.845000px;}
.y9e{bottom:569.445000px;}
.y48{bottom:570.525000px;}
.y122{bottom:571.965000px;}
.ycd{bottom:574.500000px;}
.y16d{bottom:576.645000px;}
.y157{bottom:578.805000px;}
.y84{bottom:585.285000px;}
.y137{bottom:586.005000px;}
.y20{bottom:586.905000px;}
.y47{bottom:591.225000px;}
.y121{bottom:592.665000px;}
.yc1{bottom:593.745000px;}
.y9d{bottom:596.085000px;}
.y16c{bottom:597.345000px;}
.yca{bottom:598.425000px;}
.y156{bottom:605.445000px;}
.y83{bottom:605.985000px;}
.y1f{bottom:607.605000px;}
.yf7{bottom:608.505000px;}
.y136{bottom:611.565000px;}
.y46{bottom:611.925000px;}
.y16b{bottom:618.045000px;}
.y120{bottom:618.765000px;}
.yc8{bottom:622.365000px;}
.y9c{bottom:622.905000px;}
.y82{bottom:626.685000px;}
.y1e{bottom:628.305000px;}
.yf6{bottom:629.565000px;}
.yb7{bottom:631.260000px;}
.y135{bottom:632.265000px;}
.y45{bottom:632.625000px;}
.y16a{bottom:638.745000px;}
.y11f{bottom:640.005000px;}
.yc6{bottom:645.765000px;}
.y81{bottom:647.385000px;}
.y1d{bottom:648.645000px;}
.y9b{bottom:649.545000px;}
.yf5{bottom:650.265000px;}
.y44{bottom:653.325000px;}
.y11e{bottom:656.925000px;}
.y6c{bottom:658.905000px;}
.y169{bottom:659.445000px;}
.y80{bottom:668.085000px;}
.y1c{bottom:669.705000px;}
.yf4{bottom:670.785000px;}
.y43{bottom:674.025000px;}
.y9a{bottom:676.185000px;}
.yb6{bottom:679.605000px;}
.y6b{bottom:679.965000px;}
.y11c{bottom:680.865000px;}
.y7f{bottom:688.785000px;}
.y1b{bottom:690.405000px;}
.yc4{bottom:692.925000px;}
.y42{bottom:694.725000px;}
.y6a{bottom:700.665000px;}
.y99{bottom:702.825000px;}
.ybf{bottom:703.080000px;}
.y11b{bottom:709.125000px;}
.y145{bottom:709.485000px;}
.y1a{bottom:711.105000px;}
.y7e{bottom:714.885000px;}
.yf3{bottom:715.065000px;}
.y41{bottom:715.425000px;}
.yb5{bottom:718.305000px;}
.yc3{bottom:721.005000px;}
.y69{bottom:721.365000px;}
.y98{bottom:729.645000px;}
.y11a{bottom:730.185000px;}
.y19{bottom:731.445000px;}
.ybe{bottom:733.245000px;}
.yf2{bottom:735.585000px;}
.y40{bottom:736.125000px;}
.yb4{bottom:736.665000px;}
.y7d{bottom:741.525000px;}
.y68{bottom:742.065000px;}
.y119{bottom:750.885000px;}
.ybd{bottom:751.425000px;}
.y18{bottom:752.505000px;}
.y97{bottom:756.285000px;}
.y3f{bottom:756.825000px;}
.yf1{bottom:757.725000px;}
.y67{bottom:762.765000px;}
.y118{bottom:771.585000px;}
.y17{bottom:773.205000px;}
.y3e{bottom:777.525000px;}
.yf0{bottom:778.245000px;}
.y96{bottom:782.925000px;}
.y66{bottom:783.465000px;}
.y117{bottom:792.285000px;}
.y16{bottom:793.545000px;}
.ybb{bottom:794.700000px;}
.y144{bottom:797.685000px;}
.y3d{bottom:798.225000px;}
.yef{bottom:800.385000px;}
.y65{bottom:804.165000px;}
.y116{bottom:813.030000px;}
.y15{bottom:814.290000px;}
.y155{bottom:818.430000px;}
.y3c{bottom:818.970000px;}
.yee{bottom:820.950000px;}
.y143{bottom:824.370000px;}
.y64{bottom:824.910000px;}
.y115{bottom:833.730000px;}
.yba{bottom:834.090000px;}
.y14{bottom:834.990000px;}
.y3b{bottom:839.670000px;}
.yed{bottom:843.090000px;}
.y154{bottom:845.070000px;}
.y63{bottom:845.610000px;}
.y114{bottom:854.430000px;}
.y13{bottom:856.230000px;}
.y3a{bottom:860.370000px;}
.yec{bottom:863.610000px;}
.y134{bottom:865.770000px;}
.y62{bottom:866.310000px;}
.y113{bottom:875.130000px;}
.y12{bottom:880.350000px;}
.y39{bottom:881.070000px;}
.yeb{bottom:885.750000px;}
.y61{bottom:887.010000px;}
.y112{bottom:901.230000px;}
.y38{bottom:901.770000px;}
.y11{bottom:904.470000px;}
.yea{bottom:906.450000px;}
.y60{bottom:907.710000px;}
.ye9{bottom:926.970000px;}
.y37{bottom:927.870000px;}
.y10{bottom:928.050000px;}
.y111{bottom:928.230000px;}
.y5f{bottom:928.410000px;}
.y6{bottom:948.390000px;}
.y5{bottom:967.830000px;}
.yc{bottom:971.595000px;}
.y9{bottom:971.640000px;}
.y4{bottom:992.490000px;}
.y3{bottom:1016.970000px;}
.y2{bottom:1041.450000px;}
.y1{bottom:1063.050000px;}
.hf{height:18.180000px;}
.h21{height:20.685000px;}
.h1f{height:20.700000px;}
.h20{height:20.730000px;}
.h1c{height:23.205000px;}
.h11{height:23.220000px;}
.h1e{height:23.385000px;}
.h14{height:23.400000px;}
.h1b{height:23.430000px;}
.h16{height:23.925000px;}
.h15{height:23.940000px;}
.h18{height:24.105000px;}
.h17{height:24.150000px;}
.h9{height:28.305000px;}
.h5{height:39.105000px;}
.h1d{height:46.425000px;}
.h13{height:46.440000px;}
.h1{height:53.709961px;}
.h3{height:57.060000px;}
.h1a{height:58.429688px;}
.h4{height:59.439023px;}
.he{height:59.582250px;}
.h10{height:61.189805px;}
.hb{height:64.546875px;}
.hc{height:70.200000px;}
.hd{height:70.380000px;}
.h12{height:70.628906px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.h2{height:73.722656px;}
.h19{height:74.004654px;}
.ha{height:83.787539px;}
.h7{height:84.898125px;}
.h0{height:1188.000000px;}
.w20{width:45.180000px;}
.w4{width:46.800000px;}
.w1d{width:55.965000px;}
.w1f{width:61.560000px;}
.wc{width:61.740000px;}
.w17{width:63.561000px;}
.w18{width:64.440000px;}
.we{width:74.325000px;}
.wf{width:74.685000px;}
.w13{width:77.925000px;}
.w11{width:77.940000px;}
.w12{width:77.976000px;}
.w15{width:78.141000px;}
.w14{width:78.285000px;}
.w21{width:80.136000px;}
.w1b{width:92.865000px;}
.w19{width:92.880000px;}
.w1a{width:92.916000px;}
.w1c{width:93.081000px;}
.wd{width:103.356000px;}
.w6{width:135.000000px;}
.w5{width:135.180000px;}
.w16{width:146.331000px;}
.wa{width:156.090000px;}
.w8{width:163.431000px;}
.w9{width:214.575000px;}
.w1{width:240.300000px;}
.w2{width:240.375000px;}
.w22{width:241.215000px;}
.w1e{width:273.981000px;}
.wb{width:276.861000px;}
.w10{width:278.841000px;}
.w7{width:571.230000px;}
.w3{width:628.650000px;}
.w23{width:702.090000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:7.380000px;}
.x36{left:9.531000px;}
.x7{left:10.800000px;}
.x19{left:12.135000px;}
.x2c{left:19.425000px;}
.x2e{left:21.405000px;}
.x37{left:23.220000px;}
.x2a{left:25.185000px;}
.x2f{left:35.820000px;}
.x2d{left:40.320000px;}
.x28{left:46.620000px;}
.x5{left:55.005000px;}
.x22{left:61.590000px;}
.x6{left:67.965000px;}
.x23{left:81.705000px;}
.x26{left:101.685000px;}
.x1{left:108.036000px;}
.x24{left:114.876000px;}
.x9{left:133.776000px;}
.x25{left:135.036000px;}
.x3f{left:162.030000px;}
.xa{left:174.450000px;}
.x1f{left:184.905000px;}
.x16{left:209.730000px;}
.xf{left:223.590000px;}
.x11{left:247.350000px;}
.xd{left:251.310000px;}
.x38{left:254.385000px;}
.x20{left:271.485000px;}
.xe{left:301.530000px;}
.x39{left:317.955000px;}
.x13{left:344.055000px;}
.x10{left:354.495000px;}
.x12{left:357.195000px;}
.xc{left:362.955000px;}
.x3a{left:382.395000px;}
.x27{left:384.915000px;}
.x31{left:386.895000px;}
.xb{left:393.195000px;}
.x1b{left:398.700000px;}
.x18{left:404.460000px;}
.x30{left:432.435000px;}
.x14{left:435.675000px;}
.x40{left:443.595000px;}
.x1a{left:445.035000px;}
.x17{left:446.115000px;}
.x3{left:448.815000px;}
.x8{left:459.075000px;}
.x32{left:464.835000px;}
.x3b{left:475.275000px;}
.x4{left:482.760000px;}
.x21{left:486.075000px;}
.x41{left:488.775000px;}
.x33{left:542.820000px;}
.x29{left:550.020000px;}
.x3c{left:568.200000px;}
.x1e{left:615.600000px;}
.x34{left:620.760000px;}
.x2b{left:624.360000px;}
.x1c{left:635.325000px;}
.x1d{left:656.205000px;}
.x3d{left:661.080000px;}
.x35{left:699.060000px;}
.x3e{left:754.170000px;}
.x2{left:810.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.204267pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsb{letter-spacing:24.448000pt;}
.ls10{letter-spacing:56.891307pt;}
.lsc{letter-spacing:126.186667pt;}
.wsb{word-spacing:-64.000000pt;}
.wsf{word-spacing:-53.120000pt;}
.ws2{word-spacing:-36.480000pt;}
.ws5{word-spacing:-16.718613pt;}
.ws9{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.384000pt;}
.wse{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-3.751680pt;}
._b{margin-left:-2.688000pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.240320pt;}
._4{width:2.487040pt;}
._2{width:3.648000pt;}
._3{width:4.800000pt;}
._5{width:5.834667pt;}
._e{width:7.349333pt;}
._f{width:8.714667pt;}
._15{width:10.368000pt;}
._12{width:11.297707pt;}
._11{width:12.248320pt;}
._17{width:13.172053pt;}
._10{width:14.080000pt;}
._16{width:15.000320pt;}
._9{width:17.536000pt;}
._a{width:18.560000pt;}
._13{width:20.010667pt;}
._14{width:21.450667pt;}
._1b{width:22.872320pt;}
._6{width:23.808000pt;}
._7{width:24.768000pt;}
._c{width:26.048000pt;}
._8{width:27.480320pt;}
._18{width:28.864000pt;}
._19{width:29.824000pt;}
._1a{width:31.512320pt;}
._1c{width:33.280000pt;}
._20{width:34.560000pt;}
._21{width:37.272320pt;}
._1e{width:80.320000pt;}
._1f{width:81.600000pt;}
._24{width:87.232000pt;}
._25{width:88.896000pt;}
._22{width:125.056000pt;}
._23{width:126.336000pt;}
._1d{width:258.464000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:53.248000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.yf{bottom:-8.320000pt;}
.yd{bottom:-5.586667pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:3.520000pt;}
.y138{bottom:3.680000pt;}
.y139{bottom:4.000000pt;}
.y13b{bottom:4.026667pt;}
.yc5{bottom:4.800000pt;}
.y11d{bottom:4.960000pt;}
.yd1{bottom:5.120000pt;}
.yc9{bottom:5.280000pt;}
.ycf{bottom:5.426667pt;}
.ycc{bottom:5.440000pt;}
.yd7{bottom:5.600000pt;}
.yfb{bottom:5.920000pt;}
.y102{bottom:6.240000pt;}
.yce{bottom:6.866667pt;}
.ycb{bottom:6.880000pt;}
.yd3{bottom:7.040000pt;}
.y36{bottom:7.360000pt;}
.yb9{bottom:10.333333pt;}
.yc0{bottom:10.653333pt;}
.yb{bottom:13.093333pt;}
.y8{bottom:14.080000pt;}
.yf9{bottom:15.040000pt;}
.yc7{bottom:15.360000pt;}
.ybc{bottom:18.693333pt;}
.ye{bottom:22.240000pt;}
.yfa{bottom:24.320000pt;}
.y101{bottom:24.640000pt;}
.yb8{bottom:26.653333pt;}
.y7{bottom:28.832000pt;}
.ya{bottom:34.853333pt;}
.ye8{bottom:85.152000pt;}
.y184{bottom:89.312000pt;}
.y5e{bottom:91.712000pt;}
.yb3{bottom:93.472000pt;}
.y153{bottom:94.112000pt;}
.y7c{bottom:96.992000pt;}
.ye7{bottom:103.552000pt;}
.y95{bottom:104.672000pt;}
.y183{bottom:107.712000pt;}
.y5d{bottom:110.112000pt;}
.y110{bottom:110.592000pt;}
.yb2{bottom:111.872000pt;}
.y152{bottom:112.512000pt;}
.y7b{bottom:115.392000pt;}
.y133{bottom:116.672000pt;}
.ye6{bottom:121.952000pt;}
.y94{bottom:123.072000pt;}
.y35{bottom:124.352000pt;}
.y182{bottom:126.112000pt;}
.y5c{bottom:128.512000pt;}
.y10f{bottom:129.312000pt;}
.yb1{bottom:130.272000pt;}
.y151{bottom:130.912000pt;}
.y7a{bottom:133.786667pt;}
.y132{bottom:135.066667pt;}
.y93{bottom:141.466667pt;}
.y34{bottom:143.066667pt;}
.y181{bottom:144.506667pt;}
.ye5{bottom:145.146667pt;}
.y5b{bottom:146.906667pt;}
.y10e{bottom:147.706667pt;}
.y150{bottom:149.306667pt;}
.y79{bottom:152.186667pt;}
.y131{bottom:153.466667pt;}
.yb0{bottom:153.626667pt;}
.y92{bottom:159.866667pt;}
.y33{bottom:161.466667pt;}
.y180{bottom:162.906667pt;}
.ye4{bottom:163.706667pt;}
.y5a{bottom:165.306667pt;}
.y10d{bottom:166.106667pt;}
.y14f{bottom:167.706667pt;}
.y78{bottom:170.586667pt;}
.y130{bottom:171.866667pt;}
.yaf{bottom:177.306667pt;}
.y91{bottom:178.266667pt;}
.y32{bottom:179.546667pt;}
.y17f{bottom:181.306667pt;}
.ye3{bottom:182.426667pt;}
.y59{bottom:183.706667pt;}
.y10c{bottom:184.506667pt;}
.y168{bottom:186.106667pt;}
.y142{bottom:188.506667pt;}
.y77{bottom:188.986667pt;}
.y12f{bottom:190.266667pt;}
.y14e{bottom:190.906667pt;}
.yae{bottom:196.186667pt;}
.y90{bottom:196.666667pt;}
.y31{bottom:198.266667pt;}
.y17e{bottom:199.706667pt;}
.ye2{bottom:200.826667pt;}
.y58{bottom:202.106667pt;}
.y10b{bottom:202.906667pt;}
.y167{bottom:204.506667pt;}
.y141{bottom:207.066667pt;}
.y76{bottom:207.386667pt;}
.y12e{bottom:208.666667pt;}
.yad{bottom:214.586667pt;}
.y8f{bottom:215.066667pt;}
.y30{bottom:216.666667pt;}
.y17d{bottom:218.106667pt;}
.ye1{bottom:219.226667pt;}
.y10a{bottom:221.306667pt;}
.y166{bottom:222.906667pt;}
.y57{bottom:225.306667pt;}
.y75{bottom:225.786667pt;}
.y12d{bottom:227.066667pt;}
.yac{bottom:232.986667pt;}
.y14d{bottom:233.466667pt;}
.y2f{bottom:235.066667pt;}
.y17c{bottom:236.506667pt;}
.ye0{bottom:237.626667pt;}
.y8e{bottom:238.426667pt;}
.y109{bottom:239.706667pt;}
.y165{bottom:241.306667pt;}
.y74{bottom:244.186667pt;}
.y56{bottom:248.986667pt;}
.y12c{bottom:250.426667pt;}
.yab{bottom:251.386667pt;}
.y14c{bottom:251.866667pt;}
.y2e{bottom:253.466667pt;}
.y17b{bottom:254.906667pt;}
.ydf{bottom:256.066667pt;}
.y108{bottom:258.146667pt;}
.y164{bottom:259.746667pt;}
.y8d{bottom:262.146667pt;}
.y73{bottom:262.626667pt;}
.y55{bottom:267.906667pt;}
.y12b{bottom:269.026667pt;}
.yaa{bottom:269.826667pt;}
.y14b{bottom:270.306667pt;}
.y2d{bottom:271.906667pt;}
.y17a{bottom:273.346667pt;}
.yde{bottom:274.466667pt;}
.y107{bottom:276.546667pt;}
.y163{bottom:278.146667pt;}
.y72{bottom:281.026667pt;}
.y12a{bottom:284.386667pt;}
.y54{bottom:286.306667pt;}
.ya9{bottom:288.226667pt;}
.y14a{bottom:288.706667pt;}
.y2c{bottom:290.146667pt;}
.y179{bottom:291.746667pt;}
.ydd{bottom:292.866667pt;}
.y106{bottom:294.946667pt;}
.y162{bottom:296.546667pt;}
.y71{bottom:299.426667pt;}
.y53{bottom:304.706667pt;}
.y129{bottom:305.026667pt;}
.y149{bottom:307.106667pt;}
.y2b{bottom:308.546667pt;}
.y178{bottom:310.146667pt;}
.ydc{bottom:311.266667pt;}
.ya8{bottom:311.426667pt;}
.y105{bottom:313.346667pt;}
.y161{bottom:314.946667pt;}
.y70{bottom:317.826667pt;}
.y52{bottom:323.106667pt;}
.y148{bottom:325.506667pt;}
.y128{bottom:326.306667pt;}
.y2a{bottom:326.946667pt;}
.y177{bottom:328.546667pt;}
.ydb{bottom:329.666667pt;}
.y160{bottom:333.346667pt;}
.ya7{bottom:335.266667pt;}
.y140{bottom:335.906667pt;}
.y6f{bottom:336.226667pt;}
.y104{bottom:336.546667pt;}
.y51{bottom:341.506667pt;}
.y147{bottom:343.906667pt;}
.y29{bottom:345.346667pt;}
.y176{bottom:346.946667pt;}
.y127{bottom:347.746667pt;}
.yda{bottom:352.866667pt;}
.ya6{bottom:354.146667pt;}
.y6e{bottom:354.626667pt;}
.y103{bottom:355.106667pt;}
.y50{bottom:359.906667pt;}
.y15f{bottom:361.986667pt;}
.y28{bottom:363.746667pt;}
.y175{bottom:365.346667pt;}
.y146{bottom:367.266667pt;}
.y126{bottom:369.026667pt;}
.y100{bottom:370.626667pt;}
.yd9{bottom:371.426667pt;}
.ya5{bottom:372.546667pt;}
.y8c{bottom:373.026667pt;}
.y6d{bottom:377.826667pt;}
.y4f{bottom:378.306667pt;}
.y15e{bottom:380.386667pt;}
.y27{bottom:382.146667pt;}
.y174{bottom:383.746667pt;}
.yd8{bottom:390.146667pt;}
.ya4{bottom:390.946667pt;}
.y8b{bottom:391.426667pt;}
.y4e{bottom:396.706667pt;}
.y15d{bottom:399.106667pt;}
.y26{bottom:400.546667pt;}
.y173{bottom:402.146667pt;}
.yd6{bottom:405.186667pt;}
.y13f{bottom:406.466667pt;}
.ya3{bottom:409.346667pt;}
.y8a{bottom:409.826667pt;}
.yff{bottom:411.906667pt;}
.y4d{bottom:415.106667pt;}
.y125{bottom:416.066667pt;}
.y15c{bottom:417.506667pt;}
.y25{bottom:418.946667pt;}
.y172{bottom:420.546667pt;}
.y13e{bottom:425.506667pt;}
.yd5{bottom:426.626667pt;}
.ya2{bottom:427.746667pt;}
.y89{bottom:428.226667pt;}
.yfe{bottom:432.546667pt;}
.y4c{bottom:433.506667pt;}
.y124{bottom:434.786667pt;}
.y15b{bottom:435.906667pt;}
.y24{bottom:437.346667pt;}
.y171{bottom:438.946667pt;}
.y13d{bottom:444.546667pt;}
.ya1{bottom:446.146667pt;}
.y88{bottom:446.626667pt;}
.yd4{bottom:447.266667pt;}
.y4b{bottom:451.906667pt;}
.yfd{bottom:453.186667pt;}
.y15a{bottom:454.306667pt;}
.y23{bottom:455.746667pt;}
.y170{bottom:457.346667pt;}
.y13c{bottom:463.746667pt;}
.ya0{bottom:464.546667pt;}
.y87{bottom:465.026667pt;}
.yd2{bottom:468.546667pt;}
.y4a{bottom:470.306667pt;}
.y123{bottom:471.586667pt;}
.y159{bottom:472.706667pt;}
.yfc{bottom:473.826667pt;}
.y22{bottom:474.146667pt;}
.y16f{bottom:475.746667pt;}
.y13a{bottom:482.786667pt;}
.y9f{bottom:482.946667pt;}
.y86{bottom:483.426667pt;}
.y49{bottom:488.733333pt;}
.yd0{bottom:490.013333pt;}
.y158{bottom:491.133333pt;}
.y16e{bottom:494.173333pt;}
.yf8{bottom:495.293333pt;}
.y85{bottom:501.853333pt;}
.y21{bottom:502.973333pt;}
.y9e{bottom:506.173333pt;}
.y48{bottom:507.133333pt;}
.y122{bottom:508.413333pt;}
.ycd{bottom:510.666667pt;}
.y16d{bottom:512.573333pt;}
.y157{bottom:514.493333pt;}
.y84{bottom:520.253333pt;}
.y137{bottom:520.893333pt;}
.y20{bottom:521.693333pt;}
.y47{bottom:525.533333pt;}
.y121{bottom:526.813333pt;}
.yc1{bottom:527.773333pt;}
.y9d{bottom:529.853333pt;}
.y16c{bottom:530.973333pt;}
.yca{bottom:531.933333pt;}
.y156{bottom:538.173333pt;}
.y83{bottom:538.653333pt;}
.y1f{bottom:540.093333pt;}
.yf7{bottom:540.893333pt;}
.y136{bottom:543.613333pt;}
.y46{bottom:543.933333pt;}
.y16b{bottom:549.373333pt;}
.y120{bottom:550.013333pt;}
.yc8{bottom:553.213333pt;}
.y9c{bottom:553.693333pt;}
.y82{bottom:557.053333pt;}
.y1e{bottom:558.493333pt;}
.yf6{bottom:559.613333pt;}
.yb7{bottom:561.120000pt;}
.y135{bottom:562.013333pt;}
.y45{bottom:562.333333pt;}
.y16a{bottom:567.773333pt;}
.y11f{bottom:568.893333pt;}
.yc6{bottom:574.013333pt;}
.y81{bottom:575.453333pt;}
.y1d{bottom:576.573333pt;}
.y9b{bottom:577.373333pt;}
.yf5{bottom:578.013333pt;}
.y44{bottom:580.733333pt;}
.y11e{bottom:583.933333pt;}
.y6c{bottom:585.693333pt;}
.y169{bottom:586.173333pt;}
.y80{bottom:593.853333pt;}
.y1c{bottom:595.293333pt;}
.yf4{bottom:596.253333pt;}
.y43{bottom:599.133333pt;}
.y9a{bottom:601.053333pt;}
.yb6{bottom:604.093333pt;}
.y6b{bottom:604.413333pt;}
.y11c{bottom:605.213333pt;}
.y7f{bottom:612.253333pt;}
.y1b{bottom:613.693333pt;}
.yc4{bottom:615.933333pt;}
.y42{bottom:617.533333pt;}
.y6a{bottom:622.813333pt;}
.y99{bottom:624.733333pt;}
.ybf{bottom:624.960000pt;}
.y11b{bottom:630.333333pt;}
.y145{bottom:630.653333pt;}
.y1a{bottom:632.093333pt;}
.y7e{bottom:635.453333pt;}
.yf3{bottom:635.613333pt;}
.y41{bottom:635.933333pt;}
.yb5{bottom:638.493333pt;}
.yc3{bottom:640.893333pt;}
.y69{bottom:641.213333pt;}
.y98{bottom:648.573333pt;}
.y11a{bottom:649.053333pt;}
.y19{bottom:650.173333pt;}
.ybe{bottom:651.773333pt;}
.yf2{bottom:653.853333pt;}
.y40{bottom:654.333333pt;}
.yb4{bottom:654.813333pt;}
.y7d{bottom:659.133333pt;}
.y68{bottom:659.613333pt;}
.y119{bottom:667.453333pt;}
.ybd{bottom:667.933333pt;}
.y18{bottom:668.893333pt;}
.y97{bottom:672.253333pt;}
.y3f{bottom:672.733333pt;}
.yf1{bottom:673.533333pt;}
.y67{bottom:678.013333pt;}
.y118{bottom:685.853333pt;}
.y17{bottom:687.293333pt;}
.y3e{bottom:691.133333pt;}
.yf0{bottom:691.773333pt;}
.y96{bottom:695.933333pt;}
.y66{bottom:696.413333pt;}
.y117{bottom:704.253333pt;}
.y16{bottom:705.373333pt;}
.ybb{bottom:706.400000pt;}
.y144{bottom:709.053333pt;}
.y3d{bottom:709.533333pt;}
.yef{bottom:711.453333pt;}
.y65{bottom:714.813333pt;}
.y116{bottom:722.693333pt;}
.y15{bottom:723.813333pt;}
.y155{bottom:727.493333pt;}
.y3c{bottom:727.973333pt;}
.yee{bottom:729.733333pt;}
.y143{bottom:732.773333pt;}
.y64{bottom:733.253333pt;}
.y115{bottom:741.093333pt;}
.yba{bottom:741.413333pt;}
.y14{bottom:742.213333pt;}
.y3b{bottom:746.373333pt;}
.yed{bottom:749.413333pt;}
.y154{bottom:751.173333pt;}
.y63{bottom:751.653333pt;}
.y114{bottom:759.493333pt;}
.y13{bottom:761.093333pt;}
.y3a{bottom:764.773333pt;}
.yec{bottom:767.653333pt;}
.y134{bottom:769.573333pt;}
.y62{bottom:770.053333pt;}
.y113{bottom:777.893333pt;}
.y12{bottom:782.533333pt;}
.y39{bottom:783.173333pt;}
.yeb{bottom:787.333333pt;}
.y61{bottom:788.453333pt;}
.y112{bottom:801.093333pt;}
.y38{bottom:801.573333pt;}
.y11{bottom:803.973333pt;}
.yea{bottom:805.733333pt;}
.y60{bottom:806.853333pt;}
.ye9{bottom:823.973333pt;}
.y37{bottom:824.773333pt;}
.y10{bottom:824.933333pt;}
.y111{bottom:825.093333pt;}
.y5f{bottom:825.253333pt;}
.y6{bottom:843.013333pt;}
.y5{bottom:860.293333pt;}
.yc{bottom:863.640000pt;}
.y9{bottom:863.680000pt;}
.y4{bottom:882.213333pt;}
.y3{bottom:903.973333pt;}
.y2{bottom:925.733333pt;}
.y1{bottom:944.933333pt;}
.hf{height:16.160000pt;}
.h21{height:18.386667pt;}
.h1f{height:18.400000pt;}
.h20{height:18.426667pt;}
.h1c{height:20.626667pt;}
.h11{height:20.640000pt;}
.h1e{height:20.786667pt;}
.h14{height:20.800000pt;}
.h1b{height:20.826667pt;}
.h16{height:21.266667pt;}
.h15{height:21.280000pt;}
.h18{height:21.426667pt;}
.h17{height:21.466667pt;}
.h9{height:25.160000pt;}
.h5{height:34.760000pt;}
.h1d{height:41.266667pt;}
.h13{height:41.280000pt;}
.h1{height:47.742188pt;}
.h3{height:50.720000pt;}
.h1a{height:51.937500pt;}
.h4{height:52.834688pt;}
.he{height:52.962000pt;}
.h10{height:54.390938pt;}
.hb{height:57.375000pt;}
.hc{height:62.400000pt;}
.hd{height:62.560000pt;}
.h12{height:62.781250pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.h2{height:65.531250pt;}
.h19{height:65.781915pt;}
.ha{height:74.477812pt;}
.h7{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w20{width:40.160000pt;}
.w4{width:41.600000pt;}
.w1d{width:49.746667pt;}
.w1f{width:54.720000pt;}
.wc{width:54.880000pt;}
.w17{width:56.498667pt;}
.w18{width:57.280000pt;}
.we{width:66.066667pt;}
.wf{width:66.386667pt;}
.w13{width:69.266667pt;}
.w11{width:69.280000pt;}
.w12{width:69.312000pt;}
.w15{width:69.458667pt;}
.w14{width:69.586667pt;}
.w21{width:71.232000pt;}
.w1b{width:82.546667pt;}
.w19{width:82.560000pt;}
.w1a{width:82.592000pt;}
.w1c{width:82.738667pt;}
.wd{width:91.872000pt;}
.w6{width:120.000000pt;}
.w5{width:120.160000pt;}
.w16{width:130.072000pt;}
.wa{width:138.746667pt;}
.w8{width:145.272000pt;}
.w9{width:190.733333pt;}
.w1{width:213.600000pt;}
.w2{width:213.666667pt;}
.w22{width:214.413333pt;}
.w1e{width:243.538667pt;}
.wb{width:246.098667pt;}
.w10{width:247.858667pt;}
.w7{width:507.760000pt;}
.w3{width:558.800000pt;}
.w23{width:624.080000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.560000pt;}
.x36{left:8.472000pt;}
.x7{left:9.600000pt;}
.x19{left:10.786667pt;}
.x2c{left:17.266667pt;}
.x2e{left:19.026667pt;}
.x37{left:20.640000pt;}
.x2a{left:22.386667pt;}
.x2f{left:31.840000pt;}
.x2d{left:35.840000pt;}
.x28{left:41.440000pt;}
.x5{left:48.893333pt;}
.x22{left:54.746667pt;}
.x6{left:60.413333pt;}
.x23{left:72.626667pt;}
.x26{left:90.386667pt;}
.x1{left:96.032000pt;}
.x24{left:102.112000pt;}
.x9{left:118.912000pt;}
.x25{left:120.032000pt;}
.x3f{left:144.026667pt;}
.xa{left:155.066667pt;}
.x1f{left:164.360000pt;}
.x16{left:186.426667pt;}
.xf{left:198.746667pt;}
.x11{left:219.866667pt;}
.xd{left:223.386667pt;}
.x38{left:226.120000pt;}
.x20{left:241.320000pt;}
.xe{left:268.026667pt;}
.x39{left:282.626667pt;}
.x13{left:305.826667pt;}
.x10{left:315.106667pt;}
.x12{left:317.506667pt;}
.xc{left:322.626667pt;}
.x3a{left:339.906667pt;}
.x27{left:342.146667pt;}
.x31{left:343.906667pt;}
.xb{left:349.506667pt;}
.x1b{left:354.400000pt;}
.x18{left:359.520000pt;}
.x30{left:384.386667pt;}
.x14{left:387.266667pt;}
.x40{left:394.306667pt;}
.x1a{left:395.586667pt;}
.x17{left:396.546667pt;}
.x3{left:398.946667pt;}
.x8{left:408.066667pt;}
.x32{left:413.186667pt;}
.x3b{left:422.466667pt;}
.x4{left:429.120000pt;}
.x21{left:432.066667pt;}
.x41{left:434.466667pt;}
.x33{left:482.506667pt;}
.x29{left:488.906667pt;}
.x3c{left:505.066667pt;}
.x1e{left:547.200000pt;}
.x34{left:551.786667pt;}
.x2b{left:554.986667pt;}
.x1c{left:564.733333pt;}
.x1d{left:583.293333pt;}
.x3d{left:587.626667pt;}
.x35{left:621.386667pt;}
.x3e{left:670.373333pt;}
.x2{left:720.133333pt;}
}




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