
    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_ca345067e0b24a388c0a227e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_741f97ba4172a597c66e9760.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_9123bf1c4040e6ad8e0ee6b3.woff')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:116.919900px;}
.ls2{letter-spacing:134.919900px;}
.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;}
}
.ws19{word-spacing:-55.944000px;}
.ws4f{word-spacing:-38.871000px;}
.ws49{word-spacing:-38.859000px;}
.ws2a{word-spacing:-38.653200px;}
.ws77{word-spacing:-38.652900px;}
.ws51{word-spacing:-38.651400px;}
.wsbd{word-spacing:-38.649000px;}
.ws73{word-spacing:-38.648400px;}
.ws68{word-spacing:-38.647800px;}
.ws62{word-spacing:-38.647200px;}
.wsb8{word-spacing:-38.645100px;}
.ws11{word-spacing:-38.644200px;}
.ws5b{word-spacing:-38.448600px;}
.ws9b{word-spacing:-38.446800px;}
.ws5{word-spacing:-38.440800px;}
.ws6{word-spacing:-38.434200px;}
.ws7{word-spacing:-38.433600px;}
.wsbf{word-spacing:-38.430300px;}
.ws53{word-spacing:-38.369400px;}
.ws3c{word-spacing:-38.166000px;}
.ws34{word-spacing:-38.160000px;}
.ws57{word-spacing:-38.155200px;}
.wse{word-spacing:-38.152800px;}
.ws22{word-spacing:-38.151000px;}
.ws3{word-spacing:-38.148300px;}
.ws56{word-spacing:-38.146200px;}
.ws87{word-spacing:-38.145600px;}
.wsb{word-spacing:-38.145000px;}
.ws2{word-spacing:-38.081700px;}
.wsb9{word-spacing:-38.075400px;}
.ws0{word-spacing:-37.944000px;}
.ws2d{word-spacing:-37.936800px;}
.ws4{word-spacing:-37.935900px;}
.ws5e{word-spacing:-37.935000px;}
.ws3d{word-spacing:-37.933200px;}
.wsab{word-spacing:-37.931400px;}
.ws10{word-spacing:-37.929600px;}
.ws6b{word-spacing:-37.928700px;}
.ws97{word-spacing:-37.928400px;}
.ws43{word-spacing:-37.927800px;}
.ws29{word-spacing:-37.440000px;}
.ws7f{word-spacing:-37.439700px;}
.wsf{word-spacing:-37.432800px;}
.ws25{word-spacing:-37.431000px;}
.ws61{word-spacing:-37.221300px;}
.wsa0{word-spacing:-37.215000px;}
.ws7a{word-spacing:-37.213200px;}
.ws4c{word-spacing:-37.211100px;}
.wsb4{word-spacing:-37.202400px;}
.ws2b{word-spacing:-36.493200px;}
.ws8b{word-spacing:-35.777400px;}
.ws32{word-spacing:-35.773200px;}
.ws28{word-spacing:-35.561400px;}
.ws82{word-spacing:-34.839000px;}
.ws8e{word-spacing:-34.560000px;}
.ws21{word-spacing:-34.340400px;}
.ws8d{word-spacing:-34.331400px;}
.ws1d{word-spacing:-34.324200px;}
.ws8c{word-spacing:-34.124400px;}
.ws65{word-spacing:-34.112700px;}
.wsa9{word-spacing:-33.831000px;}
.ws1e{word-spacing:-33.611400px;}
.ws95{word-spacing:-32.900400px;}
.wsb2{word-spacing:-32.896800px;}
.ws40{word-spacing:-32.891400px;}
.ws58{word-spacing:-32.684400px;}
.wsaf{word-spacing:-32.400000px;}
.ws26{word-spacing:-32.398800px;}
.ws37{word-spacing:-32.394300px;}
.wsa8{word-spacing:-31.964400px;}
.wsa2{word-spacing:-31.951800px;}
.ws20{word-spacing:-31.678200px;}
.ws5a{word-spacing:-31.671000px;}
.wsc{word-spacing:-31.456800px;}
.ws69{word-spacing:-31.453200px;}
.wsa6{word-spacing:-30.957000px;}
.ws1f{word-spacing:-30.956400px;}
.ws72{word-spacing:-30.735000px;}
.ws7c{word-spacing:-30.503700px;}
.wsbb{word-spacing:-30.029100px;}
.ws96{word-spacing:-30.021000px;}
.ws84{word-spacing:-30.011400px;}
.ws31{word-spacing:-29.512800px;}
.ws4d{word-spacing:-29.296800px;}
.ws89{word-spacing:-29.080800px;}
.ws3b{word-spacing:-29.069400px;}
.wsba{word-spacing:-28.791000px;}
.ws3a{word-spacing:-28.789200px;}
.ws8f{word-spacing:-28.578600px;}
.ws80{word-spacing:-28.569600px;}
.wsae{word-spacing:-28.080000px;}
.ws5c{word-spacing:-28.071000px;}
.ws64{word-spacing:-28.062000px;}
.ws2f{word-spacing:-28.059600px;}
.ws75{word-spacing:-27.362400px;}
.ws4a{word-spacing:-27.356400px;}
.ws27{word-spacing:-26.640000px;}
.wsa3{word-spacing:-26.411400px;}
.ws30{word-spacing:-26.409600px;}
.ws6a{word-spacing:-26.405100px;}
.ws91{word-spacing:-25.911000px;}
.ws94{word-spacing:-25.903800px;}
.ws1c{word-spacing:-25.704000px;}
.ws7e{word-spacing:-25.693200px;}
.ws86{word-spacing:-25.692300px;}
.ws92{word-spacing:-25.470000px;}
.ws9{word-spacing:-25.197000px;}
.ws14{word-spacing:-25.195500px;}
.ws36{word-spacing:-25.187400px;}
.ws83{word-spacing:-24.979200px;}
.ws6c{word-spacing:-24.978600px;}
.ws41{word-spacing:-24.966000px;}
.ws8{word-spacing:-24.480000px;}
.ws3e{word-spacing:-23.760000px;}
.ws38{word-spacing:-23.752800px;}
.ws2c{word-spacing:-23.527200px;}
.wsad{word-spacing:-23.478000px;}
.ws33{word-spacing:-23.322600px;}
.ws79{word-spacing:-23.025600px;}
.ws44{word-spacing:-22.822200px;}
.wsbe{word-spacing:-22.817400px;}
.ws9a{word-spacing:-22.816800px;}
.wsaa{word-spacing:-22.813200px;}
.wsb7{word-spacing:-22.596000px;}
.ws74{word-spacing:-22.311000px;}
.ws7b{word-spacing:-22.091400px;}
.ws85{word-spacing:-21.384000px;}
.ws93{word-spacing:-21.378600px;}
.ws8a{word-spacing:-20.877000px;}
.wsa5{word-spacing:-20.657400px;}
.ws6e{word-spacing:-20.143800px;}
.wsa1{word-spacing:-19.935000px;}
.ws35{word-spacing:-19.933200px;}
.ws9d{word-spacing:-19.724400px;}
.ws1a{word-spacing:-19.434000px;}
.ws46{word-spacing:-19.431000px;}
.ws1b{word-spacing:-19.230000px;}
.ws39{word-spacing:-19.215000px;}
.ws3f{word-spacing:-18.714000px;}
.ws71{word-spacing:-18.491400px;}
.ws6d{word-spacing:-18.270000px;}
.ws45{word-spacing:-17.566800px;}
.ws78{word-spacing:-17.053200px;}
.ws98{word-spacing:-16.551000px;}
.ws67{word-spacing:-15.117000px;}
.ws5d{word-spacing:-14.893200px;}
.wsa7{word-spacing:-14.391000px;}
.ws16{word-spacing:-12.966000px;}
.wsa{word-spacing:-12.240000px;}
.wsb5{word-spacing:-12.231000px;}
.ws9e{word-spacing:-11.517000px;}
.ws7d{word-spacing:-11.511000px;}
.ws42{word-spacing:-11.304000px;}
.ws18{word-spacing:-11.226300px;}
.ws90{word-spacing:-11.079000px;}
.ws6f{word-spacing:-10.353600px;}
.ws2e{word-spacing:-9.859200px;}
.ws55{word-spacing:-9.351000px;}
.ws70{word-spacing:-8.627400px;}
.ws23{word-spacing:-7.189200px;}
.ws4e{word-spacing:-6.975000px;}
.ws24{word-spacing:-6.973200px;}
.ws9c{word-spacing:-5.322000px;}
.wsd{word-spacing:-4.093200px;}
.ws5f{word-spacing:-3.591000px;}
.ws60{word-spacing:-3.379200px;}
.wsb3{word-spacing:-3.367800px;}
.ws88{word-spacing:-3.365100px;}
.ws48{word-spacing:-2.437200px;}
.wsac{word-spacing:-1.211400px;}
.ws99{word-spacing:-0.510000px;}
.ws52{word-spacing:0.000000px;}
.wsb1{word-spacing:0.451800px;}
.ws9f{word-spacing:0.975000px;}
.ws54{word-spacing:1.441800px;}
.ws81{word-spacing:3.108600px;}
.ws47{word-spacing:5.986800px;}
.ws4b{word-spacing:7.745700px;}
.wsb6{word-spacing:8.640000px;}
.ws63{word-spacing:9.369000px;}
.ws76{word-spacing:9.588600px;}
.wsbc{word-spacing:10.086300px;}
.ws50{word-spacing:10.319400px;}
.ws17{word-spacing:12.234000px;}
.ws66{word-spacing:17.727300px;}
.ws13{word-spacing:19.161900px;}
.wsa4{word-spacing:19.162200px;}
.ws59{word-spacing:19.886400px;}
.ws12{word-spacing:20.160000px;}
.wsb0{word-spacing:34.786800px;}
.ws15{word-spacing:40.193100px;}
.ws1{word-spacing:1037.484900px;}
._4{margin-left:-1.390800px;}
._0{width:1.076400px;}
._26{width:17.280000px;}
._1{width:18.968400px;}
._f{width:20.151000px;}
._11{width:21.519000px;}
._5{width:23.314800px;}
._10{width:24.694800px;}
._d{width:26.208000px;}
._16{width:27.475200px;}
._14{width:28.944000px;}
._15{width:30.564000px;}
._2{width:32.109000px;}
._17{width:33.333600px;}
._12{width:34.338000px;}
._22{width:35.343000px;}
._24{width:36.429000px;}
._b{width:37.512000px;}
._c{width:38.824800px;}
._18{width:40.053600px;}
._1e{width:42.441600px;}
._3{width:44.712000px;}
._a{width:45.736500px;}
._13{width:47.577600px;}
._e{width:50.162400px;}
._1b{width:51.596400px;}
._6{width:53.050800px;}
._1a{width:55.062000px;}
._25{width:56.448000px;}
._28{width:57.652200px;}
._1d{width:59.038200px;}
._23{width:60.264000px;}
._19{width:63.691200px;}
._1f{width:66.585600px;}
._1c{width:68.154600px;}
._9{width:69.193200px;}
._20{width:74.720700px;}
._7{width:76.951800px;}
._27{width:92.142000px;}
._8{width:97.659900px;}
._21{width:112.824000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(15,17,21);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y7a{bottom:123.015000px;}
.yca{bottom:134.896500px;}
.y51{bottom:137.415000px;}
.ya4{bottom:141.015000px;}
.y79{bottom:146.596500px;}
.yc9{bottom:155.596500px;}
.y50{bottom:158.115000px;}
.ya3{bottom:161.715000px;}
.y28{bottom:162.436500px;}
.y78{bottom:167.296500px;}
.y4f{bottom:178.815000px;}
.yc8{bottom:179.175000px;}
.y27{bottom:183.136500px;}
.y77{bottom:187.996500px;}
.yc7{bottom:199.875000px;}
.ya2{bottom:203.475000px;}
.y26{bottom:203.836500px;}
.y76{bottom:208.515000px;}
.y4e{bottom:220.575000px;}
.yc6{bottom:223.275000px;}
.ya1{bottom:224.175000px;}
.y25{bottom:224.536500px;}
.y75{bottom:229.396500px;}
.yc5{bottom:243.975000px;}
.ya0{bottom:244.875000px;}
.y24{bottom:245.236500px;}
.y74{bottom:252.975000px;}
.y4d{bottom:265.036500px;}
.y73{bottom:273.675000px;}
.y4c{bottom:285.736500px;}
.y9f{bottom:286.636500px;}
.y23{bottom:286.815000px;}
.yc4{bottom:288.436500px;}
.y72{bottom:294.375000px;}
.y4b{bottom:306.255000px;}
.y9e{bottom:307.336500px;}
.y22{bottom:307.515000px;}
.y71{bottom:315.075000px;}
.y9d{bottom:328.036500px;}
.y21{bottom:328.215000px;}
.yc3{bottom:330.196500px;}
.y70{bottom:335.596500px;}
.y4a{bottom:348.015000px;}
.y9c{bottom:348.736500px;}
.yc2{bottom:350.896500px;}
.y6f{bottom:356.295000px;}
.y9b{bottom:369.436500px;}
.y20{bottom:369.975000px;}
.yc1{bottom:371.596500px;}
.y6e{bottom:377.175000px;}
.y9a{bottom:390.136500px;}
.y1f{bottom:390.675000px;}
.yc0{bottom:392.295000px;}
.y49{bottom:392.475000px;}
.y6d{bottom:400.575000px;}
.y99{bottom:410.836500px;}
.y1e{bottom:411.375000px;}
.y48{bottom:413.175000px;}
.y6c{bottom:421.275000px;}
.y98{bottom:431.536500px;}
.y1d{bottom:432.075000px;}
.ybf{bottom:433.875000px;}
.y6b{bottom:441.975000px;}
.y97{bottom:452.236500px;}
.y1c{bottom:452.775000px;}
.ybe{bottom:454.575000px;}
.y47{bottom:454.936500px;}
.y6a{bottom:462.675000px;}
.y96{bottom:472.936500px;}
.ybd{bottom:475.275000px;}
.y46{bottom:475.636500px;}
.y95{bottom:493.636500px;}
.y1b{bottom:494.536500px;}
.ybc{bottom:495.975000px;}
.y45{bottom:496.336500px;}
.y69{bottom:507.136500px;}
.y94{bottom:514.336500px;}
.y1a{bottom:515.236500px;}
.ybb{bottom:516.675000px;}
.y44{bottom:517.036500px;}
.y93{bottom:535.036500px;}
.y19{bottom:535.936500px;}
.yba{bottom:537.375000px;}
.y43{bottom:537.736500px;}
.y68{bottom:548.896500px;}
.y92{bottom:555.736500px;}
.yb9{bottom:558.075000px;}
.y42{bottom:558.436500px;}
.y67{bottom:569.596500px;}
.y91{bottom:576.436500px;}
.y18{bottom:577.515000px;}
.yb8{bottom:578.775000px;}
.y66{bottom:590.295000px;}
.y17{bottom:598.215000px;}
.yb7{bottom:599.475000px;}
.y41{bottom:600.195000px;}
.y65{bottom:610.996500px;}
.y90{bottom:618.015000px;}
.y16{bottom:618.915000px;}
.y40{bottom:620.896500px;}
.y64{bottom:631.695000px;}
.y8f{bottom:638.715000px;}
.y15{bottom:639.615000px;}
.yb6{bottom:641.236500px;}
.y3f{bottom:641.596500px;}
.y63{bottom:652.396500px;}
.y8e{bottom:659.415000px;}
.y14{bottom:660.315000px;}
.yb5{bottom:661.936500px;}
.y3e{bottom:662.295000px;}
.y8d{bottom:680.115000px;}
.y13{bottom:681.015000px;}
.yb4{bottom:682.636500px;}
.y3d{bottom:682.996500px;}
.y62{bottom:693.975000px;}
.y8c{bottom:700.815000px;}
.y12{bottom:701.715000px;}
.yb3{bottom:703.336500px;}
.y3c{bottom:703.695000px;}
.y61{bottom:714.675000px;}
.y8b{bottom:721.515000px;}
.yb2{bottom:724.036500px;}
.y3b{bottom:724.396500px;}
.y60{bottom:735.375000px;}
.y8a{bottom:742.215000px;}
.y11{bottom:743.475000px;}
.yb1{bottom:744.736500px;}
.y5f{bottom:756.075000px;}
.y89{bottom:762.915000px;}
.y10{bottom:764.175000px;}
.y3a{bottom:765.975000px;}
.y88{bottom:783.615000px;}
.yb0{bottom:786.496500px;}
.y39{bottom:786.675000px;}
.y5e{bottom:797.836500px;}
.y87{bottom:804.315000px;}
.yf{bottom:805.936500px;}
.yaf{bottom:807.195000px;}
.y38{bottom:807.375000px;}
.y5d{bottom:818.536500px;}
.y86{bottom:825.015000px;}
.ye{bottom:826.636500px;}
.yae{bottom:827.895000px;}
.y37{bottom:828.075000px;}
.y5c{bottom:839.236500px;}
.yd{bottom:847.336500px;}
.yad{bottom:848.596500px;}
.y36{bottom:848.775000px;}
.y85{bottom:866.775000px;}
.yc{bottom:868.036500px;}
.y35{bottom:869.475000px;}
.y5b{bottom:880.995000px;}
.y84{bottom:887.475000px;}
.yb{bottom:888.736500px;}
.y34{bottom:890.175000px;}
.y83{bottom:908.175000px;}
.ya{bottom:909.436500px;}
.y33{bottom:910.875000px;}
.y5a{bottom:925.455000px;}
.y82{bottom:928.875000px;}
.y32{bottom:931.575000px;}
.y59{bottom:946.155000px;}
.y81{bottom:949.575000px;}
.y9{bottom:951.015000px;}
.yac{bottom:952.275000px;}
.y58{bottom:966.855000px;}
.y8{bottom:971.715000px;}
.yab{bottom:972.975000px;}
.y31{bottom:973.336500px;}
.y57{bottom:987.375000px;}
.y80{bottom:991.155000px;}
.yaa{bottom:993.675000px;}
.y30{bottom:994.036500px;}
.y7f{bottom:1011.855000px;}
.ya9{bottom:1014.375000px;}
.y2f{bottom:1014.736500px;}
.y56{bottom:1029.315000px;}
.y7e{bottom:1032.555000px;}
.ya8{bottom:1035.075000px;}
.y2e{bottom:1035.436500px;}
.y7d{bottom:1053.255000px;}
.ya7{bottom:1055.775000px;}
.y2d{bottom:1056.136500px;}
.y55{bottom:1073.775000px;}
.y7c{bottom:1074.136500px;}
.y7{bottom:1076.295000px;}
.ya6{bottom:1076.475000px;}
.y2c{bottom:1076.836500px;}
.y54{bottom:1094.475000px;}
.ya5{bottom:1097.175000px;}
.y2b{bottom:1097.536500px;}
.y53{bottom:1114.995000px;}
.y6{bottom:1117.875000px;}
.y2a{bottom:1118.236500px;}
.ycb{bottom:1136.055000px;}
.y29{bottom:1138.936500px;}
.y52{bottom:1156.755000px;}
.y7b{bottom:1159.455000px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h8{height:50.747344px;}
.h7{height:50.753344px;}
.h6{height:58.573682px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:129.600000px;}
.x8{left:133.920000px;}
.x2{left:160.560000px;}
.x9{left:263.880000px;}
.x6{left:280.438500px;}
.x7{left:305.460000px;}
.x5{left:310.138500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:103.928800pt;}
.ls2{letter-spacing:119.928800pt;}
.ws19{word-spacing:-49.728000pt;}
.ws4f{word-spacing:-34.552000pt;}
.ws49{word-spacing:-34.541333pt;}
.ws2a{word-spacing:-34.358400pt;}
.ws77{word-spacing:-34.358133pt;}
.ws51{word-spacing:-34.356800pt;}
.wsbd{word-spacing:-34.354667pt;}
.ws73{word-spacing:-34.354133pt;}
.ws68{word-spacing:-34.353600pt;}
.ws62{word-spacing:-34.353067pt;}
.wsb8{word-spacing:-34.351200pt;}
.ws11{word-spacing:-34.350400pt;}
.ws5b{word-spacing:-34.176533pt;}
.ws9b{word-spacing:-34.174933pt;}
.ws5{word-spacing:-34.169600pt;}
.ws6{word-spacing:-34.163733pt;}
.ws7{word-spacing:-34.163200pt;}
.wsbf{word-spacing:-34.160267pt;}
.ws53{word-spacing:-34.106133pt;}
.ws3c{word-spacing:-33.925333pt;}
.ws34{word-spacing:-33.920000pt;}
.ws57{word-spacing:-33.915733pt;}
.wse{word-spacing:-33.913600pt;}
.ws22{word-spacing:-33.912000pt;}
.ws3{word-spacing:-33.909600pt;}
.ws56{word-spacing:-33.907733pt;}
.ws87{word-spacing:-33.907200pt;}
.wsb{word-spacing:-33.906667pt;}
.ws2{word-spacing:-33.850400pt;}
.wsb9{word-spacing:-33.844800pt;}
.ws0{word-spacing:-33.728000pt;}
.ws2d{word-spacing:-33.721600pt;}
.ws4{word-spacing:-33.720800pt;}
.ws5e{word-spacing:-33.720000pt;}
.ws3d{word-spacing:-33.718400pt;}
.wsab{word-spacing:-33.716800pt;}
.ws10{word-spacing:-33.715200pt;}
.ws6b{word-spacing:-33.714400pt;}
.ws97{word-spacing:-33.714133pt;}
.ws43{word-spacing:-33.713600pt;}
.ws29{word-spacing:-33.280000pt;}
.ws7f{word-spacing:-33.279733pt;}
.wsf{word-spacing:-33.273600pt;}
.ws25{word-spacing:-33.272000pt;}
.ws61{word-spacing:-33.085600pt;}
.wsa0{word-spacing:-33.080000pt;}
.ws7a{word-spacing:-33.078400pt;}
.ws4c{word-spacing:-33.076533pt;}
.wsb4{word-spacing:-33.068800pt;}
.ws2b{word-spacing:-32.438400pt;}
.ws8b{word-spacing:-31.802133pt;}
.ws32{word-spacing:-31.798400pt;}
.ws28{word-spacing:-31.610133pt;}
.ws82{word-spacing:-30.968000pt;}
.ws8e{word-spacing:-30.720000pt;}
.ws21{word-spacing:-30.524800pt;}
.ws8d{word-spacing:-30.516800pt;}
.ws1d{word-spacing:-30.510400pt;}
.ws8c{word-spacing:-30.332800pt;}
.ws65{word-spacing:-30.322400pt;}
.wsa9{word-spacing:-30.072000pt;}
.ws1e{word-spacing:-29.876800pt;}
.ws95{word-spacing:-29.244800pt;}
.wsb2{word-spacing:-29.241600pt;}
.ws40{word-spacing:-29.236800pt;}
.ws58{word-spacing:-29.052800pt;}
.wsaf{word-spacing:-28.800000pt;}
.ws26{word-spacing:-28.798933pt;}
.ws37{word-spacing:-28.794933pt;}
.wsa8{word-spacing:-28.412800pt;}
.wsa2{word-spacing:-28.401600pt;}
.ws20{word-spacing:-28.158400pt;}
.ws5a{word-spacing:-28.152000pt;}
.wsc{word-spacing:-27.961600pt;}
.ws69{word-spacing:-27.958400pt;}
.wsa6{word-spacing:-27.517333pt;}
.ws1f{word-spacing:-27.516800pt;}
.ws72{word-spacing:-27.320000pt;}
.ws7c{word-spacing:-27.114400pt;}
.wsbb{word-spacing:-26.692533pt;}
.ws96{word-spacing:-26.685333pt;}
.ws84{word-spacing:-26.676800pt;}
.ws31{word-spacing:-26.233600pt;}
.ws4d{word-spacing:-26.041600pt;}
.ws89{word-spacing:-25.849600pt;}
.ws3b{word-spacing:-25.839467pt;}
.wsba{word-spacing:-25.592000pt;}
.ws3a{word-spacing:-25.590400pt;}
.ws8f{word-spacing:-25.403200pt;}
.ws80{word-spacing:-25.395200pt;}
.wsae{word-spacing:-24.960000pt;}
.ws5c{word-spacing:-24.952000pt;}
.ws64{word-spacing:-24.944000pt;}
.ws2f{word-spacing:-24.941867pt;}
.ws75{word-spacing:-24.322133pt;}
.ws4a{word-spacing:-24.316800pt;}
.ws27{word-spacing:-23.680000pt;}
.wsa3{word-spacing:-23.476800pt;}
.ws30{word-spacing:-23.475200pt;}
.ws6a{word-spacing:-23.471200pt;}
.ws91{word-spacing:-23.032000pt;}
.ws94{word-spacing:-23.025600pt;}
.ws1c{word-spacing:-22.848000pt;}
.ws7e{word-spacing:-22.838400pt;}
.ws86{word-spacing:-22.837600pt;}
.ws92{word-spacing:-22.640000pt;}
.ws9{word-spacing:-22.397333pt;}
.ws14{word-spacing:-22.396000pt;}
.ws36{word-spacing:-22.388800pt;}
.ws83{word-spacing:-22.203733pt;}
.ws6c{word-spacing:-22.203200pt;}
.ws41{word-spacing:-22.192000pt;}
.ws8{word-spacing:-21.760000pt;}
.ws3e{word-spacing:-21.120000pt;}
.ws38{word-spacing:-21.113600pt;}
.ws2c{word-spacing:-20.913067pt;}
.wsad{word-spacing:-20.869333pt;}
.ws33{word-spacing:-20.731200pt;}
.ws79{word-spacing:-20.467200pt;}
.ws44{word-spacing:-20.286400pt;}
.wsbe{word-spacing:-20.282133pt;}
.ws9a{word-spacing:-20.281600pt;}
.wsaa{word-spacing:-20.278400pt;}
.wsb7{word-spacing:-20.085333pt;}
.ws74{word-spacing:-19.832000pt;}
.ws7b{word-spacing:-19.636800pt;}
.ws85{word-spacing:-19.008000pt;}
.ws93{word-spacing:-19.003200pt;}
.ws8a{word-spacing:-18.557333pt;}
.wsa5{word-spacing:-18.362133pt;}
.ws6e{word-spacing:-17.905600pt;}
.wsa1{word-spacing:-17.720000pt;}
.ws35{word-spacing:-17.718400pt;}
.ws9d{word-spacing:-17.532800pt;}
.ws1a{word-spacing:-17.274667pt;}
.ws46{word-spacing:-17.272000pt;}
.ws1b{word-spacing:-17.093333pt;}
.ws39{word-spacing:-17.080000pt;}
.ws3f{word-spacing:-16.634667pt;}
.ws71{word-spacing:-16.436800pt;}
.ws6d{word-spacing:-16.240000pt;}
.ws45{word-spacing:-15.614933pt;}
.ws78{word-spacing:-15.158400pt;}
.ws98{word-spacing:-14.712000pt;}
.ws67{word-spacing:-13.437333pt;}
.ws5d{word-spacing:-13.238400pt;}
.wsa7{word-spacing:-12.792000pt;}
.ws16{word-spacing:-11.525333pt;}
.wsa{word-spacing:-10.880000pt;}
.wsb5{word-spacing:-10.872000pt;}
.ws9e{word-spacing:-10.237333pt;}
.ws7d{word-spacing:-10.232000pt;}
.ws42{word-spacing:-10.048000pt;}
.ws18{word-spacing:-9.978933pt;}
.ws90{word-spacing:-9.848000pt;}
.ws6f{word-spacing:-9.203200pt;}
.ws2e{word-spacing:-8.763733pt;}
.ws55{word-spacing:-8.312000pt;}
.ws70{word-spacing:-7.668800pt;}
.ws23{word-spacing:-6.390400pt;}
.ws4e{word-spacing:-6.200000pt;}
.ws24{word-spacing:-6.198400pt;}
.ws9c{word-spacing:-4.730667pt;}
.wsd{word-spacing:-3.638400pt;}
.ws5f{word-spacing:-3.192000pt;}
.ws60{word-spacing:-3.003733pt;}
.wsb3{word-spacing:-2.993600pt;}
.ws88{word-spacing:-2.991200pt;}
.ws48{word-spacing:-2.166400pt;}
.wsac{word-spacing:-1.076800pt;}
.ws99{word-spacing:-0.453333pt;}
.ws52{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.401600pt;}
.ws9f{word-spacing:0.866667pt;}
.ws54{word-spacing:1.281600pt;}
.ws81{word-spacing:2.763200pt;}
.ws47{word-spacing:5.321600pt;}
.ws4b{word-spacing:6.885067pt;}
.wsb6{word-spacing:7.680000pt;}
.ws63{word-spacing:8.328000pt;}
.ws76{word-spacing:8.523200pt;}
.wsbc{word-spacing:8.965600pt;}
.ws50{word-spacing:9.172800pt;}
.ws17{word-spacing:10.874667pt;}
.ws66{word-spacing:15.757600pt;}
.ws13{word-spacing:17.032800pt;}
.wsa4{word-spacing:17.033067pt;}
.ws59{word-spacing:17.676800pt;}
.ws12{word-spacing:17.920000pt;}
.wsb0{word-spacing:30.921600pt;}
.ws15{word-spacing:35.727200pt;}
.ws1{word-spacing:922.208800pt;}
._4{margin-left:-1.236267pt;}
._0{width:0.956800pt;}
._26{width:15.360000pt;}
._1{width:16.860800pt;}
._f{width:17.912000pt;}
._11{width:19.128000pt;}
._5{width:20.724267pt;}
._10{width:21.950933pt;}
._d{width:23.296000pt;}
._16{width:24.422400pt;}
._14{width:25.728000pt;}
._15{width:27.168000pt;}
._2{width:28.541333pt;}
._17{width:29.629867pt;}
._12{width:30.522667pt;}
._22{width:31.416000pt;}
._24{width:32.381333pt;}
._b{width:33.344000pt;}
._c{width:34.510933pt;}
._18{width:35.603200pt;}
._1e{width:37.725867pt;}
._3{width:39.744000pt;}
._a{width:40.654667pt;}
._13{width:42.291200pt;}
._e{width:44.588800pt;}
._1b{width:45.863467pt;}
._6{width:47.156267pt;}
._1a{width:48.944000pt;}
._25{width:50.176000pt;}
._28{width:51.246400pt;}
._1d{width:52.478400pt;}
._23{width:53.568000pt;}
._19{width:56.614400pt;}
._1f{width:59.187200pt;}
._1c{width:60.581867pt;}
._9{width:61.505067pt;}
._20{width:66.418400pt;}
._7{width:68.401600pt;}
._27{width:81.904000pt;}
._8{width:86.808800pt;}
._21{width:100.288000pt;}
.fs2{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y7a{bottom:109.346667pt;}
.yca{bottom:119.908000pt;}
.y51{bottom:122.146667pt;}
.ya4{bottom:125.346667pt;}
.y79{bottom:130.308000pt;}
.yc9{bottom:138.308000pt;}
.y50{bottom:140.546667pt;}
.ya3{bottom:143.746667pt;}
.y28{bottom:144.388000pt;}
.y78{bottom:148.708000pt;}
.y4f{bottom:158.946667pt;}
.yc8{bottom:159.266667pt;}
.y27{bottom:162.788000pt;}
.y77{bottom:167.108000pt;}
.yc7{bottom:177.666667pt;}
.ya2{bottom:180.866667pt;}
.y26{bottom:181.188000pt;}
.y76{bottom:185.346667pt;}
.y4e{bottom:196.066667pt;}
.yc6{bottom:198.466667pt;}
.ya1{bottom:199.266667pt;}
.y25{bottom:199.588000pt;}
.y75{bottom:203.908000pt;}
.yc5{bottom:216.866667pt;}
.ya0{bottom:217.666667pt;}
.y24{bottom:217.988000pt;}
.y74{bottom:224.866667pt;}
.y4d{bottom:235.588000pt;}
.y73{bottom:243.266667pt;}
.y4c{bottom:253.988000pt;}
.y9f{bottom:254.788000pt;}
.y23{bottom:254.946667pt;}
.yc4{bottom:256.388000pt;}
.y72{bottom:261.666667pt;}
.y4b{bottom:272.226667pt;}
.y9e{bottom:273.188000pt;}
.y22{bottom:273.346667pt;}
.y71{bottom:280.066667pt;}
.y9d{bottom:291.588000pt;}
.y21{bottom:291.746667pt;}
.yc3{bottom:293.508000pt;}
.y70{bottom:298.308000pt;}
.y4a{bottom:309.346667pt;}
.y9c{bottom:309.988000pt;}
.yc2{bottom:311.908000pt;}
.y6f{bottom:316.706667pt;}
.y9b{bottom:328.388000pt;}
.y20{bottom:328.866667pt;}
.yc1{bottom:330.308000pt;}
.y6e{bottom:335.266667pt;}
.y9a{bottom:346.788000pt;}
.y1f{bottom:347.266667pt;}
.yc0{bottom:348.706667pt;}
.y49{bottom:348.866667pt;}
.y6d{bottom:356.066667pt;}
.y99{bottom:365.188000pt;}
.y1e{bottom:365.666667pt;}
.y48{bottom:367.266667pt;}
.y6c{bottom:374.466667pt;}
.y98{bottom:383.588000pt;}
.y1d{bottom:384.066667pt;}
.ybf{bottom:385.666667pt;}
.y6b{bottom:392.866667pt;}
.y97{bottom:401.988000pt;}
.y1c{bottom:402.466667pt;}
.ybe{bottom:404.066667pt;}
.y47{bottom:404.388000pt;}
.y6a{bottom:411.266667pt;}
.y96{bottom:420.388000pt;}
.ybd{bottom:422.466667pt;}
.y46{bottom:422.788000pt;}
.y95{bottom:438.788000pt;}
.y1b{bottom:439.588000pt;}
.ybc{bottom:440.866667pt;}
.y45{bottom:441.188000pt;}
.y69{bottom:450.788000pt;}
.y94{bottom:457.188000pt;}
.y1a{bottom:457.988000pt;}
.ybb{bottom:459.266667pt;}
.y44{bottom:459.588000pt;}
.y93{bottom:475.588000pt;}
.y19{bottom:476.388000pt;}
.yba{bottom:477.666667pt;}
.y43{bottom:477.988000pt;}
.y68{bottom:487.908000pt;}
.y92{bottom:493.988000pt;}
.yb9{bottom:496.066667pt;}
.y42{bottom:496.388000pt;}
.y67{bottom:506.308000pt;}
.y91{bottom:512.388000pt;}
.y18{bottom:513.346667pt;}
.yb8{bottom:514.466667pt;}
.y66{bottom:524.706667pt;}
.y17{bottom:531.746667pt;}
.yb7{bottom:532.866667pt;}
.y41{bottom:533.506667pt;}
.y65{bottom:543.108000pt;}
.y90{bottom:549.346667pt;}
.y16{bottom:550.146667pt;}
.y40{bottom:551.908000pt;}
.y64{bottom:561.506667pt;}
.y8f{bottom:567.746667pt;}
.y15{bottom:568.546667pt;}
.yb6{bottom:569.988000pt;}
.y3f{bottom:570.308000pt;}
.y63{bottom:579.908000pt;}
.y8e{bottom:586.146667pt;}
.y14{bottom:586.946667pt;}
.yb5{bottom:588.388000pt;}
.y3e{bottom:588.706667pt;}
.y8d{bottom:604.546667pt;}
.y13{bottom:605.346667pt;}
.yb4{bottom:606.788000pt;}
.y3d{bottom:607.108000pt;}
.y62{bottom:616.866667pt;}
.y8c{bottom:622.946667pt;}
.y12{bottom:623.746667pt;}
.yb3{bottom:625.188000pt;}
.y3c{bottom:625.506667pt;}
.y61{bottom:635.266667pt;}
.y8b{bottom:641.346667pt;}
.yb2{bottom:643.588000pt;}
.y3b{bottom:643.908000pt;}
.y60{bottom:653.666667pt;}
.y8a{bottom:659.746667pt;}
.y11{bottom:660.866667pt;}
.yb1{bottom:661.988000pt;}
.y5f{bottom:672.066667pt;}
.y89{bottom:678.146667pt;}
.y10{bottom:679.266667pt;}
.y3a{bottom:680.866667pt;}
.y88{bottom:696.546667pt;}
.yb0{bottom:699.108000pt;}
.y39{bottom:699.266667pt;}
.y5e{bottom:709.188000pt;}
.y87{bottom:714.946667pt;}
.yf{bottom:716.388000pt;}
.yaf{bottom:717.506667pt;}
.y38{bottom:717.666667pt;}
.y5d{bottom:727.588000pt;}
.y86{bottom:733.346667pt;}
.ye{bottom:734.788000pt;}
.yae{bottom:735.906667pt;}
.y37{bottom:736.066667pt;}
.y5c{bottom:745.988000pt;}
.yd{bottom:753.188000pt;}
.yad{bottom:754.308000pt;}
.y36{bottom:754.466667pt;}
.y85{bottom:770.466667pt;}
.yc{bottom:771.588000pt;}
.y35{bottom:772.866667pt;}
.y5b{bottom:783.106667pt;}
.y84{bottom:788.866667pt;}
.yb{bottom:789.988000pt;}
.y34{bottom:791.266667pt;}
.y83{bottom:807.266667pt;}
.ya{bottom:808.388000pt;}
.y33{bottom:809.666667pt;}
.y5a{bottom:822.626667pt;}
.y82{bottom:825.666667pt;}
.y32{bottom:828.066667pt;}
.y59{bottom:841.026667pt;}
.y81{bottom:844.066667pt;}
.y9{bottom:845.346667pt;}
.yac{bottom:846.466667pt;}
.y58{bottom:859.426667pt;}
.y8{bottom:863.746667pt;}
.yab{bottom:864.866667pt;}
.y31{bottom:865.188000pt;}
.y57{bottom:877.666667pt;}
.y80{bottom:881.026667pt;}
.yaa{bottom:883.266667pt;}
.y30{bottom:883.588000pt;}
.y7f{bottom:899.426667pt;}
.ya9{bottom:901.666667pt;}
.y2f{bottom:901.988000pt;}
.y56{bottom:914.946667pt;}
.y7e{bottom:917.826667pt;}
.ya8{bottom:920.066667pt;}
.y2e{bottom:920.388000pt;}
.y7d{bottom:936.226667pt;}
.ya7{bottom:938.466667pt;}
.y2d{bottom:938.788000pt;}
.y55{bottom:954.466667pt;}
.y7c{bottom:954.788000pt;}
.y7{bottom:956.706667pt;}
.ya6{bottom:956.866667pt;}
.y2c{bottom:957.188000pt;}
.y54{bottom:972.866667pt;}
.ya5{bottom:975.266667pt;}
.y2b{bottom:975.588000pt;}
.y53{bottom:991.106667pt;}
.y6{bottom:993.666667pt;}
.y2a{bottom:993.988000pt;}
.ycb{bottom:1009.826667pt;}
.y29{bottom:1012.388000pt;}
.y52{bottom:1028.226667pt;}
.y7b{bottom:1030.626667pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h8{height:45.108750pt;}
.h7{height:45.114083pt;}
.h6{height:52.065495pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:115.200000pt;}
.x8{left:119.040000pt;}
.x2{left:142.720000pt;}
.x9{left:234.560000pt;}
.x6{left:249.278667pt;}
.x7{left:271.520000pt;}
.x5{left:275.678667pt;}
}




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