
    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_650e2b20523e8bd57c9b0c96.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_de28d6b08c4d3d3bfb5842d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_0a0c031d9fa55970518911fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3c4f0b0c4cb0a810545af724.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4bb474dcbf936fb914c9c8b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_dff929e6659b0eba434a7aee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_20ad386aa675ccab2a009293.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_704d14ddb3d4bf6765cbe8ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738770;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_4a8b3b6ffc48be1dc6ea2d3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.v2{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls24{letter-spacing:-1.926000px;}
.ls1f{letter-spacing:-1.512000px;}
.lse{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-0.972000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.555600px;}
.ls23{letter-spacing:-0.507000px;}
.ls5{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.lsf{letter-spacing:-0.423600px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.020160px;}
.ls22{letter-spacing:0.213120px;}
.ls15{letter-spacing:0.423360px;}
.ls11{letter-spacing:0.447600px;}
.ls18{letter-spacing:0.466560px;}
.ls6{letter-spacing:0.466800px;}
.ls1a{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls10{letter-spacing:0.507000px;}
.ls17{letter-spacing:0.714000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.731520px;}
.ls21{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.900000px;}
.ls19{letter-spacing:2.160000px;}
.ls9{letter-spacing:3.600000px;}
.lsd{letter-spacing:3.611520px;}
.lsb{letter-spacing:5.040000px;}
.ls2e{letter-spacing:6.480000px;}
.ls7{letter-spacing:7.920000px;}
.ls26{letter-spacing:9.360000px;}
.ls13{letter-spacing:10.800000px;}
.ls8{letter-spacing:13.680000px;}
.ls16{letter-spacing:25.211520px;}
.ls20{letter-spacing:42.238560px;}
.ls2d{letter-spacing:46.546560px;}
.ls1e{letter-spacing:46.558560px;}
.ls1d{letter-spacing:63.826560px;}
.ls29{letter-spacing:71.026560px;}
.ls2b{letter-spacing:71.038560px;}
.ls2c{letter-spacing:114.226560px;}
.ls14{letter-spacing:114.346560px;}
.ls2a{letter-spacing:137.266560px;}
.ls28{letter-spacing:160.306560px;}
.lsc{letter-spacing:160.318560px;}
.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;}
}
.ws8{word-spacing:-15.627000px;}
.wsb{word-spacing:-15.606600px;}
.ws6{word-spacing:-15.586800px;}
.ws9{word-spacing:-15.543360px;}
.ws1{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.633400px;}
.wsf{word-spacing:-14.613000px;}
.wsa{word-spacing:-14.382480px;}
.wsd{word-spacing:-14.184000px;}
.wsc{word-spacing:-14.148000px;}
.ws5{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.668480px;}
.ws7{word-spacing:-13.244880px;}
.ws10{word-spacing:-13.194000px;}
.ws0{word-spacing:-13.182000px;}
.ws11{word-spacing:-13.112880px;}
.wse{word-spacing:-12.156480px;}
.ws2{word-spacing:0.000000px;}
._1e{margin-left:-5.113440px;}
._b{margin-left:-3.983040px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._9{width:3.370560px;}
._a{width:4.475520px;}
._c{width:5.814720px;}
._d{width:6.912000px;}
._8{width:8.346240px;}
._7{width:10.108800px;}
._f{width:11.620800px;}
._13{width:12.663840px;}
._e{width:13.668480px;}
._1c{width:16.241280px;}
._14{width:17.396160px;}
._12{width:18.446400px;}
._11{width:19.535040px;}
._10{width:21.055680px;}
._1a{width:25.038720px;}
._1b{width:26.732160px;}
._15{width:28.165920px;}
._17{width:29.307840px;}
._16{width:30.378720px;}
._1d{width:31.438560px;}
._5{width:393.960000px;}
._18{width:692.220000px;}
._4{width:833.340000px;}
._19{width:849.336000px;}
._3{width:1591.176000px;}
.fc8{color:rgb(43,40,40);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc9{color:rgb(51,51,51);}
.fc7{color:rgb(33,33,33);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y24{bottom:5.760000px;}
.y23{bottom:23.040000px;}
.y22{bottom:40.365000px;}
.ye{bottom:43.560000px;}
.y21{bottom:57.645000px;}
.yc{bottom:68.400000px;}
.y20{bottom:77.445000px;}
.ya{bottom:94.716000px;}
.y1f{bottom:97.245000px;}
.y1e{bottom:117.045000px;}
.y32{bottom:131.076000px;}
.y31{bottom:136.476000px;}
.y1d{bottom:136.845000px;}
.y30{bottom:148.716000px;}
.y6b{bottom:149.436000px;}
.y6a{bottom:154.830000px;}
.y1c{bottom:156.675000px;}
.y127{bottom:160.230000px;}
.ye2{bottom:167.070000px;}
.y69{bottom:167.790000px;}
.y9a{bottom:173.190000px;}
.y1b{bottom:176.475000px;}
.y2f{bottom:178.950000px;}
.y126{bottom:180.030000px;}
.y68{bottom:186.150000px;}
.y99{bottom:191.550000px;}
.y1a{bottom:196.275000px;}
.y2e{bottom:198.795000px;}
.y125{bottom:199.875000px;}
.ydb{bottom:203.835000px;}
.y67{bottom:204.555000px;}
.ye0{bottom:204.915000px;}
.ycb{bottom:209.955000px;}
.ye1{bottom:210.315000px;}
.y19{bottom:216.075000px;}
.y2d{bottom:218.595000px;}
.y124{bottom:219.675000px;}
.yca{bottom:222.195000px;}
.y66{bottom:222.915000px;}
.yda{bottom:224.715000px;}
.yb8{bottom:228.315000px;}
.y18{bottom:235.875000px;}
.y123{bottom:239.475000px;}
.y65{bottom:241.275000px;}
.yd9{bottom:244.515000px;}
.y98{bottom:246.675000px;}
.y17{bottom:255.675000px;}
.y2c{bottom:256.395000px;}
.y64{bottom:259.275000px;}
.ydf{bottom:264.315000px;}
.yb7{bottom:264.675000px;}
.y2b{bottom:276.195000px;}
.yb6{bottom:276.915000px;}
.y63{bottom:277.635000px;}
.y122{bottom:279.075000px;}
.yd8{bottom:282.315000px;}
.y62{bottom:283.035000px;}
.y16{bottom:293.865000px;}
.y61{bottom:295.995000px;}
.y2a{bottom:296.355000px;}
.yc9{bottom:300.315000px;}
.y60{bottom:301.395000px;}
.yde{bottom:302.115000px;}
.y121{bottom:313.995000px;}
.y5f{bottom:314.355000px;}
.y29{bottom:316.155000px;}
.y5e{bottom:319.755000px;}
.yc8{bottom:320.115000px;}
.yf3{bottom:321.915000px;}
.y5d{bottom:332.025000px;}
.y89{bottom:332.745000px;}
.y120{bottom:333.825000px;}
.y28{bottom:335.985000px;}
.yb5{bottom:336.345000px;}
.y97{bottom:338.145000px;}
.yc7{bottom:339.945000px;}
.yf2{bottom:341.745000px;}
.yd7{bottom:345.345000px;}
.y88{bottom:351.105000px;}
.y11f{bottom:353.625000px;}
.y27{bottom:355.785000px;}
.yb4{bottom:356.145000px;}
.yc6{bottom:359.745000px;}
.yf1{bottom:361.905000px;}
.y87{bottom:369.465000px;}
.y11e{bottom:373.425000px;}
.yfe{bottom:374.145000px;}
.yb3{bottom:375.945000px;}
.y5c{bottom:377.745000px;}
.yc5{bottom:379.905000px;}
.yf0{bottom:381.705000px;}
.y26{bottom:387.465000px;}
.y86{bottom:387.825000px;}
.y11d{bottom:393.225000px;}
.yfd{bottom:393.945000px;}
.yb2{bottom:395.745000px;}
.y5b{bottom:397.905000px;}
.yc4{bottom:399.705000px;}
.yef{bottom:401.505000px;}
.y85{bottom:405.825000px;}
.y25{bottom:407.265000px;}
.y11c{bottom:413.385000px;}
.yfc{bottom:413.745000px;}
.yb1{bottom:415.905000px;}
.y5a{bottom:417.705000px;}
.yc3{bottom:419.505000px;}
.y15{bottom:423.825000px;}
.y84{bottom:424.185000px;}
.y83{bottom:429.585000px;}
.y11b{bottom:433.185000px;}
.yfb{bottom:433.905000px;}
.yb0{bottom:435.705000px;}
.y59{bottom:437.505000px;}
.yc2{bottom:439.305000px;}
.y82{bottom:441.825000px;}
.y96{bottom:442.545000px;}
.yd6{bottom:442.905000px;}
.y95{bottom:447.945000px;}
.y11a{bottom:453.030000px;}
.yfa{bottom:453.750000px;}
.yaf{bottom:455.550000px;}
.y58{bottom:457.350000px;}
.yee{bottom:459.150000px;}
.y94{bottom:460.950000px;}
.y119{bottom:472.830000px;}
.yf9{bottom:473.550000px;}
.yae{bottom:475.350000px;}
.y57{bottom:477.150000px;}
.yed{bottom:478.950000px;}
.y93{bottom:479.310000px;}
.y92{bottom:484.710000px;}
.y13e{bottom:487.950000px;}
.y118{bottom:492.630000px;}
.yf8{bottom:493.350000px;}
.y56{bottom:496.950000px;}
.yec{bottom:498.750000px;}
.y81{bottom:499.830000px;}
.y13d{bottom:507.750000px;}
.y117{bottom:512.430000px;}
.yac{bottom:513.150000px;}
.ydd{bottom:514.950000px;}
.yc1{bottom:516.750000px;}
.yad{bottom:518.550000px;}
.y80{bottom:519.630000px;}
.y13c{bottom:527.550000px;}
.y116{bottom:532.230000px;}
.yab{bottom:532.950000px;}
.y54{bottom:534.750000px;}
.yc0{bottom:536.550000px;}
.y7f{bottom:539.790000px;}
.y55{bottom:540.150000px;}
.yd5{bottom:541.950000px;}
.y13b{bottom:547.350000px;}
.y115{bottom:552.030000px;}
.yaa{bottom:552.750000px;}
.y53{bottom:554.550000px;}
.yd4{bottom:556.350000px;}
.y7e{bottom:559.590000px;}
.y13a{bottom:567.150000px;}
.y114{bottom:571.830000px;}
.ya9{bottom:572.550000px;}
.y52{bottom:574.350000px;}
.yd3{bottom:576.180000px;}
.y7d{bottom:579.420000px;}
.y139{bottom:586.980000px;}
.y113{bottom:591.660000px;}
.ya8{bottom:592.380000px;}
.y51{bottom:594.180000px;}
.yea{bottom:596.340000px;}
.y91{bottom:599.580000px;}
.yeb{bottom:601.740000px;}
.y138{bottom:606.780000px;}
.y112{bottom:611.820000px;}
.yf7{bottom:612.180000px;}
.y50{bottom:614.340000px;}
.ye8{bottom:616.140000px;}
.y7b{bottom:617.220000px;}
.yd2{bottom:619.740000px;}
.ye9{bottom:621.540000px;}
.y7c{bottom:622.620000px;}
.y137{bottom:626.580000px;}
.ya6{bottom:630.180000px;}
.y111{bottom:631.620000px;}
.yf6{bottom:632.340000px;}
.y4f{bottom:634.140000px;}
.ya7{bottom:635.580000px;}
.ye7{bottom:635.940000px;}
.y7a{bottom:637.020000px;}
.y136{bottom:646.380000px;}
.ya5{bottom:650.340000px;}
.y110{bottom:651.420000px;}
.yf5{bottom:652.140000px;}
.y90{bottom:653.940000px;}
.y79{bottom:656.820000px;}
.y135{bottom:666.180000px;}
.ya4{bottom:670.140000px;}
.y10f{bottom:671.220000px;}
.y4d{bottom:671.940000px;}
.ybf{bottom:673.740000px;}
.y78{bottom:676.620000px;}
.y4e{bottom:677.340000px;}
.y134{bottom:686.340000px;}
.ya3{bottom:689.940000px;}
.y10e{bottom:691.020000px;}
.y4c{bottom:691.740000px;}
.ybe{bottom:693.540000px;}
.y77{bottom:696.420000px;}
.ydc{bottom:697.140000px;}
.y133{bottom:706.170000px;}
.ya2{bottom:709.770000px;}
.y10d{bottom:710.850000px;}
.y4b{bottom:711.570000px;}
.ybd{bottom:713.370000px;}
.y76{bottom:716.250000px;}
.y132{bottom:725.970000px;}
.ya1{bottom:729.570000px;}
.y10c{bottom:730.650000px;}
.y4a{bottom:731.370000px;}
.ye5{bottom:733.170000px;}
.y74{bottom:736.050000px;}
.ye6{bottom:738.570000px;}
.y75{bottom:741.450000px;}
.y131{bottom:745.770000px;}
.ya0{bottom:749.370000px;}
.y10b{bottom:750.450000px;}
.y49{bottom:751.170000px;}
.ye4{bottom:752.970000px;}
.y73{bottom:756.210000px;}
.y14{bottom:760.530000px;}
.y130{bottom:765.570000px;}
.y9f{bottom:769.170000px;}
.y10a{bottom:770.250000px;}
.y8f{bottom:770.970000px;}
.y71{bottom:776.010000px;}
.y72{bottom:781.410000px;}
.y12f{bottom:785.370000px;}
.y48{bottom:788.970000px;}
.y109{bottom:790.050000px;}
.y8d{bottom:790.770000px;}
.y8e{bottom:796.170000px;}
.y13{bottom:801.570000px;}
.y12e{bottom:805.170000px;}
.y47{bottom:808.770000px;}
.y108{bottom:810.210000px;}
.y70{bottom:810.570000px;}
.y12d{bottom:824.970000px;}
.y46{bottom:828.615000px;}
.y107{bottom:830.055000px;}
.yd1{bottom:830.415000px;}
.y11{bottom:842.295000px;}
.y12c{bottom:844.815000px;}
.y12{bottom:848.415000px;}
.y106{bottom:849.855000px;}
.yd0{bottom:850.575000px;}
.y45{bottom:853.815000px;}
.y12b{bottom:864.615000px;}
.y44{bottom:868.575000px;}
.y105{bottom:869.655000px;}
.ycf{bottom:870.375000px;}
.y10{bottom:883.335000px;}
.y12a{bottom:884.415000px;}
.y43{bottom:888.375000px;}
.y104{bottom:889.455000px;}
.y8c{bottom:893.775000px;}
.y129{bottom:904.575000px;}
.y9d{bottom:906.375000px;}
.y6f{bottom:908.175000px;}
.y103{bottom:909.255000px;}
.y9e{bottom:911.775000px;}
.y8b{bottom:913.575000px;}
.yf{bottom:924.015000px;}
.y128{bottom:924.375000px;}
.y42{bottom:926.175000px;}
.y6e{bottom:927.975000px;}
.y9{bottom:941.295000px;}
.y102{bottom:944.175000px;}
.y41{bottom:945.975000px;}
.y6d{bottom:947.775000px;}
.y8{bottom:958.605000px;}
.y101{bottom:964.005000px;}
.y40{bottom:965.805000px;}
.yce{bottom:967.605000px;}
.yf4{bottom:971.205000px;}
.y7{bottom:972.645000px;}
.y100{bottom:983.805000px;}
.y3f{bottom:985.605000px;}
.ycd{bottom:987.405000px;}
.yff{bottom:1003.605000px;}
.y3e{bottom:1005.405000px;}
.ybc{bottom:1023.405000px;}
.y3d{bottom:1025.205000px;}
.y6{bottom:1027.365000px;}
.ye3{bottom:1030.605000px;}
.ybb{bottom:1043.205000px;}
.y3c{bottom:1045.005000px;}
.y5{bottom:1052.205000px;}
.yb9{bottom:1063.005000px;}
.y3b{bottom:1064.805000px;}
.yba{bottom:1068.405000px;}
.y4{bottom:1072.725000px;}
.y9b{bottom:1082.850000px;}
.y6c{bottom:1085.010000px;}
.y9c{bottom:1088.250000px;}
.y3{bottom:1094.010000px;}
.y39{bottom:1103.010000px;}
.ycc{bottom:1104.810000px;}
.y3a{bottom:1108.410000px;}
.y2{bottom:1114.530000px;}
.y38{bottom:1122.810000px;}
.y8a{bottom:1128.210000px;}
.y1{bottom:1131.450000px;}
.y37{bottom:1142.610000px;}
.y36{bottom:1166.370000px;}
.y35{bottom:1180.410000px;}
.y34{bottom:1201.290000px;}
.y33{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.hf{height:28.115859px;}
.ha{height:28.153828px;}
.h12{height:30.128203px;}
.h11{height:32.045625px;}
.hd{height:38.671172px;}
.h7{height:39.570469px;}
.h4{height:43.735781px;}
.h2{height:43.794844px;}
.h10{height:44.031094px;}
.h5{height:45.101250px;}
.hc{height:49.848750px;}
.h3{height:52.136719px;}
.h9{height:52.633828px;}
.he{height:60.155156px;}
.hb{height:307.905000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x11{left:111.275987px;}
.x2f{left:116.315987px;}
.x1c{left:133.271987px;}
.x18{left:150.554973px;}
.x19{left:155.594987px;}
.x54{left:160.274987px;}
.x2d{left:161.354973px;}
.x25{left:168.194973px;}
.x2e{left:171.434987px;}
.x26{left:178.274987px;}
.x12{left:180.794987px;}
.x24{left:182.594973px;}
.x38{left:187.274987px;}
.x39{left:191.234987px;}
.xb{left:192.314987px;}
.x42{left:195.194987px;}
.x43{left:206.714973px;}
.x27{left:212.114973px;}
.x56{left:214.274987px;}
.x44{left:216.794987px;}
.x28{left:222.224987px;}
.x4b{left:224.744973px;}
.x40{left:225.824973px;}
.x4c{left:234.824987px;}
.x41{left:235.904987px;}
.x30{left:239.144973px;}
.x53{left:241.304987px;}
.x31{left:249.224987px;}
.x2{left:254.264987px;}
.x1f{left:270.464973px;}
.x6{left:274.064987px;}
.x20{left:275.504987px;}
.x21{left:280.184987px;}
.x55{left:295.304987px;}
.xa{left:304.350000px;}
.x10{left:322.349987px;}
.xc{left:342.509987px;}
.x5{left:355.829987px;}
.xf{left:359.069987px;}
.x29{left:363.029973px;}
.x3e{left:366.629987px;}
.x2a{left:373.109987px;}
.x14{left:377.789973px;}
.x4{left:379.949987px;}
.x15{left:382.829987px;}
.x3{left:398.339987px;}
.x32{left:406.259973px;}
.x49{left:410.219973px;}
.x33{left:416.339987px;}
.x4a{left:420.299987px;}
.x8{left:446.579987px;}
.x13{left:447.660000px;}
.x51{left:456.299973px;}
.x52{left:466.379987px;}
.x36{left:475.019973px;}
.x4d{left:483.299973px;}
.x37{left:485.129987px;}
.x4e{left:493.409987px;}
.x1a{left:511.409973px;}
.x1b{left:516.449987px;}
.xd{left:541.649973px;}
.xe{left:546.689987px;}
.x4f{left:570.089973px;}
.x50{left:580.214987px;}
.x45{left:594.974973px;}
.x16{left:601.814973px;}
.x46{left:605.054987px;}
.x17{left:606.854987px;}
.x22{left:642.134973px;}
.x3c{left:645.374973px;}
.x23{left:647.174987px;}
.x3d{left:655.454987px;}
.x47{left:672.044973px;}
.x48{left:682.124987px;}
.x3a{left:690.404973px;}
.x3b{left:700.484987px;}
.x34{left:702.644973px;}
.x35{left:712.724987px;}
.x2b{left:752.009973px;}
.x2c{left:762.089987px;}
.x3f{left:773.249973px;}
.x1d{left:778.289973px;}
.x1e{left:783.329987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls24{letter-spacing:-1.712000pt;}
.ls1f{letter-spacing:-1.344000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-0.864000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.493867pt;}
.ls23{letter-spacing:-0.450667pt;}
.ls5{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.lsf{letter-spacing:-0.376533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.017920pt;}
.ls22{letter-spacing:0.189440pt;}
.ls15{letter-spacing:0.376320pt;}
.ls11{letter-spacing:0.397867pt;}
.ls18{letter-spacing:0.414720pt;}
.ls6{letter-spacing:0.414933pt;}
.ls1a{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls10{letter-spacing:0.450667pt;}
.ls17{letter-spacing:0.634667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.650240pt;}
.ls21{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls19{letter-spacing:1.920000pt;}
.ls9{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.210240pt;}
.lsb{letter-spacing:4.480000pt;}
.ls2e{letter-spacing:5.760000pt;}
.ls7{letter-spacing:7.040000pt;}
.ls26{letter-spacing:8.320000pt;}
.ls13{letter-spacing:9.600000pt;}
.ls8{letter-spacing:12.160000pt;}
.ls16{letter-spacing:22.410240pt;}
.ls20{letter-spacing:37.545387pt;}
.ls2d{letter-spacing:41.374720pt;}
.ls1e{letter-spacing:41.385387pt;}
.ls1d{letter-spacing:56.734720pt;}
.ls29{letter-spacing:63.134720pt;}
.ls2b{letter-spacing:63.145387pt;}
.ls2c{letter-spacing:101.534720pt;}
.ls14{letter-spacing:101.641387pt;}
.ls2a{letter-spacing:122.014720pt;}
.ls28{letter-spacing:142.494720pt;}
.lsc{letter-spacing:142.505387pt;}
.ws8{word-spacing:-13.890667pt;}
.wsb{word-spacing:-13.872533pt;}
.ws6{word-spacing:-13.854933pt;}
.ws9{word-spacing:-13.816320pt;}
.ws1{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.007467pt;}
.wsf{word-spacing:-12.989333pt;}
.wsa{word-spacing:-12.784427pt;}
.wsd{word-spacing:-12.608000pt;}
.wsc{word-spacing:-12.576000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws4{word-spacing:-12.149760pt;}
.ws7{word-spacing:-11.773227pt;}
.ws10{word-spacing:-11.728000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws11{word-spacing:-11.655893pt;}
.wse{word-spacing:-10.805760pt;}
.ws2{word-spacing:0.000000pt;}
._1e{margin-left:-4.545280pt;}
._b{margin-left:-3.540480pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._9{width:2.996053pt;}
._a{width:3.978240pt;}
._c{width:5.168640pt;}
._d{width:6.144000pt;}
._8{width:7.418880pt;}
._7{width:8.985600pt;}
._f{width:10.329600pt;}
._13{width:11.256747pt;}
._e{width:12.149760pt;}
._1c{width:14.436693pt;}
._14{width:15.463253pt;}
._12{width:16.396800pt;}
._11{width:17.364480pt;}
._10{width:18.716160pt;}
._1a{width:22.256640pt;}
._1b{width:23.761920pt;}
._15{width:25.036373pt;}
._17{width:26.051413pt;}
._16{width:27.003307pt;}
._1d{width:27.945387pt;}
._5{width:350.186667pt;}
._18{width:615.306667pt;}
._4{width:740.746667pt;}
._19{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y24{bottom:5.120000pt;}
.y23{bottom:20.480000pt;}
.y22{bottom:35.880000pt;}
.ye{bottom:38.720000pt;}
.y21{bottom:51.240000pt;}
.yc{bottom:60.800000pt;}
.y20{bottom:68.840000pt;}
.ya{bottom:84.192000pt;}
.y1f{bottom:86.440000pt;}
.y1e{bottom:104.040000pt;}
.y32{bottom:116.512000pt;}
.y31{bottom:121.312000pt;}
.y1d{bottom:121.640000pt;}
.y30{bottom:132.192000pt;}
.y6b{bottom:132.832000pt;}
.y6a{bottom:137.626667pt;}
.y1c{bottom:139.266667pt;}
.y127{bottom:142.426667pt;}
.ye2{bottom:148.506667pt;}
.y69{bottom:149.146667pt;}
.y9a{bottom:153.946667pt;}
.y1b{bottom:156.866667pt;}
.y2f{bottom:159.066667pt;}
.y126{bottom:160.026667pt;}
.y68{bottom:165.466667pt;}
.y99{bottom:170.266667pt;}
.y1a{bottom:174.466667pt;}
.y2e{bottom:176.706667pt;}
.y125{bottom:177.666667pt;}
.ydb{bottom:181.186667pt;}
.y67{bottom:181.826667pt;}
.ye0{bottom:182.146667pt;}
.ycb{bottom:186.626667pt;}
.ye1{bottom:186.946667pt;}
.y19{bottom:192.066667pt;}
.y2d{bottom:194.306667pt;}
.y124{bottom:195.266667pt;}
.yca{bottom:197.506667pt;}
.y66{bottom:198.146667pt;}
.yda{bottom:199.746667pt;}
.yb8{bottom:202.946667pt;}
.y18{bottom:209.666667pt;}
.y123{bottom:212.866667pt;}
.y65{bottom:214.466667pt;}
.yd9{bottom:217.346667pt;}
.y98{bottom:219.266667pt;}
.y17{bottom:227.266667pt;}
.y2c{bottom:227.906667pt;}
.y64{bottom:230.466667pt;}
.ydf{bottom:234.946667pt;}
.yb7{bottom:235.266667pt;}
.y2b{bottom:245.506667pt;}
.yb6{bottom:246.146667pt;}
.y63{bottom:246.786667pt;}
.y122{bottom:248.066667pt;}
.yd8{bottom:250.946667pt;}
.y62{bottom:251.586667pt;}
.y16{bottom:261.213333pt;}
.y61{bottom:263.106667pt;}
.y2a{bottom:263.426667pt;}
.yc9{bottom:266.946667pt;}
.y60{bottom:267.906667pt;}
.yde{bottom:268.546667pt;}
.y121{bottom:279.106667pt;}
.y5f{bottom:279.426667pt;}
.y29{bottom:281.026667pt;}
.y5e{bottom:284.226667pt;}
.yc8{bottom:284.546667pt;}
.yf3{bottom:286.146667pt;}
.y5d{bottom:295.133333pt;}
.y89{bottom:295.773333pt;}
.y120{bottom:296.733333pt;}
.y28{bottom:298.653333pt;}
.yb5{bottom:298.973333pt;}
.y97{bottom:300.573333pt;}
.yc7{bottom:302.173333pt;}
.yf2{bottom:303.773333pt;}
.yd7{bottom:306.973333pt;}
.y88{bottom:312.093333pt;}
.y11f{bottom:314.333333pt;}
.y27{bottom:316.253333pt;}
.yb4{bottom:316.573333pt;}
.yc6{bottom:319.773333pt;}
.yf1{bottom:321.693333pt;}
.y87{bottom:328.413333pt;}
.y11e{bottom:331.933333pt;}
.yfe{bottom:332.573333pt;}
.yb3{bottom:334.173333pt;}
.y5c{bottom:335.773333pt;}
.yc5{bottom:337.693333pt;}
.yf0{bottom:339.293333pt;}
.y26{bottom:344.413333pt;}
.y86{bottom:344.733333pt;}
.y11d{bottom:349.533333pt;}
.yfd{bottom:350.173333pt;}
.yb2{bottom:351.773333pt;}
.y5b{bottom:353.693333pt;}
.yc4{bottom:355.293333pt;}
.yef{bottom:356.893333pt;}
.y85{bottom:360.733333pt;}
.y25{bottom:362.013333pt;}
.y11c{bottom:367.453333pt;}
.yfc{bottom:367.773333pt;}
.yb1{bottom:369.693333pt;}
.y5a{bottom:371.293333pt;}
.yc3{bottom:372.893333pt;}
.y15{bottom:376.733333pt;}
.y84{bottom:377.053333pt;}
.y83{bottom:381.853333pt;}
.y11b{bottom:385.053333pt;}
.yfb{bottom:385.693333pt;}
.yb0{bottom:387.293333pt;}
.y59{bottom:388.893333pt;}
.yc2{bottom:390.493333pt;}
.y82{bottom:392.733333pt;}
.y96{bottom:393.373333pt;}
.yd6{bottom:393.693333pt;}
.y95{bottom:398.173333pt;}
.y11a{bottom:402.693333pt;}
.yfa{bottom:403.333333pt;}
.yaf{bottom:404.933333pt;}
.y58{bottom:406.533333pt;}
.yee{bottom:408.133333pt;}
.y94{bottom:409.733333pt;}
.y119{bottom:420.293333pt;}
.yf9{bottom:420.933333pt;}
.yae{bottom:422.533333pt;}
.y57{bottom:424.133333pt;}
.yed{bottom:425.733333pt;}
.y93{bottom:426.053333pt;}
.y92{bottom:430.853333pt;}
.y13e{bottom:433.733333pt;}
.y118{bottom:437.893333pt;}
.yf8{bottom:438.533333pt;}
.y56{bottom:441.733333pt;}
.yec{bottom:443.333333pt;}
.y81{bottom:444.293333pt;}
.y13d{bottom:451.333333pt;}
.y117{bottom:455.493333pt;}
.yac{bottom:456.133333pt;}
.ydd{bottom:457.733333pt;}
.yc1{bottom:459.333333pt;}
.yad{bottom:460.933333pt;}
.y80{bottom:461.893333pt;}
.y13c{bottom:468.933333pt;}
.y116{bottom:473.093333pt;}
.yab{bottom:473.733333pt;}
.y54{bottom:475.333333pt;}
.yc0{bottom:476.933333pt;}
.y7f{bottom:479.813333pt;}
.y55{bottom:480.133333pt;}
.yd5{bottom:481.733333pt;}
.y13b{bottom:486.533333pt;}
.y115{bottom:490.693333pt;}
.yaa{bottom:491.333333pt;}
.y53{bottom:492.933333pt;}
.yd4{bottom:494.533333pt;}
.y7e{bottom:497.413333pt;}
.y13a{bottom:504.133333pt;}
.y114{bottom:508.293333pt;}
.ya9{bottom:508.933333pt;}
.y52{bottom:510.533333pt;}
.yd3{bottom:512.160000pt;}
.y7d{bottom:515.040000pt;}
.y139{bottom:521.760000pt;}
.y113{bottom:525.920000pt;}
.ya8{bottom:526.560000pt;}
.y51{bottom:528.160000pt;}
.yea{bottom:530.080000pt;}
.y91{bottom:532.960000pt;}
.yeb{bottom:534.880000pt;}
.y138{bottom:539.360000pt;}
.y112{bottom:543.840000pt;}
.yf7{bottom:544.160000pt;}
.y50{bottom:546.080000pt;}
.ye8{bottom:547.680000pt;}
.y7b{bottom:548.640000pt;}
.yd2{bottom:550.880000pt;}
.ye9{bottom:552.480000pt;}
.y7c{bottom:553.440000pt;}
.y137{bottom:556.960000pt;}
.ya6{bottom:560.160000pt;}
.y111{bottom:561.440000pt;}
.yf6{bottom:562.080000pt;}
.y4f{bottom:563.680000pt;}
.ya7{bottom:564.960000pt;}
.ye7{bottom:565.280000pt;}
.y7a{bottom:566.240000pt;}
.y136{bottom:574.560000pt;}
.ya5{bottom:578.080000pt;}
.y110{bottom:579.040000pt;}
.yf5{bottom:579.680000pt;}
.y90{bottom:581.280000pt;}
.y79{bottom:583.840000pt;}
.y135{bottom:592.160000pt;}
.ya4{bottom:595.680000pt;}
.y10f{bottom:596.640000pt;}
.y4d{bottom:597.280000pt;}
.ybf{bottom:598.880000pt;}
.y78{bottom:601.440000pt;}
.y4e{bottom:602.080000pt;}
.y134{bottom:610.080000pt;}
.ya3{bottom:613.280000pt;}
.y10e{bottom:614.240000pt;}
.y4c{bottom:614.880000pt;}
.ybe{bottom:616.480000pt;}
.y77{bottom:619.040000pt;}
.ydc{bottom:619.680000pt;}
.y133{bottom:627.706667pt;}
.ya2{bottom:630.906667pt;}
.y10d{bottom:631.866667pt;}
.y4b{bottom:632.506667pt;}
.ybd{bottom:634.106667pt;}
.y76{bottom:636.666667pt;}
.y132{bottom:645.306667pt;}
.ya1{bottom:648.506667pt;}
.y10c{bottom:649.466667pt;}
.y4a{bottom:650.106667pt;}
.ye5{bottom:651.706667pt;}
.y74{bottom:654.266667pt;}
.ye6{bottom:656.506667pt;}
.y75{bottom:659.066667pt;}
.y131{bottom:662.906667pt;}
.ya0{bottom:666.106667pt;}
.y10b{bottom:667.066667pt;}
.y49{bottom:667.706667pt;}
.ye4{bottom:669.306667pt;}
.y73{bottom:672.186667pt;}
.y14{bottom:676.026667pt;}
.y130{bottom:680.506667pt;}
.y9f{bottom:683.706667pt;}
.y10a{bottom:684.666667pt;}
.y8f{bottom:685.306667pt;}
.y71{bottom:689.786667pt;}
.y72{bottom:694.586667pt;}
.y12f{bottom:698.106667pt;}
.y48{bottom:701.306667pt;}
.y109{bottom:702.266667pt;}
.y8d{bottom:702.906667pt;}
.y8e{bottom:707.706667pt;}
.y13{bottom:712.506667pt;}
.y12e{bottom:715.706667pt;}
.y47{bottom:718.906667pt;}
.y108{bottom:720.186667pt;}
.y70{bottom:720.506667pt;}
.y12d{bottom:733.306667pt;}
.y46{bottom:736.546667pt;}
.y107{bottom:737.826667pt;}
.yd1{bottom:738.146667pt;}
.y11{bottom:748.706667pt;}
.y12c{bottom:750.946667pt;}
.y12{bottom:754.146667pt;}
.y106{bottom:755.426667pt;}
.yd0{bottom:756.066667pt;}
.y45{bottom:758.946667pt;}
.y12b{bottom:768.546667pt;}
.y44{bottom:772.066667pt;}
.y105{bottom:773.026667pt;}
.ycf{bottom:773.666667pt;}
.y10{bottom:785.186667pt;}
.y12a{bottom:786.146667pt;}
.y43{bottom:789.666667pt;}
.y104{bottom:790.626667pt;}
.y8c{bottom:794.466667pt;}
.y129{bottom:804.066667pt;}
.y9d{bottom:805.666667pt;}
.y6f{bottom:807.266667pt;}
.y103{bottom:808.226667pt;}
.y9e{bottom:810.466667pt;}
.y8b{bottom:812.066667pt;}
.yf{bottom:821.346667pt;}
.y128{bottom:821.666667pt;}
.y42{bottom:823.266667pt;}
.y6e{bottom:824.866667pt;}
.y9{bottom:836.706667pt;}
.y102{bottom:839.266667pt;}
.y41{bottom:840.866667pt;}
.y6d{bottom:842.466667pt;}
.y8{bottom:852.093333pt;}
.y101{bottom:856.893333pt;}
.y40{bottom:858.493333pt;}
.yce{bottom:860.093333pt;}
.yf4{bottom:863.293333pt;}
.y7{bottom:864.573333pt;}
.y100{bottom:874.493333pt;}
.y3f{bottom:876.093333pt;}
.ycd{bottom:877.693333pt;}
.yff{bottom:892.093333pt;}
.y3e{bottom:893.693333pt;}
.ybc{bottom:909.693333pt;}
.y3d{bottom:911.293333pt;}
.y6{bottom:913.213333pt;}
.ye3{bottom:916.093333pt;}
.ybb{bottom:927.293333pt;}
.y3c{bottom:928.893333pt;}
.y5{bottom:935.293333pt;}
.yb9{bottom:944.893333pt;}
.y3b{bottom:946.493333pt;}
.yba{bottom:949.693333pt;}
.y4{bottom:953.533333pt;}
.y9b{bottom:962.533333pt;}
.y6c{bottom:964.453333pt;}
.y9c{bottom:967.333333pt;}
.y3{bottom:972.453333pt;}
.y39{bottom:980.453333pt;}
.ycc{bottom:982.053333pt;}
.y3a{bottom:985.253333pt;}
.y2{bottom:990.693333pt;}
.y38{bottom:998.053333pt;}
.y8a{bottom:1002.853333pt;}
.y1{bottom:1005.733333pt;}
.y37{bottom:1015.653333pt;}
.y36{bottom:1036.773333pt;}
.y35{bottom:1049.253333pt;}
.y34{bottom:1067.813333pt;}
.y33{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.hf{height:24.991875pt;}
.ha{height:25.025625pt;}
.h12{height:26.780625pt;}
.h11{height:28.485000pt;}
.hd{height:34.374375pt;}
.h7{height:35.173750pt;}
.h4{height:38.876250pt;}
.h2{height:38.928750pt;}
.h10{height:39.138750pt;}
.h5{height:40.090000pt;}
.hc{height:44.310000pt;}
.h3{height:46.343750pt;}
.h9{height:46.785625pt;}
.he{height:53.471250pt;}
.hb{height:273.693333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x11{left:98.911988pt;}
.x2f{left:103.391988pt;}
.x1c{left:118.463988pt;}
.x18{left:133.826643pt;}
.x19{left:138.306655pt;}
.x54{left:142.466655pt;}
.x2d{left:143.426643pt;}
.x25{left:149.506643pt;}
.x2e{left:152.386655pt;}
.x26{left:158.466655pt;}
.x12{left:160.706655pt;}
.x24{left:162.306643pt;}
.x38{left:166.466655pt;}
.x39{left:169.986655pt;}
.xb{left:170.946655pt;}
.x42{left:173.506655pt;}
.x43{left:183.746643pt;}
.x27{left:188.546643pt;}
.x56{left:190.466655pt;}
.x44{left:192.706655pt;}
.x28{left:197.533322pt;}
.x4b{left:199.773310pt;}
.x40{left:200.733310pt;}
.x4c{left:208.733322pt;}
.x41{left:209.693322pt;}
.x30{left:212.573310pt;}
.x53{left:214.493322pt;}
.x31{left:221.533322pt;}
.x2{left:226.013322pt;}
.x1f{left:240.413310pt;}
.x6{left:243.613322pt;}
.x20{left:244.893322pt;}
.x21{left:249.053322pt;}
.x55{left:262.493322pt;}
.xa{left:270.533333pt;}
.x10{left:286.533322pt;}
.xc{left:304.453322pt;}
.x5{left:316.293322pt;}
.xf{left:319.173322pt;}
.x29{left:322.693310pt;}
.x3e{left:325.893322pt;}
.x2a{left:331.653322pt;}
.x14{left:335.813310pt;}
.x4{left:337.733322pt;}
.x15{left:340.293322pt;}
.x3{left:354.079988pt;}
.x32{left:361.119976pt;}
.x49{left:364.639976pt;}
.x33{left:370.079988pt;}
.x4a{left:373.599988pt;}
.x8{left:396.959988pt;}
.x13{left:397.920000pt;}
.x51{left:405.599976pt;}
.x52{left:414.559988pt;}
.x36{left:422.239976pt;}
.x4d{left:429.599976pt;}
.x37{left:431.226655pt;}
.x4e{left:438.586655pt;}
.x1a{left:454.586643pt;}
.x1b{left:459.066655pt;}
.xd{left:481.466643pt;}
.xe{left:485.946655pt;}
.x4f{left:506.746643pt;}
.x50{left:515.746655pt;}
.x45{left:528.866643pt;}
.x16{left:534.946643pt;}
.x46{left:537.826655pt;}
.x17{left:539.426655pt;}
.x22{left:570.786643pt;}
.x3c{left:573.666643pt;}
.x23{left:575.266655pt;}
.x3d{left:582.626655pt;}
.x47{left:597.373310pt;}
.x48{left:606.333322pt;}
.x3a{left:613.693310pt;}
.x3b{left:622.653322pt;}
.x34{left:624.573310pt;}
.x35{left:633.533322pt;}
.x2b{left:668.453310pt;}
.x2c{left:677.413322pt;}
.x3f{left:687.333310pt;}
.x1d{left:691.813310pt;}
.x1e{left:696.293322pt;}
.x1{left:699.493322pt;}
}




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