
    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_d8ef4bae79a3f31e829d34db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071777;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_596144bd436c14e662500be0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_81d53a8f23d437687a3218d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_d123b6e01caff3dadbebbc2d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_ea412708d5968db99add6d9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_a5d77575c36232e0ff770cf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_9bf805fcf9288cb73d809ba6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935059;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_3b22666424fdd4a146aaca26.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939941;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_c97c7030312dc2f7a8e1fd6c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.881836;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_c913a3c82d9c43cf4b457e3b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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_d753408acfa7c095d00cd730.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.095703;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;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.351600px;}
.ls16{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.345600px;}
.ls13{letter-spacing:0.501000px;}
.ls7{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.535680px;}
.ls5{letter-spacing:0.708000px;}
.ls1{letter-spacing:0.720000px;}
.ls14{letter-spacing:3.600000px;}
.lsd{letter-spacing:33.276000px;}
.ls10{letter-spacing:33.408000px;}
.lsa{letter-spacing:33.840000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.352000px;}
.ws7{word-spacing:-17.208000px;}
.ws6{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.473600px;}
.ws10{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.122000px;}
.wsf{word-spacing:-16.102200px;}
.ws3{word-spacing:-14.506440px;}
.ws2{word-spacing:-13.074720px;}
.wse{word-spacing:-12.381000px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-4.195680px;}
._2{margin-left:-2.728320px;}
._1{margin-left:-1.584000px;}
._0{width:1.152000px;}
._4{width:2.316000px;}
._16{width:3.444000px;}
._b{width:4.464000px;}
._9{width:6.120000px;}
._10{width:7.848000px;}
._a{width:8.904000px;}
._c{width:10.080000px;}
._d{width:11.232000px;}
._11{width:12.468000px;}
._e{width:14.280000px;}
._8{width:15.624000px;}
._7{width:16.860000px;}
._20{width:18.011520px;}
._17{width:19.080000px;}
._18{width:21.084000px;}
._1a{width:22.108320px;}
._19{width:23.112000px;}
._5{width:25.056000px;}
._6{width:26.700000px;}
._12{width:28.728000px;}
._13{width:30.084000px;}
._1b{width:31.335360px;}
._15{width:32.932320px;}
._14{width:34.068000px;}
._1c{width:35.498400px;}
._1f{width:44.784000px;}
._1e{width:45.864000px;}
._3{width:588.569760px;}
._1d{width:846.456000px;}
.fc6{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(23,23,23);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(255,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:80.640000px;}
.fs5{font-size:83.520000px;}
.fs6{font-size:96.480000px;}
.yf0{bottom:-14.550000px;}
.yf6{bottom:-2.160000px;}
.ye2{bottom:-1.155000px;}
.ye5{bottom:-0.075000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:5.940000px;}
.yed{bottom:7.410000px;}
.ye7{bottom:7.455000px;}
.yef{bottom:7.770000px;}
.yeb{bottom:7.815000px;}
.ye9{bottom:9.255000px;}
.ye1{bottom:21.165000px;}
.ye4{bottom:22.605000px;}
.yf2{bottom:28.260000px;}
.yf5{bottom:29.190000px;}
.y7{bottom:57.240000px;}
.y7b{bottom:112.356000px;}
.yb2{bottom:112.716000px;}
.ydf{bottom:114.156000px;}
.y131{bottom:116.316000px;}
.yba{bottom:124.236000px;}
.y53{bottom:130.356000px;}
.y29{bottom:131.076000px;}
.y7a{bottom:136.116000px;}
.y91{bottom:136.476000px;}
.y130{bottom:136.836000px;}
.y16a{bottom:137.556000px;}
.yde{bottom:137.916000px;}
.y157{bottom:138.636000px;}
.yb9{bottom:147.996000px;}
.y52{bottom:154.110000px;}
.y28{bottom:154.830000px;}
.y12f{bottom:157.350000px;}
.y79{bottom:160.230000px;}
.ydd{bottom:161.670000px;}
.y156{bottom:171.390000px;}
.yb8{bottom:171.750000px;}
.yb1{bottom:172.110000px;}
.y51{bottom:177.870000px;}
.y27{bottom:178.590000px;}
.y78{bottom:183.990000px;}
.ydc{bottom:185.430000px;}
.y12e{bottom:189.750000px;}
.y155{bottom:191.910000px;}
.y113{bottom:195.870000px;}
.yb0{bottom:196.230000px;}
.y50{bottom:201.675000px;}
.y26{bottom:202.395000px;}
.y77{bottom:207.795000px;}
.ybf{bottom:208.155000px;}
.ydb{bottom:209.235000px;}
.y12d{bottom:210.315000px;}
.y154{bottom:212.115000px;}
.y112{bottom:219.675000px;}
.yaf{bottom:220.035000px;}
.y4f{bottom:225.435000px;}
.y25{bottom:226.515000px;}
.y76{bottom:231.555000px;}
.ybe{bottom:231.915000px;}
.y12c{bottom:242.715000px;}
.y111{bottom:243.435000px;}
.yae{bottom:243.795000px;}
.y153{bottom:244.875000px;}
.yda{bottom:245.235000px;}
.y4e{bottom:249.195000px;}
.y24{bottom:250.275000px;}
.y9d{bottom:255.315000px;}
.y90{bottom:255.675000px;}
.y12b{bottom:263.235000px;}
.y152{bottom:265.395000px;}
.y75{bottom:267.195000px;}
.yad{bottom:267.555000px;}
.yd9{bottom:268.995000px;}
.y4d{bottom:272.955000px;}
.y23{bottom:274.035000px;}
.y9c{bottom:279.075000px;}
.y8f{bottom:279.435000px;}
.y12a{bottom:283.755000px;}
.y151{bottom:285.555000px;}
.yb7{bottom:290.955000px;}
.yac{bottom:291.315000px;}
.yd8{bottom:292.755000px;}
.y22{bottom:297.795000px;}
.y9b{bottom:302.835000px;}
.y74{bottom:303.195000px;}
.y4c{bottom:308.955000px;}
.y110{bottom:314.715000px;}
.yab{bottom:315.075000px;}
.y129{bottom:316.155000px;}
.yd7{bottom:316.515000px;}
.y150{bottom:318.315000px;}
.y21{bottom:321.555000px;}
.y9a{bottom:326.625000px;}
.y73{bottom:326.985000px;}
.y128{bottom:335.985000px;}
.y10f{bottom:338.505000px;}
.y8e{bottom:338.865000px;}
.yd6{bottom:340.305000px;}
.y4b{bottom:344.625000px;}
.y20{bottom:345.345000px;}
.y99{bottom:350.745000px;}
.yaa{bottom:351.105000px;}
.y127{bottom:356.505000px;}
.y10e{bottom:362.265000px;}
.y72{bottom:362.625000px;}
.yd5{bottom:364.065000px;}
.y4a{bottom:368.745000px;}
.y1f{bottom:369.105000px;}
.y169{bottom:371.265000px;}
.y98{bottom:374.505000px;}
.ya9{bottom:374.865000px;}
.y14f{bottom:383.145000px;}
.y10d{bottom:386.025000px;}
.y71{bottom:386.745000px;}
.yd4{bottom:387.825000px;}
.y126{bottom:390.345000px;}
.y1e{bottom:392.865000px;}
.y97{bottom:398.265000px;}
.ya8{bottom:398.625000px;}
.y14e{bottom:403.665000px;}
.y49{bottom:404.385000px;}
.y70{bottom:410.505000px;}
.yd3{bottom:411.945000px;}
.y125{bottom:412.665000px;}
.y1d{bottom:416.985000px;}
.yb6{bottom:422.025000px;}
.ya7{bottom:422.385000px;}
.y168{bottom:424.185000px;}
.y48{bottom:428.145000px;}
.y96{bottom:433.905000px;}
.y6f{bottom:434.265000px;}
.y124{bottom:435.345000px;}
.yd2{bottom:435.705000px;}
.y14d{bottom:436.065000px;}
.y1c{bottom:442.185000px;}
.y10c{bottom:445.785000px;}
.ya6{bottom:446.145000px;}
.y47{bottom:451.950000px;}
.y14c{bottom:456.630000px;}
.y95{bottom:457.710000px;}
.y6e{bottom:458.070000px;}
.yd1{bottom:459.510000px;}
.y1b{bottom:468.510000px;}
.y10b{bottom:469.590000px;}
.ya5{bottom:469.950000px;}
.y46{bottom:475.710000px;}
.y167{bottom:477.150000px;}
.y123{bottom:480.030000px;}
.y94{bottom:481.470000px;}
.y6d{bottom:481.830000px;}
.yd0{bottom:483.270000px;}
.y14b{bottom:489.030000px;}
.y10a{bottom:493.350000px;}
.y8d{bottom:493.710000px;}
.y166{bottom:497.670000px;}
.y45{bottom:499.470000px;}
.y1a{bottom:502.350000px;}
.y6c{bottom:505.590000px;}
.ycf{bottom:507.030000px;}
.y14a{bottom:509.550000px;}
.y109{bottom:517.110000px;}
.y8c{bottom:517.470000px;}
.y44{bottom:523.590000px;}
.y122{bottom:524.670000px;}
.y19{bottom:526.830000px;}
.y6b{bottom:529.350000px;}
.ybd{bottom:529.710000px;}
.y149{bottom:530.070000px;}
.yce{bottom:530.790000px;}
.y8b{bottom:541.590000px;}
.y121{bottom:546.990000px;}
.y43{bottom:547.350000px;}
.y165{bottom:550.590000px;}
.y18{bottom:550.950000px;}
.y6a{bottom:553.110000px;}
.ybc{bottom:553.470000px;}
.ycd{bottom:554.550000px;}
.y108{bottom:555.990000px;}
.y148{bottom:562.470000px;}
.y93{bottom:564.990000px;}
.y8a{bottom:565.350000px;}
.y120{bottom:569.310000px;}
.y42{bottom:571.110000px;}
.y17{bottom:574.710000px;}
.yb5{bottom:576.900000px;}
.ybb{bottom:577.260000px;}
.ycc{bottom:578.340000px;}
.y147{bottom:583.020000px;}
.y69{bottom:589.140000px;}
.y11f{bottom:591.660000px;}
.y107{bottom:592.020000px;}
.y41{bottom:594.900000px;}
.y92{bottom:601.020000px;}
.y146{bottom:603.540000px;}
.y16{bottom:607.500000px;}
.y68{bottom:612.900000px;}
.y11e{bottom:613.980000px;}
.y106{bottom:615.780000px;}
.ycb{bottom:617.220000px;}
.y40{bottom:618.660000px;}
.y164{bottom:624.060000px;}
.ya4{bottom:624.780000px;}
.y15{bottom:631.260000px;}
.y145{bottom:635.940000px;}
.y11d{bottom:636.300000px;}
.y67{bottom:636.660000px;}
.y105{bottom:639.540000px;}
.y163{bottom:644.580000px;}
.y89{bottom:648.540000px;}
.y3f{bottom:654.300000px;}
.y14{bottom:655.020000px;}
.y144{bottom:656.460000px;}
.yca{bottom:658.980000px;}
.y66{bottom:660.420000px;}
.y104{bottom:663.300000px;}
.yf1{bottom:666.720000px;}
.y11c{bottom:671.940000px;}
.y88{bottom:672.300000px;}
.y143{bottom:676.980000px;}
.y3e{bottom:678.420000px;}
.y65{bottom:684.180000px;}
.y13{bottom:684.540000px;}
.y103{bottom:687.060000px;}
.y11b{bottom:696.060000px;}
.y87{bottom:696.420000px;}
.y162{bottom:697.500000px;}
.yc9{bottom:700.770000px;}
.y3d{bottom:702.210000px;}
.y12{bottom:705.810000px;}
.y64{bottom:707.970000px;}
.y142{bottom:709.410000px;}
.y102{bottom:710.850000px;}
.y11a{bottom:719.850000px;}
.y86{bottom:720.210000px;}
.y3c{bottom:725.970000px;}
.y11{bottom:729.210000px;}
.y141{bottom:729.930000px;}
.y63{bottom:732.090000px;}
.y101{bottom:734.610000px;}
.yc8{bottom:742.890000px;}
.y119{bottom:743.610000px;}
.y85{bottom:743.970000px;}
.y3b{bottom:749.730000px;}
.y161{bottom:750.450000px;}
.yec{bottom:754.200000px;}
.y62{bottom:755.850000px;}
.y100{bottom:758.370000px;}
.y10{bottom:761.970000px;}
.y140{bottom:762.330000px;}
.y118{bottom:767.370000px;}
.y84{bottom:767.730000px;}
.y3a{bottom:773.490000px;}
.y61{bottom:779.610000px;}
.yff{bottom:782.490000px;}
.y13f{bottom:782.850000px;}
.yc7{bottom:784.650000px;}
.yf{bottom:785.730000px;}
.y83{bottom:791.490000px;}
.y39{bottom:797.250000px;}
.y117{bottom:803.010000px;}
.ya3{bottom:803.370000px;}
.yee{bottom:804.240000px;}
.yfe{bottom:806.250000px;}
.ye{bottom:809.490000px;}
.y60{bottom:815.250000px;}
.y38{bottom:821.010000px;}
.yc6{bottom:826.410000px;}
.ya2{bottom:827.535000px;}
.y13e{bottom:835.815000px;}
.y5f{bottom:839.055000px;}
.yd{bottom:842.655000px;}
.y37{bottom:844.815000px;}
.yfd{bottom:845.175000px;}
.ya1{bottom:851.295000px;}
.y160{bottom:856.335000px;}
.yea{bottom:856.440000px;}
.y5e{bottom:862.815000px;}
.ye8{bottom:864.720000px;}
.yc5{bottom:868.215000px;}
.y36{bottom:868.935000px;}
.y82{bottom:875.055000px;}
.yc{bottom:875.415000px;}
.yfc{bottom:880.815000px;}
.y5d{bottom:886.935000px;}
.y13d{bottom:888.735000px;}
.y116{bottom:898.455000px;}
.y81{bottom:898.815000px;}
.y35{bottom:904.575000px;}
.y15f{bottom:909.255000px;}
.yc4{bottom:909.975000px;}
.yb4{bottom:910.695000px;}
.yb{bottom:917.175000px;}
.y13c{bottom:921.135000px;}
.ye6{bottom:921.960000px;}
.y115{bottom:922.215000px;}
.y5c{bottom:922.575000px;}
.y34{bottom:928.335000px;}
.y15e{bottom:929.775000px;}
.yb3{bottom:934.455000px;}
.ya{bottom:940.935000px;}
.yf4{bottom:941.295000px;}
.y5b{bottom:946.335000px;}
.yc3{bottom:951.735000px;}
.y33{bottom:952.095000px;}
.y13b{bottom:953.925000px;}
.ya0{bottom:958.245000px;}
.y15d{bottom:962.205000px;}
.y5a{bottom:970.125000px;}
.ye3{bottom:972.720000px;}
.y13a{bottom:974.445000px;}
.y32{bottom:975.885000px;}
.y114{bottom:982.005000px;}
.y9f{bottom:982.365000px;}
.y9{bottom:982.725000px;}
.yc2{bottom:993.525000px;}
.y59{bottom:993.885000px;}
.y139{bottom:994.605000px;}
.y31{bottom:1000.005000px;}
.y9e{bottom:1006.125000px;}
.y8{bottom:1006.485000px;}
.y15c{bottom:1015.125000px;}
.y80{bottom:1018.005000px;}
.yfb{bottom:1023.765000px;}
.y138{bottom:1027.365000px;}
.y58{bottom:1029.885000px;}
.yc1{bottom:1035.285000px;}
.y30{bottom:1035.645000px;}
.ye0{bottom:1038.600000px;}
.y6{bottom:1041.405000px;}
.y7f{bottom:1041.765000px;}
.yfa{bottom:1047.525000px;}
.y137{bottom:1047.885000px;}
.y57{bottom:1053.645000px;}
.y2f{bottom:1059.405000px;}
.y7e{bottom:1065.525000px;}
.y15b{bottom:1068.045000px;}
.y5{bottom:1070.565000px;}
.yf9{bottom:1071.285000px;}
.y56{bottom:1077.405000px;}
.y136{bottom:1080.330000px;}
.y2e{bottom:1083.210000px;}
.y15a{bottom:1088.610000px;}
.y7d{bottom:1089.330000px;}
.y135{bottom:1100.850000px;}
.y55{bottom:1101.210000px;}
.y2d{bottom:1106.970000px;}
.yf8{bottom:1110.210000px;}
.y7c{bottom:1113.090000px;}
.y159{bottom:1121.010000px;}
.y54{bottom:1124.970000px;}
.y4{bottom:1129.290000px;}
.y134{bottom:1133.250000px;}
.yc0{bottom:1136.850000px;}
.y158{bottom:1141.530000px;}
.yf7{bottom:1146.570000px;}
.y3{bottom:1146.930000px;}
.y2c{bottom:1148.730000px;}
.y133{bottom:1153.770000px;}
.y2{bottom:1168.530000px;}
.y2b{bottom:1172.850000px;}
.y132{bottom:1174.290000px;}
.y1{bottom:1190.850000px;}
.y2a{bottom:1194.090000px;}
.hd{height:24.840000px;}
.he{height:26.640000px;}
.hb{height:38.160000px;}
.hc{height:39.600000px;}
.h4{height:41.547656px;}
.hf{height:45.360000px;}
.h6{height:52.136719px;}
.ha{height:52.417969px;}
.h3{height:52.686563px;}
.h10{height:53.676000px;}
.h9{height:58.121719px;}
.h14{height:58.283437px;}
.h2{height:59.871094px;}
.h8{height:61.770234px;}
.h7{height:63.175781px;}
.h5{height:65.884219px;}
.h13{height:69.056016px;}
.h12{height:70.756875px;}
.h11{height:83.477812px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:181.515000px;}
.w3{width:242.640000px;}
.w4{width:243.720000px;}
.w8{width:244.440000px;}
.w6{width:244.800000px;}
.w7{width:245.160000px;}
.w5{width:245.520000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x28{left:12.240000px;}
.x19{left:14.796000px;}
.x1f{left:19.836000px;}
.x1c{left:29.592000px;}
.x29{left:38.190000px;}
.x24{left:51.015000px;}
.x1e{left:53.715000px;}
.x26{left:60.375000px;}
.x21{left:61.455000px;}
.x25{left:65.415000px;}
.x23{left:83.775000px;}
.x1d{left:85.035000px;}
.x1a{left:101.595000px;}
.x1b{left:102.600000px;}
.x18{left:103.680000px;}
.x1{left:106.235987px;}
.x14{left:111.995987px;}
.x9{left:114.155987px;}
.xb{left:116.315987px;}
.x4{left:118.835987px;}
.xe{left:127.115987px;}
.x6{left:128.195987px;}
.x11{left:132.911987px;}
.x2a{left:148.751987px;}
.x16{left:191.234987px;}
.x17{left:202.034987px;}
.x2{left:228.344987px;}
.x5{left:273.344987px;}
.x7{left:280.544987px;}
.x12{left:298.544987px;}
.xf{left:314.069987px;}
.x8{left:334.949987px;}
.xa{left:336.389987px;}
.xc{left:343.589987px;}
.x10{left:349.349987px;}
.xd{left:350.429987px;}
.x13{left:377.069987px;}
.x15{left:392.189987px;}
.x27{left:471.780000px;}
.x22{left:566.640000px;}
.x20{left:568.080000px;}
.x3{left:753.449987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.312533pt;}
.ls16{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.307200pt;}
.ls13{letter-spacing:0.445333pt;}
.ls7{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.476160pt;}
.ls5{letter-spacing:0.629333pt;}
.ls1{letter-spacing:0.640000pt;}
.ls14{letter-spacing:3.200000pt;}
.lsd{letter-spacing:29.578667pt;}
.ls10{letter-spacing:29.696000pt;}
.lsa{letter-spacing:30.080000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.424000pt;}
.ws7{word-spacing:-15.296000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.643200pt;}
.ws10{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.330667pt;}
.wsf{word-spacing:-14.313067pt;}
.ws3{word-spacing:-12.894613pt;}
.ws2{word-spacing:-11.621973pt;}
.wse{word-spacing:-11.005333pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-3.729493pt;}
._2{margin-left:-2.425173pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.024000pt;}
._4{width:2.058667pt;}
._16{width:3.061333pt;}
._b{width:3.968000pt;}
._9{width:5.440000pt;}
._10{width:6.976000pt;}
._a{width:7.914667pt;}
._c{width:8.960000pt;}
._d{width:9.984000pt;}
._11{width:11.082667pt;}
._e{width:12.693333pt;}
._8{width:13.888000pt;}
._7{width:14.986667pt;}
._20{width:16.010240pt;}
._17{width:16.960000pt;}
._18{width:18.741333pt;}
._1a{width:19.651840pt;}
._19{width:20.544000pt;}
._5{width:22.272000pt;}
._6{width:23.733333pt;}
._12{width:25.536000pt;}
._13{width:26.741333pt;}
._1b{width:27.853653pt;}
._15{width:29.273173pt;}
._14{width:30.282667pt;}
._1c{width:31.554133pt;}
._1f{width:39.808000pt;}
._1e{width:40.768000pt;}
._3{width:523.173120pt;}
._1d{width:752.405333pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:71.680000pt;}
.fs5{font-size:74.240000pt;}
.fs6{font-size:85.760000pt;}
.yf0{bottom:-12.933333pt;}
.yf6{bottom:-1.920000pt;}
.ye2{bottom:-1.026667pt;}
.ye5{bottom:-0.066667pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:5.280000pt;}
.yed{bottom:6.586667pt;}
.ye7{bottom:6.626667pt;}
.yef{bottom:6.906667pt;}
.yeb{bottom:6.946667pt;}
.ye9{bottom:8.226667pt;}
.ye1{bottom:18.813333pt;}
.ye4{bottom:20.093333pt;}
.yf2{bottom:25.120000pt;}
.yf5{bottom:25.946667pt;}
.y7{bottom:50.880000pt;}
.y7b{bottom:99.872000pt;}
.yb2{bottom:100.192000pt;}
.ydf{bottom:101.472000pt;}
.y131{bottom:103.392000pt;}
.yba{bottom:110.432000pt;}
.y53{bottom:115.872000pt;}
.y29{bottom:116.512000pt;}
.y7a{bottom:120.992000pt;}
.y91{bottom:121.312000pt;}
.y130{bottom:121.632000pt;}
.y16a{bottom:122.272000pt;}
.yde{bottom:122.592000pt;}
.y157{bottom:123.232000pt;}
.yb9{bottom:131.552000pt;}
.y52{bottom:136.986667pt;}
.y28{bottom:137.626667pt;}
.y12f{bottom:139.866667pt;}
.y79{bottom:142.426667pt;}
.ydd{bottom:143.706667pt;}
.y156{bottom:152.346667pt;}
.yb8{bottom:152.666667pt;}
.yb1{bottom:152.986667pt;}
.y51{bottom:158.106667pt;}
.y27{bottom:158.746667pt;}
.y78{bottom:163.546667pt;}
.ydc{bottom:164.826667pt;}
.y12e{bottom:168.666667pt;}
.y155{bottom:170.586667pt;}
.y113{bottom:174.106667pt;}
.yb0{bottom:174.426667pt;}
.y50{bottom:179.266667pt;}
.y26{bottom:179.906667pt;}
.y77{bottom:184.706667pt;}
.ybf{bottom:185.026667pt;}
.ydb{bottom:185.986667pt;}
.y12d{bottom:186.946667pt;}
.y154{bottom:188.546667pt;}
.y112{bottom:195.266667pt;}
.yaf{bottom:195.586667pt;}
.y4f{bottom:200.386667pt;}
.y25{bottom:201.346667pt;}
.y76{bottom:205.826667pt;}
.ybe{bottom:206.146667pt;}
.y12c{bottom:215.746667pt;}
.y111{bottom:216.386667pt;}
.yae{bottom:216.706667pt;}
.y153{bottom:217.666667pt;}
.yda{bottom:217.986667pt;}
.y4e{bottom:221.506667pt;}
.y24{bottom:222.466667pt;}
.y9d{bottom:226.946667pt;}
.y90{bottom:227.266667pt;}
.y12b{bottom:233.986667pt;}
.y152{bottom:235.906667pt;}
.y75{bottom:237.506667pt;}
.yad{bottom:237.826667pt;}
.yd9{bottom:239.106667pt;}
.y4d{bottom:242.626667pt;}
.y23{bottom:243.586667pt;}
.y9c{bottom:248.066667pt;}
.y8f{bottom:248.386667pt;}
.y12a{bottom:252.226667pt;}
.y151{bottom:253.826667pt;}
.yb7{bottom:258.626667pt;}
.yac{bottom:258.946667pt;}
.yd8{bottom:260.226667pt;}
.y22{bottom:264.706667pt;}
.y9b{bottom:269.186667pt;}
.y74{bottom:269.506667pt;}
.y4c{bottom:274.626667pt;}
.y110{bottom:279.746667pt;}
.yab{bottom:280.066667pt;}
.y129{bottom:281.026667pt;}
.yd7{bottom:281.346667pt;}
.y150{bottom:282.946667pt;}
.y21{bottom:285.826667pt;}
.y9a{bottom:290.333333pt;}
.y73{bottom:290.653333pt;}
.y128{bottom:298.653333pt;}
.y10f{bottom:300.893333pt;}
.y8e{bottom:301.213333pt;}
.yd6{bottom:302.493333pt;}
.y4b{bottom:306.333333pt;}
.y20{bottom:306.973333pt;}
.y99{bottom:311.773333pt;}
.yaa{bottom:312.093333pt;}
.y127{bottom:316.893333pt;}
.y10e{bottom:322.013333pt;}
.y72{bottom:322.333333pt;}
.yd5{bottom:323.613333pt;}
.y4a{bottom:327.773333pt;}
.y1f{bottom:328.093333pt;}
.y169{bottom:330.013333pt;}
.y98{bottom:332.893333pt;}
.ya9{bottom:333.213333pt;}
.y14f{bottom:340.573333pt;}
.y10d{bottom:343.133333pt;}
.y71{bottom:343.773333pt;}
.yd4{bottom:344.733333pt;}
.y126{bottom:346.973333pt;}
.y1e{bottom:349.213333pt;}
.y97{bottom:354.013333pt;}
.ya8{bottom:354.333333pt;}
.y14e{bottom:358.813333pt;}
.y49{bottom:359.453333pt;}
.y70{bottom:364.893333pt;}
.yd3{bottom:366.173333pt;}
.y125{bottom:366.813333pt;}
.y1d{bottom:370.653333pt;}
.yb6{bottom:375.133333pt;}
.ya7{bottom:375.453333pt;}
.y168{bottom:377.053333pt;}
.y48{bottom:380.573333pt;}
.y96{bottom:385.693333pt;}
.y6f{bottom:386.013333pt;}
.y124{bottom:386.973333pt;}
.yd2{bottom:387.293333pt;}
.y14d{bottom:387.613333pt;}
.y1c{bottom:393.053333pt;}
.y10c{bottom:396.253333pt;}
.ya6{bottom:396.573333pt;}
.y47{bottom:401.733333pt;}
.y14c{bottom:405.893333pt;}
.y95{bottom:406.853333pt;}
.y6e{bottom:407.173333pt;}
.yd1{bottom:408.453333pt;}
.y1b{bottom:416.453333pt;}
.y10b{bottom:417.413333pt;}
.ya5{bottom:417.733333pt;}
.y46{bottom:422.853333pt;}
.y167{bottom:424.133333pt;}
.y123{bottom:426.693333pt;}
.y94{bottom:427.973333pt;}
.y6d{bottom:428.293333pt;}
.yd0{bottom:429.573333pt;}
.y14b{bottom:434.693333pt;}
.y10a{bottom:438.533333pt;}
.y8d{bottom:438.853333pt;}
.y166{bottom:442.373333pt;}
.y45{bottom:443.973333pt;}
.y1a{bottom:446.533333pt;}
.y6c{bottom:449.413333pt;}
.ycf{bottom:450.693333pt;}
.y14a{bottom:452.933333pt;}
.y109{bottom:459.653333pt;}
.y8c{bottom:459.973333pt;}
.y44{bottom:465.413333pt;}
.y122{bottom:466.373333pt;}
.y19{bottom:468.293333pt;}
.y6b{bottom:470.533333pt;}
.ybd{bottom:470.853333pt;}
.y149{bottom:471.173333pt;}
.yce{bottom:471.813333pt;}
.y8b{bottom:481.413333pt;}
.y121{bottom:486.213333pt;}
.y43{bottom:486.533333pt;}
.y165{bottom:489.413333pt;}
.y18{bottom:489.733333pt;}
.y6a{bottom:491.653333pt;}
.ybc{bottom:491.973333pt;}
.ycd{bottom:492.933333pt;}
.y108{bottom:494.213333pt;}
.y148{bottom:499.973333pt;}
.y93{bottom:502.213333pt;}
.y8a{bottom:502.533333pt;}
.y120{bottom:506.053333pt;}
.y42{bottom:507.653333pt;}
.y17{bottom:510.853333pt;}
.yb5{bottom:512.800000pt;}
.ybb{bottom:513.120000pt;}
.ycc{bottom:514.080000pt;}
.y147{bottom:518.240000pt;}
.y69{bottom:523.680000pt;}
.y11f{bottom:525.920000pt;}
.y107{bottom:526.240000pt;}
.y41{bottom:528.800000pt;}
.y92{bottom:534.240000pt;}
.y146{bottom:536.480000pt;}
.y16{bottom:540.000000pt;}
.y68{bottom:544.800000pt;}
.y11e{bottom:545.760000pt;}
.y106{bottom:547.360000pt;}
.ycb{bottom:548.640000pt;}
.y40{bottom:549.920000pt;}
.y164{bottom:554.720000pt;}
.ya4{bottom:555.360000pt;}
.y15{bottom:561.120000pt;}
.y145{bottom:565.280000pt;}
.y11d{bottom:565.600000pt;}
.y67{bottom:565.920000pt;}
.y105{bottom:568.480000pt;}
.y163{bottom:572.960000pt;}
.y89{bottom:576.480000pt;}
.y3f{bottom:581.600000pt;}
.y14{bottom:582.240000pt;}
.y144{bottom:583.520000pt;}
.yca{bottom:585.760000pt;}
.y66{bottom:587.040000pt;}
.y104{bottom:589.600000pt;}
.yf1{bottom:592.640000pt;}
.y11c{bottom:597.280000pt;}
.y88{bottom:597.600000pt;}
.y143{bottom:601.760000pt;}
.y3e{bottom:603.040000pt;}
.y65{bottom:608.160000pt;}
.y13{bottom:608.480000pt;}
.y103{bottom:610.720000pt;}
.y11b{bottom:618.720000pt;}
.y87{bottom:619.040000pt;}
.y162{bottom:620.000000pt;}
.yc9{bottom:622.906667pt;}
.y3d{bottom:624.186667pt;}
.y12{bottom:627.386667pt;}
.y64{bottom:629.306667pt;}
.y142{bottom:630.586667pt;}
.y102{bottom:631.866667pt;}
.y11a{bottom:639.866667pt;}
.y86{bottom:640.186667pt;}
.y3c{bottom:645.306667pt;}
.y11{bottom:648.186667pt;}
.y141{bottom:648.826667pt;}
.y63{bottom:650.746667pt;}
.y101{bottom:652.986667pt;}
.yc8{bottom:660.346667pt;}
.y119{bottom:660.986667pt;}
.y85{bottom:661.306667pt;}
.y3b{bottom:666.426667pt;}
.y161{bottom:667.066667pt;}
.yec{bottom:670.400000pt;}
.y62{bottom:671.866667pt;}
.y100{bottom:674.106667pt;}
.y10{bottom:677.306667pt;}
.y140{bottom:677.626667pt;}
.y118{bottom:682.106667pt;}
.y84{bottom:682.426667pt;}
.y3a{bottom:687.546667pt;}
.y61{bottom:692.986667pt;}
.yff{bottom:695.546667pt;}
.y13f{bottom:695.866667pt;}
.yc7{bottom:697.466667pt;}
.yf{bottom:698.426667pt;}
.y83{bottom:703.546667pt;}
.y39{bottom:708.666667pt;}
.y117{bottom:713.786667pt;}
.ya3{bottom:714.106667pt;}
.yee{bottom:714.880000pt;}
.yfe{bottom:716.666667pt;}
.ye{bottom:719.546667pt;}
.y60{bottom:724.666667pt;}
.y38{bottom:729.786667pt;}
.yc6{bottom:734.586667pt;}
.ya2{bottom:735.586667pt;}
.y13e{bottom:742.946667pt;}
.y5f{bottom:745.826667pt;}
.yd{bottom:749.026667pt;}
.y37{bottom:750.946667pt;}
.yfd{bottom:751.266667pt;}
.ya1{bottom:756.706667pt;}
.y160{bottom:761.186667pt;}
.yea{bottom:761.280000pt;}
.y5e{bottom:766.946667pt;}
.ye8{bottom:768.640000pt;}
.yc5{bottom:771.746667pt;}
.y36{bottom:772.386667pt;}
.y82{bottom:777.826667pt;}
.yc{bottom:778.146667pt;}
.yfc{bottom:782.946667pt;}
.y5d{bottom:788.386667pt;}
.y13d{bottom:789.986667pt;}
.y116{bottom:798.626667pt;}
.y81{bottom:798.946667pt;}
.y35{bottom:804.066667pt;}
.y15f{bottom:808.226667pt;}
.yc4{bottom:808.866667pt;}
.yb4{bottom:809.506667pt;}
.yb{bottom:815.266667pt;}
.y13c{bottom:818.786667pt;}
.ye6{bottom:819.520000pt;}
.y115{bottom:819.746667pt;}
.y5c{bottom:820.066667pt;}
.y34{bottom:825.186667pt;}
.y15e{bottom:826.466667pt;}
.yb3{bottom:830.626667pt;}
.ya{bottom:836.386667pt;}
.yf4{bottom:836.706667pt;}
.y5b{bottom:841.186667pt;}
.yc3{bottom:845.986667pt;}
.y33{bottom:846.306667pt;}
.y13b{bottom:847.933333pt;}
.ya0{bottom:851.773333pt;}
.y15d{bottom:855.293333pt;}
.y5a{bottom:862.333333pt;}
.ye3{bottom:864.640000pt;}
.y13a{bottom:866.173333pt;}
.y32{bottom:867.453333pt;}
.y114{bottom:872.893333pt;}
.y9f{bottom:873.213333pt;}
.y9{bottom:873.533333pt;}
.yc2{bottom:883.133333pt;}
.y59{bottom:883.453333pt;}
.y139{bottom:884.093333pt;}
.y31{bottom:888.893333pt;}
.y9e{bottom:894.333333pt;}
.y8{bottom:894.653333pt;}
.y15c{bottom:902.333333pt;}
.y80{bottom:904.893333pt;}
.yfb{bottom:910.013333pt;}
.y138{bottom:913.213333pt;}
.y58{bottom:915.453333pt;}
.yc1{bottom:920.253333pt;}
.y30{bottom:920.573333pt;}
.ye0{bottom:923.200000pt;}
.y6{bottom:925.693333pt;}
.y7f{bottom:926.013333pt;}
.yfa{bottom:931.133333pt;}
.y137{bottom:931.453333pt;}
.y57{bottom:936.573333pt;}
.y2f{bottom:941.693333pt;}
.y7e{bottom:947.133333pt;}
.y15b{bottom:949.373333pt;}
.y5{bottom:951.613333pt;}
.yf9{bottom:952.253333pt;}
.y56{bottom:957.693333pt;}
.y136{bottom:960.293333pt;}
.y2e{bottom:962.853333pt;}
.y15a{bottom:967.653333pt;}
.y7d{bottom:968.293333pt;}
.y135{bottom:978.533333pt;}
.y55{bottom:978.853333pt;}
.y2d{bottom:983.973333pt;}
.yf8{bottom:986.853333pt;}
.y7c{bottom:989.413333pt;}
.y159{bottom:996.453333pt;}
.y54{bottom:999.973333pt;}
.y4{bottom:1003.813333pt;}
.y134{bottom:1007.333333pt;}
.yc0{bottom:1010.533333pt;}
.y158{bottom:1014.693333pt;}
.yf7{bottom:1019.173333pt;}
.y3{bottom:1019.493333pt;}
.y2c{bottom:1021.093333pt;}
.y133{bottom:1025.573333pt;}
.y2{bottom:1038.693333pt;}
.y2b{bottom:1042.533333pt;}
.y132{bottom:1043.813333pt;}
.y1{bottom:1058.533333pt;}
.y2a{bottom:1061.413333pt;}
.hd{height:22.080000pt;}
.he{height:23.680000pt;}
.hb{height:33.920000pt;}
.hc{height:35.200000pt;}
.h4{height:36.931250pt;}
.hf{height:40.320000pt;}
.h6{height:46.343750pt;}
.ha{height:46.593750pt;}
.h3{height:46.832500pt;}
.h10{height:47.712000pt;}
.h9{height:51.663750pt;}
.h14{height:51.807500pt;}
.h2{height:53.218750pt;}
.h8{height:54.906875pt;}
.h7{height:56.156250pt;}
.h5{height:58.563750pt;}
.h13{height:61.383125pt;}
.h12{height:62.895000pt;}
.h11{height:74.202500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:161.346667pt;}
.w3{width:215.680000pt;}
.w4{width:216.640000pt;}
.w8{width:217.280000pt;}
.w6{width:217.600000pt;}
.w7{width:217.920000pt;}
.w5{width:218.240000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x28{left:10.880000pt;}
.x19{left:13.152000pt;}
.x1f{left:17.632000pt;}
.x1c{left:26.304000pt;}
.x29{left:33.946667pt;}
.x24{left:45.346667pt;}
.x1e{left:47.746667pt;}
.x26{left:53.666667pt;}
.x21{left:54.626667pt;}
.x25{left:58.146667pt;}
.x23{left:74.466667pt;}
.x1d{left:75.586667pt;}
.x1a{left:90.306667pt;}
.x1b{left:91.200000pt;}
.x18{left:92.160000pt;}
.x1{left:94.431988pt;}
.x14{left:99.551988pt;}
.x9{left:101.471988pt;}
.xb{left:103.391988pt;}
.x4{left:105.631988pt;}
.xe{left:112.991988pt;}
.x6{left:113.951988pt;}
.x11{left:118.143988pt;}
.x2a{left:132.223988pt;}
.x16{left:169.986655pt;}
.x17{left:179.586655pt;}
.x2{left:202.973322pt;}
.x5{left:242.973322pt;}
.x7{left:249.373322pt;}
.x12{left:265.373322pt;}
.xf{left:279.173322pt;}
.x8{left:297.733322pt;}
.xa{left:299.013322pt;}
.xc{left:305.413322pt;}
.x10{left:310.533322pt;}
.xd{left:311.493322pt;}
.x13{left:335.173322pt;}
.x15{left:348.613322pt;}
.x27{left:419.360000pt;}
.x22{left:503.680000pt;}
.x20{left:504.960000pt;}
.x3{left:669.733322pt;}
}




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