
    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_3f4002aea25ce069d580781a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0efdf7361b4c08c74203dea9.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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_71275288a5a10d257294791f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_fab1c2bda0939842d5185073.woff')format("woff");}.ff6{font-family:ff6;line-height:0.709473;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_06a85630d306170adccbac4b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_8b05eb6769334fd853a4c011.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_8d4d3397191279adac316946.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_b28cb718724471313f83adad.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_75d9e86099727dfe55ea6f02.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ebde31a6898399cbc15a1697.woff')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls17{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.025920px;}
.ls8{letter-spacing:-0.017280px;}
.ls9{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls19{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.513600px;}
.ls7{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.720000px;}
.ls13{letter-spacing:2.880000px;}
.lse{letter-spacing:6.480000px;}
.ls16{letter-spacing:18.000000px;}
.ls14{letter-spacing:54.489600px;}
.ls12{letter-spacing:66.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;}
}
.ws3{word-spacing:-19.457280px;}
.ws9{word-spacing:-19.448640px;}
.ws7{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.wsd{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.453600px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.wse{word-spacing:-12.329400px;}
.ws6{word-spacing:0.000000px;}
._18{margin-left:-4.668480px;}
._12{margin-left:-3.240000px;}
._3{margin-left:-2.165760px;}
._6{margin-left:-1.010880px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._f{width:3.556800px;}
._5{width:5.174160px;}
._7{width:6.509520px;}
._d{width:7.659840px;}
._10{width:8.936400px;}
._a{width:10.656000px;}
._b{width:12.016080px;}
._19{width:13.464000px;}
._1a{width:14.544000px;}
._13{width:16.344000px;}
._11{width:19.080000px;}
._1b{width:20.808000px;}
._8{width:22.464000px;}
._9{width:24.156000px;}
._16{width:25.803360px;}
._17{width:26.833680px;}
._1d{width:28.224000px;}
._1e{width:29.341200px;}
._c{width:30.744000px;}
._1c{width:32.400000px;}
._e{width:34.418880px;}
._20{width:35.470800px;}
._23{width:36.936000px;}
._22{width:38.598240px;}
._21{width:40.106880px;}
._15{width:41.544000px;}
._14{width:43.745040px;}
._1f{width:45.030960px;}
._24{width:54.288000px;}
._25{width:55.368000px;}
._26{width:57.336000px;}
._2{width:532.260000px;}
._4{width:1523.640000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs7{font-size:40.982709px;}
.fs9{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y10e{bottom:12.345000px;}
.y112{bottom:26.745000px;}
.y7{bottom:39.276000px;}
.y6{bottom:58.536000px;}
.y110{bottom:70.845000px;}
.y115{bottom:71.025000px;}
.y10b{bottom:74.085000px;}
.y114{bottom:92.985000px;}
.y2f{bottom:131.076000px;}
.y2e{bottom:136.296000px;}
.yef{bottom:137.196000px;}
.ybe{bottom:138.816000px;}
.ya8{bottom:139.896000px;}
.y86{bottom:141.876000px;}
.y127{bottom:142.596000px;}
.y2d{bottom:149.256000px;}
.y109{bottom:151.950000px;}
.yee{bottom:157.890000px;}
.y159{bottom:159.150000px;}
.ybd{bottom:159.510000px;}
.y5b{bottom:160.590000px;}
.y85{bottom:162.570000px;}
.y126{bottom:163.290000px;}
.y13a{bottom:164.190000px;}
.y199{bottom:168.510000px;}
.yed{bottom:178.590000px;}
.y158{bottom:179.850000px;}
.y5a{bottom:181.290000px;}
.y84{bottom:183.270000px;}
.y125{bottom:183.990000px;}
.y139{bottom:184.890000px;}
.y2c{bottom:186.150000px;}
.y198{bottom:189.210000px;}
.y176{bottom:191.910000px;}
.y108{bottom:192.090000px;}
.ybc{bottom:198.210000px;}
.yec{bottom:199.290000px;}
.y59{bottom:201.990000px;}
.y2b{bottom:203.430000px;}
.y1ae{bottom:203.790000px;}
.y83{bottom:203.970000px;}
.y124{bottom:204.690000px;}
.y18e{bottom:209.910000px;}
.y175{bottom:212.610000px;}
.y107{bottom:212.790000px;}
.y157{bottom:218.550000px;}
.ybb{bottom:218.910000px;}
.yeb{bottom:219.990000px;}
.y2a{bottom:220.530000px;}
.y58{bottom:222.690000px;}
.y138{bottom:223.590000px;}
.y82{bottom:224.490000px;}
.y123{bottom:225.390000px;}
.y197{bottom:227.910000px;}
.y18d{bottom:230.610000px;}
.y106{bottom:233.490000px;}
.y156{bottom:239.250000px;}
.yba{bottom:239.610000px;}
.yea{bottom:240.690000px;}
.y57{bottom:243.390000px;}
.y137{bottom:244.290000px;}
.y1ad{bottom:245.190000px;}
.y122{bottom:246.090000px;}
.y196{bottom:248.610000px;}
.y174{bottom:251.310000px;}
.y29{bottom:256.530000px;}
.y155{bottom:259.950000px;}
.yb9{bottom:260.310000px;}
.yd6{bottom:261.030000px;}
.ye9{bottom:261.390000px;}
.y81{bottom:263.190000px;}
.y56{bottom:264.090000px;}
.y121{bottom:266.790000px;}
.y18c{bottom:269.310000px;}
.y173{bottom:272.010000px;}
.y105{bottom:272.190000px;}
.y28{bottom:277.275000px;}
.yb8{bottom:281.055000px;}
.ye8{bottom:282.135000px;}
.y136{bottom:283.035000px;}
.y80{bottom:283.935000px;}
.y55{bottom:284.835000px;}
.y195{bottom:287.355000px;}
.y120{bottom:287.535000px;}
.y18b{bottom:290.055000px;}
.y104{bottom:292.935000px;}
.y154{bottom:298.695000px;}
.yb7{bottom:301.755000px;}
.ye7{bottom:302.835000px;}
.y135{bottom:303.735000px;}
.y7f{bottom:304.635000px;}
.y54{bottom:305.535000px;}
.y194{bottom:308.055000px;}
.y172{bottom:310.755000px;}
.y103{bottom:313.635000px;}
.y27{bottom:317.775000px;}
.y153{bottom:319.395000px;}
.yb6{bottom:322.455000px;}
.ye6{bottom:323.535000px;}
.y7e{bottom:325.335000px;}
.yc9{bottom:326.235000px;}
.y18a{bottom:328.755000px;}
.y171{bottom:331.455000px;}
.y102{bottom:334.335000px;}
.y26{bottom:338.475000px;}
.y134{bottom:342.435000px;}
.yb5{bottom:343.155000px;}
.y53{bottom:344.235000px;}
.ya7{bottom:344.415000px;}
.y7d{bottom:346.035000px;}
.y193{bottom:346.755000px;}
.yc8{bottom:346.935000px;}
.y101{bottom:355.035000px;}
.y152{bottom:358.095000px;}
.y25{bottom:359.175000px;}
.y133{bottom:363.135000px;}
.yb4{bottom:363.855000px;}
.y1ac{bottom:364.035000px;}
.y52{bottom:364.935000px;}
.y7c{bottom:366.735000px;}
.y189{bottom:367.455000px;}
.yc7{bottom:367.635000px;}
.y170{bottom:370.155000px;}
.y100{bottom:375.735000px;}
.y151{bottom:378.795000px;}
.y24{bottom:379.875000px;}
.ya6{bottom:384.555000px;}
.y1ab{bottom:384.735000px;}
.y51{bottom:385.635000px;}
.y7b{bottom:387.435000px;}
.y188{bottom:388.155000px;}
.yc6{bottom:388.335000px;}
.y16f{bottom:390.855000px;}
.yff{bottom:396.435000px;}
.y150{bottom:399.495000px;}
.y23{bottom:400.575000px;}
.y132{bottom:401.835000px;}
.ya5{bottom:405.255000px;}
.y50{bottom:406.335000px;}
.y7a{bottom:408.135000px;}
.y187{bottom:408.855000px;}
.yc5{bottom:409.035000px;}
.yfe{bottom:417.135000px;}
.y22{bottom:421.275000px;}
.y131{bottom:422.535000px;}
.y1aa{bottom:423.435000px;}
.ya4{bottom:425.955000px;}
.y192{bottom:426.855000px;}
.y4f{bottom:427.035000px;}
.y79{bottom:428.835000px;}
.y16e{bottom:429.555000px;}
.yc4{bottom:429.735000px;}
.yfd{bottom:437.835000px;}
.y14f{bottom:438.195000px;}
.y21{bottom:441.975000px;}
.y1a9{bottom:444.135000px;}
.ya3{bottom:446.655000px;}
.y186{bottom:447.555000px;}
.y4e{bottom:447.735000px;}
.y78{bottom:449.535000px;}
.y16d{bottom:450.255000px;}
.yc3{bottom:450.435000px;}
.yfc{bottom:458.535000px;}
.y14e{bottom:458.895000px;}
.y130{bottom:461.235000px;}
.y20{bottom:462.675000px;}
.y1a8{bottom:464.835000px;}
.ya2{bottom:467.355000px;}
.y185{bottom:468.255000px;}
.y4d{bottom:468.435000px;}
.y77{bottom:470.235000px;}
.yc2{bottom:471.135000px;}
.yfb{bottom:479.235000px;}
.y12f{bottom:481.935000px;}
.y1f{bottom:483.375000px;}
.y191{bottom:486.255000px;}
.ya1{bottom:488.055000px;}
.y16c{bottom:488.955000px;}
.y4c{bottom:489.135000px;}
.y76{bottom:490.935000px;}
.yc1{bottom:491.835000px;}
.y14d{bottom:497.595000px;}
.yfa{bottom:499.935000px;}
.y1a7{bottom:503.535000px;}
.y1e{bottom:504.075000px;}
.y190{bottom:506.955000px;}
.ya0{bottom:508.755000px;}
.y16b{bottom:509.655000px;}
.y4b{bottom:509.835000px;}
.y75{bottom:511.635000px;}
.yc0{bottom:512.535000px;}
.y14c{bottom:518.295000px;}
.yf9{bottom:520.635000px;}
.y1a6{bottom:524.235000px;}
.y1d{bottom:524.775000px;}
.yd5{bottom:526.755000px;}
.y184{bottom:527.655000px;}
.y9f{bottom:529.455000px;}
.y4a{bottom:530.535000px;}
.y74{bottom:532.335000px;}
.y11f{bottom:533.235000px;}
.yf8{bottom:541.335000px;}
.y1a5{bottom:544.935000px;}
.y1c{bottom:545.475000px;}
.yd4{bottom:547.455000px;}
.y16a{bottom:548.355000px;}
.y9e{bottom:550.155000px;}
.y49{bottom:551.235000px;}
.ybf{bottom:551.415000px;}
.y73{bottom:553.035000px;}
.y11e{bottom:553.935000px;}
.y14b{bottom:557.025000px;}
.yf7{bottom:561.885000px;}
.y1b{bottom:566.205000px;}
.yd3{bottom:568.185000px;}
.y169{bottom:569.085000px;}
.y9d{bottom:570.885000px;}
.y48{bottom:571.965000px;}
.y72{bottom:573.765000px;}
.y11d{bottom:574.665000px;}
.y14a{bottom:577.725000px;}
.y12e{bottom:579.885000px;}
.yf6{bottom:582.585000px;}
.y1a4{bottom:586.545000px;}
.y1a{bottom:586.905000px;}
.y18f{bottom:587.085000px;}
.yd2{bottom:588.885000px;}
.y168{bottom:589.785000px;}
.y9c{bottom:591.585000px;}
.ye5{bottom:592.665000px;}
.y71{bottom:594.465000px;}
.y11c{bottom:595.365000px;}
.yf5{bottom:603.285000px;}
.y19{bottom:607.605000px;}
.y183{bottom:607.785000px;}
.yd1{bottom:609.585000px;}
.y1a3{bottom:610.305000px;}
.y167{bottom:610.485000px;}
.y47{bottom:610.665000px;}
.y9b{bottom:612.285000px;}
.ye4{bottom:613.365000px;}
.y70{bottom:615.165000px;}
.y11b{bottom:615.885000px;}
.y149{bottom:616.425000px;}
.y12d{bottom:618.585000px;}
.yf4{bottom:623.985000px;}
.y18{bottom:628.305000px;}
.y182{bottom:628.485000px;}
.yd0{bottom:630.285000px;}
.y46{bottom:631.365000px;}
.y9a{bottom:632.985000px;}
.ye3{bottom:633.885000px;}
.y6f{bottom:635.865000px;}
.y11a{bottom:636.585000px;}
.y148{bottom:637.125000px;}
.y12c{bottom:639.285000px;}
.y166{bottom:649.185000px;}
.ycf{bottom:650.985000px;}
.y45{bottom:651.885000px;}
.y99{bottom:653.685000px;}
.ye2{bottom:654.585000px;}
.y6e{bottom:656.565000px;}
.y147{bottom:657.825000px;}
.y12b{bottom:659.985000px;}
.yf3{bottom:663.045000px;}
.y17{bottom:666.645000px;}
.y181{bottom:667.185000px;}
.y165{bottom:669.885000px;}
.yce{bottom:671.685000px;}
.y44{bottom:672.585000px;}
.y98{bottom:674.385000px;}
.y119{bottom:675.105000px;}
.ye1{bottom:675.285000px;}
.y6d{bottom:677.265000px;}
.y180{bottom:687.885000px;}
.y1a2{bottom:690.585000px;}
.ycd{bottom:692.385000px;}
.y43{bottom:693.285000px;}
.y97{bottom:695.085000px;}
.ye0{bottom:695.985000px;}
.y146{bottom:696.525000px;}
.y6c{bottom:697.965000px;}
.y12a{bottom:698.685000px;}
.yf2{bottom:703.185000px;}
.y16{bottom:707.145000px;}
.y164{bottom:708.585000px;}
.ycc{bottom:713.085000px;}
.y42{bottom:713.985000px;}
.y96{bottom:715.785000px;}
.ydf{bottom:716.685000px;}
.y145{bottom:717.225000px;}
.y6b{bottom:718.665000px;}
.y129{bottom:719.385000px;}
.y17f{bottom:726.585000px;}
.y163{bottom:729.285000px;}
.ycb{bottom:733.785000px;}
.y41{bottom:734.685000px;}
.y113{bottom:735.120000px;}
.y95{bottom:736.485000px;}
.yde{bottom:737.385000px;}
.y144{bottom:737.925000px;}
.y6a{bottom:739.365000px;}
.yf1{bottom:741.885000px;}
.y10a{bottom:745.740000px;}
.y10f{bottom:745.920000px;}
.y17e{bottom:747.285000px;}
.y15{bottom:748.185000px;}
.y1a1{bottom:749.985000px;}
.yca{bottom:754.485000px;}
.y40{bottom:755.385000px;}
.y118{bottom:756.285000px;}
.y94{bottom:757.185000px;}
.y128{bottom:757.905000px;}
.ydd{bottom:758.085000px;}
.y69{bottom:760.065000px;}
.y162{bottom:767.985000px;}
.y14{bottom:770.505000px;}
.y1a0{bottom:770.685000px;}
.yb3{bottom:775.185000px;}
.y3f{bottom:776.085000px;}
.y143{bottom:776.625000px;}
.y117{bottom:776.805000px;}
.y93{bottom:777.885000px;}
.ydc{bottom:778.785000px;}
.y10d{bottom:780.405000px;}
.yf0{bottom:780.585000px;}
.y68{bottom:780.765000px;}
.y17d{bottom:785.985000px;}
.y161{bottom:788.685000px;}
.y13{bottom:793.005000px;}
.y116{bottom:794.085000px;}
.y111{bottom:794.985000px;}
.yb2{bottom:795.885000px;}
.y3e{bottom:796.785000px;}
.y142{bottom:797.325000px;}
.y92{bottom:798.585000px;}
.ydb{bottom:799.485000px;}
.y67{bottom:801.465000px;}
.y10c{bottom:802.185000px;}
.y17c{bottom:806.685000px;}
.y19f{bottom:809.385000px;}
.y12{bottom:815.685000px;}
.yb1{bottom:816.585000px;}
.y3d{bottom:817.485000px;}
.y141{bottom:818.025000px;}
.y91{bottom:819.285000px;}
.yda{bottom:820.185000px;}
.y66{bottom:822.165000px;}
.y1b0{bottom:824.685000px;}
.y160{bottom:827.385000px;}
.y19e{bottom:830.085000px;}
.yb0{bottom:837.285000px;}
.y3c{bottom:838.185000px;}
.y90{bottom:840.030000px;}
.yd9{bottom:840.930000px;}
.y17b{bottom:845.430000px;}
.y15f{bottom:848.130000px;}
.y140{bottom:856.770000px;}
.y11{bottom:857.490000px;}
.yaf{bottom:858.030000px;}
.y3b{bottom:858.930000px;}
.y8f{bottom:860.730000px;}
.y65{bottom:861.270000px;}
.yd8{bottom:861.630000px;}
.y17a{bottom:866.130000px;}
.y15e{bottom:868.830000px;}
.y13f{bottom:877.470000px;}
.yae{bottom:878.730000px;}
.y3a{bottom:879.630000px;}
.y10{bottom:879.990000px;}
.y8e{bottom:881.430000px;}
.y64{bottom:883.590000px;}
.y179{bottom:886.830000px;}
.y19d{bottom:889.530000px;}
.y13e{bottom:898.170000px;}
.yad{bottom:899.430000px;}
.yd7{bottom:900.150000px;}
.y39{bottom:900.330000px;}
.y8d{bottom:902.130000px;}
.yf{bottom:902.490000px;}
.y1af{bottom:904.830000px;}
.y15d{bottom:907.530000px;}
.yac{bottom:920.130000px;}
.y38{bottom:921.030000px;}
.y8c{bottom:922.830000px;}
.y63{bottom:923.550000px;}
.ye{bottom:924.810000px;}
.y178{bottom:925.530000px;}
.y15c{bottom:928.230000px;}
.y13d{bottom:939.750000px;}
.yab{bottom:940.830000px;}
.y37{bottom:941.730000px;}
.y8b{bottom:943.530000px;}
.y177{bottom:946.230000px;}
.yc{bottom:947.490000px;}
.y19c{bottom:948.930000px;}
.yd{bottom:955.050000px;}
.yaa{bottom:961.530000px;}
.y36{bottom:962.430000px;}
.y13c{bottom:963.690000px;}
.y62{bottom:964.230000px;}
.y15b{bottom:966.930000px;}
.ya9{bottom:982.230000px;}
.y35{bottom:983.130000px;}
.y61{bottom:984.930000px;}
.y13b{bottom:987.450000px;}
.y15a{bottom:987.630000px;}
.yb{bottom:991.230000px;}
.y8a{bottom:1002.930000px;}
.y34{bottom:1003.830000px;}
.y60{bottom:1005.630000px;}
.y19b{bottom:1008.330000px;}
.y89{bottom:1023.630000px;}
.y33{bottom:1024.530000px;}
.ya{bottom:1025.790000px;}
.y5f{bottom:1026.330000px;}
.y88{bottom:1044.330000px;}
.y32{bottom:1045.230000px;}
.y5e{bottom:1047.030000px;}
.y9{bottom:1060.170000px;}
.y87{bottom:1065.030000px;}
.y31{bottom:1065.930000px;}
.y19a{bottom:1067.730000px;}
.y5d{bottom:1085.730000px;}
.y8{bottom:1094.730000px;}
.y30{bottom:1104.450000px;}
.y5c{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h16{height:23.945625px;}
.h10{height:28.455767px;}
.hb{height:37.494141px;}
.h6{height:41.756133px;}
.h19{height:44.893125px;}
.h4{height:45.184219px;}
.he{height:50.027344px;}
.h5{height:53.640000px;}
.h12{height:53.991563px;}
.h11{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h1b{height:65.010937px;}
.h17{height:66.757500px;}
.h1c{height:70.628906px;}
.hf{height:70.664062px;}
.h14{height:72.562500px;}
.h1d{height:74.704922px;}
.h13{height:76.279219px;}
.hc{height:76.317188px;}
.hd{height:78.367500px;}
.h15{height:79.740000px;}
.h8{height:81.490781px;}
.h9{height:82.676953px;}
.h18{height:86.220000px;}
.h1a{height:108.360000px;}
.h7{height:121.179375px;}
.ha{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:125.460000px;}
.w5{width:151.020000px;}
.w4{width:167.580000px;}
.w6{width:171.720000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:14.115000px;}
.x15{left:29.550000px;}
.x2{left:50.399998px;}
.x17{left:75.495000px;}
.x13{left:83.910000px;}
.x1b{left:85.965000px;}
.x1{left:127.656000px;}
.x4{left:130.356000px;}
.x10{left:132.516000px;}
.xb{left:137.376000px;}
.x11{left:148.896000px;}
.x9{left:159.690000px;}
.x12{left:165.060000px;}
.xe{left:180.750000px;}
.x14{left:182.910000px;}
.x5{left:240.330000px;}
.xc{left:255.090000px;}
.x6{left:339.555000px;}
.xf{left:343.695000px;}
.x16{left:367.200000px;}
.xa{left:371.055000px;}
.x18{left:382.755000px;}
.xd{left:414.255000px;}
.x3{left:457.275000px;}
.x1a{left:552.780000px;}
.x1d{left:563.685000px;}
.x7{left:568.162500px;}
.x8{left:575.025000px;}
.x1c{left:638.745000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.023040pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls19{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.456533pt;}
.ls7{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls13{letter-spacing:2.560000pt;}
.lse{letter-spacing:5.760000pt;}
.ls16{letter-spacing:16.000000pt;}
.ls14{letter-spacing:48.435200pt;}
.ls12{letter-spacing:59.520000pt;}
.ws3{word-spacing:-17.295360pt;}
.ws9{word-spacing:-17.287680pt;}
.ws7{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.wsd{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.736533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.wse{word-spacing:-10.959467pt;}
.ws6{word-spacing:0.000000pt;}
._18{margin-left:-4.149760pt;}
._12{margin-left:-2.880000pt;}
._3{margin-left:-1.925120pt;}
._6{margin-left:-0.898560pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._f{width:3.161600pt;}
._5{width:4.599253pt;}
._7{width:5.786240pt;}
._d{width:6.808747pt;}
._10{width:7.943467pt;}
._a{width:9.472000pt;}
._b{width:10.680960pt;}
._19{width:11.968000pt;}
._1a{width:12.928000pt;}
._13{width:14.528000pt;}
._11{width:16.960000pt;}
._1b{width:18.496000pt;}
._8{width:19.968000pt;}
._9{width:21.472000pt;}
._16{width:22.936320pt;}
._17{width:23.852160pt;}
._1d{width:25.088000pt;}
._1e{width:26.081067pt;}
._c{width:27.328000pt;}
._1c{width:28.800000pt;}
._e{width:30.594560pt;}
._20{width:31.529600pt;}
._23{width:32.832000pt;}
._22{width:34.309547pt;}
._21{width:35.650560pt;}
._15{width:36.928000pt;}
._14{width:38.884480pt;}
._1f{width:40.027520pt;}
._24{width:48.256000pt;}
._25{width:49.216000pt;}
._26{width:50.965333pt;}
._2{width:473.120000pt;}
._4{width:1354.346667pt;}
.fs8{font-size:21.120000pt;}
.fs7{font-size:36.429074pt;}
.fs9{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:10.973333pt;}
.y112{bottom:23.773333pt;}
.y7{bottom:34.912000pt;}
.y6{bottom:52.032000pt;}
.y110{bottom:62.973333pt;}
.y115{bottom:63.133333pt;}
.y10b{bottom:65.853333pt;}
.y114{bottom:82.653333pt;}
.y2f{bottom:116.512000pt;}
.y2e{bottom:121.152000pt;}
.yef{bottom:121.952000pt;}
.ybe{bottom:123.392000pt;}
.ya8{bottom:124.352000pt;}
.y86{bottom:126.112000pt;}
.y127{bottom:126.752000pt;}
.y2d{bottom:132.672000pt;}
.y109{bottom:135.066667pt;}
.yee{bottom:140.346667pt;}
.y159{bottom:141.466667pt;}
.ybd{bottom:141.786667pt;}
.y5b{bottom:142.746667pt;}
.y85{bottom:144.506667pt;}
.y126{bottom:145.146667pt;}
.y13a{bottom:145.946667pt;}
.y199{bottom:149.786667pt;}
.yed{bottom:158.746667pt;}
.y158{bottom:159.866667pt;}
.y5a{bottom:161.146667pt;}
.y84{bottom:162.906667pt;}
.y125{bottom:163.546667pt;}
.y139{bottom:164.346667pt;}
.y2c{bottom:165.466667pt;}
.y198{bottom:168.186667pt;}
.y176{bottom:170.586667pt;}
.y108{bottom:170.746667pt;}
.ybc{bottom:176.186667pt;}
.yec{bottom:177.146667pt;}
.y59{bottom:179.546667pt;}
.y2b{bottom:180.826667pt;}
.y1ae{bottom:181.146667pt;}
.y83{bottom:181.306667pt;}
.y124{bottom:181.946667pt;}
.y18e{bottom:186.586667pt;}
.y175{bottom:188.986667pt;}
.y107{bottom:189.146667pt;}
.y157{bottom:194.266667pt;}
.ybb{bottom:194.586667pt;}
.yeb{bottom:195.546667pt;}
.y2a{bottom:196.026667pt;}
.y58{bottom:197.946667pt;}
.y138{bottom:198.746667pt;}
.y82{bottom:199.546667pt;}
.y123{bottom:200.346667pt;}
.y197{bottom:202.586667pt;}
.y18d{bottom:204.986667pt;}
.y106{bottom:207.546667pt;}
.y156{bottom:212.666667pt;}
.yba{bottom:212.986667pt;}
.yea{bottom:213.946667pt;}
.y57{bottom:216.346667pt;}
.y137{bottom:217.146667pt;}
.y1ad{bottom:217.946667pt;}
.y122{bottom:218.746667pt;}
.y196{bottom:220.986667pt;}
.y174{bottom:223.386667pt;}
.y29{bottom:228.026667pt;}
.y155{bottom:231.066667pt;}
.yb9{bottom:231.386667pt;}
.yd6{bottom:232.026667pt;}
.ye9{bottom:232.346667pt;}
.y81{bottom:233.946667pt;}
.y56{bottom:234.746667pt;}
.y121{bottom:237.146667pt;}
.y18c{bottom:239.386667pt;}
.y173{bottom:241.786667pt;}
.y105{bottom:241.946667pt;}
.y28{bottom:246.466667pt;}
.yb8{bottom:249.826667pt;}
.ye8{bottom:250.786667pt;}
.y136{bottom:251.586667pt;}
.y80{bottom:252.386667pt;}
.y55{bottom:253.186667pt;}
.y195{bottom:255.426667pt;}
.y120{bottom:255.586667pt;}
.y18b{bottom:257.826667pt;}
.y104{bottom:260.386667pt;}
.y154{bottom:265.506667pt;}
.yb7{bottom:268.226667pt;}
.ye7{bottom:269.186667pt;}
.y135{bottom:269.986667pt;}
.y7f{bottom:270.786667pt;}
.y54{bottom:271.586667pt;}
.y194{bottom:273.826667pt;}
.y172{bottom:276.226667pt;}
.y103{bottom:278.786667pt;}
.y27{bottom:282.466667pt;}
.y153{bottom:283.906667pt;}
.yb6{bottom:286.626667pt;}
.ye6{bottom:287.586667pt;}
.y7e{bottom:289.186667pt;}
.yc9{bottom:289.986667pt;}
.y18a{bottom:292.226667pt;}
.y171{bottom:294.626667pt;}
.y102{bottom:297.186667pt;}
.y26{bottom:300.866667pt;}
.y134{bottom:304.386667pt;}
.yb5{bottom:305.026667pt;}
.y53{bottom:305.986667pt;}
.ya7{bottom:306.146667pt;}
.y7d{bottom:307.586667pt;}
.y193{bottom:308.226667pt;}
.yc8{bottom:308.386667pt;}
.y101{bottom:315.586667pt;}
.y152{bottom:318.306667pt;}
.y25{bottom:319.266667pt;}
.y133{bottom:322.786667pt;}
.yb4{bottom:323.426667pt;}
.y1ac{bottom:323.586667pt;}
.y52{bottom:324.386667pt;}
.y7c{bottom:325.986667pt;}
.y189{bottom:326.626667pt;}
.yc7{bottom:326.786667pt;}
.y170{bottom:329.026667pt;}
.y100{bottom:333.986667pt;}
.y151{bottom:336.706667pt;}
.y24{bottom:337.666667pt;}
.ya6{bottom:341.826667pt;}
.y1ab{bottom:341.986667pt;}
.y51{bottom:342.786667pt;}
.y7b{bottom:344.386667pt;}
.y188{bottom:345.026667pt;}
.yc6{bottom:345.186667pt;}
.y16f{bottom:347.426667pt;}
.yff{bottom:352.386667pt;}
.y150{bottom:355.106667pt;}
.y23{bottom:356.066667pt;}
.y132{bottom:357.186667pt;}
.ya5{bottom:360.226667pt;}
.y50{bottom:361.186667pt;}
.y7a{bottom:362.786667pt;}
.y187{bottom:363.426667pt;}
.yc5{bottom:363.586667pt;}
.yfe{bottom:370.786667pt;}
.y22{bottom:374.466667pt;}
.y131{bottom:375.586667pt;}
.y1aa{bottom:376.386667pt;}
.ya4{bottom:378.626667pt;}
.y192{bottom:379.426667pt;}
.y4f{bottom:379.586667pt;}
.y79{bottom:381.186667pt;}
.y16e{bottom:381.826667pt;}
.yc4{bottom:381.986667pt;}
.yfd{bottom:389.186667pt;}
.y14f{bottom:389.506667pt;}
.y21{bottom:392.866667pt;}
.y1a9{bottom:394.786667pt;}
.ya3{bottom:397.026667pt;}
.y186{bottom:397.826667pt;}
.y4e{bottom:397.986667pt;}
.y78{bottom:399.586667pt;}
.y16d{bottom:400.226667pt;}
.yc3{bottom:400.386667pt;}
.yfc{bottom:407.586667pt;}
.y14e{bottom:407.906667pt;}
.y130{bottom:409.986667pt;}
.y20{bottom:411.266667pt;}
.y1a8{bottom:413.186667pt;}
.ya2{bottom:415.426667pt;}
.y185{bottom:416.226667pt;}
.y4d{bottom:416.386667pt;}
.y77{bottom:417.986667pt;}
.yc2{bottom:418.786667pt;}
.yfb{bottom:425.986667pt;}
.y12f{bottom:428.386667pt;}
.y1f{bottom:429.666667pt;}
.y191{bottom:432.226667pt;}
.ya1{bottom:433.826667pt;}
.y16c{bottom:434.626667pt;}
.y4c{bottom:434.786667pt;}
.y76{bottom:436.386667pt;}
.yc1{bottom:437.186667pt;}
.y14d{bottom:442.306667pt;}
.yfa{bottom:444.386667pt;}
.y1a7{bottom:447.586667pt;}
.y1e{bottom:448.066667pt;}
.y190{bottom:450.626667pt;}
.ya0{bottom:452.226667pt;}
.y16b{bottom:453.026667pt;}
.y4b{bottom:453.186667pt;}
.y75{bottom:454.786667pt;}
.yc0{bottom:455.586667pt;}
.y14c{bottom:460.706667pt;}
.yf9{bottom:462.786667pt;}
.y1a6{bottom:465.986667pt;}
.y1d{bottom:466.466667pt;}
.yd5{bottom:468.226667pt;}
.y184{bottom:469.026667pt;}
.y9f{bottom:470.626667pt;}
.y4a{bottom:471.586667pt;}
.y74{bottom:473.186667pt;}
.y11f{bottom:473.986667pt;}
.yf8{bottom:481.186667pt;}
.y1a5{bottom:484.386667pt;}
.y1c{bottom:484.866667pt;}
.yd4{bottom:486.626667pt;}
.y16a{bottom:487.426667pt;}
.y9e{bottom:489.026667pt;}
.y49{bottom:489.986667pt;}
.ybf{bottom:490.146667pt;}
.y73{bottom:491.586667pt;}
.y11e{bottom:492.386667pt;}
.y14b{bottom:495.133333pt;}
.yf7{bottom:499.453333pt;}
.y1b{bottom:503.293333pt;}
.yd3{bottom:505.053333pt;}
.y169{bottom:505.853333pt;}
.y9d{bottom:507.453333pt;}
.y48{bottom:508.413333pt;}
.y72{bottom:510.013333pt;}
.y11d{bottom:510.813333pt;}
.y14a{bottom:513.533333pt;}
.y12e{bottom:515.453333pt;}
.yf6{bottom:517.853333pt;}
.y1a4{bottom:521.373333pt;}
.y1a{bottom:521.693333pt;}
.y18f{bottom:521.853333pt;}
.yd2{bottom:523.453333pt;}
.y168{bottom:524.253333pt;}
.y9c{bottom:525.853333pt;}
.ye5{bottom:526.813333pt;}
.y71{bottom:528.413333pt;}
.y11c{bottom:529.213333pt;}
.yf5{bottom:536.253333pt;}
.y19{bottom:540.093333pt;}
.y183{bottom:540.253333pt;}
.yd1{bottom:541.853333pt;}
.y1a3{bottom:542.493333pt;}
.y167{bottom:542.653333pt;}
.y47{bottom:542.813333pt;}
.y9b{bottom:544.253333pt;}
.ye4{bottom:545.213333pt;}
.y70{bottom:546.813333pt;}
.y11b{bottom:547.453333pt;}
.y149{bottom:547.933333pt;}
.y12d{bottom:549.853333pt;}
.yf4{bottom:554.653333pt;}
.y18{bottom:558.493333pt;}
.y182{bottom:558.653333pt;}
.yd0{bottom:560.253333pt;}
.y46{bottom:561.213333pt;}
.y9a{bottom:562.653333pt;}
.ye3{bottom:563.453333pt;}
.y6f{bottom:565.213333pt;}
.y11a{bottom:565.853333pt;}
.y148{bottom:566.333333pt;}
.y12c{bottom:568.253333pt;}
.y166{bottom:577.053333pt;}
.ycf{bottom:578.653333pt;}
.y45{bottom:579.453333pt;}
.y99{bottom:581.053333pt;}
.ye2{bottom:581.853333pt;}
.y6e{bottom:583.613333pt;}
.y147{bottom:584.733333pt;}
.y12b{bottom:586.653333pt;}
.yf3{bottom:589.373333pt;}
.y17{bottom:592.573333pt;}
.y181{bottom:593.053333pt;}
.y165{bottom:595.453333pt;}
.yce{bottom:597.053333pt;}
.y44{bottom:597.853333pt;}
.y98{bottom:599.453333pt;}
.y119{bottom:600.093333pt;}
.ye1{bottom:600.253333pt;}
.y6d{bottom:602.013333pt;}
.y180{bottom:611.453333pt;}
.y1a2{bottom:613.853333pt;}
.ycd{bottom:615.453333pt;}
.y43{bottom:616.253333pt;}
.y97{bottom:617.853333pt;}
.ye0{bottom:618.653333pt;}
.y146{bottom:619.133333pt;}
.y6c{bottom:620.413333pt;}
.y12a{bottom:621.053333pt;}
.yf2{bottom:625.053333pt;}
.y16{bottom:628.573333pt;}
.y164{bottom:629.853333pt;}
.ycc{bottom:633.853333pt;}
.y42{bottom:634.653333pt;}
.y96{bottom:636.253333pt;}
.ydf{bottom:637.053333pt;}
.y145{bottom:637.533333pt;}
.y6b{bottom:638.813333pt;}
.y129{bottom:639.453333pt;}
.y17f{bottom:645.853333pt;}
.y163{bottom:648.253333pt;}
.ycb{bottom:652.253333pt;}
.y41{bottom:653.053333pt;}
.y113{bottom:653.440000pt;}
.y95{bottom:654.653333pt;}
.yde{bottom:655.453333pt;}
.y144{bottom:655.933333pt;}
.y6a{bottom:657.213333pt;}
.yf1{bottom:659.453333pt;}
.y10a{bottom:662.880000pt;}
.y10f{bottom:663.040000pt;}
.y17e{bottom:664.253333pt;}
.y15{bottom:665.053333pt;}
.y1a1{bottom:666.653333pt;}
.yca{bottom:670.653333pt;}
.y40{bottom:671.453333pt;}
.y118{bottom:672.253333pt;}
.y94{bottom:673.053333pt;}
.y128{bottom:673.693333pt;}
.ydd{bottom:673.853333pt;}
.y69{bottom:675.613333pt;}
.y162{bottom:682.653333pt;}
.y14{bottom:684.893333pt;}
.y1a0{bottom:685.053333pt;}
.yb3{bottom:689.053333pt;}
.y3f{bottom:689.853333pt;}
.y143{bottom:690.333333pt;}
.y117{bottom:690.493333pt;}
.y93{bottom:691.453333pt;}
.ydc{bottom:692.253333pt;}
.y10d{bottom:693.693333pt;}
.yf0{bottom:693.853333pt;}
.y68{bottom:694.013333pt;}
.y17d{bottom:698.653333pt;}
.y161{bottom:701.053333pt;}
.y13{bottom:704.893333pt;}
.y116{bottom:705.853333pt;}
.y111{bottom:706.653333pt;}
.yb2{bottom:707.453333pt;}
.y3e{bottom:708.253333pt;}
.y142{bottom:708.733333pt;}
.y92{bottom:709.853333pt;}
.ydb{bottom:710.653333pt;}
.y67{bottom:712.413333pt;}
.y10c{bottom:713.053333pt;}
.y17c{bottom:717.053333pt;}
.y19f{bottom:719.453333pt;}
.y12{bottom:725.053333pt;}
.yb1{bottom:725.853333pt;}
.y3d{bottom:726.653333pt;}
.y141{bottom:727.133333pt;}
.y91{bottom:728.253333pt;}
.yda{bottom:729.053333pt;}
.y66{bottom:730.813333pt;}
.y1b0{bottom:733.053333pt;}
.y160{bottom:735.453333pt;}
.y19e{bottom:737.853333pt;}
.yb0{bottom:744.253333pt;}
.y3c{bottom:745.053333pt;}
.y90{bottom:746.693333pt;}
.yd9{bottom:747.493333pt;}
.y17b{bottom:751.493333pt;}
.y15f{bottom:753.893333pt;}
.y140{bottom:761.573333pt;}
.y11{bottom:762.213333pt;}
.yaf{bottom:762.693333pt;}
.y3b{bottom:763.493333pt;}
.y8f{bottom:765.093333pt;}
.y65{bottom:765.573333pt;}
.yd8{bottom:765.893333pt;}
.y17a{bottom:769.893333pt;}
.y15e{bottom:772.293333pt;}
.y13f{bottom:779.973333pt;}
.yae{bottom:781.093333pt;}
.y3a{bottom:781.893333pt;}
.y10{bottom:782.213333pt;}
.y8e{bottom:783.493333pt;}
.y64{bottom:785.413333pt;}
.y179{bottom:788.293333pt;}
.y19d{bottom:790.693333pt;}
.y13e{bottom:798.373333pt;}
.yad{bottom:799.493333pt;}
.yd7{bottom:800.133333pt;}
.y39{bottom:800.293333pt;}
.y8d{bottom:801.893333pt;}
.yf{bottom:802.213333pt;}
.y1af{bottom:804.293333pt;}
.y15d{bottom:806.693333pt;}
.yac{bottom:817.893333pt;}
.y38{bottom:818.693333pt;}
.y8c{bottom:820.293333pt;}
.y63{bottom:820.933333pt;}
.ye{bottom:822.053333pt;}
.y178{bottom:822.693333pt;}
.y15c{bottom:825.093333pt;}
.y13d{bottom:835.333333pt;}
.yab{bottom:836.293333pt;}
.y37{bottom:837.093333pt;}
.y8b{bottom:838.693333pt;}
.y177{bottom:841.093333pt;}
.yc{bottom:842.213333pt;}
.y19c{bottom:843.493333pt;}
.yd{bottom:848.933333pt;}
.yaa{bottom:854.693333pt;}
.y36{bottom:855.493333pt;}
.y13c{bottom:856.613333pt;}
.y62{bottom:857.093333pt;}
.y15b{bottom:859.493333pt;}
.ya9{bottom:873.093333pt;}
.y35{bottom:873.893333pt;}
.y61{bottom:875.493333pt;}
.y13b{bottom:877.733333pt;}
.y15a{bottom:877.893333pt;}
.yb{bottom:881.093333pt;}
.y8a{bottom:891.493333pt;}
.y34{bottom:892.293333pt;}
.y60{bottom:893.893333pt;}
.y19b{bottom:896.293333pt;}
.y89{bottom:909.893333pt;}
.y33{bottom:910.693333pt;}
.ya{bottom:911.813333pt;}
.y5f{bottom:912.293333pt;}
.y88{bottom:928.293333pt;}
.y32{bottom:929.093333pt;}
.y5e{bottom:930.693333pt;}
.y9{bottom:942.373333pt;}
.y87{bottom:946.693333pt;}
.y31{bottom:947.493333pt;}
.y19a{bottom:949.093333pt;}
.y5d{bottom:965.093333pt;}
.y8{bottom:973.093333pt;}
.y30{bottom:981.733333pt;}
.y5c{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h16{height:21.285000pt;}
.h10{height:25.294016pt;}
.hb{height:33.328125pt;}
.h6{height:37.116563pt;}
.h19{height:39.905000pt;}
.h4{height:40.163750pt;}
.he{height:44.468750pt;}
.h5{height:47.680000pt;}
.h12{height:47.992500pt;}
.h11{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h1b{height:57.787500pt;}
.h17{height:59.340000pt;}
.h1c{height:62.781250pt;}
.hf{height:62.812500pt;}
.h14{height:64.500000pt;}
.h1d{height:66.404375pt;}
.h13{height:67.803750pt;}
.hc{height:67.837500pt;}
.hd{height:69.660000pt;}
.h15{height:70.880000pt;}
.h8{height:72.436250pt;}
.h9{height:73.490625pt;}
.h18{height:76.640000pt;}
.h1a{height:96.320000pt;}
.h7{height:107.715000pt;}
.ha{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:111.520000pt;}
.w5{width:134.240000pt;}
.w4{width:148.960000pt;}
.w6{width:152.640000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:12.546667pt;}
.x15{left:26.266667pt;}
.x2{left:44.799998pt;}
.x17{left:67.106667pt;}
.x13{left:74.586667pt;}
.x1b{left:76.413333pt;}
.x1{left:113.472000pt;}
.x4{left:115.872000pt;}
.x10{left:117.792000pt;}
.xb{left:122.112000pt;}
.x11{left:132.352000pt;}
.x9{left:141.946667pt;}
.x12{left:146.720000pt;}
.xe{left:160.666667pt;}
.x14{left:162.586667pt;}
.x5{left:213.626667pt;}
.xc{left:226.746667pt;}
.x6{left:301.826667pt;}
.xf{left:305.506667pt;}
.x16{left:326.400000pt;}
.xa{left:329.826667pt;}
.x18{left:340.226667pt;}
.xd{left:368.226667pt;}
.x3{left:406.466667pt;}
.x1a{left:491.360000pt;}
.x1d{left:501.053333pt;}
.x7{left:505.033333pt;}
.x8{left:511.133333pt;}
.x1c{left:567.773333pt;}
}




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